$bg
/*
<<set $p.Lana.agility = 50;>>
<<set $p.Lily.agility = 10;>>
<<set $p.Lana.health = 10;>>
<<run $wasted.pushUnique("Maya","Jess");>>
$wasted
<br>
$sexOrder
*/
/* ---- Девушки ---- */
<div class="girls main">
<<set _girls = Object.keys($p); >>
<<for _i = 0; _i < _girls.length; _i++>>
<<set _girl = $p[_girls[_i]]; >>
<div class="girl-wrap">
<div class="girl">
<img class="photo" @src="_girl.photo">
<div class="name">_girl.name</div>
<div class="params">
<div class="param">
<div class="title">Health: </div>
<div class="value">
_girl.health%
<<link 'i'>>
<<run Dialog.create("Health").wikiPassage("aboutHealth").open();>>
<</link>>
</div>
</div>
<div class="param">
<div class="title">Hunger: </div>
<div class="value">
_girl.hunger%
<<link 'i'>>
<<run Dialog.create("Hunger").wikiPassage("aboutHunger").open();>>
<</link>>
</div>
</div>
<div class="param">
<div class="title">Thirst: </div>
<div class="value">
_girl.thirst%
<<link 'i'>>
<<run Dialog.create("Thirst").wikiPassage("aboutThirst").open();>>
<</link>>
</div>
</div>
</div><!-- .params -->
<div class="params">
<div class="param">
<div class="title">Strength: </div>
<div class="value">
_girl.strength%
<<link 'i'>>
<<run Dialog.create("Strength").wikiPassage("aboutStrength").open();>>
<</link>>
</div>
</div>
<div class="param">
<div class="title">Stamina: </div>
<div class="value">
_girl.stamina%
<<link 'i'>>
<<run Dialog.create("Stamina").wikiPassage("aboutStamina").open();>>
<</link>>
</div>
</div>
<div class="param">
<div class="title">Agility: </div>
<div class="value">
_girl.agility%
<<link 'i'>>
<<run Dialog.create("Agility").wikiPassage("aboutAgility").open();>>
<</link>>
</div>
</div>
<div class="param">
<div class="title">Mind: </div>
<div class="value">
_girl.mind%
<<link 'i'>>
<<run Dialog.create("Mind").wikiPassage("aboutMind").open();>>
<</link>>
</div>
</div>
</div><!-- .params -->
<div class="params">
<div class="param">
<div class="title">Parasite: </div>
<div class="value">
_girl.parasite
<<link 'i'>>
<<run Dialog.create("Parasite Type").wikiPassage("aboutParasiteType").open();>>
<</link>>
</div>
</div>
<div class="param">
<div class="title">Parasitism: </div>
<div class="value">
_girl.parasitism
<<link 'i'>>
<<run Dialog.create("Parasitism").wikiPassage("aboutParasitism").open();>>
<</link>>
</div>
</div>
</div><!-- .params -->
/* если девушка выбыла */
<<if $wasted.includes(_girls[_i])>>
<div class="wasted"><span>WASTED</span></div>
<</if>>
</div><!-- .girl -->
</div><!-- .girl-wrap -->
<</for>>
</div><!-- .girls -->
/* ---- Инвентарь ---- */
<div class="inventory">
<div class="title">Supplies</div>
<div class="subtitle">Click the «<i>i</i>» button to view the item description</div>
<div class="items-wrap">
<div class="items line">
<<set
_items = Object.keys($i);
_zeroCount = 0;
>>
/* отображаем предметы, которые есть в инветаре */
<<for _i = 0; _i < _items.length; _i++>>
<<set _item = _items[_i]; >>
/* пропускаем итерацию если предмета нет в инвенатаре */
<<if $i[_item].count == 0>><<set _zeroCount++;>><<continue>><</if>>
<div class="item-wrap">
<div class="item">
<div class="image">
<img @src="$i[_item].img">
<<capture $i[_item]>>
<<link 'i'>>
<<run Dialog.create($i[_item].title);>>
<<run Dialog.wikiPassage("aboutInventoryItems");>>
<<run Dialog.open();>>
<</link>>
<</capture>>
</div>
<div class="name param">$i[_item].title</div>
<div class="count param">Count: $i[_item].count</div>
</div><!-- .item -->
</div><!-- .item-wrap -->
<</for>>
/* если в инвентаре так и не оказалось предметов, отображаем уведомление */
<<if _zeroCount == _items.length>>
<div class=inventory-empty>Your inventory is empty</div>
<</if>>
</div><!-- .items line -->
</div><!-- .items-wrap -->
</div><!-- .inventory -->
/* ---- Навигация ---- */
<<include 'Navigation'>>
/* звук по дефолту */
<<set $volume = 0.25;>>
<<set
$t = {
sidebar: 1, /* 1 - сайдбар активен, 0 - сайдбар скрыт */
additionalNPCs: 0, /* 1 - дополнительные НПС доступны (ч) */
additionalLocations: 0, /* 1 - дополнительные локации доступны (ч) */
additionalChemicals: 0, /* 1 - дополнительные химикаты (ч) */
uniqueItems: 0, /* 1 - уникальные предметы доступны (ч) */
undoButton: 0, /* 1 - кнопка отмены действия доступна (ч) */
craftingSlots: 3, /* количество предметов одновременного крафта (ч) */
imaginariumTotal: 2, /* количество ежедневных зарядов Воображариума (ч) */
prewPassage: '' /* название предыдущего пассажа */
};
$chemicals = 0;
/* ---- Девушки ----
$p = {};
$p.Deborah = {
name: 'Deborah',
photo: 'photo/Deborah.jpg',
host: 'Amy',
parasite: 'Red',
parasite_lvl: '1',
parasitism: 80,
health: 100,
hunger: 10,
thirst: 30,
strength: 30,
stamina: 10,
agility: 35,
mind: 100,
skill_points: 0,
video: 4,
sex: [9,9,9,9,9,9],
wasted: 0
};
$p.Deborah2 = {
name: 'Deborah2',
photo: 'photo/Deborah.jpg',
host: 'Amy',
parasite: 'Green',
parasite_lvl: '1',
parasitism: 0,
health: 80,
hunger: 50,
thirst: 30,
strength: 50,
stamina: 10,
agility: 35,
mind: 30,
skill_points: 40,
video: 2,
sex: [9,9,9,9,9,9],
wasted: 0
};
$p.Deborah3 = {
name: 'Deborah3',
photo: 'photo/Deborah.jpg',
host: 'Amy',
parasite: 'Blue',
parasite_lvl: '1',
parasitism: 0,
health: 100,
hunger: 60,
thirst: 30,
strength: 50,
stamina: 10,
agility: 35,
mind: 30,
skill_points: 5,
video: 5,
sex: [9,9,9,9,9,9],
wasted: 0
};
$p.Deborah4 = {
name: 'Deborah4',
photo: 'photo/Deborah.jpg',
host: 'Amy',
parasite: 'Yellow',
parasite_lvl: '1',
parasitism: 0,
health: 100,
hunger: 70,
thirst: 30,
strength: 45,
stamina: 10,
agility: 35,
mind: 30,
skill_points: 0,
video: 1,
sex: [9,9,9,9,9,9],
wasted: 0
};
*/
/* ---- Монстры ----
$m = {};
$m.Monser1 = {
name: 'Monser1',
weakness: ['strength'],
photo: 'photo/Deborah.jpg',
img: 'img/Monser1.jpg',
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
};
$m.Monser2 = {
name: 'Monser2',
weakness: ['stamina'],
photo: 'photo/Deborah.jpg',
img: 'img/Monser1.jpg',
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
};
$m.Monser3 = {
name: 'Monser3',
weakness: ['agility'],
photo: 'photo/Deborah.jpg',
img: 'img/Monser1.jpg',
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
};
$m.Monser4 = {
name: 'Monser4',
weakness: ['mind'],
photo: 'photo/Deborah.jpg',
img: 'img/Monser1.jpg',
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
};
*/
/* ---- Инвентарь ----
$i = {};
$i.Food = {
title: "Food",
img: 'inventory/Deborah.jpg',
use: "Aytore et dolore magna",
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
count: 1,
chemicals: 2,
days: 1,
unique: 0
};
$i.Water = {
title: "Water",
img: 'inventory/Deborah.jpg',
use: "Aytore et dolore magna",
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
count: 1,
chemicals: 3,
days: 1,
unique: 0
};
$i.Medkit = {
title: "Medkit",
img: 'inventory/Deborah.jpg',
use: "Aytore et dolore magna",
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
count: 1,
chemicals: 4,
days: 1,
unique: 0
};
$i.weap1 = {
title: "Weap1",
img: 'inventory/Deborah.jpg',
use: "Aytore et dolore magna",
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
count: 1,
chemicals: 3,
days: 2,
unique: 0
};
$i.weap2 = {
title: "Weap2",
img: 'inventory/Deborah.jpg',
use: "Aytore et dolore magna",
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
count: 0,
chemicals: 0,
days: 0,
unique: 1
};
$i.item4 = {
title: "Item Title 4",
img: 'inventory/Deborah.jpg',
use: "Aytore et dolore magna",
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
count: 1,
chemicals: 1,
days: 3,
unique: 0
};
$i.item5 = {
title: "Item Title 5",
img: 'inventory/Deborah.jpg',
use: "Aytore et dolore magna",
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
count: 0,
chemicals: 5,
days: 0,
unique: 0
};
$i.item6 = {
title: "Item Title 6",
img: 'inventory/Deborah.jpg',
use: "Aytore et dolore magna",
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
count: 1,
chemicals: 1,
days: 0,
unique: 1
};
$i.item7 = {
title: "Item Title 7",
img: 'inventory/Deborah.jpg',
use: "Aytore et dolore magna",
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
count: 1,
chemicals: 2,
days: 1,
unique: 0
};
$i.item8 = {
title: "Item Title 8",
img: 'inventory/Deborah.jpg',
use: "Aytore et dolore magna",
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
count: 1,
chemicals: 3,
days: 1,
unique: 0
};
$i.item9 = {
title: "Item Title 9",
img: 'inventory/Deborah.jpg',
use: "Aytore et dolore magna",
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
count: 1,
chemicals: 1,
days: 1,
unique: 0
};
$i.item10 = {
title: "Item Title 10",
img: 'inventory/Deborah.jpg',
use: "Aytore et dolore magna",
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
count: 1,
chemicals: 8,
days: 3,
unique: 0
};
*/
>>
/* заголовок игры */
<div class="game-title">Parasitorium</div>
<div class="game-version">Version 0.1.0</div>
/* кнопки конфигурации */
<<include 'Сonfig'>>
/* параметры игры */
<div class="block params">
<<if typeof $day != "undefined">> /* если игра началась */
<div class="param"><u>Day:</u> <i>$day of <<=$dayLast-1>></i></div>
<<else>> /* заглушка для интро */
<div class="param"><u>Day:</u> <i>1 of 100</i></div>
<</if>>
<div class="param"><u>Chemicals:</u> <i>$chemicals</i></div>
</div>
/* быстрая навигация */
<div class="block navigation">
<div class="title">Quick navigation:</div>
<<include 'Quick-Navigation'>>
</div>
/* ввести читкод */
<div class="block navigation">
<<link 'Enter cheat code' 'Cheats'>><<set $t.sidebar = 0;>><<prewPassage>><</link>>
</div>
/* подписки */
<div class="block subscribe">
<div class="title">Get Cheat Codes:</div>
<a href="https://www.patreon.com/SupremeAI" target="_blank">
<img src="ui/patreon.jpg">
</a>
<a href="https://www.clica.net/user/supremeai" target="_blank">
<img src="ui/clica.jpg">
</a>
<div class="title" style="margin-top: 10px;">Join Community:</div>
<a href="https://discord.gg/gM39Kh3589" target="_blank">
<img src="ui/discord.jpg">
</a>
</div>
/* информация */
<div class="block navigation">
<div class="title">Information:</div>
<<link 'Credits' 'Credits'>><<set $t.sidebar = 0;>><<prewPassage>><</link>>
<<link 'Changelog' 'Changelog'>><<set $t.sidebar = 0;>><<prewPassage>><</link>>
</div>
/* сайдбар закрыт */
<div class="block disabled">
Sidebar is unavailable during <br>this event.
</div>
/* открыть\скрыть сайдбар */
<<if $t.sidebar == 0>>
<<addclass '#ui-bar' 'off'>>
<<else>>
<<removeclass '#ui-bar' 'off'>>
<</if>>
Parasitorium
/*<div id="sidebar-title">Secret Lab</div>
<div id="sidebar-subtitle"><i><nobr>Version 0.1.0</nobr></i></div>*//* код для разблокировки кнопки возврата не введен */
<<if $t.undoButton != 1>>
<<script>>document.getElementById("history-backward").disabled = true;<</script>>
<</if>>
/*
<<= passage();>>
<br>
*/<<set
$q = {};
$q.passage1 = {
name: 'Abella',
passage: 'passage1'
};
$q.passage2 = {
name: 'Phoenix',
passage: 'passage2'
};
_link = 'passage1';
>>
<<= $q[_link].name>>
<<run delete $q.passage2;>>
_____________________________________________
Правильный for для объектов
<<for _key, _value range $obj>>
_key : _value
<</for>>
<<set _obj = Object.keys($obj); >>
<<for _i = 0; _i < _obj.length; _i++>>
$obj[_obj[_i]]
<</for>>
_____________________________________________
Случайное число без повторения
<<set _old = $randomNum;>>
<<for _i = 1; $randomNum == _old;>>
<<set $randomNum = random(1, 30);>>
<</for>>
_____________________________________________
Проверка объявлена ли переменная ранее:
<<if typeof $volume != "undefined">>
<<set $volume = 0.15;>>
<</if>>
еще:
<<if def $x>><</if>>
<<if not $x>><</if>>
лучше всего:
<<if !$x>><</if>>
_____________________________________________
Работа с функциями:
::StoryInit
<<script>>
window.GetSeconds = function() {
var d = new Date();
var n = d.getSeconds();
return n;
};
<</script>>
::John H. Widget & Co. [widget]
<<widget "getsecs">><<print GetSeconds()>><</widget>>
::Start
<<getsecs>>
_____________________________________________
<<run console.log($q);>><table class="modal">
<tr>
<td class="img"><img src="ui/aboutParasitism.jpg"></td>
<td class="text">
<p>During sexual arousal, the fusion between the host and the parasite strengthens, and the girl gains Parasitism Points, which you can use to increase her parameters (Strength, Stamina, Agility, and Mind). Use the Sexual Imaginarium to earn Parasitism Points. Use the Skill Matrix to increase the girl's various parameters.</p>
</td>
</tr>
</table><table class="modal">
<tr>
<td class="img"><img src="ui/aboutHealth.jpg"></td>
<td class="text">
<p>If a girl's health drops to 0%, the parasite will consume the host, and she will no longer be able to participate in the experiment. Health reduction is affected by certain daily tasks, as well as hunger and thirst. Distribute supplies among the girls in a timely manner to prevent their health from reaching 0%.</p>
</td>
</tr>
</table><table class="modal">
<tr>
<td class="img"><img src="ui/aboutHunger.jpg"></td>
<td class="text">
<p>Every night, the girls' hunger level increases. Hunger can also rise during certain daily tasks. If a girl's hunger reaches 50%, she will start losing health. Distribute supplies among the girls in a timely manner to keep their hunger levels under control.</p>
</td>
</tr>
</table><table class="modal">
<tr>
<td class="img"><img src="ui/aboutAgility.jpg"></td>
<td class="text">
<p>The higher the "Agility" parameter, the greater the chance that a girl will succeed in tasks requiring speed, precision of movements, and good coordination. Additionally, the "Agility" parameter allows her to evade powerful critical attacks. Use the Skill Matrix to increase the "Agility" parameter.</p>
</td>
</tr>
</table><table class="modal">
<tr>
<td class="img"><img src="ui/aboutStamina.jpg"></td>
<td class="text">
<p>"Stamina" is a parameter that determines a character's ability to endure moderate exertion over a prolonged period and resist fatigue. It defines how long a character can perform energy-intensive actions without losing efficiency. Additionally, the "Stamina" parameter allows a girl to defeat monsters that use minions during an attack. Use the Skill Matrix to increase the "Stamina" parameter.</p>
</td>
</tr>
</table><table class="modal">
<tr>
<td class="img"><img src="ui/aboutStrength.jpg"></td>
<td class="text">
<p>The higher the "Strength" parameter, the greater the chance that a girl will succeed in tasks requiring powerful physical effort within a short period. Additionally, the "Strength" parameter allows her to deal powerful critical damage. Use the Skill Matrix to increase the "Strength" parameter.</p>
</td>
</tr>
</table><table class="modal">
<tr>
<td class="img"><img src="ui/aboutMind.jpg"></td>
<td class="text">
<p>The higher the "Mind" parameter, the greater the chance that a girl will succeed in truly complex intellectual tasks. Additionally, the "Mind" parameter allows her to be resistant to mental attacks. Use the Skill Matrix to increase the "Mind" parameter.</p>
</td>
</tr>
</table><table class="modal">
<tr>
<td class="img"><img src="ui/aboutSkillPoints.jpg"></td>
<td class="text">
<p>Skill Points are used to increase parameters such as Strength, Stamina, Agility, and Mind. Use the Skill Matrix to enhance these parameters. Use the Sexual Imaginarium to earn Skill Points.</p>
</td>
</tr>
</table><table class="modal">
<tr>
<td class="img"><img src="ui/aboutParasiteColor.jpg"></td>
<td class="text">
<p>Sometimes a girl's parasite may mutate and go out of control. In this case, it can cause damage to its host. To prevent this, the rebellious parasite must be tamed. The color of the parasite is a conditional parameter that characterizes the ability of one parasite to tame others.</p>
</td>
</tr>
<tr>
<td colspan="2">
<hr>
<ul>
<li>Red parasite has a high chance of taming Blue and Green parasites.</li>
<li>Blue parasite has a high chance of taming Green and Yellow parasites.</li>
<li>Green parasite has a high chance of taming Yellow and Red parasites.</li>
<li>Yellow parasite has a high chance of taming Red and Blue parasites.</li>
</ul>
</td>
</tr>
</table><table class="inventory-modal">
<tr>
<td class="img">
<img @src="$i[_item].img">
</td>
<td class="params">
<div class="param first">
<span class="name">Use:</span> $i[_item].use
</div>
<div class="param">
<span class="name">In your inventory:</span>
<nobr>$i[_item].count item<<if $i[_item].count != 1>>s<</if>></nobr>
</div>
<div class="param">
<span class="name">Crafting time:</span>
<<if $uniqueItems.includes(_item)>>
<nobr>Cannot be crafted</nobr>
<<else>>
<nobr>$i[_item].days day<<if $i[_item].days != 1>>s<</if>></nobr>
<</if>>
</div>
<div class="param">
<span class="name">Crafting cost:</span>
<<if $uniqueItems.includes(_item)>>
<nobr>Cannot be crafted</nobr>
<<else>>
<nobr>$i[_item].chemicals chemical<<if $i[_item].chemicals != 1>>s<</if>></nobr>
<</if>>
</div>
<div class="param last">
<span class="name">Destroy to extract:</span>
<<if $uniqueItems.includes(_item)>>
<nobr>Cannot be destroyed</nobr>
<<else>>
<nobr>$i[_item].chemicals chemical<<if $i[_item].chemicals != 1>>s<</if>></nobr>
<</if>>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<div class="description"><div class="name">Description:</div> $i[_item].desc</div>
</td>
</tr>
</table>
<<widget "can" container>>
<div class="can-widget">
<<if _args[0]>>
<div class="can-title">_args[0]</div>
<</if>>
/* contents */
<<=_contents>>
</div><!-- .can .widget -->
<</widget>>$bg
/* ---- Подсказка ---- */
/* если первый заход в интерфейс */
<<if typeof $aboutImaginarium== "undefined">><<set $aboutImaginarium = "show";>><</if>>
/* если нужно показать подсказку - отображаем */
<<if $aboutImaginarium == "show">>
<div class="interface-hint-link hide">
<<link 'Click to hide this hint 🞬' `passage()`>>
<<set $aboutImaginarium = "hide";>>
<</link>>
</div>
<<say 'Computer'>>
Sexual Imaginarium is a device for increasing the "Parasitism" parameter:
<ul>
<li>Transmit sexual scenes into the girls' subconscious to earn Parasitism Points.</li>
<li>Use the Skill Matrix to allocate Parasitism Points.</li>
<li>The number of uses of the Sexual Imaginarium per day is limited (can be increased using a cheat code).</li>
<li>New sexual scenes will be unlocked as the game progresses.</li>
</ul>
<</say>>
/* если нужно скрыть подсказку - отображаем кнопку */
<<else>>
<div class="interface-hint-link">
<<link 'Click to see the hint 📋' `passage()`>>
<<set $aboutImaginarium = "show";>>
<</link>>
</div>
<</if>>
/* каждый день дает возможности применить Imaginarium $imaginariumTotal раз */
<<if !$imaginariumDay || $imaginariumDay != $day >>
<<set $imaginariumLeft = $t.imaginariumTotal; $imaginariumDay = $day; >>
<</if>>
<div class="imaginarium">
/* кнопка "i" про девайс */
<div class="about-device">
<<link 'i'>>
<<run Dialog.create('Sexual Imaginarium');>>
<<run Dialog.wikiPassage("aboutSexualImaginarium");>>
<<run Dialog.open();>>
<</link>>
</div>
<div class="title title-info">Sexual Imaginarium</div>
<div class="subtitle">
Today you can use the Imaginarium:
<b><u><nobr>$imaginariumLeft of $t.imaginariumTotal times</nobr></u></b>.
<br>
Transmit sexual scenes into the subconscious of girls to raise their parasitism:
</div>
</div><!-- .imaginarium -->
<div class="girls parasits">
<<set _girls = Object.keys($p); >>
<<for _i = 0; _i < _girls.length; _i++>>
<<set _girl = _girls[_i]; >>
<div class="girl-wrap">
<div class="girl">
<div class="skin">
<img class="photo" @src="$p[_girl].photo">
<div class="name">$p[_girl].name</div>
</div><!-- .skin -->
<div class="params">
<div class="param">
<div class="title">Parasite: </div>
<div class="value">
$p[_girl].parasite
<<link 'i'>>
<<run Dialog.create("Parasite Type").wikiPassage("aboutParasiteType").open();>>
<</link>>
</div>
</div>
<div class="param">
<div class="title">Parasitism: </div>
<div class="value">
$p[_girl].parasitism
<<link 'i'>>
<<run Dialog.create("Parasitism").wikiPassage("aboutParasitism").open();>>
<</link>>
</div>
</div>
</div><!-- .params -->
<div class="params sex-links">
<span>Choose Sex Scene:</span>
<div class="links">
<<for _k = 1; _k <= $p[_girl].sex.length; _k++>>
<<if $p[_girl].video >= _k>>
<<set _text = 'Sex' + _k;>>
<<else>>
<<set _text = '🔒 Sex' + _k;>>
<</if>>
<<capture _girl, _k>>
<<link '_text'>>
<<if $p[_girl].video >= _k>>
<<if $imaginariumLeft > 0>>
<<set $girl = _girl; $video = _k; $sexPosition = 1; $progressBar = 0;>>
<<goto 'Boost-Parasitism-Done'>>
<<else>>
<<run Dialog.create("Imaginarium is Temporarily Unavailable");>>
<<run Dialog.wikiPassage("errorImaginariumUnavailable");>>
<<run Dialog.open();>>
<</if>>
<<else>>
<<run Dialog.create("Sexual Scene is Blocked");>>
<<run Dialog.wikiPassage("errorBoostParasitism");>>
<<run Dialog.open();>>
<</if>>
<</link>>
<</capture>>
<</for>>
</div><!-- .links-wrap -->
</div><!-- .params .sex-links -->
/* если девушка выбыла */
<<if $wasted.includes(_girl)>><div class="wasted"><span>WASTED</span></div><</if>>
</div><!-- .girl -->
</div><!-- .girl-wrap -->
<</for>>
</div><!-- .girls -->
/* ---- Навигация ---- */
<<include 'Navigation'>>$bg
/* ---- Подсказка ---- */
/* если первый заход в интерфейс */
<<if typeof $aboutExtractor == "undefined">><<set $aboutExtractor = "show";>><</if>>
/* если нужно показать подсказку - отображаем */
<<if $aboutExtractor == "show">>
<div class="interface-hint-link hide">
<<link 'Click to hide this hint 🞬' `passage()`>>
<<set $aboutExtractor = "hide";>>
<</link>>
</div>
<<say 'Computer'>>
Chemical Extractor is a device for extracting chemicals from items in your inventory:
<ul>
<li>The item is permanently destroyed during the extraction process.</li>
<li>The destruction of the item happens instantly.</li>
<li>You can extract chemicals from as many items as you want per day.</li>
</ul>
<</say>>
/* если нужно скрыть подсказку - отображаем кнопку */
<<else>>
<div class="interface-hint-link">
<<link 'Click to see the hint 📋' `passage()`>>
<<set $aboutExtractor = "show";>>
<</link>>
</div>
<</if>>
<<if $destroyItemTitle && $destroyItemText>>
<<can '$destroyItemTitle'>><center>$destroyItemText</center><</can>>
<<run delete $destroyItemTitle;>>
<<run delete $destroyItemText;>>
<</if>>
<div class="extractor">
/* кнопка "i" про девайс */
<div class="about-device">
<<link 'i'>>
<<run Dialog.create('Chemical Extractor');>>
<<run Dialog.wikiPassage("aboutChemicalExtractor");>>
<<run Dialog.open();>>
<</link>>
</div>
<div class="title title-info">Chemical Extractor</div>
<div class="subtitle">You can get chemicals by destroying items from your inventory:</div>
<div class="items-wrap">
<div class="items">
<<set
_items = Object.keys($i);
_zeroCount = 0;
>>
/* отображаем предметы, которые есть в инветаре */
<<for _i = 0; _i < _items.length; _i++>>
<<set _item = _items[_i]; >>
/* пропускаем итерацию если предмета нет в инвенатаре */
<<if $i[_item].count == 0>><<set _zeroCount++;>><<continue>><</if>>
<div class="item-wrap">
<div class="item">
<div class="image">
<img @src="$i[_item].img">
<<capture _item>>
<<link 'i'>>
<<run Dialog.create($i[_item].title);>>
<<run Dialog.wikiPassage("aboutInventoryItems");>>
<<run Dialog.open();>>
<</link>>
<</capture>>
</div><!-- .image -->
<div class="name param">$i[_item].title</div>
/* если предмет уникальный */
<<if $uniqueItems.includes(_item)>>
<div class="unique param">This is a unique item.</div>
<div class="unique param">It cannot be destroyed.</div>
/* если предмет обычный */
<<else>>
<div class="cost param">Chemicals: $i[_item].chemicals</div>
<div class="time param">Count: $i[_item].count</div>
<div class="destroy param">
<<capture _item>>
<<link 'Destroy'>>
<<run Dialog.create('Destroy Item?');>>
<<run Dialog.wikiPassage("startDestroyDialog");>>
<<run Dialog.open();>>
<</link>>
<</capture>>
</div><!-- .destroy .param -->
<</if>>
</div><!-- .item -->
</div><!-- .item-wrap -->
<</for>>
/* если в инвентаре так и не оказалось предметов, отображаем уведомление */
<<if _zeroCount == _items.length>>
<div class=inventory-empty>Your inventory is empty</div>
<</if>>
</div><!-- .items -->
</div><!-- .content -->
</div><!-- .extractor -->
/* ---- Навигация ---- */
<<include 'Navigation'>>$bg
/* ---- Подсказка ---- */
/* если первый заход в интерфейс */
<<if typeof $aboutSynthesizer == "undefined">><<set $aboutSynthesizer = "show";>><</if>>
/* если нужно показать подсказку - отображаем */
<<if $aboutSynthesizer == "show">>
<div class="interface-hint-link hide">
<<link 'Click to hide this hint 🞬' `passage()`>>
<<set $aboutSynthesizer = "hide";>>
<</link>>
</div>
<<say 'Computer'>>
Chemical Synthesizer is a device for creating survival items:
<ul>
<li>Items are created from chemicals.</li>
<li>The creation process takes anywhere from one to several days.</li>
<li>You can create multiple items at the same time.</li>
<li>The number of slots for simultaneous creation is limited (can be increased with a cheat code).</li>
</ul>
<</say>>
/* если нужно скрыть подсказку - отображаем кнопку */
<<else>>
<div class="interface-hint-link">
<<link 'Click to see the hint 📋' `passage()`>>
<<set $aboutSynthesizer = "show";>>
<</link>>
</div>
<</if>>
/* если игрок впервые зашел в систему крафтинга,
то создаем массив с предметами которые сейчас крафтятся */
<<if typeof $crafting == "undefined">>
<<set $crafting = []; >>
<</if>>
<div class="synthesizer">
/* кнопка "i" про девайс */
<div class="about-device">
<<link 'i'>>
<<run Dialog.create('Chemical Synthesizer');>>
<<run Dialog.wikiPassage("aboutChemicalSynthesizer");>>
<<run Dialog.open();>>
<</link>>
</div>
<div class="title title-info">Chemical Synthesizer</div>
<div class="subtitle">Currently crafting $crafting.length of $t.craftingSlots items:</div>
/* предметы которые крафтятся */
<div class="slots">
<<for _k = 0; _k < $t.craftingSlots; _k++>>
<div class="slot">
<span class="slot-num">Crafting Slot #<<=_k+1>>: </span>
<<if typeof $crafting[_k] != "undefined">>
<<set
_title = $crafting[_k].title;
_days = $crafting[_k].day - $day;
>>
<nobr>
[ _title - Crafting ends in _days day<<if _days != 1>>s<</if>> ]
</nobr>
<<else>>
[ Empty ]
<</if>>
</div><!-- .slot -->
<</for>>
</div><!-- .slots -->
<div class="subtitle">
<<if $crafting.length < $t.craftingSlots>>
Choose the item you want to craft:
<<else>>
All slots are in use. You cannot craft new items right now.
<</if>>
</div><!-- .subtitle -->
/* таблица всех предметов */
<div class="items-wrap">
<div class="items">
<<set _items = Object.keys($i); >>
<<for _i = 0; _i < _items.length; _i++>>
<<set _item = _items[_i]; >>
<div class="item-wrap">
<div class="item">
<div class="image">
<img @src="$i[_item].img">
<<capture _item>>
<<link 'i'>>
<<run Dialog.create($i[_item].title);>>
<<run Dialog.wikiPassage("aboutInventoryItems");>>
<<run Dialog.open();>>
<</link>>
<</capture>>
</div><!-- .image -->
<div class="name param">$i[_item].title</div>
/* если предмет уникальный */
<<if $uniqueItems.includes(_item)>>
<div class="unique param">This is a unique item.</div>
<div class="unique param">It cannot be crafted.</div>
/* если предмет обычный */
<<else>>
<div class="cost param">Chemicals: $i[_item].chemicals</div>
<div class="time param">Days: $i[_item].days</div>
<div class="count param">Count: $i[_item].count</div>
<div class="craft param">
<<capture _item>>
<<link 'Craft'>>
/* если нет свободных слотов */
<<if $crafting.length >= $t.craftingSlots>>
<<run Dialog.create('No Available Crafting Slots');>>
<<run Dialog.wikiPassage("errorCraftSlots");>>
<<run Dialog.open();>>
/* если нет нужного колличества химикатов */
<<elseif $chemicals < $i[_item].chemicals>>
<<run Dialog.create('Not Enough Chemicals');>>
<<run Dialog.wikiPassage("errorCraftChemicals");>>
<<run Dialog.open();>>
/* подтверждение начала крафта */
<<else>>
<<run Dialog.create('Start Crafting?');>>
<<run Dialog.wikiPassage("startCraftDialog");>>
<<run Dialog.open();>>
<</if>>
<</link>>
<</capture>>
</div><!-- .craft .param -->
<</if>>
</div><!-- .item -->
</div><!-- .item-wrap -->
<</for>>
</div><!-- .items -->
</div><!-- .content -->
</div><!-- .synthesizer -->
/* ---- Навигация ---- */
<<include 'Navigation'>>$bg
/* ---- Подсказка ---- */
/* если первый заход в интерфейс */
<<if typeof $aboutSkillMatrix == "undefined">><<set $aboutSkillMatrix = "show";>><</if>>
/* если нужно показать подсказку - отображаем */
<<if $aboutSkillMatrix == "show">>
<div class="interface-hint-link hide">
<<link 'Click to hide this hint 🞬' `passage()`>>
<<set $aboutSkillMatrix = "hide";>>
<</link>>
</div>
<<say 'Computer'>>
Skill Matrix is a device for enhancing the girls' parameters:
<ul>
<li>Click the "+" button to increase the selected parameter.</li>
<li>Click "Yes" or "No" to confirm or cancel the parameter increases.</li>
<li>Parameter increases are possible if there are free Parasitism Points.</li>
<li>Use the Sexual Imaginarium to earn Parasitism Points.</li>
</ul>
<</say>>
/* если нужно скрыть подсказку - отображаем кнопку */
<<else>>
<div class="interface-hint-link">
<<link 'Click to see the hint 📋' `passage()`>>
<<set $aboutSkillMatrix = "show";>>
<</link>>
</div>
<</if>>
<<set
_up = {}; /* временный объект параметров девушек */
_step = 1; /* на сколько будет увеличен параметр при нажатии на "+" */
>>
<div class="skillmatrix">
/* кнопка "i" про девайс */
<div class="about-device">
<<link 'i'>>
<<run Dialog.create('Skill Matrix');>>
<<run Dialog.wikiPassage("aboutSkillMatrix");>>
<<run Dialog.open();>>
<</link>>
</div>
<div class="title title-info">Skill Matrix</div>
<div class="subtitle">
Click the «+» button to increase a skill, then press «Yes» to confirm the changes:
</div>
</div><!-- .skillmatrix -->
/* ---- Девушки ---- */
<div class="girls skills">
<<set _girls = Object.keys($p); >>
<<for _i = 0; _i < _girls.length; _i++>>
<<set _girl = _girls[_i]; >>
<<set _up[_girl] = {strength: 0, stamina: 0, agility: 0, mind: 0, parasitism: 0, changed: 0}; >>
<div class="girl-wrap">
<div class="girl">
<img class="photo" @src="$p[_girl].photo">
<div class="name">$p[_girl].name</div>
<<set _up[_girl].parasitism += $p[_girl].parasitism;>>
<<set _parasitismTag = $p[_girl].name + '_parasitism';>>
<div class="skills">
Parasitism: <<do tag _parasitismTag>>_up[_girl].parasitism<</do>>
</div>
<div class="params">
/* -- Strength -- */
<div class="param">
<div class="title">Strength: </div>
<div class="value">
<<set _up[_girl].strength += $p[_girl].strength;>>
<<set _strengthTag = $p[_girl].name + '-strength';>>
<<do tag _strengthTag>>_up[_girl].strength<</do>>%
<<capture _up[_girl], _strengthTag, _parasitismTag>>
<<link '+'>>
<<if _up[_girl].parasitism > 0 && _up[_girl].strength < 100>>
<<set _up[_girl].strength += _step; >>
<<if _up[_girl].strength > 100>><<set _up[_girl].strength = 100; >><</if>>
<<redo _strengthTag>>
<<set _up[_girl].parasitism--; >>
<<redo _parasitismTag>>
<<set _up[_girl].changed++; >> /* если изменения внесены */
<</if>>
<</link>>
<</capture>>
</div>
</div><!-- .param (strength)-->
/* -- Stamina -- */
<div class="param">
<div class="title">Stamina: </div>
<div class="value">
<<set _up[_girl].stamina += $p[_girl].stamina;>>
<<set _staminaTag = $p[_girl].name + '-stamina';>>
<<do tag _staminaTag>>_up[_girl].stamina<</do>>%
<<capture _up[_girl], _staminaTag, _parasitismTag>>
<<link '+'>>
<<if _up[_girl].parasitism > 0 && _up[_girl].stamina < 100>>
<<set _up[_girl].stamina += _step; >>
<<if _up[_girl].stamina > 100>><<set _up[_girl].stamina = 100; >><</if>>
<<redo _staminaTag>>
<<set _up[_girl].parasitism--; >>
<<redo _parasitismTag>>
<<set _up[_girl].changed++; >> /* если изменения внесены */
<</if>>
<</link>>
<</capture>>
</div>
</div><!-- .param (stamina)-->
/* -- Agility -- */
<div class="param">
<div class="title">Agility: </div>
<div class="value">
<<set _up[_girl].agility += $p[_girl].agility;>>
<<set _agilityTag = $p[_girl].name + '-agility';>>
<<do tag _agilityTag>>_up[_girl].agility<</do>>%
<<capture _up[_girl], _agilityTag, _parasitismTag>>
<<link '+'>>
<<if _up[_girl].parasitism > 0 && _up[_girl].agility < 100>>
<<set _up[_girl].agility += _step; >>
<<if _up[_girl].agility > 100>><<set _up[_girl].agility = 100; >><</if>>
<<redo _agilityTag>>
<<set _up[_girl].parasitism--; >>
<<redo _parasitismTag>>
<<set _up[_girl].changed++; >> /* если изменения внесены */
<</if>>
<</link>>
<</capture>>
</div>
</div><!-- .param (agility)-->
/* -- Mind -- */
<div class="param">
<div class="title">Mind: </div>
<div class="value">
<<set _up[_girl].mind += $p[_girl].mind;>>
<<set _mindTag = $p[_girl].name + '-mind';>>
<<do tag _mindTag>>_up[_girl].mind<</do>>%
<<capture _up[_girl], _mindTag, _parasitismTag>>
<<link '+'>>
<<if _up[_girl].parasitism > 0 && _up[_girl].mind < 100>>
<<set _up[_girl].mind += _step; >>
<<if _up[_girl].mind > 100>><<set _up[_girl].mind = 100; >><</if>>
<<redo _mindTag>>
<<set _up[_girl].parasitism--; >>
<<redo _parasitismTag>>
<<set _up[_girl].changed++; >> /* если изменения внесены */
<</if>>
<</link>>
<</capture>>
</div>
</div><!-- .param (mind)-->
</div><!-- .params -->
<div class="save-string">Confirm changes?</div>
<div class="save-buttons">
<<capture _up[_girl], _parasitismTag, _strengthTag, _staminaTag, _agilityTag, _mindTag>>
<<link 'Yes'>>
<<if _up[_girl].changed > 0 >>
<<set
$p[_girl].parasitism = _up[_girl].parasitism;
$p[_girl].strength = _up[_girl].strength;
$p[_girl].stamina = _up[_girl].stamina;
$p[_girl].agility = _up[_girl].agility;
$p[_girl].mind = _up[_girl].mind;
$host = $p[_girl].volunteer;
/*$girlUpgrade = _girl;*/
>>
<<goto 'Upgrade-Skills-Done'>>
<<else>>
<<run Dialog.create('Error: Skills Unchanged');>>
<<run Dialog.wikiPassage("errorNoSkills");>>
<<run Dialog.open();>>
<</if>>
<</link>>
<</capture>>
<<capture _up[_girl], _parasitismTag, _strengthTag, _staminaTag, _agilityTag, _mindTag>>
<<link 'No'>>
<<set
_up[_girl].parasitism = $p[_girl].parasitism;
_up[_girl].strength = $p[_girl].strength;
_up[_girl].stamina = $p[_girl].stamina;
_up[_girl].agility = $p[_girl].agility;
_up[_girl].mind = $p[_girl].mind;
>>
<<redo _parasitismTag>>
<<redo _strengthTag>>
<<redo _staminaTag>>
<<redo _agilityTag>>
<<redo _mindTag>>
<</link>>
<</capture>>
</div><!-- .buttons -->
/* если девушка выбыла */
<<if $wasted.includes(_girl)>><div class="wasted"><span>WASTED</span></div><</if>>
</div><!-- .girl -->
</div><!-- .girl-wrap -->
<</for>>
</div><!-- .girls -->
/* ---- Навигация ---- */
<<include 'Navigation'>>$bg
/* если сегодняшний квест выполнен */
<<if $q.day == $day>>
<<say 'Computer'>>Today's quest is complete.<</say>>
/* если сегодняшний (активный) квест не выполнен */
<<else>>
/* подключаем функционал сегодняшнего квеста */
<<include `'Quest-' + $q.active.type`>>
<</if>>
/* ---- Навигация ---- */
<<include 'Navigation'>><table class="inventory-modal">
<tr>
<td class="img"><img src="ui/attention.jpg"></td>
<td class="params">
<div class="param first">
<span class="name">You don’t have enough chemicals to craft this item!</span>
</div>
<div class="param">
<span class="name">Crafting cost:</span>
<nobr>$i[_item].chemicals chemical<<if $i[_item].chemicals != 1>>s<</if>></nobr>
</div>
<div class="param last">
<span class="name">You Have:</span>
<nobr>$chemicals chemical<<if $chemicals != 1>>s<</if>></nobr>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<div class="description">
<div class="name">Recommendation: </div>
• Keep completing quests or destroy some supplies to get more chemicals.
<br>
• Use the Patreon cheat code to gain more chemicals
<img src="ui/patreon-min.svg" style="display: inline-block; width: 12px; height: 12px;">.
</div>
</td>
</tr>
</table>
<table class="modal">
<tr>
<td class="img"><img src="ui/attention.jpg"></td>
<td class="params">
<p>Item crafting is currently unavailable.
Please wait for a slot to become free to craft a new item.</p>
<<if $t.craftingSlots == 3>>
<hr>
<p>You can use the Patreon subscriber cheat code to get more slots
<img src="ui/patreon-min.svg" style="display: inline-block; width: 12px; height: 12px;"></p>
<</if>>
</td>
</tr>
</table>
aboutChemicalSynthesizer<table class="inventory-modal start-crafting">
<tr>
<td class="img">
<img @src="$i[_item].img">
</td>
<td class="params">
<div class="param first">
<span class="name">$i[_item].title</span>
</div>
<div class="param">
<span class="name">In your inventory:</span>
<nobr>$i[_item].count item<<if $i[_item].count != 1>>s<</if>></nobr>
</div>
<div class="param">
<span class="name">Crafting cost:</span>
<<if $uniqueItems.includes(_item)>>
<nobr>Cannot be crafted</nobr>
<<else>>
<nobr>$i[_item].chemicals chemical<<if $i[_item].chemicals != 1>>s<</if>></nobr>
<</if>>
</div>
<div class="param last">
<span class="name">Crafting time:</span>
<<if $uniqueItems.includes(_item)>>
<nobr>Cannot be crafted</nobr>
<<else>>
<nobr>$i[_item].days day<<if $i[_item].days != 1>>s<</if>></nobr>
<</if>>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<div class="description">
<div class="name"><center>Are you sure you want to craft this item?</center></div>
<div class="buttons">
<<link 'Yes' `passage()`>>
<<set $chemicals -= $i[_item].chemicals; >>
<<set _craft = {item: _item, title: $i[_item].title, day: $day + $i[_item].days}; >>
<<run $crafting.push(_craft); >>
<<run Dialog.close(); >>
<</link>>
<<link 'No'>>
<<run Dialog.close();>>
<</link>>
</div><!-- .buttons -->
</div><!-- .description -->
</td>
</tr>
</table>
aboutChemicalExtractor<table class="inventory-modal start-crafting">
<tr>
<td class="img"><img @src="$i[_item].img"></td>
<td class="params">
<div class="param first">
<span class="name">$i[_item].title</span>
</div>
<div class="param">
<span class="name">In your inventory:</span>
<nobr>$i[_item].count item<<if $i[_item].count != 1>>s<</if>></nobr>
</div>
<div class="param last">
<span class="name">Destroy to extract:</span>
<<if $uniqueItems.includes(_item)>>
<nobr>Cannot be destroyed</nobr>
<<else>>
<nobr>$i[_item].chemicals chemical<<if $i[_item].chemicals != 1>>s<</if>></nobr>
<</if>>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<div class="description">
<div class="name"><center>Are you sure you want to destroy this item?</center></div>
<div class="buttons">
<<link 'Yes' `passage()`>>
<<set
$chemicals += $i[_item].chemicals;
$i[_item].count --;
$destroyItemTitle = 'Item «' + $i[_item].title + '» destroyed.';
$destroyItemText = 'You received chemicals: ' + $i[_item].chemicals + '. ';
$destroyItemText += 'Now at your disposal: $chemicals';
>>
<<if $chemicals == 1>>
<<set $destroyItemText += ' chemical.'; >>
<<else>>
<<set $destroyItemText += ' chemicals.'; >>
<</if>>
<<run Dialog.close(); >>
<</link>>
<<link 'No'>>
<<run Dialog.close();>>
<</link>>
</div><!-- .buttons -->
</div><!-- .description -->
</td>
</tr>
</table>
<table class="modal">
<tr>
<td class="img"><img src="ui/aboutThirst.jpg"></td>
<td class="text">
<p>Every night, the girls' thirst level increases. Thirst can also rise during certain daily tasks. If a girl's thirst reaches 50%, she will start losing health. Distribute supplies among the girls in a timely manner to keep their thirst levels under control.</p>
</td>
</tr>
</table>$bg
/*
<<can>>
<center>The host is reverting to its original form:</center>
<div class="girl-transformed" style="margin: 10px 0;">
<div class="girl">
<div class="photo"><img @src="$p[$girlUpgrade].photo"></div>
<div class="name"><span><<=$p[$girlUpgrade].name>></span></div>
</div>
<div class="arrow"><img src="ui/arrows.png"></div>
<div class="girl volunteer">
<div class="photo"><img @src="$volunteers[$host].photo"></div>
<div class="name"><span><<=$volunteers[$host].name>></span></div>
</div>
</div><!-- .host-transform -->
<center>The parasite is enhancing the host's skills:</center>
<</can>>
*/
/* обязательно удаляем - используется только для .girl-transformed
<<unset $girlUpgrade>> */
<<can>>
<center>The host is reverting to its original form. The parasite is enhancing the host's skills:</center>
<</can>>
<<set _scena = random(1,5);>>
/* показываем видео */
<<video `'video/Parasites/' + $host + '-' + _scena + '.mp4'`>>
<<can>>
<center>The host's skills have increased.</center>
<</can>>
<div class="links">
<<link 'Return' 'Upgrade-Skills'>><</link>>
</div>/* если все девушки wasted - проигрыш */
<<if $wasted.length == 4>>
<<set $t.sidebar = 0;>>
<div class="links"><<link 'Next' 'Lose-Game'>><</link>></div>
/* если есть не wasted девушки - показываем навигацию */
<<else>>
<<can 'Navigation:'>>
<div class="links links-navigation" style="margin: 0;">
<<link 'Check Status<div>(Main Room)</div>' 'Main-Room'>><</link>>
<<link 'Distribute Supplies<div>(Food, Water, Medkits)</div>' 'Distribute-Supplies'>><</link>>
<<link 'Create Supplies<div>(Chemical Synthesizer)</div>' 'Create-Supplies'>><</link>>
<<link 'Extract Chemicals<div>(Chemical Extractor)</div>' 'Extract-Chemicals'>><</link>>
<<link 'Boost Parasitism<div>(Sexual Imaginarium)</div>' 'Boost-Parasitism'>><</link>>
<<link 'Upgrade Skills<div>(Skill Matrix)</div>' 'Upgrade-Skills'>><</link>>
<<link 'Leave the Shelter<div>(Dangerous Locations)</div>' 'Leave-Shelter'>><</link>>
<<link 'Get More Stuff<div>(Strange Pyramids)</div>' 'Strange-Pyramids'>><</link>>
</div><!-- .links .links-navigation -->
<div class="links links-navigation" style="margin: 0;">
<<link 'Make Decision<div>(Daily Task)</div>' 'Make-Decision'>><</link>>
<<link 'End the Day<div>(Start New Day)</div>'>>
/* если сегодняшний квест не выполнен */
<<if $q.day != $day>>
<<run Dialog.create("No decision made").wikiPassage("errorNoDecisionMade").open();>>
/* если квест выполнен */
<<else>>
/* увеличиваем номер дня */
<<set $day++;>>
/* удаляем выбывших девушек из посл-сти отображаемых секс-сцен */
<<run $sexOrder.deleteAll($wasted);>>
/* если игра закончилась, переходим в финальную сцену */
<<if $day == $dayLast>>
<<set $t.sidebar = 0; >> /* отключаем сайдбар */
<<goto 'Win-Game'>> /* переходим в финал */
/* показываем секс-сцену на каждый 4-й день (если еще остались) */
<<elseif $day % 4 === 0 && $sexOrder.length > 0>>
<<set $sexGirl = $sexOrder.shift();>> /* выбираем девушку для показа секс-сцены */
<<set $t.sidebar = 0; >> /* отключаем сайдбар */
<<set $p[$sexGirl].video++; >> /* увеличиваем кол-во разбл-нных роликов */
<<goto 'Girls-Sex-Start'>> /* переходим в пассаж с началом секса */
/* переходим в новый день */
<<else>>
<<goto 'New-Day'>>
<</if>>
<</if>>
<</link>>
</div><!-- .links .links-navigation -->
<</can>>
<</if>>
$bg
/*
Должны быть переданы из предыдущего пассажа:
$girl (имя девушки)
$video (номер видеоролика)
$sexPosition = 1; (всегда нужно передавать 1 - номер секс-позы, с которой начнется показ)
$progressBar = 0; (всегда нужно передавать 0 - прогресс показов видеороликов)
*/
<div class="sex-process">
/* определяем финальную сцену */
<<set _finalScene = $p[$girl].sex[$video-1];>>
/* показываем видео */
<<video `'video/' +$girl+ '/' +$girl+ '-' +$video+ '-' +$sexPosition+ '.mp4'`>>
/* если $progressBar больше 100% - делаем равным 100% */
<<if $progressBar > 100>><<set $progressBar = 100;>><</if>>
/* взаимодействие с секс-позами - не завершено */
<<if $progressBar != -1>>
<<can>>
/* линия прогресса */
<div class="progress-bar">
<div class="text">Parasite Arousal: <<=$progressBar>>%</div>
<div class="line" @style="'width: ' + $progressBar + '%;'"></div>
</div>
/* ссылки на позы */
<div class="sex-positions">
<<for _i = 1; _i < _finalScene; _i++>>
<<capture _i>>
<<link `'Position '+_i` `passage()`>>
<<set $sexPosition = _i; >>
<<set $progressBar += 34; >>
/* <<set $progressBar = 100; >> ДЛЯ ТЕСТОВ - УДАЛИТЬ!!!!!!!!!!!!!! */
<</link>>
<</capture>>
<</for>>
</div><!-- .sex-positions .positions -->
/* ссылка на кончить, если $progressBar = 100% */
<div class="sex-positions cum">
<<if $progressBar == 100>>
<<link 'Cum 💦' `passage()`>>
<<set $sexPosition = _finalScene; >> /* ссылка на финальную позу - кам */
<<set $progressBar = -1; >> /* взаимодействие с плеером закончено */
<<set $imaginariumLeft--; >> /* уменьшает заряд Воображариума */
<<set $p[$girl].parasitism += 2; >> /* повышаем паразитизм */
<</link>>
<</if>>
</div><!-- .sex-positions .cum -->
<</can>>
/* взаимодействие со сценами - уже завершено */
<<elseif $progressBar == -1 >>
<<say 'Computer'>>
<<=$girl;>>'s parasitism boost has been successfully completed:
<ul>
<li><<=$girl;>>'s parasitism increased: +2 points.</li>
<li><<=$girl;>>'s current parasitism: <<=$p[$girl].parasitism;>> points.</li>
</ul>
<</say>>
<div class="links">
<<link 'Return' 'Boost-Parasitism'>><</link>>
</div>
<</if>>
</div><!-- .sex-process -->
<table class="modal">
<tr>
<td class="img"><img src="ui/attention.jpg"></td>
<td class="text">
<p>This sex scene is temporarily unavailable. New sex scenes will be unlocked as you progress through the game.</p>
</td>
</tr>
</table><<widget "video">>
<<set
/* адрес видеофайла */
_src = _args[0];
/* громкость звука */
_vol = 'this.volume = ' + $volume;
/* удаляем адрес видео из параметров видео */
_params = _args.slice(1);
/* html-код видео */
_video = '';
>>
/* параметры и настройки видео */
<<if _params.length > 0>>
<<set _params = _params.join(" ");>> /* параметры заданы вручную */
<<else>>
<<set _params = "autoplay loop controls";>> /* параметры поумолчанию */
<</if>>
/* собираем html-код видео */
<<set _video += '<video ' + _params + ' onloadstart="' + _vol + '">';>>
<<set _video += '<source src="' + _src + '" type="video/mp4">';>>
<<set _video += '</video>';>>
/* выводим html-код видео */
<div class="video-widget">_video</div>
<</widget>><div class="config">
/* save */
<<link "<img src='ui/save-icon.png'>">>
<<script>>UI.saves();<</script>>
<</link>>
/* restart */
<<link "<img src='ui/reload-icon.png'>">>
<<script>>UI.restart();<</script>>
<</link>>
/* fullscreen */
<<link "<img src='ui/fullscreen-icon.png'>">>
<<script>>Fullscreen.toggle();<</script>>
<</link>>
/* volume */
<style>
#volume-change {text-align: center;}
#volume-change BUTTON {border-radius: 50%; box-sizing: border-box;}
#volume-change BUTTON {width: 34px; height: 34px; line-height: 34px;}
#volume-change BUTTON {padding: 0; font-family: Arial;}
#volume-apply {text-align: center; margin-top: 10px;}
#volume-apply BUTTON {padding: 8px 12px; width: 135px; border-radius: 2px;}
#volume-temp {display: inline-block; width: 57px; font-size: 17px;}
</style>
<<link "<img src='ui/volume-icon.png'>">>
<<script>>
Dialog.setup("🔊 Volume Settings");
Dialog.wiki("
<<set _vol = $volume*100;>>
<div id='volume-change'>
<<button '-'>>
<<if _vol != 0>>
<<set _vol -= 5;>>
<<replace '#volume-temp'>>_vol%<</replace>>
<</if>>
<</button>>
<span id='volume-temp'>_vol%</span>
<<button '+'>>
<<if _vol != 100>>
<<set _vol += 5;>>
<<replace '#volume-temp'>>_vol%<</replace>>
<</if>>
<</button>>
</div><!-- #volume-change -->
<div id='volume-apply'>
<<button 'Apply'>>
<<set $volume = _vol/100;>>
<<script>>
jQuery('video').prop('volume', State.getVar('$volume'));
<</script>>
<<run Dialog.close()>>
<</button>>
</div><!-- #volume-apply -->
");
Dialog.open();
<</script>>
<</link>>
</div><!-- .config --><table class="modal">
<tr>
<td class="img"><img src="ui/attention.jpg"></td>
<td class="text">
<p>First, click the «+» button to change the parameter, then click the «Yes» button for the changes to take effect.</p>
</td>
</tr>
</table>aboutSexualImaginariumaboutSkillMatrix$bg
/* Подсчет голода, жажды и здоровья
_____________________________________________________ */
/* объект с персонажами, пострадавшими от голода или жажды */
<<set _girlsStatus = {}; >>
<<for _key, _value range $p>>
/* если потрачено - пропускаем */
<<if $wasted.includes(_key)>><<continue>><</if>>
/* добавляем девушку в объект статуса */
<<set _girlsStatus[_key] = [];>>
/* если голод больше 50% - повреждение */
<<if $p[_key].hunger >= 50>>
<<set $p[_key].health -= $damageHunger; >>
<<run _girlsStatus[_key].push('hunger');>>
<</if>>
/* если жажда больше 50% - повреждение */
<<if $p[_key].thirst >= 50>>
<<set $p[_key].health -= $damageThirst;>>
<<run _girlsStatus[_key].push('thirst');>>
<</if>>
/* если голод\жажда не уменьшили здоровье девушки, удаляем ее из об-та статуса */
<<if _girlsStatus[_key].length == 0 >><<run delete _girlsStatus[_key];>><</if>>
/* если здоровье равно 0% - потрачено */
<<if $p[_key].health <= 0>>
<<set $p[_key].health = 0;>>
<<run $wasted.pushUnique(_key);>>
<</if>>
/* увеличиваем голод и жажду (со второго дня) */
<<if $day !=1>>
<<set _upHunger = random(10, 20); _upThirst = random(10, 20); >>
<<set $p[_key].hunger += _upHunger; $p[_key].thirst += _upThirst; >>
<</if>>
/* если голод или жажда > 100% - выравниваем до 100% */
<<if $p[_key].hunger > 100>><<set $p[_key].hunger = 100;>><</if>>
<<if $p[_key].thirst > 100>><<set $p[_key].thirst = 100;>><</if>>
<</for>>
/* Настройка сегодняшнего квеста
_____________________________________________________ */
/* если невыполненные квесты еще остались */
<<if $q.tasks.length >0 >>
/* объявляем новый активный квест */
<<set $q.active = {};>>
/* получаем сегодняшний тип квеста и удаляем его из последовательности */
<<set $q.active.type = $q.tasks.shift();>>
/* получаем номер задачи */
<<if $day == 1 >>
/* указываем первый номер задачи для первого дня и удаляем 1-й номер */
<<set $q.active.taskNum = $q[$q.active.type].shift(); >>
<<else>>
/* получаем случайный номер задачи и удаляем его */
<<set $q.active.taskNum = $q[$q.active.type].pluck(); >>
<</if>>
/* добавляем настройки сегодняшнего квеста */
<<include `'_Quest-' + $q.active.type + '-' + $locationChosen`>>
<</if>>
/* Показываем номер дня, цитату и квест
_____________________________________________________ */
/* номер дня */
<div class="new-day-num">Day $day</div>
/* цитата дня */
<<can 'Quote of the Day:'>>
<div class="new-day-quote"><<include '_New-Day-Quotes'>></div>
<</can>>
/* выводим задачу сегодняшнего квеста */
<<img $q.active.taskImg>>
<<say 'Computer'>><<=$q.active.taskText;>><</say>>
/* Обработка крафта и вывод результа
_____________________________________________________ */
/* если крафтинг выполняется (существует массив $crafting) */
<<if $crafting>>
/* _craftingProgress- предметы еще крафтятся, _craftingDone - сегодня скрафтились */
<<set _craftingProgress = []; _craftingDone = []; >>
<<for _key, _value range $crafting>>
/* если предмет готов */
<<if _value.day == $day >>
<<set $i[_value.item].count++; >> /* добавляем предмет в инвентарь */
<<run _craftingDone.push(_value.item); >> /* добавялем предмет для отображения */
/* если предмет еще не готов */
<<else>>
<<run _craftingProgress.push($crafting[_key]);>> /* наполняем новый массив */
<</if>>
<</for>>
/* обновляем массив крафта удаляя предметы которые сегодня стали готовы */
<<set $crafting = _craftingProgress;>>
/* если массив крафта оказался пуст (все уже скрафтилось), удаляем его */
<<if $crafting.length == 0>><<run delete $crafting;>><</if>>
/* отображаем предметы, которые сегодня стали готовы */
<<if _craftingDone && _craftingDone.length > 0>>
<<can 'The following items have been successfully crafted:'>>
<div class="crafting-done-items">
<<for _key, _value range _craftingDone>>
<div class="item">
<img @src="$i[_value].img">
<span class="name"><nobr><<= $i[_value].title; >></nobr></span>
</div>
<</for>>
</div><!-- .crafting-done-items -->
<</can>>
<</if>>
<</if>>
/* Вывод изменинй голода, жажды, здоровья
_____________________________________________________ */
/* если есть изменения здоровья из-за голода или жажды - сообщаем об этом */
<<if Object.keys(_girlsStatus).length > 0>>
<div class="monitor girls-condition">
<div class="monitor-title">Changes in the Girls' Conditions:</div>
<div class="monitor-subtitle"></div>
<div class="monitor-data-wrap conditions">
<<for _key, _value range _girlsStatus>>
<div class="monitor-data condition">
<div class="photo"><img @src="$p[_key].photo"></div>
<div class="text">
<<if _value.length == 1>> /* или голод или жажда */
Due to _value, <<=$p[_key].name>> lost some health
<<if _value == 'thirst'>>(-<<=$damageThirst>>%).
<<else>>(-<<=$damageHunger>>%). <</if>>
Her health is now: <<=$p[_key].health>>%.
<<else>> /* и голод и жажда */
<<=$p[_key].name>> lost some health due to hunger
(-<<=$damageHunger>>% health) and thirst (-<<=$damageThirst>>% health).
Her health is now: <<=$p[_key].health>>%.
<</if>>
</div>
</div><!-- .monitor-data -->
<</for>>
</div><!-- .monitor-data-wrap -->
<div class="monitor-subtitle bottom">
If a character's hunger or thirst is greater than or equal to 50%, they will start losing health
daily. Make sure to feed and hydrate your characters before the end of the day.
</div>
</div><!-- .monitor -->
<</if>>
/* Отображение ссылки
_____________________________________________________ */
/* если все девушки wasted - проигрыш */
<<if $wasted.length == 4>>
<<set $t.sidebar = 0;>>
<div class="links"><<link 'Next' 'Lose-Game'>><</link>></div>
/* если есть не wasted девушки - переходим в Главную Комнат */
<<else>>
<div class="links"><<link 'Go to the Main Room' 'Main-Room'>><</link>></div>
<</if>>
/*<<run console.log($q);>>*/
<table class="modal">
<tr>
<td class="img"><img src="ui/attention.jpg"></td>
<td class="text">
<p>You cannot end this game day until you make a quest decision.</p>
<p>Click the «Make Decision» button to complete the quest, and then you can start a new game day.</p>
</td>
</tr>
</table>$bg
/* ---- Подсказка ---- */
/* если первый заход в интерфейс */
<<if typeof $aboutDistribute == "undefined">><<set $aboutDistribute = "show";>><</if>>
/* если нужно показать подсказку - отображаем */
<<if $aboutDistribute == "show">>
<div class="interface-hint-link hide">
<<link 'Click to hide this hint 🞬' `passage()`>>
<<set $aboutDistribute = "hide";>>
<</link>>
</div>
<<say 'Computer'>>
<ul>
<li>If a girl's Health drops to 0%, she will no longer be able to continue the experiment.</li>
<li>If a girl's Hunger reaches 50%, she will lose some Health each night.</li>
<li>If a girl's Thirst reaches 50%, she will lose some Health each night.</li>
<li>Click on the "Food", "Water", "Medkit" buttons to control the girls' condition.</li>
<li>There is no limit to the number of times "Food", "Water", and "Medkit" can be used per day.</li>
</ul>
<</say>>
/* если нужно скрыть подсказку - отображаем кнопку */
<<else>>
<div class="interface-hint-link">
<<link 'Click to see the hint 📋' `passage()`>>
<<set $aboutDistribute = "show";>>
<</link>>
</div>
<</if>>
<div class="girls supplies">
<<set _girls = Object.keys($p); >>
<<for _i = 0; _i < _girls.length; _i++>>
<<set _girl = _girls[_i]; >>
<div class="girl-wrap">
<div class="girl">
<img class="photo" @src="$p[_girl].photo">
<div class="name">$p[_girl].name</div>
<div class="params">
<div class="param">
<div class="title">Hunger: </div>
<div class="value">
<<set _hungerTag = _girl + '-hunger';>>
<<do tag _hungerTag>>$p[_girl].hunger<</do>>%
<<link 'i'>>
<<run Dialog.create("Hunger").wikiPassage("aboutHunger").open();>>
<</link>>
</div>
</div>
<div class="param">
<div class="title">Thirst: </div>
<div class="value">
<<set _thirstTag = _girl + '-thirst';>>
<<do tag _thirstTag>>$p[_girl].thirst<</do>>%
<<link 'i'>>
<<run Dialog.create("Thirst").wikiPassage("aboutThirst").open();>>
<</link>>
</div>
</div>
<div class="param">
<div class="title">Health: </div>
<div class="value">
<<set _healthTag = _girl + '-health';>>
<<do tag _healthTag>>$p[_girl].health<</do>>%
<<link 'i'>>
<<run Dialog.create("Health").wikiPassage("aboutHealth").open();>>
<</link>>
</div>
</div>
</div><!-- .params -->
<div class="params distribute">
<span>Use supplies:</span>
<div class="items-wrap">
<div class="item food">
<div class="count"><<do tag "count-food">>$i.Food.count<</do>></div>
<img @src="$i.Food.img">
<<capture _girl, _hungerTag>>
<<link ''>>
/* если нет еды в инвинтаре */
<<if $i.Food.count <= 0 >>
<<set _img = $i.Food.img>>
<<run Dialog.create("Not Enough Supplies"); >>
<<run Dialog.wikiPassage("errorNotEnoughSupplies").open();>>
<</if>>
/* если есть голод и еда */
<<if $p[_girl].hunger > 0 && $i.Food.count > 0 >>
<<set $p[_girl].hunger -= $useFood; >>
<<if $p[_girl].hunger < 0>><<set $p[_girl].hunger = 0; >><</if>>
<<set $i.Food.count--; >>
<<redo _hungerTag>> <<redo "count-food">>
<</if>>
<</link>>
<</capture>>
</div>
<div class="item water">
<div class="count"><<do tag "count-water">>$i.Water.count<</do>></div>
<img @src="$i.Water.img">
<<capture _girl, _thirstTag>>
<<link ''>>
/* если нет воды в инвинтаре */
<<if $i.Water.count <= 0 >>
<<set _img = $i.Water.img>>
<<run Dialog.create("Not Enough Supplies"); >>
<<run Dialog.wikiPassage("errorNotEnoughSupplies").open();>>
<</if>>
/* если есть жажда и вода */
<<if $p[_girl].thirst > 0 && $i.Water.count > 0 >>
<<set $p[_girl].thirst -= $useWater; >>
<<if $p[_girl].thirst < 0>><<set $p[_girl].thirst = 0; >><</if>>
<<set $i.Water.count--; >>
<<redo _thirstTag>> <<redo "count-water">>
<</if>>
<</link>>
<</capture>>
</div>
<div class="item medkit">
<div class="count"><<do tag "count-medkit">>$i.Medkit.count<</do>></div>
<img @src="$i.Medkit.img">
<<capture _girl, _healthTag>>
<<link ''>>
/* если нет аптечки в инвинтаре */
<<if $i.Medkit.count <= 0 >>
<<set _img = $i.Medkit.img>>
<<run Dialog.create("Not Enough Supplies"); >>
<<run Dialog.wikiPassage("errorNotEnoughSupplies").open();>>
<</if>>
/* если недостаточно ХП и есть аптечка */
<<if $p[_girl].health < 100 && $i.Medkit.count > 0 >>
<<set $p[_girl].health += $useMedkit; >>
<<if $p[_girl].health > 100>><<set $p[_girl].health = 100; >><</if>>
<<set $i.Medkit.count--; >>
<<redo _healthTag>> <<redo "count-medkit">>
<</if>>
<</link>>
<</capture>>
</div>
</div><!-- .items-wrap -->
</div><!-- .params -->
/* если девушка выбыла */
<<if $wasted.includes(_girl)>><div class="wasted"><span>WASTED</span></div><</if>>
</div><!-- .girl -->
</div><!-- .girl-wrap -->
<</for>>
</div><!-- .girls -->
/* ---- Навигация ---- */
<<include 'Navigation'>><table class="modal">
<tr>
<td class="img"><img @src="_img"></td>
<td class="text">
<p>You don't have supplies of this type in your inventory. Use the Chemical Synthesizer to craft the necessary supplies.</p>
</td>
</tr>
</table>/* подготовка изображений */
<<set
$q.active.taskImg = 'img/survivors/Survivors-Task-' +random(1,10)+'.jpg'; /* задача */
$q.active.winImg = 'img/survivors/Survivors-Win-' +random(1,6)+'.jpg'; /* победа */
$q.active.lossImg = 'img/survivors/Survivors-Loss-' +random(1,5)+'.jpg'; /* проигрыш */
>>
<<switch $q.active.taskNum>>
<<case 1>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors. They need advice on how to handle the situation: <p><i>«One of our team members is acting strange. They’re sweating heavily, muttering nonsense, and have been scratching their arms raw. We’re worried they might be infected. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Isolate the person immediately, monitor their condition from a safe distance, and prepare for quarantine if symptoms worsen.",
2: "Keep the person with the group but observe them closely to prevent panic or feelings of isolation.",
3: "Provide the person with extra food and water, continuing to monitor his/her condition, hoping this will help him/her recover."
};
$q.active.results = {
1: "The survivors follow your advice, isolating the person safely. After a few hours, the symptoms subside - it turns out the person was experiencing dehydration and stress, not infection. Grateful for your logical approach, they send the promised chemicals.",
2: "The survivors keep the person with the group. Unfortunately, the person’s symptoms escalate, and they lash out violently, injuring another team member. Now they’re managing two crises instead of one, and they’ve lost faith in your guidance.",
3: "The survivors give the person food and water, but this delays isolation. The symptoms worsen, and by the time they realize the danger, the person becomes aggressive. Chaos ensues, and the group loses crucial supplies while trying to restrain him."
};
$q.active.correct = 1;
>>
<<case 2>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«We hear strange noises coming from the air vents, like scratching and low growls. We’re worried something might be crawling through the ducts. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Investigate the air vents immediately with flashlights to identify what’s making the noise.",
2: "Seal off all air vents in your room using available materials and stay alert for any further noises.",
3: "Ignore the noises for now and focus on conserving energy and supplies."
};
$q.active.results = {
1: "While investigating, one of the survivors gets too close to the vent. A mutated creature lunges out, injuring them severely before being driven off. The group loses valuable medical supplies and resents your risky advice.",
2: "The survivors block the air vents, preventing anything from entering their room. Hours later, they hear loud thuds and growls outside the vents, confirming their caution was wise. Relieved and thankful, they send you the promised chemicals.",
3: "The survivors choose to ignore the noises. By nightfall, the creature breaches their room through the vents, attacking them while they’re unprepared. They barely survive but lose supplies in the chaos and no longer trust your advice."
};
$q.active.correct = 2;
>>
<<case 3>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«We’re running low on clean water, but we found a storage container with a strange greenish tint to the liquid inside. It doesn’t smell too bad, but we’re not sure if it’s safe to drink. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Mix the water with any food or drink you have to dilute potential contaminants.",
2: "Drink the water sparingly - it’s better to stay hydrated, even if the water is questionable.",
3: "Boil the water for at least 10 minutes and then let it cool before drinking it."
};
$q.active.results = {
1: "Mixing the water with food or drink doesn’t eliminate the contamination. Within hours, two team members fall ill with severe stomach pains, weakening their group. They blame you for poor guidance.",
2: "Drinking the water sparingly proves disastrous. A hidden parasite in the liquid infects one of their members, leading to rapid deterioration. The group suffers heavy losses and no longer trusts your advice.",
3: "The survivors boil the water thoroughly, killing any harmful bacteria or parasites. They safely replenish their water supply and express their gratitude by sending you the promised chemicals."
};
$q.active.correct = 3;
>>
<<case 4>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«Our generator is running low on fuel, but we need to keep it operational to maintain lights and ventilation. We’ve found some flammable cleaning chemicals in storage - should we use them as fuel?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Do not use the cleaning chemicals - they could damage the generator or cause an explosion. Instead, ration the remaining fuel by running the generator only when absolutely necessary.",
2: "Mix the cleaning chemicals with the remaining fuel to stretch its use. This should keep the generator running longer.",
3: "Pour the cleaning chemicals into the generator - they’re flammable, so they should work as a substitute for fuel."
};
$q.active.results = {
1: "The survivors carefully ration the fuel, keeping the generator functional during critical moments. This buys them enough time for an unexpected supply drop. They thank you for your practical advice and send the promised chemicals.",
2: "Mixing the cleaning chemicals with the fuel clogs the generator’s system. It malfunctions, leaving them without power. They blame you for worsening their situation.",
3: "Pouring the cleaning chemicals into the generator results in a small explosion, damaging the generator and injuring a survivor. The group is furious with your reckless advice and cuts off communication."
};
$q.active.correct = 1;
>>
<<case 5>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«We found a small stash of canned food, but it’s past its expiration date by several years. The cans look intact, but we’re not sure if it’s safe to eat. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Discard the food immediately - expired cans are too risky to consume.",
2: "Inspect the cans for dents, swelling, or rust. If they look fine and don’t smell off when opened, the food is likely safe to eat.",
3: "Cook the food thoroughly; heating it will kill any bacteria and make it safe to eat, even if the cans look suspicious."
};
$q.active.results = {
1: "The survivors discard the food and end up going hungry. They regret throwing away a potentially safe resource and lose trust in your overly cautious advice.",
2: "The survivors carefully inspect the cans and find most of them are in good condition. After testing a small portion cautiously, they confirm the food is safe to eat. They’re relieved and send you the promised chemicals.",
3: "Cooking doesn’t remove toxins from spoiled food. One of the survivors gets food poisoning, weakening their group. They blame your reckless suggestion for their troubles."
};
$q.active.correct = 2;
>>
<<case 6>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«We’ve blocked the main door to our room with heavy furniture, but we’ve noticed scratch marks appearing on the outside. It’s only a matter of time before something breaks through. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Abandon the barricade and move to another room that seems more secure.",
2: "Try making loud noises to scare off whatever is outside - this might buy you some time.",
3: "Reinforce the barricade with additional layers of material and prepare makeshift weapons in case of a breach."
};
$q.active.results = {
1: "While moving to another room, the survivors are ambushed by the creature lurking nearby. It injures one of them and forces them to leave some supplies behind. They regret leaving their barricade and blame your advice.",
2: "The loud noises attract not only the creature outside but others nearby. The group is overwhelmed by the sudden threat and loses valuable resources while fighting off the attackers. They no longer trust your advice.",
3: "The survivors reinforce their barricade, creating multiple layers of defense. When the creature finally attacks, it’s unable to break through, and they fend it off successfully. Grateful for your life-saving advice, they send the promised chemicals."
};
$q.active.correct = 3;
>>
<<case 7>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«One of our team members accidentally cut their hand on a broken piece of glass. The wound is deep, and we’re worried about infection, but we don’t have any proper medical supplies. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Clean the wound with clean water, cover it with a sterile cloth or the cleanest material available, and keep it elevated to reduce bleeding.",
2: "Cauterize the wound with a heated metal object to seal it and prevent infection.",
3: "Wrap the wound tightly with any available cloth to stop the bleeding, without worrying about cleanliness."
};
$q.active.results = {
1: "The survivors clean and dress the wound properly, preventing infection. The injured member begins to heal, and the group is grateful for your sound advice. They send the promised chemicals as thanks.",
2: "The cauterization causes severe pain and further tissue damage, leaving the survivor in worse condition. The group wastes valuable time trying to manage the additional complications and is furious with your advice.",
3: "The tightly wrapped, unclean dressing leads to a severe infection. The survivor’s condition worsens rapidly, and the group blames you for not prioritizing hygiene in your guidance."
};
$q.active.correct = 1;
>>
<<case 8>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«We found a strange device in a storage room. It’s labeled as ‘experimental’ and has a keypad, wires, and a blinking light. We don’t know what it does, but it might be useful. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Carefully inspect the device for instructions or labels to understand its purpose before interacting with it.",
2: "Leave the device untouched for now. Focus on survival and don’t risk triggering something dangerous.",
3: "Attempt to power it on and test its functions - it might be something helpful, like a tool or weapon."
};
$q.active.results = {
1: "While inspecting the device, they accidentally disturb the wiring, causing it to emit harmful fumes. One member becomes sick, and the group loses trust in your advice.",
2: "The survivors decide to leave the device alone, prioritizing safety. Later, they find a manual explaining that it’s an unstable prototype. Relieved by their caution, they thank you and send the promised chemicals.",
3: "Turning on the device activates a loud alarm, which attracts nearby creatures. The group is forced to flee and loses valuable supplies in the chaos. They no longer trust your guidance."
};
$q.active.correct = 2;
>>
<<case 9>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«One of our team members is panicking - he is refusing to eat, crying uncontrollably, and saying we’re all doomed. It’s making everyone else anxious. How can we calm him down?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Isolate him in another room to prevent his panic from spreading to the rest of the group.",
2: "Confront him firmly, reminding him that his behavior is endangering the group and that he needs to stop immediately.",
3: "Speak to the panicked person calmly, reassure him that he is safe, and encourage him to focus on small, manageable tasks to distract his mind."
};
$q.active.results = {
1: "Isolating the panicked man makes him feel abandoned, worsening his mental state. His cries escalate, causing guilt and stress for the rest of the group. They question your suggestion.",
2: "The firm confrontation backfires, leading to a heated argument. He becomes more distraught, and the group’s morale drops significantly. They blame you for escalating the conflict.",
3: "The survivors take a compassionate approach, helping the panicked man calm down. Assigning small tasks helps him regain focus, and the group atmosphere improves. They’re grateful for your advice and send the promised chemicals."
};
$q.active.correct = 3;
>>
<<case 10>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«We’ve found a locked room with a keypad, but none of us can remember the code. We think there might be supplies inside. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Look for clues in the surrounding area - there might be hints to the code nearby, like on a note or in a logbook.",
2: "Try to force the door open with available tools, even if it risks damaging the room and the supplies inside.",
3: "Leave the room alone for now; the risks of trying to open it might outweigh the potential benefits."
};
$q.active.results = {
1: "The survivors search the area carefully and find a note with a partial code. After some trial and error, they manage to open the door without damaging anything. Inside, they find a stash of useful supplies. They’re grateful and send the promised chemicals.",
2: "The survivors try to force the door open, but in doing so, they trigger a trap that sets off an alarm and damages the supplies inside. They’re left without the resources they hoped for and blame you for the reckless suggestion.",
3: "The survivors decide to leave the room, but later they find that another group has already discovered it and taken all the supplies. They regret not taking a chance and no longer trust your advice."
};
$q.active.correct = 1;
>>
<<case 11>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«The air in our room has started to smell strange - like rotting meat or chemicals. We’re worried it might be toxic. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Evacuate the room immediately and find another space to shelter, no matter the risks of moving through the facility.",
2: "Ventilate the room by opening a small, controlled gap in the door or vent, and stay low to the ground in case the smell is caused by heavy gases.",
3: "Ignore the smell for now - it might just be coming from nearby storage or pipes."
};
$q.active.results = {
1: "While evacuating, the group is ambushed by mutated creatures in the corridors. They lose one of their members and vital supplies, regretting the risky decision. They no longer trust your advice.",
2: "The survivors carefully ventilate the room, improving air quality without exposing themselves to danger. They later discover the smell was coming from a decayed vent filter, which they replace safely. Relieved and grateful, they send the promised chemicals.",
3: "Ignoring the smell proves disastrous as it turns out to be toxic gas leaking into their room. Several members fall ill, and they blame your negligence for their worsening condition."
};
$q.active.correct = 2;
>>
<<case 12>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«We’ve been hearing faint tapping sounds coming from the walls. It happens at random times, and we can’t tell if it’s something dangerous or someone trying to contact us. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Ignore the sounds - they might just be the facility settling or pipes shifting.",
2: "Start banging loudly on the walls to scare off anything that might be causing the noise.",
3: "Tap back in a simple pattern, like three short taps, and listen carefully for any response."
};
$q.active.results = {
1: "Ignoring the sounds results in missed opportunities to communicate with another group. Later, the survivors find signs that someone was nearby but has since moved on. They regret their inaction.",
2: "Banging on the walls creates a loud disturbance, drawing the attention of mutated creatures. The group is forced into a dangerous fight and loses supplies. They blame you for the reckless suggestion.",
3: "The survivors tap back and, after a pause, receive a faint but deliberate response. They eventually establish contact with another group of survivors, who agree to share resources. Grateful for your advice, they send the promised chemicals."
};
$q.active.correct = 3;
>>
<<case 13>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«The lights in our room have started flickering, and we’re worried the power might go out completely. We don’t have a backup light source. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Turn off all non-essential electronics and lights to conserve power and reduce strain on the system.",
2: "Try to fix the wiring immediately, even if you don’t have the proper tools or knowledge.",
3: "Continue using the lights as normal. If the power fails, you’ll deal with it then."
};
$q.active.results = {
1: "The survivors reduce their power usage, stabilizing the system. This extends the functionality of their lights and gives them time to prepare alternative solutions. They thank you and send the promised chemicals.",
2: "While trying to fix the wiring, they accidentally cause a short circuit that knocks out the power entirely. Now left in darkness, they resent your advice.",
3: "The survivors continue using the lights until the power fails completely. Without preparation, they are left vulnerable and scared in the dark. They regret following your advice."
};
$q.active.correct = 1;
>>
<<case 14>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«We’ve been rationing food, but some of us are feeling weak and lightheaded. One of our members thinks we should eat a big meal to recover our strength, but it will deplete our supplies quickly. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Eat a large meal now to restore everyone’s strength and make better decisions moving forward.",
2: "Stick to small, consistent rations to ensure the supplies last longer and drink plenty of water to manage hunger.",
3: "Take turns skipping meals to stretch the rations, even if it means some will go without food for a day."
};
$q.active.results = {
1: "The group consumes a large meal, but their supplies dwindle dangerously fast. Their immediate energy boost fades, leaving them anxious about running out of food. They regret following your suggestion. ",
2: "The survivors stick to rationing and manage their hunger carefully. Their strength returns gradually, and they feel better knowing they have enough food to last. Grateful for your advice, they send the promised chemicals.",
3: "Skipping meals weakens some group members to the point of illness, and tensions rise among them. They lose trust in your guidance."
};
$q.active.correct = 2;
>>
<<case 15>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«One of our air vents is making strange noises, like something is moving inside. We’re not sure if it’s a small creature or something worse. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Shine a light into the vent and try to see what’s causing the noise.",
2: "Ignore it for now - if it hasn’t come out yet, it might not be a real threat.",
3: "Seal the vent immediately and block any other openings to prevent whatever is inside from getting out."
};
$q.active.results = {
1: "While investigating the vent, one survivor shines a flashlight into the opening. A small, aggressive parasite reacts to the light, emerging and injuring them before it’s contained. The group blames you for not suggesting a safer approach.",
2: "Ignoring the vent allows a creature to escape and attack the group unexpectedly. They are caught off guard and lose some supplies during the chaos. They regret following your suggestion.",
3: "The survivors seal the vent, preventing anything from escaping. Later, they discover signs that a small parasitic creature was inside, and your advice likely saved them. They send the promised chemicals in gratitude."
};
$q.active.correct = 3;
>>
<<case 16>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«We’ve found a strange liquid dripping from a pipe in the ceiling. It’s glowing faintly in the dark, and we’re not sure if it’s safe. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Avoid touching the liquid and use a container to collect a sample for later analysis.",
2: "Try to clean up the liquid with rags or anything absorbent to stop it from spreading.",
3: "Ignore the liquid - it might just be harmless residue from the facility's systems."
};
$q.active.results = {
1: "The survivors collect a sample safely without coming into contact with the liquid. Later, they identify it as a mildly toxic compound. Your advice prevents exposure, and they thank you with the promised chemicals.",
2: "Cleaning the liquid causes direct contact, leading to chemical burns for one of the survivors. They waste resources treating the injury and blame you for the reckless approach.",
3: "Ignoring the liquid allows it to pool and emit harmful fumes. Several survivors feel nauseous, and they regret not taking immediate precautions."
};
$q.active.correct = 1;
>>
<<case 17>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«We’ve found an old security drone in the corner of the room. It looks inactive, but we’re afraid it might suddenly power on and attack us. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Attempt to dismantle the drone to ensure it can’t reactivate unexpectedly.",
2: "Carefully check for any signs of active power, like blinking lights or a faint hum, and keep a safe distance while observing.",
3: "Ignore the drone - it’s probably dead and not worth the risk of interacting with it."
};
$q.active.results = {
1: "While dismantling the drone, it unexpectedly powers on and activates a defensive mode. One of the survivors is injured before they can disable it. They blame you for suggesting such a risky move.",
2: "The survivors observe from a distance and notice faint blinking lights indicating low power. They move the drone into a sealed room for safety. Relieved, they send the promised chemicals in thanks.",
3: "Ignoring the drone proves dangerous when it powers on later and begins scanning the room. Its movements terrify the group, forcing them to flee to another location, leaving supplies behind."
};
$q.active.correct = 2;
>>
<<case 18>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«One of our water containers has developed a small leak. We don’t have much water left, and we’re afraid of losing more. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Use tape or fabric to patch the leak temporarily and continue using the container.",
2: "Transfer the water into other containers, even if it means using ones that aren’t completely clean.",
3: "Place the leaking container inside a larger, intact container to catch any water that escapes."
};
$q.active.results = {
1: "The improvised patch fails after a short time, and they lose more water than they anticipated. They regret not taking a safer approach.",
2: "Transferring the water into unclean containers contaminates it, causing one survivor to fall ill after drinking. They blame you for the risky suggestion.",
3: "The survivors contain the leak effectively and save the water without contaminating it. Your practical advice works perfectly, and they send the promised chemicals in gratitude."
};
$q.active.correct = 3;
>>
<<case 19>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«We’ve started hearing faint static on the radio. It might be a signal from someone else, but it’s hard to make out. What should we do?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Adjust the frequency slowly and carefully, keeping track of the settings to see if the signal gets stronger.",
2: "Broadcast a loud message on the current frequency, hoping someone will respond.",
3: "Ignore the static - it’s likely just interference and not worth the effort to investigate."
};
$q.active.results = {
1: "The survivors carefully adjust the radio and manage to pick up a clearer signal. They establish contact with another group that offers mutual assistance. Grateful for your guidance, they send the promised chemicals.",
2: "Broadcasting a loud message draws unwanted attention. Mutated creatures in the area seem to react to the noise, forcing the group into a defensive position. They lose trust in your advice.",
3: "Ignoring the static causes the survivors to miss an opportunity to connect with others. Later, they discover that the signal was coming from a nearby group that has since moved on. They regret their inaction."
};
$q.active.correct = 1;
>>
<<case 20>>
<<set
$q.active.taskText = "We’ve received a message from another group of survivors: <p><i>«We’ve found a box with a biohazard symbol on it. It’s locked, but it feels heavy, like there’s something important inside. Should we try to open it?»</i></p> If we give them the right advice, they promise to send us some chemicals from their supplies.";
$q.active.choices = {
1: "Carefully open the box in a sealed area while wearing protective gear.",
2: "Leave the box untouched - it could contain dangerous materials or pathogens.",
3: "Force the box open immediately to see if it contains something useful."
};
$q.active.results = {
1: "While trying to open the box, the group unknowingly exposes themselves to harmful spores. Several members fall ill, and they blame you for not advising against it.",
2: "The survivors leave the box untouched and later find a warning label indicating it contains hazardous biological samples. Your advice likely prevented a disaster. They send the promised chemicals, grateful for your caution.",
3: "Forcing the box open releases a toxic substance that contaminates their shelter. They are forced to abandon their location, losing valuable supplies. They regret following your suggestion."
};
$q.active.correct = 2;
>>
<</switch>>/* параметры награды */
<<set _rewards = ["Food", "Water", "Medkit"]; $q.active.rewards = {};>>
/* определяем награду */
<<for _i = 0; _i < $winItem; _i++>>
<<set _reward = _rewards.random();>>
<<if typeof $q.active.rewards[_reward] == "undefined">>
<<set $q.active.rewards[_reward]=1;>>
<<else>>
<<set $q.active.rewards[_reward]++;>>
<</if>>
<</for>>
/* подготовка изображения задачи */
<<set $q.active.taskImg = 'img/' +$locationChosen+ '/Item-Task-' + $q.active.taskNum + '.jpg'; >>
<<switch $q.active.taskNum>>
<<case 1>>
<<set
$q.active.taskText = "A pipe in the corner of the lab suddenly starts leaking a thick, dark liquid. The sharp, chemical-like smell quickly spreads through the room. Within moments, the floor beneath the leak begins to sizzle and corrode. If left unchecked, the damage could spread further, weakening the structure or destroying valuable equipment. You must act quickly.";
$q.active.choices = {
DuctTape: "You quickly wrap the duct tape around the damaged section of the pipe. The tape is made from a durable material that does not react chemically with the substance leaking from the pipe. It holds long enough to stop the corrosive liquid from spreading and gives you time to assess the situation. While checking the area, you also find something useful hidden nearby.",
Battery: "In a panic, you throw a battery at the leaking liquid, hoping it will somehow neutralize it. Instead, the liquid quickly dissolves the battery casing, releasing dangerous fumes and further damaging the floor.",
Rope: "You try using the rope to absorb or block the liquid, but the substance rapidly corrodes the fibers of the rope, rendering it useless. The leak persists, and the rope is destroyed in the process.",
Nothing: "You hesitate, unsure of what to do. The liquid continues to spread, eating away at the floor and seeping into cracks. Over time, the damage could weaken the structure or lead to bigger problems."
};
$q.active.correct = "DuctTape";
>>
<<case 2>>
<<set
$q.active.taskText = "A containment breach alert has been triggered on the door of the secondary parasite storage unit. The security override panel seems damaged, and the door won't seal shut. You need to ensure it stays closed to prevent further contamination.";
$q.active.choices = {
Toolkit: "You try to repair the damaged panel using the tools in your kit, but with the limited time and severe damage, it's impossible. The panel sparks and continues malfunctioning, and your tools get damaged due to the excessive pressure. You've lost your toolkit.",
DuctTape: "You quickly seal the gaps around the panel and reinforce the edges of the door with layers of duct tape. The breach alarm ceases, and the door holds firm. You've successfully prevented further contamination and found something useful during your effort.",
Rope: "You try to tie the door shut with the rope, but it slips under the pressure of the containment system. The breach alarm intensifies, and the rope frays irreparably. The attempt fails, and you've lost the rope.",
Nothing: "You decide not to use anything and step back. The door remains unsecured, and the breach alarm blares ominously. You might have missed a chance to resolve the issue and gain something valuable."
};
$q.active.correct = "DuctTape";
>>
<<case 3>>
<<set
$q.active.taskText = "The lab’s ventilation system is clogged with debris, reducing airflow and risking toxic buildup. You need to clear the blockage in one of the main ducts to restore proper circulation.";
$q.active.choices = {
RodentSpray: "You spray the rodent spray into the duct, hoping it will help clear the blockage. Unfortunately, the spray does nothing to address the debris and only fills the lab with a strong, unpleasant chemical smell. The can runs out during the attempt, and you've lost the rodent spray.",
Rope: "You try to use the rope to pull out the debris, but it becomes tangled and jammed deeper in the duct. The airflow problem remains unresolved, and the rope is ruined in the process. You've lost the rope.",
Flashlight: "Using the flashlight, you inspect the duct thoroughly and spot the blockage - tangled wires and crumpled papers. With careful maneuvering, you're able to clear the obstruction and restore airflow. The room feels fresher, and during the process, you find something useful.",
Nothing: "You decide to leave the duct alone. The airflow remains blocked, and the air quality worsens. You've missed an opportunity to solve the problem and possibly find something useful."
};
$q.active.correct = "Flashlight";
>>
<<case 4>>
<<set
$q.active.taskText = "The emergency lab door mechanism has jammed, leaving a critical escape route inaccessible. The locking system appears overheated, and the metal parts are fused together. You must resolve this quickly before the situation worsens.";
$q.active.choices = {
Welder: "You skillfully use the welder to carefully melt and reshape the fused metal, freeing the jammed mechanism. The door unlocks with a loud click, restoring the escape route. In the process, you uncover something useful to aid your survival.",
Lighter: "You try using the lighter to heat the jammed parts, but it doesn’t generate enough heat to make a difference. The lighter burns out during the attempt, and you've lost it. The door remains stuck.",
Toolkit: "You try to use the tools, but the metal is too tough for basic tools to handle. While attempting to fix the mechanism, you destroy several tools, rendering them useless. The door remains jammed.",
Nothing: "You decide not to take action. The door stays jammed, leaving an important escape route blocked. No immediate consequences arise, but it feels like a missed chance to resolve the issue and find something useful."
};
$q.active.correct = "Welder";
>>
<<case 5>>
<<set
$q.active.taskText = "A crucial power cable in the lab’s generator room has been severed, cutting off electricity to several essential systems. The area is dimly lit, and the cable sparks dangerously. Nearby we noticed traces of a mutant rat, which was probably the cause of the damage. It seems the rat chewed through the cable, causing the short circuit. You need to find a way to fix it safely.";
$q.active.choices = {
DuctTape: "You first turn off the power to the system, but when you try to wrap the severed cable with duct tape, the sparks burn through it immediately, leaving it ineffective. After turning the power back on, the problem remains unresolved, and you’ve lost the duct tape.",
Wires: "You first turn off the power to the system, ensuring safety. Then, you carefully splice the new wires into the severed cable, restoring the electrical connection. Once the power is switched back on, the generator hums to life, and the systems are powered once more. During the repair, you find something valuable to aid your survival.",
Battery: "You first turn off the power to the system, but when you try to connect the battery, it causes a short circuit as soon as the power is restored. Sparks fly, and the battery overheats, rendering it useless. You've lost the battery, and the power remains down.",
Nothing: "You decide not to take any action. The power stays off, leaving essential systems offline. This inaction could have cost you the opportunity to fix the issue and find something valuable."
};
$q.active.correct = "Wires";
>>
<<case 6>>
<<set
$q.active.taskText = "One of the lab's key terminals is malfunctioning, displaying an error message about a loose connection. Without it, you can't access critical system controls. You need to get it working again.";
$q.active.choices = {
Wires: "You attempt to replace the terminal’s internal wiring, but the issue isn't with the wires. Your efforts only worsen the problem, and the wires become tangled and damaged. You've lost the wires, and the terminal remains offline.",
Battery: "You try connecting a battery to the terminal to power it up manually, but it causes a surge that damages the circuits. The terminal shuts down completely, and the battery becomes unusable. You've lost the battery.",
Toolkit: "With precise work, you use the tools to tighten the connections and recalibrate the terminal. The error message disappears, and the system boots up successfully. While fixing the terminal, you uncover something useful stored in its compartments.",
Nothing: "You choose not to act. The terminal remains offline, blocking access to vital systems. It feels like you missed a chance to fix it and find something useful."
};
$q.active.correct = "Toolkit";
>>
<<case 7>>
<<set
$q.active.taskText = "The ceiling in one corner of the lab has started to collapse, leaving dangling panels and exposed cables. The structure looks unstable and could cause injuries or further damage if not secured. You need to stabilize it before it gives way completely.";
$q.active.choices = {
Rope: "You secure the rope around a sturdy overhead beam and use it to brace the loose ceiling panels, distributing the weight more evenly. With careful knots, you reinforce the weak sections, preventing further collapse. While stabilizing the structure, you uncover something valuable hidden behind one of the loose panels.",
Toolkit: "You attempt to secure the ceiling panels with your tools, but the damage is too severe. As you work, part of the structure suddenly gives way, and a heavy panel crashes down—directly onto your toolbox. The impact crushes it beyond repair. The ceiling remains unstable, and you've lost the toolkit.",
Welder: "You try using the welder to fuse the panels back into place, but the intense heat ignites the exposed wiring, causing a dangerous surge of sparks. You barely manage to cut the power in time to avoid a fire, but the welder is severely damaged in the process. The ceiling remains unstable, and you've lost the welder.",
Nothing: "You step back and decide not to interfere. The ceiling continues to sag ominously, but for now, it hasn’t collapsed. Still, you can’t shake the feeling that you missed an opportunity to both secure the structure and find something useful."
};
$q.active.correct = "Rope";
>>
<<case 8>>
<<set
$q.active.taskText = "A storage cabinet containing important lab equipment has been sealed shut by an old, rusted lock. You need to open it to retrieve whatever supplies might be inside.";
$q.active.choices = {
Welder: "You attempt to cut through the lock with the welder, but the extreme heat causes the rusted metal to fuse even tighter. Worse, the heat warps the cabinet door, making it nearly impossible to open. The lock remains stuck, and your welder overheats, rendering it useless. You've lost the welder.",
Toolkit: "Using the tools, you carefully pry and manipulate the rusted lock, loosening it bit by bit. After some effort, the lock clicks open, granting you access to the cabinet’s contents. Inside, you find some useful supplies that could prove invaluable to your survival.",
Lighter: "You try heating the rusted lock with the lighter, hoping to weaken it, but all you achieve is a faint glow on the surface. The rust remains stubborn, and the lighter quickly runs out of fuel. You've lost the lighter, and the cabinet remains sealed.",
Nothing: "You decide to leave the cabinet locked, uncertain about how to open it. The supplies inside remain inaccessible, and you feel you may have missed a valuable opportunity."
};
$q.active.correct = "Toolkit";
>>
<<case 9>>
<<set
$q.active.taskText = "A faint buzzing sound is coming from the lab’s storage room, and upon investigation, you find a growing swarm of mutated rodents chewing through vital equipment. You need to deal with them before they cause more damage.";
$q.active.choices = {
Rope: "You attempt to use the rope to trap the rodents, but they’re too fast, and the effort only results in chaos. The rope becomes frayed and unusable during the attempt. You've lost the rope, and the rodents remain a problem.",
Flashlight: "You shine the flashlight at the rodents, startling them momentarily, but they soon return to chewing through the equipment. The flashlight drains its battery during the prolonged attempt. The rodents stay put, and the flashlight is no longer functional. You've lost the flashlight.",
RodentSpray: "You spray the area thoroughly, and the rodents quickly scatter, retreating into hidden crevices. The buzzing stops, and you save the equipment from further destruction. While cleaning up, you discover something useful amidst the wreckage.",
Nothing: "You decide not to take action. The rodents continue their destruction, and the buzzing grows louder. It feels like a missed opportunity to protect the lab and recover something valuable."
};
$q.active.correct = "RodentSpray";
>>
<<case 10>>
<<set
$q.active.taskText = "The emergency shutters in the lab are stuck halfway down, leaving the room vulnerable to outside threats. The mechanism appears jammed, and the shutters need to be fully closed for safety.";
$q.active.choices = {
Rope: "You securely tie the rope to the edge of the shutter and pull with all your strength. The mechanism resists at first, but with steady effort, the shutters finally close fully. With the lab now secure, you discover something useful nearby.",
Welder: "You attempt to use the welder on the shutter’s mechanism, but the heat warps the metal and causes further damage, preventing it from closing properly. The shutters are still stuck halfway, and the welder sustains damage. You've lost the welder.",
DuctTape: "You quickly apply duct tape to the edges of the shutters, securing them in place to prevent them from opening further. While they remain halfway open, they won’t be able to open all the way. The room is still partially exposed, but you've bought yourself some time. The duct tape is used up in the process.",
Nothing: "You decide not to intervene. The shutters remain halfway down, leaving the room partially exposed. While no immediate harm occurs, you can't help but feel this was a missed opportunity to secure the lab and find something useful."
};
$q.active.correct = "Rope";
>>
<<case 11>>
<<set
$q.active.taskText = "It looks like mutated rodents tried to break into the shelter through the ventilation shaft during the night. They not only loosened but also knocked out several screws, and now the cover is hanging loosely on the remaining bolts. If left unsecured, harmful particles or other mutated rodents could get into the lab, worsening the situation. You need to fix it before things escalate.";
$q.active.choices = {
DuctTape: "You try to tape the cover in place, but the adhesive isn’t strong enough to hold it securely. The cover falls off again, and you've used up the duct tape during the attempt.",
Toolkit: "Using the tools, you tighten the screws and secure the ventilation cover firmly in place. The lab is now protected from outside contamination. During your work, you come across something valuable hidden in the vent.",
Rope: "You attempt to tie the cover in place with rope, but it slips and doesn’t hold well. The shaft remains open, and the rope is damaged in the process. You've lost the rope.",
Nothing: "You leave the cover as it is, hanging loosely and allowing contamination to continue. While the risk increases, no immediate harm occurs. However, it feels like a missed chance to secure the lab and find something useful."
};
$q.active.correct = "Toolkit";
>>
<<case 12>>
<<set
$q.active.taskText = "A malfunction in the lab’s security system has triggered an automatic lockdown, sealing off some of the doors. The control panel is unresponsive, and scorch marks around the edges suggest an electrical surge caused the damage. You need to restore the system quickly to continue.";
$q.active.choices = {
Wires: "You attempt to use the wires to bypass the damaged circuits, but the electrical surge caused by the malfunction shorts out the wires. Their insulation is burnt away, making them unsafe for further use. The lockdown remains in place.",
Battery: "You try to power the panel with the battery, hoping to jumpstart the system, but it causes a surge that damages the already fragile circuits. The battery is depleted in the process, and the lockdown remains in effect.",
Toolkit: "You carefully dismantle the control panel using your toolkit. After inspecting the fried circuits, you manage to reroute the power and bypass the damaged components. The panel comes back to life, and the doors unlock with a hiss. While working, you receive something useful hidden behind the panel.",
Nothing: "You decide not to interfere with the control panel. The lockdown persists, restricting your movements. While no immediate harm occurs, it feels like a missed chance to resolve the issue and receive something useful."
};
$q.active.correct = "Toolkit";
>>
<<case 13>>
<<set
$q.active.taskText = "A corrosive leak has sprung from one of the lab’s old storage containers, and the acidic liquid is slowly spreading across the floor. If it reaches the nearby equipment, it could cause irreparable damage. You notice the container has a cracked base, and you need to stop the leak before it gets worse.";
$q.active.choices = {
DuctTape: "You quickly apply the duct tape to the crack. The adhesive in the tape doesn’t react with the corrosive liquid, and it seals the crack effectively. The leak is stopped, preventing further damage to the floor and equipment. While cleaning up the area, you discover something useful nearby.",
Welder: "You attempt to use the welder to seal the crack, but the intense heat causes the acid to evaporate, releasing dangerous fumes into the air. The welder is also splashed with acid, making it unusable. The leak continues, and the welder is ruined.",
Rope: "You tie the rope around the container to stabilize it, but the crack remains exposed, and the acid continues to leak. The rope absorbs some of the corrosive liquid, weakening and fraying it. The leak isn’t stopped, and the rope is damaged.",
Nothing: "You leave the container as it is, and the corrosive liquid continues to spread across the floor. While no immediate disaster occurs, the damage worsens, and you realize this was a missed opportunity to stop the leak."
};
$q.active.correct = "DuctTape";
>>
<<case 14>>
<<set
$q.active.taskText = "The lab’s temperature control system is malfunctioning, and the room is quickly becoming unbearably hot. The heat is beginning to damage sensitive equipment, and if left unchecked, it could become a critical issue. You need to disable the malfunctioning system before it reaches a dangerous level.";
$q.active.choices = {
Flashlight: "You attempt to use the flashlight to inspect the control panel, but the heat in the room causes the bulb to overheat and burn out. The flashlight becomes useless, and you're left with no proper light source. The temperature continues to rise.",
Toolkit: "You use the toolkit to open the control panel and inspect the system. After making adjustments to the wiring and recalibrating the components, you manage to stabilize the temperature, bringing the room back to a safe level. While working, you discover an important items hidden behind the panel.",
Rope: "You try to use the rope to secure the control panel in place, but the heat causes the fibers of the rope to dry out and begin to snap. The rope quickly deteriorates and becomes useless.",
Nothing: "You decide not to intervene, and the temperature continues to rise. The equipment begins to malfunction, and the situation becomes more pressing. While no immediate damage occurs, it feels like a missed opportunity to prevent further issues and secure the lab."
};
$q.active.correct = "Toolkit";
>>
<<case 15>>
<<set
$q.active.taskText = "The laboratory’s communication system has gone down. After inspecting the central control unit, you realize that the wiring has been severely damaged. It seems that mutant cockroaches might have chewed through the wires during the night, causing partial failure in the system. Some frequencies are completely down, while others remain accessible but unstable. You must act quickly if you want to restore stable communication.";
$q.active.choices = {
Toolkit: "You attempt to repair the system with the toolkit, but the issue is with the wiring itself, not the internal components. In trying to adjust the mechanisms and salvage the system, you end up damaging all the tools in your set. The heat from the malfunctioning system causes some of the tools to warp, while others break from excessive force. The toolkit is now unusable, and the system remains partially offline.",
Battery: "You try to insert a fresh battery into the communication unit, hoping it might provide enough power to get the system working again. However, the issue lies with the damaged wires, not the power source. The unit continues to work intermittently, but the unstable power drains the new battery quickly, and it’s soon spent. You've lost the battery.",
Wires: "You carefully replace the damaged wiring in the communication unit. After securing the new connections, the system powers back on, and you regain access to the communication channels. You’re able to restore contact with the outside world, and in the process, you discover something helpful hidden inside the unit.",
Nothing: "You decide to leave the system as it is. The communication channels remain partially down, leaving you without the ability to contact anyone on certain frequencies. You feel like you may have missed a critical opportunity to restore full communication."
};
$q.active.correct = "Wires";
>>
<<case 16>>
<<set
$q.active.taskText = "One of the lab’s storage lockers has become jammed, and you need to open it to access important supplies. The lock seems to have malfunctioned, and you can see the mechanism inside. You’ll need to force it open carefully without causing further damage to the locker or its contents.";
$q.active.choices = {
Toolkit: "You carefully use the toolkit to dismantle the lock and access the internal mechanism. After a few precise adjustments, the lock disengages, and the locker opens. Inside, you find critical supplies that could aid your survival.",
Welder: "You try to weld the lock open, but the intense heat warps the metal of the locker and causes sparks. The heat also damages the delicate internal components of the lock, leaving you with both a damaged locker and welder. The supplies inside are still inaccessible. You've lost the welder.",
Flashlight: "You use the flashlight to inspect the lock more closely, hoping to find a way to fix the mechanism. However, the flashlight’s light isn’t sufficient to help you understand the issue, and it doesn’t aid in the opening process. The flashlight’s battery dies during the inspection, and you’ve lost it. The locker remains closed.",
Nothing: "You decide not to act, leaving the locker sealed. The supplies inside remain out of reach. You feel like you missed an opportunity to access something valuable and solve a pressing issue."
};
$q.active.correct = "Toolkit";
>>
<<case 17>>
<<set
$q.active.taskText = "One of the lab’s storage rooms is experiencing a power failure, and the lights have gone out, leaving the room in total darkness. The power system’s main fuse is blown, and you need to replace it before the backup system fails entirely. Without light, it’s hard to see the problem, but you need to restore power quickly to avoid further complications.";
$q.active.choices = {
Toolkit: "You attempt to fix the fuse box using the toolkit, but without light, it’s difficult to see the damage. You end up fumbling with the components and inadvertently cause more harm to the system. The toolkit gets damaged in the process, and the power remains down.",
Flashlight: "You use the flashlight to illuminate the fuse box, allowing you to see the blown fuse clearly. You carefully replace it, restoring power to the backup system and bringing the lights back on. In the process, you find something useful near the fuse box.",
Battery: "You try to use the battery in an attempt to power the backup system directly, hoping that a temporary boost might allow you to restore power. However, the system isn’t designed to be powered by a single battery, and the power remains down. The battery is drained in the process and is wasted.",
Nothing: "You decide not to intervene, and the darkness continues. The backup power system fails completely, and the storage room becomes even more difficult to navigate. You feel like you missed an opportunity to resolve the issue and recover something useful."
};
$q.active.correct = "Flashlight";
>>
<<case 18>>
<<set
$q.active.taskText = "You notice that some small but dangerous rodents have infiltrated one of the lab’s storage rooms. They are scurrying around, trying to chew through the cables and wires, threatening to cause significant damage to the equipment. You need to stop them before they cause a full-blown electrical failure or worse.";
$q.active.choices = {
DuctTape: "You attempt to use the duct tape to wrap and protect the most vulnerable cables, hoping the rodents won’t chew through the barrier. However, they still manage to gnaw through the tape and continue damaging the wires. You've wasted the duct tape, and the rodents remain a problem.",
Lighter: "You try to scare the rodents away by flicking the lighter near them. The small flame does make them hesitate, but the heat also damages nearby cables. One of the wires sparks, and you quickly put out the tiny fire before it spreads. However, the lighter overheats and malfunctions. You've lost the lighter.",
RodentSpray: "You quickly use the rodent spray, releasing a cloud of deterrent that drives the rodents away. They scatter into the vents, no longer posing an immediate threat to the equipment. While dealing with the pests, you find something useful hidden among the debris.",
Nothing: "You try to scare the rodents away by flicking the lighter near them. The small flame makes them hesitate, but the heat also damages nearby cables. One of the wires sparks, and you quickly put out the tiny fire before it spreads. However, the lighter overheats, its internal mechanism melts, and it becomes completely unusable. The lighter is now destroyed."
};
$q.active.correct = "RodentSpray";
>>
<<case 19>>
<<set
$q.active.taskText = "While searching through one of the lab’s storage rooms, you hear the sound of liquid dripping. Upon closer inspection, you discover that a chemical container on a high shelf has cracked, and a corrosive substance is slowly leaking out. If left unchecked, it could damage nearby supplies or even create toxic fumes. You need to stop the leak before it spreads further.";
$q.active.choices = {
DuctTape: "You quickly apply several layers of duct tape over the crack, sealing the leak before more of the corrosive liquid escapes. While the seal isn’t permanent, it prevents further damage for now. While handling the situation, you also find something useful among the storage shelves.",
Rope: "You try to secure the container by tying it tightly with the rope, hoping to stop the leak. However, the corrosive liquid seeps into the fibers of the rope, weakening it until it snaps. The spill worsens, and the rope is now ruined. You've lost the rope.",
Welder: "You attempt to use the welder to seal the crack, but the intense heat causes the remaining liquid inside to vaporize, releasing a small toxic cloud. You are forced to retreat, coughing as the fumes spread. When you return, you find that the welder has been covered in a corrosive residue. The acid has eaten into its surface, rendering it useless. You've lost the welder.",
Nothing: "You decide to leave the leak alone, hoping it won’t get worse. Unfortunately, the corrosive liquid continues to drip, slowly damaging nearby containers. The situation remains unresolved, and future problems seem inevitable."
};
$q.active.correct = "DuctTape";
>>
<<case 20>>
<<set
$q.active.taskText = "While searching through one of the lab’s storage rooms, you notice a ventilation duct rattling violently. Something is moving inside, and a faint hissing noise echoes from within. It’s possible that a small but dangerous mutated creature has gotten stuck inside. If left unchecked, it could escape or damage the ventilation system, creating a bigger problem. You need to act fast.";
$q.active.choices = {
Rope: "You attempt to tie the vent shut with the rope, hoping to block whatever is inside. However, the creature starts thrashing violently, and after a few minutes, the rope snaps under the strain. The vent bursts open slightly, making the situation worse. You've lost the rope.",
RodentSpray: "You carefully aim the rodent spray into the ventilation opening and release a strong burst of deterrent. The creature inside lets out a shrill noise and frantically scurries away deeper into the ducts, far from your location. With the immediate threat neutralized, you also discover something useful near the vent.",
Lighter: "You flick the lighter on and hold it near the vent, thinking the flame might scare off whatever is inside. Instead, the creature reacts aggressively, ramming the vent cover until it dislodges, forcing you to back away. In the chaos, the lighter falls into the vent, slipping out of reach. You've lost the lighter.",
Nothing: "You decide to leave the vent alone, hoping the problem resolves itself. After some time, the rattling stops, but you hear scratching sounds deeper in the ducts. The creature is still in the system, and who knows when it might cause more trouble?"
};
$q.active.correct = "RodentSpray";
>>
<</switch>>
/* параметры награды */
<<set _rewards = ["Food", "Water", "Medkit"]; $q.active.rewards = {};>>
/* определяем награду */
<<for _i = 0; _i < $winGirl; _i++>>
<<set _reward = _rewards.random();>>
<<if typeof $q.active.rewards[_reward] == "undefined">>
<<set $q.active.rewards[_reward]=1;>>
<<else>>
<<set $q.active.rewards[_reward]++;>>
<</if>>
<</for>>
/* подготовка изображения задачи */
<<set $q.active.taskImg = 'img/' +$locationChosen+ '/Girl-Task-' + $q.active.taskNum + '.jpg'; >>
<<switch $q.active.taskNum>>
<<case 1>>
<<set
$q.active.taskText = "The laboratory ventilation system is clogged with debris, and dangerous fumes are starting to build up. Someone needs to crawl through the tight ducts and clear the blockage.";
$q.active.winText = "skillfully maneuvers through the narrow ventilation shafts, avoiding sharp edges and unstable sections. She clears the blockage quickly, allowing the lab's air circulation to resume. In the process, she finds some useful supplies hidden in the vents.";
$q.active.lossText = "struggles in the tight ducts, unable to move efficiently. She ends up stuck for a while and eventually has to retreat. Perhaps someone more agile would have been better suited for this task?";
$q.active.needSkill = "agility";
>>
<<case 2>>
<<set
$q.active.taskText = "A malfunctioning generator threatens to shut down the lab's power supply. Someone needs to lift a heavy panel to access the wiring and repair it.";
$q.active.winText = "uses her impressive strength to lift the heavy panel with ease, granting access to the wiring. She fixes the issue quickly, restoring the generator and ensuring the lab remains powered. While working, she discovers some useful supplies tucked away behind the panel.";
$q.active.lossText = "struggles to lift the heavy panel, her arms trembling under the weight. The task proves too much, and she has to give up. Perhaps someone stronger would have been a better choice for this job?";
$q.active.needSkill = "strength";
>>
<<case 3>>
<<set
$q.active.taskText = "The lab's water filtration system is clogged with sludge. Someone needs to spend hours carefully cleaning it to ensure the group has access to technical water for various tasks.";
$q.active.winText = "endures the long and grueling task of scrubbing the filtration system, never losing focus despite the effort required. After hours of hard work, the system is clean, and the group has technical water again. While cleaning, she finds some useful supplies hidden in the storage compartment.";
$q.active.lossText = "starts cleaning the filtration system but quickly tires and loses focus. The task is only partially complete, and the technical water remains unusable. Perhaps someone with greater stamina would have been more suitable for this demanding job?";
$q.active.needSkill = "stamina";
>>
<<case 4>>
<<set
$q.active.taskText = "An encrypted security door blocks access to a storage room. Someone needs to analyze the complex code and hack into the system to unlock it.";
$q.active.winText = "focuses intently on the intricate code, her sharp mind quickly identifying patterns and weaknesses. After a few tense moments, the door unlocks with a satisfying click, granting access to the storage room. Inside, she finds some valuable supplies.";
$q.active.lossText = "attempts to analyze the encryption, but the complex code proves too challenging. After several failed attempts, the system locks her out. Perhaps someone with greater mental acuity would have been better equipped to tackle this task?";
$q.active.needSkill = "mind";
>>
<<case 5>>
<<set
$q.active.taskText = "A storage shelf has collapsed, scattering fragile containers of chemicals all over the floor. Someone needs to carefully navigate through the mess and gather the intact containers without breaking anything.";
$q.active.winText = "moves gracefully through the scattered debris, her nimble hands carefully collecting the intact chemical containers. She manages to secure them all without any mishaps. While cleaning up, she also discovers some useful supplies hidden beneath the shelf.";
$q.active.lossText = "tries to gather the containers but accidentally knocks over a few fragile vials, causing them to shatter. The task ends in a mess, and some of the chemicals are lost. Perhaps someone with better agility would have been more suited for this delicate job?";
$q.active.needSkill = "agility";
>>
<<case 6>>
<<set
$q.active.taskText = "The lab's reactor control panel is malfunctioning, causing unstable power fluctuations. Someone needs to recalibrate the system by carefully adjusting its delicate components.";
$q.active.winText = "concentrates on the intricate mechanisms of the control panel, her analytical mind quickly diagnosing the issue. With steady hands, she recalibrates the system, stabilizing the reactor. While working, she discovers some useful supplies stored in a nearby compartment.";
$q.active.lossText = "tries to adjust the control panel, but the delicate components prove too complicated to handle. The fluctuations persist, and the task is incomplete. Perhaps someone with a sharper mind would have been a better choice for this precise job?";
$q.active.needSkill = "mind";
>>
<<case 7>>
<<set
$q.active.taskText = "The airlock to the storage room is jammed with debris, and the group needs access to it. Someone must squeeze through the narrow opening and clear the blockage from the inside.";
$q.active.winText = "nimbly slips through the tight gap, carefully avoiding sharp edges and unstable debris. She manages to clear the blockage, allowing the airlock to open fully. While inside, she discovers some useful supplies hidden among the clutter.";
$q.active.lossText = "tries to squeeze through the gap but gets stuck midway, unable to maneuver effectively. Frustrated, she has to abandon the attempt. Perhaps someone more agile would have been better for this tight and tricky task?";
$q.active.needSkill = "agility";
>>
<<case 8>>
<<set
$q.active.taskText = "A section of the lab wall has been damaged, exposing a loose support beam that threatens to collapse. Someone needs to hold the beam steady while temporary reinforcements are installed. ";
$q.active.winText = "grabs hold of the heavy beam, her strength keeping it stable as the reinforcements are put into place. Her effort prevents further damage to the lab. While securing the area, she finds some useful supplies hidden in a nearby corner.";
$q.active.lossText = "tries to hold the beam, but it proves too heavy, slipping from her grasp and worsening the damage. The situation remains critical. Perhaps someone stronger would have been a better choice for this physically demanding task?";
$q.active.needSkill = "strength";
>>
<<case 9>>
<<set
$q.active.taskText = "A hazardous gas with a mild paralyzing effect has leaked into one section of the lab. Someone must run through the gas leak zone and find the right lever in the smoke-filled room to activate the emergency ventilation system before the gas spreads further.";
$q.active.winText = "pushes herself through the gas-filled corridor, her stamina allowing her to maintain speed despite the challenging conditions. She reaches the venting control in time and activates it, safely clearing the area. During her sprint, she also spots some useful supplies along the way.";
$q.active.lossText = "starts running but quickly becomes exhausted, slowing down and failing to reach the venting system in time. The gas continues to spread. Perhaps someone with greater stamina would have been better suited for this urgent task?";
$q.active.needSkill = "stamina";
>>
<<case 10>>
<<set
$q.active.taskText = "The lab's security cameras have stopped working, leaving blind spots in the surveillance system. Someone needs to climb up and manually reset the power junction high on the wall. ";
$q.active.winText = "deftly climbs up to the power junction, her agility helping her maintain balance on the precarious footing. She resets the system, and the security cameras come back online. While descending, she notices some useful supplies stashed nearby.";
$q.active.lossText = "tries to climb up but loses her balance and is forced to abandon the task. The security cameras remain offline. Perhaps someone more agile would have been a better fit for this tricky job?";
$q.active.needSkill = "agility";
>>
<<case 11>>
<<set
$q.active.taskText = "The containment unit for a dangerous specimen is beginning to crack, requiring immediate reinforcement. Someone must hold the unit steady while a temporary seal is applied.";
$q.active.winText = "firmly grips the containment unit, her strength keeping it stable as the seal is quickly applied. Her effort prevents a potentially catastrophic breach. While securing the area, she finds some useful supplies hidden nearby.";
$q.active.lossText = "tries to hold the containment unit, but it’s too heavy and unstable for her to manage. The cracks worsen, and the situation becomes more dangerous. Perhaps someone stronger would have been a better choice for this critical task?";
$q.active.needSkill = "strength";
>>
<<case 12>>
<<set
$q.active.taskText = "The laboratory's internal communications system has gone offline due to a damaged circuit board. Someone needs to carefully repair the intricate wiring to restore functionality.";
$q.active.winText = "examines the damaged circuit board, her sharp mind quickly identifying the problem. With precision, she reconnects the wires and restores the communications system. During the repair, she also uncovers some useful supplies tucked away near the panel.";
$q.active.lossText = "attempts to fix the circuit board, but the complex wiring proves too challenging, and the system remains offline. Perhaps someone with greater mental focus would have been better suited for this technical task?";
$q.active.needSkill = "mind";
>>
<<case 13>>
<<set
$q.active.taskText = "A stack of unstable crates is blocking an important passage. Someone needs to carefully climb over them and secure the top crates to prevent them from collapsing.";
$q.active.winText = "skillfully navigates the precarious stack, using her agility to maintain balance as she secures the top crates. The passage is now safe to use, and while working, she discovers some useful supplies hidden among the crates.";
$q.active.lossText = "attempts to climb the stack but loses her balance, causing some of the crates to shift dangerously. The passage remains blocked. Perhaps someone more agile would have been better for this delicate task?";
$q.active.needSkill = "agility";
>>
<<case 14>>
<<set
$q.active.taskText = "The lab's main door locking mechanism is jammed, and the team risks being trapped. Someone needs to apply steady, brute force to dislodge the mechanism and restore functionality. ";
$q.active.winText = "grips the stuck mechanism and uses her sheer strength to force it back into place. The door unlocks with a loud click, ensuring the team’s mobility. While inspecting the door, she also finds some useful supplies in a nearby compartment.";
$q.active.lossText = "tries to unjam the mechanism, but her effort isn’t enough to dislodge it. The door remains stuck. Perhaps someone stronger would have been better suited for this challenging task?";
$q.active.needSkill = "strength";
>>
<<case 15>>
<<set
$q.active.taskText = "The research computer is locked behind a complicated password that was partially corrupted. Someone must analyze the fragments and reconstruct the password to gain access.";
$q.active.winText = "carefully examines the corrupted data, her sharp intellect piecing together the missing parts of the password. The computer unlocks, and vital systems are restored. During her work, she discovers some useful supplies stored near the workstation.";
$q.active.lossText = "attempts to decipher the password, but the corrupted data proves too challenging. The computer remains locked. Perhaps someone with greater mental acuity would have been better suited for this task?";
$q.active.needSkill = "mind";
>>
<<case 16>>
<<set
$q.active.taskText = "A piece of critical equipment is vibrating dangerously, threatening to fall apart. Someone needs to hold it steady until it stabilizes.";
$q.active.winText = "uses her stamina to endure the strain of holding the equipment in place. Despite the intense vibrations, she doesn’t falter, and the machine stabilizes. While securing the area, she finds some useful supplies tucked underneath the equipment.";
$q.active.lossText = "tries to hold the equipment, but the constant vibrations quickly tire her out. Unable to maintain her grip, she has to let go, and the problem worsens. Perhaps someone with more stamina would have been better for this demanding task?";
$q.active.needSkill = "stamina";
>>
<<case 17>>
<<set
$q.active.taskText = "A hazardous chemical spill in one of the labs has caused a chain reaction that is producing unstable heat in a nearby containment unit. Someone needs to carefully monitor the unit’s pressure gauges and manually release valves to stabilize the system without triggering an explosion. The process requires precise timing and complete focus.";
$q.active.winText = "examines the pressure gauges with intense focus, her analytical mind quickly calculating the right moments to release each valve. She works methodically, ensuring that the containment unit stabilizes without further incidents. Her steady hand and sharp mind prevent a dangerous explosion. While inspecting the area afterward, she discovers some hidden supplies stored behind a control panel.";
$q.active.lossText = "attempts to monitor the gauges, but the rapid fluctuations overwhelm her, and she releases the valves at the wrong times. The unit remains unstable, and the chain reaction worsens. Perhaps someone with sharper mental focus and better problem-solving skills would have been the right choice for this intricate task?";
$q.active.needSkill = "mind";
>>
<<case 18>>
<<set
$q.active.taskText = "The lab's emergency power generator is malfunctioning, and it's starting to overheat. Someone needs to crawl under the system to manually adjust the cooling vents while avoiding hot surfaces. The space is tight, and the process is both physically demanding and time-sensitive.";
$q.active.winText = "crawls under the generator with ease, her agility allowing her to avoid the scorching surfaces and navigate through the cramped space. She adjusts the cooling vents just in time, restoring the system’s functionality before it overheats completely. While making the adjustments, she also finds some useful supplies hidden beneath the generator.";
$q.active.lossText = "tries to crawl under the generator, but the tight space and intense heat slow her down. She struggles to reach the cooling vents in time, and the generator begins to overheat further. Perhaps someone with better agility would have been better suited for this task?";
$q.active.needSkill = "agility";
>>
<<case 19>>
<<set
$q.active.taskText = "A critical data storage drive has malfunctioned, and someone needs to retrieve the important research files before it shuts down completely. The drive is heavily damaged, and the task requires careful attention to avoid further file corruption.";
$q.active.winText = "carefully inspects the damaged drive, her sharp mind identifying the best way to retrieve the files without further risk of data loss. With precision, she connects the drive to a backup system and successfully recovers the data. While handling the device, she uncovers some useful supplies hidden nearby.";
$q.active.lossText = "tries to recover the files but fails to notice a complex digital issue that requires intellectual problem-solving, causing more damage to the drive. The data is lost, and the situation worsens. Perhaps someone with a sharper mind would have been a better choice for this delicate task?";
$q.active.needSkill = "mind";
>>
<<case 20>>
<<set
$q.active.taskText = "A malfunction in the lab’s ventilation system has caused a dangerous buildup of fumes in one section of the lab. The air quality is deteriorating quickly, and the emergency ventilation panel is locked. Someone needs to find the hidden override switch, bypass the security locks, and activate the emergency ventilation system before the fumes spread to the rest of the facility. The task requires speed and precision, as time is running out.";
$q.active.winText = "races through the cramped maintenance corridors, her agility allowing her to avoid obstacles and reach the override switch in record time. With quick reflexes, she bypasses the security locks and activates the emergency ventilation system, clearing the fumes before they can spread. While examining the panel afterward, she uncovers some useful supplies hidden behind it.
";
$q.active.lossText = "tries to reach the override switch, but she struggles to navigate the narrow maintenance passages, knocking over equipment and wasting precious time. By the time she activates the system, the fumes have already begun to spread. Perhaps someone more agile would have been a better choice for this high-pressure task?";
$q.active.needSkill = "agility";
>>
<</switch>>
/* выбираем зараженную девушку */
<<set _activeGirls = Object.keys($p);>> /* берем всех девушек */
<<run _activeGirls.deleteAll($wasted);>> /* удаляем тех которые выбыли */
<<set $q.active.infected = _activeGirls.random(); >> /* выбираем зараженную девушку */
/* выбираем картинку задачи */
<<set
$q.active.taskImg = 'img/girls/Parasite-Task-' +$p[$q.active.infected].face+ '-' +random(1,7)+ '.jpg';
>>
/* определяем цвет ее паразита */
<<set _color = $p[$q.active.infected].parasite; _name = $p[$q.active.infected].name; >>
/* цветовая схема усмирения паразитов */
<<set $q.active.color = {
Red: ["Blue","Green"], Blue: ["Green","Yellow"], Green: ["Yellow","Red"], Yellow: ["Red","Blue"]
};>>
/* текст задачи */
<<set
$q.active.taskText = '<span class = "color ' + _color + '"></span> ' + _name;
$q.active.taskText += "’s parasite has mutated and is now out of control. It could inflict serious damage on her if we don't tame it immediately. You must choose a girl who will attempt to tame Tanya's parasite before the situation escalates further.";
>>
<<img $q.active.taskImg>>
<div class="quest-survivors">
/* отображаем текст задачи, которую нужно выполнить */
<<say 'Computer'>><<= $q.active.taskText; >><</say>>
/* отображаем ссылки, которые будет выбирать игрок */
<<can 'Make your choice:'>>
/* ссылки на варианты решений */
<div class="choices">
<<set _choices = Object.keys($q.active.choices); >>
<<for _i = 1; _i <= _choices.length; _i++>>
<<set _id = 'link-' + _i>>
<div @id="_id" class="choice">
<div class="decor">
<span class="question">?</span><span class="selected">✔</span>
</div>
<div class="answer"><<=$q.active.choices[_i];>></div>
<<capture _i>>
<<link ''>>
/* убираем клас "chosen" у ранее выбранного решения */
<<if _chosen> 0>><<toggleclass `'#link-'+_chosen` 'chosen'>><</if>>
/* добавляем решение игрока в объект */
<<set _chosen = _i;>>
/* добавляем клас "chosen" к выбранному варианту*/
<<toggleclass `'#link-'+_i` 'chosen'>>
<</link>>
<</capture>>
</div><!-- .choice -->
<</for>>
</div><!-- .links .choices -->
/* ссылка на подтверждение принятого решения */
<div class="links quest-confirm-link">
<<link '➥ Click to confirm your choice <div>(See the result of your choice)</div>'>>
/* если выбор сделан, обрабатываем результат */
<<if _chosen > 0 >>
/* сохраняем выборанный игроком вариант */
<<set $q.active.chosen = _chosen; >>
/* сохраняем день выполнения квеста (чтобы избежать повторного выполнения) */
<<set $q.day = $day; >>
/* если игрок сделал правильный выбор, добавляем химикаты */
<<if _chosen == $q.active.correct >>
<<set $chemicals += $winSurvivors; >>
<<goto 'Quest-Survivors-Win'>>
/* если выбор не правильный */
<<else>>
<<goto 'Quest-Survivors-Loss'>>
<</if>>
<</if>>
<</link>>
</div><!-- .links .quest-confirm-link -->
<</can>>
</div><!-- .quest-survivors -->
$bg
<<img $q.active.winImg>>
<<say 'Computer'>>
<<= $q.active.results[$q.active.chosen]>>
<p><u>You received:</u> +$winSurvivors chemicals.</p>
<</say>>
/* ---- Навигация ---- */
<<include 'Navigation'>><<img $q.active.taskImg>>
<div class="quest-item">
/* отображаем текст задачи, которую нужно выполнить */
<<say 'Computer'>><<= $q.active.taskText; >><</say>>
/* отображаем предметы, которые будет выбирать игрок */
<<can 'Make your choice:'>>
/* ссылки с вариантами предметов */
<div class="choose-items">
/* количество отображаемых предметов + "Nothing" */
<<set _items = Object.keys($q.active.choices); >> /* все ключи (предметы и Nothing) */
<<run _items.deleteAll("Nothing"); >> /* удаляем Nothing (он иногда попадает в перед) */
<<run _items.push("Nothing");>> /* добавляем "Nothing" в конец*/
<<for _i = 0; _i < _items.length; _i++>>
/* подготовка параметров предметов (включая "Nothing") */
<<set _item = _items[_i]; >>
<<if _item != "Nothing" >> /* предметы */
/* картинка и название предмета */
<<set _img = $i[_item].img; _name = $i[_item].title;>>
/* добавляем класс miss если предмета нет в инвентаре */
<<if $i[_item].count<=0>>
<<set _class='item miss';>>
<<else>>
<<set _class='item';>>
<</if>>
<<else>> /* Nothing */
<<set _img = 'items/nothing.jpg'; _name = 'Nothing'; _class='item';>>
<</if>>
/* отображаем предмет для выбора */
<div @id="_item" @class="_class"> /* class='item' */
<img @src="_img">
<div class="name">_name</div>
<div class="check">✔</div>
<<capture _item>>
<<link ''>>
/* если предмет есть в инвентаре или это "Nothing" */
<<if _item == "Nothing" || $i[_item].count > 0>>
/* убираем клас "chosen" у ранее выбранного решения */
<<if _chosen >><<toggleclass `'#' + _chosen` 'chosen'>><</if>>
/* указываем выбор игрока */
<<set _chosen = _item;>>
/* добавляем клас "chosen" */
<<toggleclass `'#' + _chosen` 'chosen'>>
<</if>>
<</link>>
<</capture>>
/* если предмета нет в инвентаре */
<<if _item != "Nothing" && $i[_item].count <= 0>>
<div class="miss-text"><span>COUNT: 0</span></div>
<</if>>
</div><!-- .item -->
<</for>>
</div><!-- .links .choices -->
/* ссылка на подтверждение принятого решения */
<div class="links quest-confirm-link">
<<link '➥ Click to confirm your choice <div>(See the result of your choice)</div>'>>
/* если выбор сделан, обрабатываем результат */
<<if _chosen >>
/* сохраняем выборанный игроком вариант */
<<set $q.active.chosen = _chosen; >>
/* удаляем выбранный предмет из инвентаря */
<<if _chosen != "Nothing" >><<set $i[_chosen].count--; >><</if>>
/* сохраняем день выполнения квеста (чтобы избежать повторного выполнения) */
<<set $q.day = $day; >>
/* если выбор верный */
<<if _chosen == $q.active.correct >>
<<for _reward, _count range $q.active.rewards>>
<<set $i[_reward].count += _count;>>
<</for>>
<<goto 'Quest-Item-Win'>>
/* если выбран "Nothing" */
<<elseif _chosen == "Nothing" >>
<<goto 'Quest-Item-LossNothing'>>
/* если не правильный выбор */
<<else>>
<<goto 'Quest-Item-LossItem'>>
<</if>>
<</if>>
<</link>>
</div><!-- .links .quest-confirm-link -->
<</can>>
</div><!-- .quest-item -->
$bg
<<set _img = 'img/items/Use-' + $q.active.chosen + '.jpg'; >>
<<img _img>>
<<say 'Computer'>>
<p><<= $q.active.choices[$q.active.chosen]>></p>
<u>You received:</u>
<ul>
<<for _reward, _count range $q.active.rewards>>
<li><<=_reward>> <i>(x<<=_count>>)</i></li>
<</for>>
</ul>
<u>You spent:</u> <<=$i[$q.active.chosen].title;>>
<</say>>
/* ---- Навигация ---- */
<<include 'Navigation'>><<img $q.active.taskImg>>
<div class="quest-girl">
/* отображаем текст задачи, которую нужно выполнить */
<<say 'Computer'>><<= $q.active.taskText; >><</say>>
/* отображаем девушек, которых нужно выбрать для квеста */
<<can 'Make your choice:'>>
/* отображаем всех девушек */
<div class="choose-girls">
<<set _girls = Object.keys($p); >>
<<for _i = 0; _i < _girls.length; _i++>>
/* подготовка параметров */
<<set _girl = _girls[_i]; >>
<<if $wasted.includes(_girl)>>
<<set _class = 'girl wasted';>>
<<else>>
<<set _class = 'girl';>>
<</if>>
/* отображаем девушку */
<div @id="_girl" @class="_class"> /* class='girl' */
<div class="photo"><img @src="$p[_girl].photo"></div>
<div class="name"><<=$p[_girl].name>></div>
<div class="check">✔</div>
<<capture _girl>>
<<link ''>>
/* если девушка не выбыла из игры */
<<if !$wasted.includes(_girl)>>
/* убираем клас "chosen" у ранее выбранного решения */
<<if _chosen >><<toggleclass `'#' + _chosen` 'chosen'>><</if>>
/* указываем выбор игрока */
<<set _chosen = _girl;>>
/* добавляем клас "chosen" */
<<toggleclass `'#' + _chosen` 'chosen'>>
<</if>>
<</link>>
<</capture>>
/* если девушка выбыла */
<<if $wasted.includes(_girl)>>
<div class="wasted-text"><span>WASTED</span></div>
<</if>>
</div><!-- .girl -->
<</for>>
</div><!-- .choose-girls -->
/* ссылка на подтверждение принятого решения */
<div class="links quest-confirm-link">
<<link '➥ Click to confirm your choice <div>(See the result of your choice)</div>'>>
/* если выбор сделан, обрабатываем результат */
<<if _chosen >>
/* сохраняем сделанный игроком выбор */
<<set $q.active.girl = _chosen; >>
/* сохраняем день выполнения квеста (чтобы избежать повторного выполнения) */
<<set $q.day = $day; >>
/* определяем максимальный скил у девушек */
<<set _maxSkill = 30; >> /* скил должен быть не меньше 30 */
<<for _girl, _param range $p>>
<<if $p[_girl][$q.active.needSkill] >= _maxSkill && !$wasted.includes(_girl)>>
<<set _maxSkill = $p[_girl][$q.active.needSkill]; >>
<</if>>
<</for>>
/* определяем есть ли девушки с таким же максимальным скилом */
<<set _skilledGirls = []; >> /* девушки которые способны выиграть квест */
<<for _girl, _param range $p>>
<<if $p[_girl][$q.active.needSkill] == _maxSkill && !$wasted.includes(_girl)>>
<<run _skilledGirls.push(_girl); >>
<</if>>
<</for>>
/* если сделан правильный выбор, обрабатываем результат */
<<if _skilledGirls.includes($q.active.girl)>>
/* добавляем награду в инвентарь */
<<for _reward, _count range $q.active.rewards>>
<<set $i[_reward].count += _count;>>
<</for>>
/* переходим в пассаж с победой */
<<goto 'Quest-Girl-Win'>>
/* если не правильный выбор */
<<else>>
<<set _params = ["hunger", "thirst"]; >> /* параметры для изменения */
<<set $q.active.wested = _params.random(); >> /* выбираем голод или жажда */
<<set $p[$q.active.girl][$q.active.wested] += $upHungerThirst;>> /* меняем параметр */
/* если измененный параметр стал больше 100% */
<<if $p[$q.active.girl][$q.active.wested] > 100>>
<<set $p[$q.active.girl][$q.active.wested] = 100; >> /* подгоняем до 100% */
<</if>>
/* переходим в пассаж с проигрышем */
<<goto 'Quest-Girl-Loss'>>
<</if>>
<</if>>
<</link>>
</div><!-- .links .quest-confirm-link -->
<</can>>
</div><!-- .quest-girl -->
$bg
<<set _img = 'img/girls/RewardGirl-' + $p[$q.active.girl].face + '.jpg'; >>
<<img _img>>
<<say 'Computer'>>
<p><<=$q.active.girl>> <<= $q.active.winText>></p>
<u>You received:</u>
<ul>
<<for _reward, _count range $q.active.rewards>>
<li><<=_reward>> <i>(x<<=_count>>)</i></li>
<</for>>
</ul>
<</say>>
/* ---- Навигация ---- */
<<include 'Navigation'>>$bg
<<set _img = 'img/girls/TiredGirl-' +$p[$q.active.girl].face+'-'+random(1,2)+'.jpg';>>
<<img _img>>
<<say 'Computer'>>
<p><<=$q.active.girl>> <<= $q.active.lossText>></p>
<u><<=$q.active.girl>>'s <<=$q.active.wested>> increased</u>: +$upHungerThirst%
<</say>>
/* ---- Навигация ---- */
<<include 'Navigation'>><<img $q.active.taskImg>>
<div class="quest-parasite">
/* отображаем текст задачи, которую нужно выполнить */
<<say 'Computer'>><<= $q.active.taskText; >><</say>>
/* отображаем девушек, которых нужно выбрать для квеста */
<<can 'Make your choice:'>>
/* выбрать девушку */
<div class="choose-girls">
<<set _girls = Object.keys($p); >>
<<run _girls.deleteAll($q.active.infected); >> /* удаляем девушку для усмирения */
<<run _girls.push('none'); >> /* добавляем "None" в конец массива */
<<for _i = 0; _i < _girls.length; _i++>>
<<set _girl = _girls[_i];>>
/* подготовка параметров девушек (включая "None") */
<<if _girl != 'none' >> /* Девушки */
/* фото и имя девушки */
<<set _name = '<span class="color ' + $p[_girl].parasite + '"></span> ' + $p[_girl].name; >>
<<set _photo = $p[_girl].photo; >>
/* добавляем класс wasted если девушка выбыла */
<<if $wasted.includes(_girl)>>
<<set _class='girl wasted'; _wasted = 1;>>
<<else>>
<<set _class='girl'; _wasted = 0;>>
<</if>>
<<else>> /* None */
<<set _name = 'None'; _photo = 'photo/none.jpg'; _class='girl none'; _wasted = 0;>>
<</if>>
/* отображаем девушку */
<div @id="_girl" @class="_class"> /* class='girl' */
<div class="photo"><img @src="_photo"></div>
<div class="name">_name</div>
<div class="check">✔</div>
<<capture _girl, _wasted>>
<<link ''>>
/* если девушка не выбыла из игры */
<<if _wasted != 1>>
/* убираем клас "chosen" у ранее выбранного решения */
<<if _chosen >><<toggleclass `'#' + _chosen` 'chosen'>><</if>>
/* указываем выбор игрока */
<<set _chosen = _girl;>>
/* добавляем клас "chosen" */
<<toggleclass `'#' + _chosen` 'chosen'>>
<</if>>
<</link>>
<</capture>>
/* если девушка выбыла */
<<if _wasted == 1>><div class="wasted-text"><span>WASTED</span></div><</if>>
</div><!-- .girl -->
<</for>>
</div><!-- .choose-girls -->
/* подсказка к выполнению квеста */
<div class="quest-info">
<<link "Not sure? Click here">>
<<run Dialog.create("Taming Parasites").wikiPassage("aboutParasiteColor").open();>>
<</link>>
</div><!-- .quest-info -->
/* ссылка на подтверждение принятого решения */
<div class="links quest-confirm-link">
<<link '➥ Click to confirm your choice <div>(See the result of your choice)</div>'>>
/* если выбор сделан, обрабатываем результат */
<<if _chosen >>
/* сохраняем выборанный игроком вариант */
<<set $q.active.girl = _chosen; >>
/* сохраняем день выполнения квеста (чтобы избежать повторного выполнения) */
<<set $q.day = $day; >>
/* если выборан "None" */
<<if $q.active.girl == 'none'>>
<<set $p[$q.active.infected].health -= $damageParasite;>>
<<if $p[$q.active.infected].health <= 0 >>
<<set $p[$q.active.infected].health = 0;>>
<<run $wasted.pushUnique($q.active.infected);>>
<</if>>
<<goto 'Quest-Parasite-LossNone'>>
/* если выбрана девушка */
<<else>>
/* подготовка параметров */
<<set
_chance = 15; /* базовый шанс на успех */
_problemGirlColor = $p[$q.active.infected].parasite; /* цвет квестовой девушки */
_chosenGirlColor = $p[$q.active.girl].parasite; /* цвет выбранной девушки */
>>
/* если цвет паразита выбранной девушки подходим, повышаем шанс на 50% */
<<if $q.active.color[_chosenGirlColor].includes(_problemGirlColor)>>
<<set _chance += 65; >>
<</if>>
/* если паразит усмирен */
<<if _chance >= random(1, 100) >>
<<set $chemicals += $winParasite; >>
<<goto 'Quest-Parasite-Win'>>
/* если не удалось усмирить паразита */
<<else>>
<<set $p[$q.active.infected].health -= $damageParasite;>>
<<if $p[$q.active.infected].health <= 0>>
<<set $p[$q.active.infected].health = 0;>>
<<run $wasted.pushUnique($q.active.infected);>>
<</if>>
<<goto 'Quest-Parasite-LossGirl'>>
<</if>>
<</if>>
<</if>>
<</link>>
</div><!-- .links .quest-confirm-link -->
<</can>>
</div><!-- .quest-parasite -->
$bg
/* подготавливаем изображение девушки */
<<if $p[$q.active.infected].health > 0 >>
/* если девушка не выбыла */
<<set _img = 'img/girls/DamagedGirl-' +$p[$q.active.infected].face+ '-' +random(1,3)+ '.jpg';>>
<<else>>
/* если выбыла */
<<set _img = 'img/girls/WastedGirl-' +$p[$q.active.infected].face+ '-' +random(1,2)+ '.jpg';>>
<</if>>
/* отображаем девушку */
<<img _img>>
<<say 'Computer'>>
<p>
<<=$p[$q.active.infected].name>> tried to subdue her parasite on her own, but this only enraged it further. As a result, the parasite attacked <<=$p[$q.active.infected].name>> (-<<=$damageParasite>>% health).
</p>
<u><<=$p[$q.active.infected].name>>'s current health is now:</u> <<=$p[$q.active.infected].health>>%.
<</say>>
/* ---- Навигация ---- */
<<include 'Navigation'>>$bg
<<set _img = 'img/girls/GoodGirl-' + $p[$q.active.infected].face + '.jpg'; >>
<<img _img>>
/* отображаем результат, который получил игрок */
<<say 'Computer'>>
<p>
<<=$p[$q.active.girl].name>> managed to subdue <<=$p[$q.active.infected].name>>’s parasite by releasing a special chemical compound from her own parasite. During this process, <<=$p[$q.active.infected].name>>’s parasite released some chemicals, which we carefully collected. These chemicals can now be used to craft useful supplies to help us endure longer.
</p>
<u>Chemicals obtained:</u> +$winParasite.
<</say>>
/* ---- Навигация ---- */
<<include 'Navigation'>>$bg
/* подготавливаем изображение девушки */
<<if $p[$q.active.infected].health > 0 >>
/* если девушка не выбыла */
<<set _img = 'img/girls/DamagedGirl-' +$p[$q.active.infected].face+ '-' +random(1,3)+ '.jpg';>>
<<else>>
/* если выбыла */
<<set _img = 'img/girls/WastedGirl-' +$p[$q.active.infected].face+ '-' +random(1,2)+ '.jpg';>>
<</if>>
/* отображаем девушку */
<<img _img>>
<<say 'Computer'>>
<p>
<<=$p[$q.active.girl].name>> attempted to subdue <<=$p[$q.active.infected].name>>’s parasite, but the chemical signals released by <<=$p[$q.active.girl].name>>’s parasite inadvertently triggered a heightened aggression response in <<=$p[$q.active.infected].name>>’s parasite. The chemical compounds emitted by <<=$p[$q.active.girl].name>>’s parasite were not compatible with the specific receptor pathways of <<=$p[$q.active.infected].name>>’s parasite, causing it to become more hostile instead of calming down. As a result, <<=$p[$q.active.infected].name>>’s parasite inflicted damage to her health (-<<=$damageParasite>>% Health).
</p>
<u><<=$p[$q.active.infected].name>>'s current health is now:</u> <<=$p[$q.active.infected].health>>%.
<</say>>
/* ---- Навигация ---- */
<<include 'Navigation'>>
<table class="modal">
<tr>
<td class="img"><img src="ui/question.jpg"></td>
<td class="text">
<p>Each girl is infected with a parasite of a specific color. Although the color of the parasite is a conditional parameter, it characterizes the ability of the parasites of some girls to tame the parasites of other girls with a higher probability.</p>
</td>
</tr>
</table>/* параметры награды */
<<set _rewards = ["Food", "Water", "Medkit"]; $q.active.rewards = {};>>
/* определяем награду */
<<for _i = 0; _i < $winMonster; _i++>>
<<set _reward = _rewards.random();>>
<<if typeof $q.active.rewards[_reward] == "undefined">>
<<set $q.active.rewards[_reward]=1;>>
<<else>>
<<set $q.active.rewards[_reward]++;>>
<</if>>
<</for>>
/* определяем монстра */
<<set
$q.active.monster = Object.keys($m).random(); /* выбираем монстра */
$q.active.needSkill = $m[$q.active.monster].weakness; /* слабая сторона монстра */
>>
/* подготовка изображения монстра */
<<set
$q.active.taskImg = 'img/' +$locationChosen+ '/Monster-Task-'+$q.active.monster+'-'+random(1,4)+'.jpg';
>>
/* применение Tesla Strike */
<<set
$q.active.teslaText = "barely had time to react when the monster attacked, but in her hands was the «Tesla Strike». Just a couple of blows with the experimental weapon, and the creature fled in panic. Victorious, she returned - our shelter is safe. And if the monster comes back, we will use the «Tesla Strike» again.";
>>
<<switch $q.active.monster>>
<<case "Monster1">>
<<set
$q.active.taskText = "We have detected an aggressive mutant monster near our shelter. This monster is extremely strong and capable of delivering rapid critical damage to anyone who gets too close. We must immediately send someone who can easily dodge the monster’s powerful critical attacks to avoid taking damage and drive it away from our shelter. This is the only way we can protect ourselves for some time.";
$q.active.winText = "easily dodged the monster's attacks, her agility allowing her to avoid critical damage and strike back with enough force to drive it away from our shelter. But who knows when this creature might decide to return again...";
$q.active.lossText = "tried to dodge the monster's powerful attacks, but her agility was not enough to avoid taking damage. As a result, the monster easily dealt critical damage to her. Perhaps someone more agile should have been chosen to fight this monster? Well, now we can only hope that the monster will choose a different priority instead of our shelter.";
>>
<<case "Monster2">>
<<set
$q.active.taskText = "We have detected an aggressive mutant monster in close proximity to our shelter. Our scanners indicate that this monster has an enormous health pool, making it nearly impervious to regular weak attacks. We must immediately send someone who can land multiple powerful critical hits in a short period of time. Only this way can we drive the creature away from our shelter and ensure our safety for a while.";
$q.active.winText = "faced the enormous monster, which seemed invincible, but after delivering several powerful critical hits, she forced it to flee. Now our shelter is safe... But who knows for how long...";
$q.active.lossText = "tried to damage the monster, but her strength was not enough to even scratch its thick hide. As a result, the monster easily dealt critical damage to her. Perhaps someone stronger should have been chosen to fight this monster? Well, now we can only hope that the monster will choose a different priority instead of our shelter.";
>>
<<case "Monster3">>
<<set
$q.active.taskText = "We have detected an aggressive mutant monster in close proximity to our shelter. Our scanners indicate that this monster releases poisonous spores, which immediately stick to any living creature that approaches it, dealing damage if not removed from the skin. We must immediately send a woman who can both deal damage to the monster and remove the poisonous spores from her skin at the same time. Only this way can we drive this creature away from our shelter and ensure our safety for a while.";
$q.active.winText = "clashed with a terrifying monster that snarled and released poisonous spores. It attacked with full force, trying to deal multiple blows - not only with its claws and teeth but also with the venom from the spores. But our girl was more than a match for it. She kept shaking off the toxic spores while striking back again and again. With ease, she drove the creature away from our shelter. Yet our joy is clouded by the suspicion that it may return.";
$q.active.lossText = "tried to deal damage to the monster, but the poisonous spores it released immediately clung to her. While she tried to remove the spores from her skin, the monster managed to inflict serious critical damage on her. Perhaps someone with more stamina should have been chosen to fight this creature? Let's hope that the monster will choose a different target for its next attack instead of the door to our shelter...";
>>
<<case "Monster4">>
<<set
$q.active.taskText = "We have detected an aggressive mutant monster in close proximity to our shelter. This monster is physically weak, but its mutation has hypertrophied its brain to the point where it can suppress anyone who approaches by telepathically transmitting their fears into their subconscious, amplifying them exponentially. We must immediately send someone who can withstand these telepathic attacks, separating reality from subconscious fears. Only this way can we drive this creature away from our shelter and ensure our safety for a while.";
$q.active.winText = "felt the monster trying to invade her subconscious, searching for her fears as illusions of ghosts from her past surrounded her. Yet her strong mind easily overcame the psychic attack, leaving the creature stunned by her resilience. Seizing the moment, she dealt critical damage with ease, forcing it to flee in panic. Let's hope the terrifying monster doesn’t return, armed with new psychic attacks.";
$q.active.lossText = "was determined to fight the monster, but it conjured an illusion of one of her deepest subconscious fears. Her mind couldn’t distinguish reality from the terrifying vision, and in panic, she fell to her knees, clutching her head. Seizing the moment, the monster struck, dealing critical damage. Perhaps someone with a stronger intellect should have been chosen to face this creature? Either way, for some reason, the intelligent monster left our shelter… Perhaps it saw us as too foolish to be worth its time?";
>>
<</switch>>
<<img $q.active.taskImg>>
<div class="quest-monster">
/* отображаем текст задачи, которую нужно выполнить */
<<say 'Computer'>><<= $q.active.taskText; >><</say>>
/* отображаем девушек, которых нужно выбрать для квеста */
<<can 'Choose a girl:'>>
/* отображаем всех девушек */
<div class="choose-girls">
<<set _girls = Object.keys($p); >>
<<for _i = 0; _i < _girls.length; _i++>>
/* подготовка параметров */
<<set _girl = _girls[_i]; >>
<<if $wasted.includes(_girl)>>
<<set _class = 'girl wasted';>>
<<else>>
<<set _class = 'girl';>>
<</if>>
/* отображаем девушку */
<div @id="_girl" @class="_class"> /* class='girl' */
<div class="photo"><img @src="$p[_girl].photo"></div>
<div class="name"><<=$p[_girl].name>></div>
<div class="check">✔</div>
<<capture _girl>>
<<link ''>>
/* если девушка не выбыла из игры */
<<if !$wasted.includes(_girl)>>
/* убираем клас "chosen" у ранее выбранного решения */
<<if _chosen >><<toggleclass `'#' + _chosen` 'chosen'>><</if>>
/* указываем выбор игрока */
<<set _chosen = _girl;>>
/* добавляем клас "chosen" */
<<toggleclass `'#' + _chosen` 'chosen'>>
<</if>>
<</link>>
<</capture>>
/* если девушка выбыла */
<<if $wasted.includes(_girl)>>
<div class="wasted-text"><span>WASTED</span></div>
<</if>>
</div><!-- .girl -->
<</for>>
</div><!-- .choose-girls -->
/* ссылки с вариантами предметов */
<div class="title can-title weap">Arm her:</div>
<div class="choose-items">
/* количество отображаемых предметов + "Nothing" */
<<set _items = ['ShockBat', 'TeslaStrike']; >>
<<for _i = 0; _i < _items.length; _i++>>
/* определяем параметры */
<<set _item = _items[_i]; _img = $i[_item].img; _name = $i[_item].title;>>
/* добавляем класс miss если предмета нет в инвентаре */
<<if $i[_item].count <= 0>>
<<set _class='item miss';>>
<<else>>
<<set _class='item';>>
<</if>>
/* отображаем предмет для выбора */
<div @id="_item" @class="_class"> /* class='item' */
<img @src="_img">
<div class="name">_name</div>
<div class="check">✔</div>
<<capture _item>>
<<link ''>>
/* если предмет есть в инвентаре */
<<if $i[_item].count > 0>>
/* убираем клас "chosen" у ранее выбранного решения */
<<if _weap >><<toggleclass `'#' + _weap` 'chosen'>><</if>>
/* указываем выбор игрока */
<<set _weap = _item;>>
/* добавляем клас "chosen" */
<<toggleclass `'#' + _weap` 'chosen'>>
<</if>>
<</link>>
<</capture>>
/* если предмета нет в инвентаре */
<<if $i[_item].count == 0>>
<div class="miss-text"><span>COUNT: 0</span></div>
<</if>>
</div><!-- .item -->
<</for>>
</div><!-- .choose-items -->
/* подсказка к выполнению квеста */
<div class="quest-info">
<<link "Not sure about your choice? Click here.">>
<<run Dialog.create("About Monsters").wikiPassage("aboutMonsters").open();>>
<</link>>
</div><!-- .quest-info -->
/* ссылка на подтверждение принятого решения */
<div class="links quest-confirm-link">
<<link '➥ Click to confirm your choice <div>(See the result of your choice)</div>'>>
/* если выбор сделан, обрабатываем результат */
<<if _chosen >>
/* сохраняем выборанную игроком девушку и оружие */
<<set $q.active.girl = _chosen; $q.active.weap = _weap; >>
/* сохраняем день выполнения квеста (чтобы избежать повторного выполнения) */
<<set $q.day = $day; >>
/* шанс на победу */
<<set _chance = $p[$q.active.girl][$q.active.needSkill]; >>
/ * если выбран предмет, повышаем шанс и убираем предмет */
<<if $q.active.weap == 'ShockBat' >>
<<set _chance += $useShockBat; $i.ShockBat.count--;>>
<</if>>
/ * если выбран суперпредмет */
<<if $q.active.weap == 'TeslaStrike'>><<set _chance = 100;>><</if>>
/* если монстр побежден */
<<if _chance >= random(1, 100) >>
/* добавляем награду в инвентарь */
<<for _reward, _count range $q.active.rewards>>
<<set $i[_reward].count += _count;>>
<</for>>
/* переходим в пассаж с победой */
<<goto 'Quest-Monster-Win'>>
/* если монстр не побежден, переходим в пассжа с проигрышем */
<<else>>
/* уменьшаем ХП */
<<set $p[$q.active.girl].health -= $damageMonster;>>
<<if $p[$q.active.girl].health <= 0 >>
<<set $p[$q.active.girl].health = 0;>>
<<run $wasted.pushUnique($q.active.girl);>>
<</if>>
/* переходим в пассаж с проигрышем */
<<goto 'Quest-Monster-Loss'>>
<</if>>
<</if>>
<</link>>
</div><!-- .links .quest-confirm-link -->
<</can>>
</div><!-- .quest-monster --><table class="modal">
<tr>
<td class="img"><img src="ui/question.jpg"></td>
<td class="text">
<p>All monsters have strengths. But their strengths also expose their weaknesses at the same time. Carefully analyze the task, and based on the description of the monster, try to determine which girl with the highest parameter (Strength, Stamina, Agility, Mind) will be most effective in influencing the monster.</p>
</td>
</tr>
</table>$bg
<<set _img = 'img/girls/FightGirl-' + $p[$q.active.girl].face + '.jpg'; >>
<<img _img>>
/* отображаем результат, который получил игрок */
<<say 'Computer'>>
/* отображаем сообщение */
<<if $q.active.weap == 'TeslaStrike'>>
<p><<=$p[$q.active.girl].name>> <<=$q.active.teslaText>></p>
<<else>>
<p><<=$p[$q.active.girl].name>> <<=$q.active.winText>></p>
<</if>>
/* показываем награду игрока */
On her way back to the shelter, <u><<=$p[$q.active.girl].name>> found something useful:</u>
<ul>
<<for _reward, _count range $q.active.rewards>>
<li><<=_reward>> <i>(x<<=_count>>)</i></li>
<</for>>
</ul>
/* если использовался предмет */
<<if $q.active.weap == 'ShockBat' >>
<u><<=$p[$q.active.girl].name>> spent:</u>
<ul>
<li><<= $i[$q.active.weap].title; >></li>
</ul>
<</if>>
<</say>>
/* ---- Навигация ---- */
<<include 'Navigation'>>$bg
/* подготавливаем изображение девушки */
<<if $p[$q.active.girl].health > 0 >>
/* если девушка не выбыла */
<<set _img = 'img/girls/DamagedGirl-' +$p[$q.active.girl].face+ '-' +random(1,3)+ '.jpg';>>
<<else>>
/* если выбыла */
<<set _img = 'img/girls/WastedGirl-' +$p[$q.active.girl].face+ '-' +random(1,2)+ '.jpg';>>
<</if>>
/* отображаем девушку */
<<img _img>>
/* отображаем результат, который получил игрок */
<<say 'Computer'>>
<p><<=$p[$q.active.girl].name>> <<=$q.active.lossText>></p>
<ul>
<li><u><<=$p[$q.active.girl].name>>'s health has decreased</u>: -<<=$damageMonster>>%.</li>
<li><u>Now her health is</u>: <<=$p[$q.active.girl].health>>%.</li>
</ul>
/* если использовался предмет */
<<if $q.active.weap == 'ShockBat' >>
<u><<=$p[$q.active.girl].name>> spent:</u> <<= $i[$q.active.weap].title; >>
<</if>>
<</say>>
/* ---- Навигация ---- */
<<include 'Navigation'>>
$bg
<<set _img = 'img/items/Use-' + $q.active.chosen + '.jpg'; >>
<<img _img>>
<<say 'Computer'>>
<p><<= $q.active.choices[$q.active.chosen]>></p>
<u>You spent:</u> <<=$i[$q.active.chosen].title;>>
<</say>>
/* ---- Навигация ---- */
<<include 'Navigation'>>$bg
<<set _img = 'img/items/Use-Nothing.jpg'; >>
<<img _img>>
<<say 'Computer'>>
<<= $q.active.choices["Nothing"]>>
<</say>>
/* ---- Навигация ---- */
<<include 'Navigation'>><table class="modal">
<tr>
<td class="img"><img src="ui/attention.jpg"></td>
<td class="text">
<p>You cannot use the Imaginarium more than $t.imaginariumTotal times a day. New charges for the Imaginarium will be available tomorrow.</p>
<<if $t.imaginariumTotal == 2>>
<hr>
<p>You can gain more daily charges by using the Patreon subscriber cheat code
<img src="ui/patreon-min.svg" style="display: inline-block; width: 12px; height: 12px;"></p>
<</if>>
</td>
</tr>
</table>
<<widget "say" container>>
<<set _name = _args[0]; >> /* имя */
<<if _args[1]>>
<<set _photo = 'photo/' + _name + '-' + _args[1] + '.jpg'; >> /* фото с эмоцией */
<<else>>
<<set _photo = 'photo/' + _name + '.jpg'; >> /* фото без эмоции */
<</if>>
<div class="say-widget">
<div class="say-photo">
<img @src="_photo">
</div>
<div class="say-content-wrap">
<div class="say-content">
<div class="say-name">_name:</div>
<div class="say-text">_contents</div>
</div>
</div>
</div>
<</widget>><style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Jess'; _man = 'Guy'; _video = '2'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Jess, get on your knees and open that pretty mouth of yours. I'm going to fuck your face hard.
<</say>>
<<say _girl>>
Mmm, yeah, give it to me. Shove your big cock deep in my throat. I want to feel you hitting the back of my throat.
<</say>>
<<say _man>>
Take it all, you dirty slut. Gag on it. Look at me while I use your mouth. You love being my cocksleeve, don't you?
<</say>>
<<say _girl>>
Fuck yeah! Your cock tastes so good in my mouth, I love sucking you off like this. I'm getting so wet just from blowing you.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
Your tongues feel so good on my cock. I love watching you two pleasuring me together.
<</say>>
<<say _girl>>
Mmm, I can taste how excited you are. Let me take care of that big hard dick for you.
<</say>>
<<say _man>>
Just like that, Jess. Suck it deep into your mouth. I want to feel your warm wet tongue all the way down my shaft.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
I'm going to ride your big cock hard while she sits on your face. You like that, don't you?
<</say>>
<<say _man>>
Damn right I do. Get your tight pussy over here and fuck me good. And you, keep grinding on my tongue.
<</say>>
<<say _girl>>
I will bounce on your cock so hard that you will feel incredible inside me. Don't stop eating her out.
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
You like that, baby? I'm going to pound your sweet little cunt hard.
<</say>>
<<say _girl>>
Yes, fuck me harder! Ram your big cock deep in my pussy.
<</say>>
<<say _man>>
I'm railing you so hard. This is the best pussy I've ever fucked.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
This is so hot watching you fuck her tight pussy. I can't wait for my turn.
<</say>>
<<say _man>>
You like watching me pound her hard? I'm going to make her cum so loud.
<</say>>
<<say _girl>>
Mmm I'm getting so wet seeing you dominate her. Fuck her deeper, make her moan.
<</say>>
<<say _man>>
I'm going to rail her so hard she won't be able to walk straight. You want me to do that to you too?
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Your cock tastes so good in my mouth, I love sucking you off like this.
<</say>>
<<say _man>>
Damn, your lips feel amazing wrapped around my dick. Suck it harder, Jess.
<</say>>
<<say _girl>>
I want to make you feel incredible with my mouth. Is this blowing your mind?
<</say>>
<<say _man>>
Hell yeah, your blowjobs are always top-notch. Keep going just like that, babe.
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
You're such a sexy little slut, bouncing up and down on my dick. I love watching your tits jiggle as you ride me.
<</say>>
<<say _girl>>
Mmm, your cock is hitting me so deep in this position. I want you to fuck me harder, slam your cock into my tight little pussy.
<</say>>
<<say _man>>
I'll fuck you as hard as you want, you dirty whore. You like it rough, don't you? I'll pound your cunt until you're screaming my name.
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
Damn, your ass looks incredible from this angle. I love watching it jiggle as you slam down on my dick.
<</say>>
<<say _girl>>
Mmm, I love how deep you're fucking me. Your cock fills me up so completely. Suck her pussy while I ride you hard. Make her cum all over your face.
<</say>>
<<say _man>>
I'm savoring every drop of her sweet juices. She tastes so fucking good, especially combined with your pussy on my dick.
<</say>>
<<say _girl>>
I want to feel your cum in my mouth. Give it to me, you nasty stud!
<</say>>
<<case 9>>
<<video _url>>
<<say _girl>>
Mmm, your cum tastes so sweet and thick. I love savoring every drop. I'm going to enjoy licking you clean.
<</say>>
<<say _man>>
You look so hot with your mouth full of my jizz. Swallow it all like a good girl. Yeah, damn, it's so hot watching you girls pleasure each other with my cum.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Jess'; _man = 'Guy'; _video = '3'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Ahh, your cock feels so big in my mouth. I love sucking you off like this.
<</say>>
<<say _man>>
Yeah, take it all. Worship my dick with that pretty little mouth of yours.
<</say>>
<<say _girl>>
Mmm, I'm such a dirty slut for you. Use my face however you want.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
Fuck me harder, I want to feel your big cock deep inside me. Don't hold back, give it to me rough.
<</say>>
<<say _man>>
You like that, huh? You want me to fuck your tight little pussy as hard as I can? I'll pound you so deep, you won't be able to walk straight.
<</say>>
<<say _girl>>
Yes, just like that! Slam your cock into me, fuck me like a dirty slut. I'm your filthy whore, use me however you want.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
You like that, baby? My big cock feels so good inside your tight little pussy.
<</say>>
<<say _girl>>
Oh yeah, fuck me harder! Use me, pound my cunt with your huge dick. I'm such a dirty slut for you.
<</say>>
<<say _man>>
That's right, you're my filthy whore. Take it all, every inch. Cum on my cock, you nasty girl.
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Your cock feels so big and hard in my mouth. I love how you taste.
<</say>>
<<say _man>>
Take it all the way down your throat, you dirty slut. Choke on my dick.
<</say>>
<<say _girl>>
Mmm, I'm trying, baby. Fuck my face harder. Use my mouth however you want.
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
Your tight pussy feels so good riding my cock. Keep bouncing on it hard, I love watching your tits jiggle.
<</say>>
<<say _girl>>
You fill me up so deep and it feels incredible. I'm going to ride you until I come all over your dick.
<</say>>
<<say _man>>
Fuck yeah, ride me faster. Use my cock to get yourself off. I want to feel your hot juice dripping down my shaft when you explode on me.
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Your cock feels so big and hard inside me. I love bouncing on it like this, with my back to you.
<</say>>
<<say _man>>
You're riding me so well, baby. Your tight pussy is gripping my dick perfectly. Keep slamming yourself down on me.
<</say>>
<<say _girl>>
I'm going to cum on your cock any second now. Fuck me harder from behind! Ahhh, here it comes!
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
You like that, baby?
<</say>>
<<say _girl>>
Oh fuck yes, don't stop! Ram your huge dick deep in my cunt! Fuck me harder, I'm your dirty little slut!
<</say>>
<<say _man>>
Damn right you're my slut. This pussy is mine and I'm gonna pound it till you scream. Take it all, you filthy whore!
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Your cock feels so huge in my tight little pussy. Fuck me harder, I want you to split me in two!
<</say>>
<<say _man>>
I'm going to destroy your cunt with my thick dick. You're so fucking wet and tight, I'm pounding you into oblivion.
<</say>>
<<say _girl>>
Yes, use my pussy! Fuck me like a whore, I'm your slutty little fucktoy. Ruin me with that massive cock!
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
I'm gonna cum in that pretty little mouth of yours, you filthy slut. Open wide and take my load.
<</say>>
<<say _girl>>
Mmm, your hot jizz is filling my mouth. Don't stop, give me every last drop. I love being your dirty cum dump.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Jess'; _man = 'Guy'; _video = '4'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock tastes so good in my mouth, I love sucking you off like this. I'm getting so wet just from blowing you.
<</say>>
<<say _man>>
Fuck yeah, your mouth feels amazing. Suck it harder, I want to feel you deepthroating my big dick. You're such a good little slut.
<</say>>
<<say _girl>>
Mmm, I'm taking you all the way down my throat, you like that don't you? I want you to come in my mouth and fill me with your hot cum.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
Fuck yeah, your tight little pussy is gripping my cock so hard. Your tits are bouncing and your ass is slapping against me with each thrust. Keep riding me, slam that cunt down on my cock.
<</say>>
<<say _girl>>
I love riding you like this, looking into your eyes as I bounce on your dick. Your cock feels so good inside me, pounding my wet pussy. I'm going to cum so hard on your big dick. Fuck me faster, make me your dirty little slut.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Damn, your ass is so tight around my dick. Bounce on it faster, I want to feel you clenching me as I slam deep inside your ass.
<</say>>
<<say _girl>>
Oh yeah, use my ass! Pound me hard from below, I'm such a dirty slut for your huge cock. Make me your anal whore!
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Fuck me harder! Use my ass for your pleasure. I want you to destroy my filthy backdoor with your big dick.
<</say>>
<<say _man>>
I'm gonna pound your asshole until I explode deep inside you. You're nothing but a worthless fucktoy for my cock. Your tight ass feels so good bouncing on my cock. I love watching you ride me like a slutty little cowgirl.
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
Your tight little ass feels so good, Jess. I love fucking your asshole deep and hard.
<</say>>
<<say _girl>>
Fuck me harder, I want to feel your big cock stretching my ass to the limit. Use my ass for your pleasure.
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
You like that, you filthy slut? Take it all, my big cock is gonna wreck your tight little asshole.
<</say>>
<<say _girl>>
Oh fuck, your cock feels so huge in my ass! Slam it deep, I want you to destroy me. Use me like your personal fucktoy.
<</say>>
<<say _man>>
I'm gonna rail your ass so hard you'll be sore for a week. You're nothing but a cumdumpster for my load.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Oh fuck yes, fuck my ass! Use me like your little anal slut, I want it so rough.
<</say>>
<<say _man>>
Damn right you're my fucktoy, your asshole is mine to wreck. I'm gonna pound your asshole so hard. I'm gonna blow my load deep in your ass.
<</say>>
<<say _girl>>
Cum in my ass, fill me up with your hot jizz! I'm your dirty anal cumdumpster, use me.
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
Your mouth feels so fucking good, Jess. Suck my cock harder, you dirty slut.
<</say>>
<<say _girl>>
I love pleasuring you with my mouth, baby. Your cock tastes so amazing as I deepthroat it.
<</say>>
<<say _man>>
Gag on my big dick, you cock-hungry whore. Choke on it as you worship my shaft with your hot tongue.
<</say>>
<<case 9>>
<<video _url>>
<<say _girl>>
Mmm, I love the taste of your load on my tongue. You know I'll do anything to please you. Fuck, you came so much!
<</say>>
<<say _man>>
Your face is so fucking hot with my cum all over it. Lick it up, you dirty slut. Swallow every last drop.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Jess'; _man = 'Guy'; _video = '5'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Your mouth feels so good wrapped around my cock. Suck it harder, slut. I want to feel your throat constricting around me as I fuck your face.
<</say>>
<<say _girl>>
Mmm, I love the taste of your hard dick in my mouth. Use my throat, fuck my face however you want. I'm your dirty little cocksleeve.
<</say>>
<<say _man>>
Look at you, eyes watering as I thrust deep into your throat. Such a good little whore, taking my cock so well.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
You like that, you dirty slut? You like it when I fuck your tight little asshole? Take it all, you filthy whore.
<</say>>
<<say _girl>>
Oh god, it feels so good! Fuck me harder, you bastard! Use me, I'm your cock slut. Make me your anal whore.
<</say>>
<<say _man>>
That's right, you're nothing but a cheap anal fuckhole for me. I'm gonna destroy your ass, you dirty cum dumpster.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Your ass feels so tight around my cock, Jess. Ride me harder, I want to feel you clenching as I pound into you from below.
<</say>>
<<say _girl>>
I love the way you fill me up, it hurts so good. Your thrusts are so deep and rough, just the way I like it. Give it to me harder!
<</say>>
<<say _man>>
Seeing your sexy body bounce on top of me as I drill your tight ass is such a turn on. You're a filthy little slut who loves it rough, aren't you?
<</say>>
<<say _girl>>
Yes, Yes, Yes, Yes, Yes!
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
You like that, don't you? Fucking my tight ass while I'm on my back. Take it, you animal.
<</say>>
<<say _man>>
Damn right I do. Your asshole feels so good clenching around my cock. I'm going to rail you hard.
<</say>>
<<say _girl>>
Yes, fuck me! Use my ass, I want you to destroy it. Pound me as hard as you can.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
I love riding your cock like this, it feels so good deep inside my ass. Keep thrusting up into me hard, I want to feel you pound my tight little asshole.
<</say>>
<<say _man>>
Fuck yeah, your ass is so tight around my dick. I love watching you bounce on top of me, taking my cock deep in your ass. Ride me harder, I want to feel you clench around me.
<</say>>
<<say _girl>>
Mmm I'm gonna ride you so hard, make you feel so good in my ass. Love the way you fill me up, use my ass for your pleasure. Give it to me, fuck my ass hard!
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Mmmph, I'm going to deepthroat you so hard. Your cock feels so good in my mouth, I love being used like this. Fuck my face, I'm just here for your pleasure.
<</say>>
<<say _man>>
That's right, take it all the way down your throat. You're my little cocksucker.
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
That's it, ride my dick with that sexy ass. I love watching you take it hard, you dirty little slut. Keep slamming down on me.
<</say>>
<<say _girl>>
Mmm yes, use my asshole for your pleasure! Fuck me rough, I want to feel you owning my ass completely. Don't hold back.
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
I'm ramming your tight asshole just how you like it, you dirty slut. Scream for me as I pound your backdoor.
<</say>>
<<say _girl>>
Oh fuck, you're tearing me apart with your big cock! Fuck my ass harder, I want you to destroy it completely.
<</say>>
<<case 9>>
<<video _url>>
<<say _girl>>
You love jizzing all over my face don't you, you filthy fucker. Mark me with your hot load.
<</say>>
<<say _man>>
Damn right I do, you're my kinky little cum dumpster. Open wide for my thick cream pie.
<</say>>
<<say _girl>>
Mmm yes, give it to me you nasty stud. I want to feel your seed dripping off my chin.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Lana'; _man = 'Guy'; _video = '2'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Your mouth feels so fucking good, Lana. I love using it like my personal fuckhole.
<</say>>
<<say _girl>>
Mmmph, ghhkk... I'm your dirty little cock sleeve, aren't I? Suck you off so well, baby.
<</say>>
<<say _man>>
Yeah, you're my cocksucking whore. Love how deep you're throating my big dick. Gag on it.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
Your tight pussy feels so good. I love fucking you from behind like this.
<</say>>
<<say _girl>>
Ah, yes! Fuck me harder! Ram your big cock deep in my cunt!
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Your tight little ass feels so good, Lana. I love pounding your asshole while you rub your clit. Keep stroking yourself, you dirty girl. I want to feel you cum on my cock.
<</say>>
<<say _girl>>
Oh fuck, your cock is so deep in my ass! I'm getting so close, your cock feels incredible. Keep fucking me hard, I want to cum all over your dick.
<</say>>
<<say _man>>
Play with your pussy, make yourself cum on my big dick. I love watching you touch yourself while I rail your ass. Such a filthy slut, taking my cock in your tight ass.
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
You like that, huh? My tight pussy feels so good around your big cock. Fuck me harder, I want you to destroy me.
<</say>>
<<say _man>>
Your cunt is so fucking wet. I'm gonna pound you until your pussy is dripping. Take it, you dirty slut.
<</say>>
<<say _girl>>
Yes, use me! Fuck your whore as hard as you can. My pussy is all yours, ruin it with your huge dick.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
You're fucking me so hard, I love it. Your big cock is stretching my tight pussy.
<</say>>
<<say _man>>
I'm going to pound you until you're screaming my name. This pussy is mine now.
<</say>>
<<say _girl>>
Fuck me harder! Use my holes however you want. I'm just a slut for your cock.
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Your cock is stretching me so much, it hurts but I love it. Fuck me harder, I want more!
<</say>>
<<say _man>>
I'll give you more, you dirty slut. Gonna rail your ass until you can't walk straight.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Your cock feels so huge in my mouth, fucking my face like that. I love being used like your dirty little slut.
<</say>>
<<say _man>>
That's right, take it all the way down your throat. Choke on my big dick as I skull fuck your pretty face.
<</say>>
<<say _girl>>
Mmmph, mmmph! Oh yeah, use my mouth, I'm just here for your pleasure. Fuck my throat hard.
<</say>>
<<say _man>>
Look at you, drooling all over my cock. What a disgusting whore. I'm gonna blow my load down your filthy throat.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Fuck me harder, you bastard! Ram your huge cock into my tight pussy. I want to feel every brutal inch.
<</say>>
<<say _man>>
You like that, you filthy slut? Take my dick like a good little whore. Scream for me while I fuck you raw.
<</say>>
<<say _girl>>
Ah, fuck yes! Split me open with your massive cock! Use my wet cunt for your pleasure, you animal.
<</say>>
<<say _man>>
Such a hot, greedy pussy. I'm going to destroy it with my thick cock. You're nothing but a cum dump for me.
<</say>>
<<case 9>>
<<video _url>>
<<say _girl>>
Fuck yeah, cover my tits and face with your hot cum. I want to feel it dripping all over me.
<</say>>
<<say _man>>
Your sexy body is making me explode. I'm going to blast you with my load, you filthy slut.
<</say>>
<<say _girl>>
Coat me in your thick jizz, stud. Mark me as your dirty whore.
<</say>>
<<say _man>>
Here it comes, bitch. Open wide and take every drop. You're a fucking cum dumpster.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Lana'; _man = 'Guy'; _video = '3'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Your mouths feel so good on my cock. I love watching you two pleasuring me together. Lana, your girlfriend is really getting into it. Looks like she's enjoying my dick as much as you.
<</say>>
<<say _girl>>
Mmm, she does seem to be having fun. We both love the taste of your hard cock in our mouths.
<</say>>
<<say _man>>
Damn right. Keep working it with your tongues, girls. I'm really getting turned on by this little show.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
Oh yeah, give it to me rough, baby. Fuck me like you mean it.
<</say>>
<<say _man>>
You like that, don't you? You want me to pound your cunt with my big cock?
<</say>>
<<say _girl>>
Yes, fuck me harder! Use my pussy, I'm your dirty little slut.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
Yes, fuck me! Ram your cock deep in my cunt! I want to feel every inch of you splitting me open. Don't hold back, give it to me rough.
<</say>>
<<say _man>>
You're such a dirty little slut, taking my cock like that. I'm going to use your holes and make you moan.
<</say>>
<<say _girl>>
I'm your whore, use me! Fuck my wet pussy with your huge dick! I'm here for your pleasure. Make me your cum dump, I don't need foreplay.
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
Your mouth feels so fucking good, Lana. Suck my cock deep.
<</say>>
<<say _girl>>
I love the taste of your hard dick, baby. I want to deepthroat you.
<</say>>
<<say _man>>
That's it, take it all the way down your throat. You're such a good little cocksucker.
<</say>>
<<say _girl>>
Mmmhmm, your cock is so big. Fuck my throat, I can handle it.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
Mmm, I love the taste of her sweet pussy. Fuck me harder, I want to feel your big cock tear up my asshole while I feast on this dripping cunt.
<</say>>
<<say _man>>
You're taking my cock so well, you filthy whore. I'm going to pound your ass until it's raw and gaping. Your ass feels so tight, Lana. I love fucking you hard like this while you eat out your girlfriend. You're such a naughty slut. Suck that clit harder, make her cum for you.
<</say>>
<<say _girl>>
Yes, fuck my ass harder! I'm going to make her squirt all over my face. I love being your dirty little anal slut while I please my girlfriend.
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Mmm, your dick feels so big and hard inside my tight ass. I'm getting so turned on seeing you enjoy this.
<</say>>
<<say _man>>
Damn, you're such a sexy slut, Lana. Keep slamming that juicy ass down on my shaft. I'm loving every second of this.
<</say>>
<<say _girl>>
Fuck me harder, baby! Pound my asshole with your huge cock. Make me your dirty little anal whore.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Wow, look at your cock sliding in and out of her tight pussy. She's really riding you hard, isn't she?
<</say>>
<<say _man>>
Yeah, she's a real slut for cock. I love watching her bounce up and down on my dick, taking it deep inside her.
<</say>>
<<say _girl>>
I can see how much she's enjoying it. Her face is all flushed and she's moaning with every thrust. You're fucking her so good.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Fuck me harder, baby! Ram your big cock deep in my ass. I want to feel you tear me apart. I love being your dirty whore! Use my ass, fuck it raw! Make me your anal plaything!
<</say>>
<<say _man>>
You like it, don't you? Taking my fat cock in your ass while your bitch girlfriend licks your dirty cunt. Such a naughty slut.
<</say>>
<<say _girl>>
Yes, I love being your dirty whore! Use my ass, fuck it raw! Make me your anal plaything!
<</say>>
<<case 9>>
<<video _url>>
<<say _girl>>
Yes, give it to me! Shoot your hot cum all over my ass. I want to feel it dripping down my crack.
<</say>>
<<say _man>>
You like that, don't you? My thick cum coating your asshole and dripping into your slutty girlfriend's mouth.
<</say>>
<<say _girl>>
Mm, yes! Your sperm is so warm and sticky. It makes me feel so dirty and used. Thanks for marking me with your load. I'm your dirty slut.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Lana'; _man = 'Guy'; _video = '4'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock feels so big and hard in my throat. I love deep throating you like this, on my knees servicing you.
<</say>>
<<say _man>>
Yeah, that's it baby. Take it all the way down. Choke on my big dick. I love seeing you struggle to fit it in your tight little mouth.
<</say>>
<<say _girl>>
Mmmf mmmf! I'm gonna make you feel so good. You like my hot mouth and throat milking your cock?
<</say>>
<<say _man>>
Fuck yes. Keep gagging and drooling all over it.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
Your cock feels so huge in my tight ass, pounding me from behind. I love being your anal slut.
<</say>>
<<say _man>>
That's right, you're my little anal whore. This ass is mine to fuck raw and hard however I want. Take my big dick deep in your ass.
<</say>>
<<say _girl>>
Fuck me harder! Abuse my asshole with your thick cock. Use me like the filthy fucktoy I am, I want to feel you wreck my ass.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Suck it harder, you dirty slut. Take it all the way down your throat. Choke on my big cock.
<</say>>
<<say _girl>>
Your cock tastes so good in my mouth. Mmm, I'm trying to deepthroat it. Love how it fills my mouth, how it feels sliding in and out between my lips. Want me to play with your balls too?
<</say>>
<<say _man>>
You love being my little cock sucker, don't you?
<</say>>
<<say _girl>>
God yes, I live to please you with my mouth. Use me however you want. I'm your personal sperm receptacle.
<</say>>
<<say _man>>
That's right, my cum dumpster. Now get back to work and don't stop until I blow my load down your throat.
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Your cock feels so huge in my tight ass, fucking me hard like this. I love bouncing on you, taking your big dick deep inside me.
<</say>>
<<say _man>>
Damn, your asshole is gripping my shaft so tightly as you ride me. I love seeing your sexy back and ass while I fuck your ass raw and hard.
<</say>>
<<say _girl>>
Mmm, pound my ass with your thick cock! Use me, fuck my holes hard, make me your dirty little anal slut. I'm here for your pleasure.
<</say>>
<<say _man>>
I'm going to fuck your ass until it's sore and gaping. Then I'll spray my hot cum all over your used holes.
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
Your tight little asshole feels so fucking good gripping my cock as you bounce on me. I love watching your big tits jiggle while you ride me hard.
<</say>>
<<say _girl>>
Mmm, your big dick stretching my ass feels incredible. I'm getting so turned on slamming my pussy down on you. Fuck my ass harder!
<</say>>
<<say _man>>
I'm pounding your asshole deep and hard, just like you love it. You're such a naughty slut, enjoying getting your ass fucked so much.
<</say>>
<<say _girl>>
Yes, use my ass for your pleasure! Keep fucking me, I'm your dirty fucktoy!
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Fuck me harder, I want you to destroy my ass. Use me like a slut.
<</say>>
<<say _man>>
I'm gonna rail your narrow backdoor so hard. You're my filthy anal whore.
<</say>>
<<say _girl>>
Pound my ass, make it hurt. I'm such a dirty cock sleeve for you.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Ah, your big dick stretching me out, it hurts so much but I love it. Fuck my ass harder, make me your dirty slut. Use me, I'm just your fucktoy. My asshole is all yours, fill it with your hard shaft. Oh god, you're so deep inside me...
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
Your tight ass feels so good, Lana. I love watching you rub your clit while I pound you from behind. You like that, don't you? Finger yourself harder for me.
<</say>>
<<say _girl>>
Oh yeah, your big cock stretching my ass is incredible. I'm getting so turned on rubbing my clit while you fuck me like this. My pussy is dripping wet.
<</say>>
<<say _man>>
I can see your juices running down your thighs, you dirty slut. You love being used by my cock, don't you? Fuck yourself with your fingers while I wreck your ass.
<</say>>
<<case 9>>
<<video _url>>
<<say _girl>>
Mmm, gimme that cock. I want to taste your hot load on my tongue and swallow every last drop.
<</say>>
<<say _man>>
Open wide, slut. I'm gonna pump your mouth full of my thick jizz. You're gonna love it.
<</say>>
<<say _girl>>
Unnnh, fill my mouth with your cream! Use me like your personal cock sleeve. I'm here for your pleasure.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Lana'; _man = 'Guy'; _video = '5'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Your mouth feels so amazing, Lana. Keep sucking my cock deep in your throat like that. I love watching you on your knees, servicing me with that sexy mouth of yours.
<</say>>
<<say _girl>>
Mmm, I love the taste of your hard cock in my mouth and throat, baby. Is this what you like? Me deepthroating you while I'm on my knees, using my tongue to please you?
<</say>>
<<say _man>>
Fuck yes, just like that. Relax your throat and take me even deeper. I want to feel your nose pressed against my stomach as you gag on my dick. You're such a good little cocksucker.
<</say>>
<<say _girl>>
Ghhk mmmph hhkk... I'm trying so hard to relax my throat and take you all the way down, baby. Choking on your big cock turns me on so much. Ahh hhkk mmm...
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
Your pussy feels so tight and wet around my cock. I love pounding into you hard like this.
<</say>>
<<say _girl>>
Fuck me deeper! Your big dick stretching me out feels so good. Slam it in as far as you can.
<</say>>
<<say _man>>
I'm going to rail you so hard. This pussy is mine and I'm going to fuck it raw.
<</say>>
<<say _girl>>
Yes, use my cunt! Fuck your whore hard, I want to feel you explode inside me.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
Your cock feels so huge in my tight little ass. Fuck me harder, I want you to tear me apart.
<</say>>
<<say _man>>
I'm going to destroy your asshole, you filthy slut. You like that don't you, you love getting your ass pounded.
<</say>>
<<say _girl>>
Yes, use me like a fucktoy! Ram your dick deep in my ass until I scream. I'm your anal whore.
<</say>>
<<say _man>>
That's right, you're nothing but a cheap ass slut for me to abuse. I'm going to fuck your ass raw.
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Your cock tastes so good in my mouth, I love sucking you off. My lips feel amazing wrapped around your thick shaft.
<</say>>
<<say _man>>
Damn, your mouth feels incredible. Suck it harder, I want to feel the back of your throat. You're so sexy on your knees for me.
<</say>>
<<say _girl>>
Mmm... Yeah... Choke me with it, fuck my face. Use my mouth however you want.
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
I love fucking your ass, you like it rough don't you? Take my big dick.
<</say>>
<<say _girl>>
Yes, use my ass, fuck me like a slut! Your cock feels so huge in my tight ass, pound me harder! I want to feel you deep inside. Ram your cock into me.
<</say>>
<<say _man>>
You're my dirty little whore, aren't you? I'm going to destroy your asshole.
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
I love fucking your tight asshole, you like it rough don't you? Rub that pussy while I destroy your ass.
<</say>>
<<say _girl>>
Oh yeah, use me like a fucktoy! Your big dick is going to make me cum so hard on my fingers.
<</say>>
<<say _man>>
Such a dirty little slut, I'm going to wreck your ass. Moan for me while you get yourself off.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Your cock feels so good in my mouth, I love pleasuring you like this.
<</say>>
<<say _man>>
Your hot little mouth is pure heaven baby. Suck it deep, just like that.
<</say>>
<<say _girl>>
Mmm, I could suck on your big hard dick all night long. You taste so fucking good.
<</say>>
<<say _man>>
Damn, you're making me throb with your sexy lips. Keep going, don't stop.
<</say>>
<<say _girl>>
I'll never stop, I want all of you deep in my throat. You're so huge and hard for me.
<</say>>
<<say _man>>
Fuck yes, take every inch. I love seeing my cock disappear into your pretty face.
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
Your tight little ass feels so good, Lana. I love fucking you from behind like this.
<</say>>
<<say _girl>>
Oh yeah, pound my asshole hard! Use me like your dirty little slut.
<</say>>
<<say _man>>
I'm gonna rail you so rough and deep. Your ass is mine, you filthy whore.
<</say>>
<<say _girl>>
Tear my ass up with your big cock! Make me scream in ecstasy and pain.
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
Your face looks so fucking hot covered in my cum, baby. I love seeing you dripping with it. Open your mouth and let me see you taste it.
<</say>>
<<say _girl>>
Mmm, your jizz is so warm and thick on my tongue, baby. I love being marked by you like this. Give me more, come on my face again and again.
<</say>>
<<say _man>>
Fuck, watching my load drip down your pretty face is the biggest turn on. You're such a good little cum slut for me. I'm gonna cover you in it, fill your mouth with my seed.
<</say>>
<<say _girl>>
Yes, use my face like your personal cum rag, stud. Blast me with your hot jizz... I want to be drenched in your stuff, baby.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Maya'; _man = 'Guy'; _video = '2'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock feels so big and hard in my mouth. I love the way you taste. Fuck my throat with your huge dick.
<</say>>
<<say _man>>
That's it, take it all the way down. Choke on my fat cock. You're such a good little cock sucker.
<</say>>
<<say _girl>>
Mmm, I want to deepthroat you until I gag. Use my mouth however you want. I'm your dirty slut.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
Fuck me harder, I want to feel your big cock deep in my ass. Pound me like a dirty slut.
<</say>>
<<say _man>>
I'll fuck your tight asshole until it's gaping and loose. You love being my anal whore, don't you?
<</say>>
<<say _girl>>
Yes, use me like a fucktoy. Ruin my ass with your thick dick. I'm just here for your pleasure.
<</say>>
<<say _man>>
That's right, your only purpose is to take my cock in every hole. I'm going to wreck your ass.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
Your cock feels so big and hard in my mouth. I love pleasuring you with my lips and tongue. Fuck my face and use my mouth however you want.
<</say>>
<<say _man>>
Suck it deep, just like that. Your warm wet mouth feels incredible. I'm going to thrust into your throat and fuck your pretty face.
<</say>>
<<say _girl>>
Mmmphh, I want you to completely dominate my mouth. Use me roughly, I can take it. Choke me with your huge cock, I love it.
<</say>>
<<say _man>>
You're such a good little cocksucker. I'm going to cum in your throat if you keep that up. Gag on it and take it all like a slut.
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
Your tight ass feels so good riding my cock. Keep bouncing on it hard, I want to hear you moan.
<</say>>
<<say _girl>>
I love how deep your cock goes in my ass. Fuck me harder, I want to feel you in me.
<</say>>
<<say _man>>
You like that? My dick is throbbing inside you. I'm going to pound your asshole until you scream.
<</say>>
<<say _girl>>
Yes, fuck me! Give it to me hard! Ram your big cock deep in my ass. I'm your dirty little slut, use me however you want.
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
You're such a filthy whore, Maya. I'm gonna fuck your ass until you're sore and gaping. You love being my anal fucktoy, don't you?
<</say>>
<<say _girl>>
Mmmhmm, I live to serve your cock. Fuck my ass until I can't walk straight. Use me up, I want to be your cum dump.
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
Your mouth feels so fucking good, Maya. Suck it deeper, all the way down your throat.
<</say>>
<<say _girl>>
Mmm, I love the taste of your hard cock. I want to make you feel amazing.
<</say>>
<<say _man>>
You're doing such a good job, baby. Look up at me while you're sucking me off.
<</say>>
<<say _girl>>
I'm so turned on, seeing how much you enjoy this. Your cock is throbbing in my mouth.
<</say>>
<<say _man>>
Keep going just like that, Maya. Suck me hard and fast with your warm, wet mouth.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Oh god, your dick is so big! Pound my ass harder, I want to feel you deep inside me.
<</say>>
<<say _man>>
I'm gonna rail your asshole until you're screaming my name. You like it rough, don't you?
<</say>>
<<say _girl>>
Yes, fuck me as hard as you can! Use my ass for your pleasure. I'm your dirty little slut.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Mmm yeah, your big cock stretching my asshole while I finger my wet pussy... It's so fucking hot and intense!
<</say>>
<<say _man>>
I'm going to pound your ass hard now, you fucking dirty slut. Let me hear you moan while you play with your dripping cunt.
<</say>>
<<say _girl>>
Ohhh fuck me harder, ram that thick dick in my ass! I'm rubbing my clit so hard, I'm gonna come from this brutal ass fucking!
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
Your face looks so hot covered in my cum. Open your mouth and let me see you swallow it all.
<</say>>
<<say _girl>>
Mmm, your cum tastes so good. I love being your dirty little cum slut. Give me more of your hot load.
<</say>>
<<say _man>>
Take it all you filthy whore. I'm gonna paint your face white with my jizz. Lick it up and beg for more.
<</say>>
<<say _girl>>
Yes, use my face as your cum rag. I'm your cum dumpster, Sir. Please breed my mouth and cover me in your seed.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Maya'; _man = 'Guy'; _video = '3'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Your mouth feels so fucking amazing. Suck it harder, slut. I love watching my cock slide in and out of your pretty little face.
<</say>>
<<say _girl>>
Mmm, I love the taste of your big hard cock. You like that, baby? Am I sucking you off like a good little slut?
<</say>>
<<say _man>>
Fuck yes, you're such a cock-hungry slut. Relax your throat and take it all the way down. Choke on it, you dirty bitch.
<</say>>
<<say _girl>>
Gagging on your huge dick is so hot. I'm getting so wet thinking about you using my face like this. Fuck my throat, stud.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
Your tight little ass feels so good. I love fucking you from behind like this.
<</say>>
<<say _girl>>
Ah, fuck me harder! Pound my asshole with your big cock. I want to feel you deep inside me.
<</say>>
<<say _man>>
I'm going to rail your ass so hard. You like that, don't you, you dirty slut?
<</say>>
<<say _girl>>
Yes, use me! Fuck my ass raw. I'm your fucktoy, just your hole to use as you please.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
Fuck yeah, your cock feels so good in my ass! I'm rubbing my wet pussy so hard right now.
<</say>>
<<say _man>>
Your tight little asshole is gripping my dick like a vice!
<</say>>
<<say _girl>>
Ram that fat cock deep in my butt! I'm getting so close to coming on my fingers.
<</say>>
<<say _man>>
I'm pounding your backdoor as hard as I can! Keep playing with that juicy snatch of yours.
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Yes, fuck my ass! Ram your big cock into me as deep as you can. Use my hole, I'm all yours.
<</say>>
<<say _man>>
I'm going to tear your ass up, you dirty slut. You like it rough like this, don't you?
<</say>>
<<say _girl>>
I love it when you brutalize my ass. Fuck me harder, I want to feel your cock stretching me wide open!
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
Your mouth feels so fucking good, Maya. Suck that cock deeper, you dirty slut.
<</say>>
<<say _girl>>
Mmm, I love how hard you are in my mouth. Your cock tastes so delicious.
<</say>>
<<say _man>>
That's it, take it all the way down your throat. Choke on my big dick, you filthy whore.
<</say>>
<<say _girl>>
Gagging on your huge cock is such a turn-on. I'm getting so wet for you, baby.
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
Keep bouncing on it like that, you dirty slut. I love watching your tits jiggle as you slam down on me.
<</say>>
<<say _girl>>
Mmm, your cock fills my ass so perfectly. I love the feeling of your thick shaft stretching me out. Fuck my ass harder, make me your dirty whore.
<</say>>
<<say _man>>
I'm gonna rail your ass so hard, you'll be feeling me for days. You like that don't you, you filthy cock-hungry cum dumpster? Take it all, you're nothing but my fucktoy.
<</say>>
<<say _girl>>
Yes, use me! I'm your anal slut, your cum receptacle. Fuck my ass raw, tear me up with your big dick. I exist to be your fuckhole, your personal sex doll.
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
Rub that pussy while I wreck your ass.
<</say>>
<<say _girl>>
Your cock feels so huge stretching my ass out, I'm gonna make myself cum all over it. Fuck me, fuck my ass!
<</say>>
<<say _man>>
You dirty little slut, playing with yourself while I fuck your ass. I'm gonna destroy your backdoor. Take it!
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Your cock tastes so good in my mouth, I love sucking you off.
<</say>>
<<say _man>>
That's it baby, suck my dick deep. Your mouth feels amazing.
<</say>>
<<say _girl>>
Mmm, I could do this all day. I love pleasuring you with my mouth.
<</say>>
<<say _man>>
You're so fucking sexy with your lips wrapped around my shaft. Keep going, just like that.
<</say>>
<<case 9>>
<<say _man>>
Open wide baby, I'm gonna cum in that pretty little mouth of yours.
<</say>>
<<say _girl>>
Mmm, fill me up with your hot jizz. I'm such a dirty cock sucker.
<</say>>
<<say _man>>
Here it comes, get ready to swallow every last drop. You've earned it.
<</say>>
<<video _url>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Maya'; _man = 'Guy'; _video = '4'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock feels so big and hard in my mouth. I love sucking you off, tasting your precum. Don't hold back, fuck my mouth.
<</say>>
<<say _man>>
That's it baby, take it all the way down your throat. Your mouth feels incredible. Suck me harder, I want to feel your tongue on the underside of my shaft.
<</say>>
<<say _girl>>
Mmmh, your cock tastes so good, I could suck you all day. Look how much I'm drooling for you. Do you like that? Tell me how much you love my hot mouth.
<</say>>
<<say _man>>
I fucking love your sexy mouth, Maya. You're such a good little cock sucker.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
Your cock feels so good inside me, pounding my tight pussy. I love riding you like this, with my back to you so you can really slam into me deep and hard.
<</say>>
<<say _man>>
Damn, your ass looks incredible bouncing up and down on my dick. I love how wet and sloppy your pussy is as I fuck you raw. Keep grinding on me like that.
<</say>>
<<say _girl>>
Mmm, you're hitting my G-spot with every thrust. Fuck me harder, use my hips to slam into me as deep as you can go. I want to feel your big cock stretching me wide open.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
You two like sucking my big cock? Gagging on it as you take turns deepthroating me? I love watching your pretty mouths stretched around my thick shaft.
<</say>>
<<say _girl>>
We love it so much! Your cock is so big and hard, it feels incredible in our mouths. We're getting so turned on pleasuring you like this.
<</say>>
<<say _man>>
Good girls. Suck it harder, all the way down your throats. Relax and take it deep. I want to feel your throats constricting around my cockhead as you swallow it.
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
That's what I like to hear. Now get to work girls. Ride me hard and fast, I want to feel your tight pussy gripping my cock. And don't you dare stop rubbing her clit until I say so. You're here to serve my pleasure.
<</say>>
<<say _girl>>
Yes daddy, we live to serve. She's going to slam her wet pussy down on your thick shaft while I tease and please her sensitive clit. We'll keep going until you're satisfied, you hard fucker. Use our bodies for your pleasure.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
Your cock feels so big and hard inside me. I love riding you like this.
<</say>>
<<say _man>>
You look so sexy bouncing up and down on my dick. Your pussy is so tight.
<</say>>
<<say _girl>>
I'm going to ride you faster and harder until you fuck me senseless. Don't hold back.
<</say>>
<<say _man>>
Grrr, use my cock, slut. Fuck me with that wet pussy. I'm going to pound you so deep.
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Your cock tastes so good, I love having it in my mouth. I'm going to suck you until you can't take it anymore.
<</say>>
<<say _man>>
Yeah, just like that baby. Suck it hard and deep. Your mouth feels incredible.
<</say>>
<<say _girl>>
Mmm, I want to please you so much. Is this making you hard? Tell me how badly you want to fuck my throat.
<</say>>
<<say _man>>
You're making me so fucking hard, Maya. I want to thrust deep into your hot little mouth and cum down your throat. But I'm going to make you beg for it first.
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
You like that, huh? You filthy sluts love getting railed by my big cock. I'm gonna fuck you both so hard, you won't be able to walk straight afterwards.
<</say>>
<<say _girl>>
Yes, we love it! Fuck us harder, you bastard! We want to feel every inch of your massive dick pounding our tight pussies. Don't hold back, give it to us rough!
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
Alright, here's the deal. I'm going to feed you both my hot cum, got it? You're going to swallow every last drop like the good little sluts you are. No arguing, just open up and take it like you're supposed to.
<</say>>
<<say _girl>>
Yes, we want you to fill our mouths with your cum. We'll swallow it all for you, don't worry. We're such dirty girls who love tasting your sperm. Give it to us, we need it.
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
Open wide, my cock is about to explode! Here it comes, a huge load of man milk straight down your throats! Swallow every bit like good girls.
<</say>>
<<say _girl>>
Mmm, your cum tastes so good! We love being your sperm receptacles! Thank you for using our mouths, we're such lucky cum sluts!
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Maya'; _man = 'Guy'; _video = '5'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
I love feeling it slide between my lips as I suck you off.
<</say>>
<<say _man>>
Damn, your mouth feels incredible. Suck it harder, I want to feel your lips tight around my shaft.
<</say>>
<<say _girl>>
Your cock tastes so good in my mouth. Mmm, I could suck your cock all day. I love having you in my mouth and feeling you get harder.
<</say>>
<<say _man>>
You're so fucking sexy with your lips wrapped around me. Keep going just like that, I'm loving it.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
Your pussy is so tight, it feels amazing. I love fucking your tight little cunt. You like that? You like my big cock stretching your tight hole? Take it, you dirty slut.
<</say>>
<<say _girl>>
Yes, fuck me harder! Ram that thick dick deep in my pussy! Use me, I'm your fuck toy.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Your tight ass feels so good riding my cock. Keep bouncing on it hard, I love seeing your tits jiggle.
<</say>>
<<say _girl>>
Fuck me deeper with that big dick! I want to feel every inch inside my ass. Don't hold back, pound me hard.
<</say>>
<<say _man>>
I'm gonna rail your ass so hard. You like that? You want me to wreck your backdoor with my thick cock?
<</say>>
<<say _girl>>
Yes, destroy my ass! Use me like your personal fucktoy. Slam your cock into my ass over and over again!
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Your cock feels so huge in my tight ass, fucking me deep like this. I love riding you and feeling you pound into me from below.
<</say>>
<<say _man>>
Your ass looks so hot bouncing on my dick. I love watching you fuck yourself with my cock, taking it all the way in.
<</say>>
<<say _girl>>
Mmm yeah, use my ass for your pleasure. Fuck me hard and make me your dirty little anal slut.
<</say>>
<<say _man>>
Damn right, this ass is mine to fuck. You're such a naughty girl, aren't you? Keep riding my cock like the filthy whore you are.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
Fuck me harder, you brutal bastard! Tear my tight little ass apart with your huge cock. I want you to destroy me completely.
<</say>>
<<say _man>>
You like that, you filthy anal whore? I'm going to fuck your asshole so rough and deep. Take every inch of my thick dick up your ass, slut.
<</say>>
<<say _girl>>
Ah fuck, you're splitting me in half! Use my ass for your pleasure, fuck it as hard as you can. I'm just your hole to pound and abuse.
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
Take it like a good little slut. Look at me while I fuck your pretty face.
<</say>>
<<say _girl>>
Mmm, I love being used like this, like a cheap whore. Fuck my mouth harder, I can take it.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Your cock feels so big in my ass, Guy. Fuck me harder! I want you to pound me deep.
<</say>>
<<say _man>>
I'm gonna rail your tight little asshole, baby. You like that? My fingers are gonna make your pussy cream.
<</say>>
<<say _girl>>
Yes, fuck yes! Your fingers are stretching my cunt so good. Don't stop thrusting your huge dick in my ass!
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Rougher, fuck me harder! I want to feel your big cock tearing my tight ass apart. Give it to me, fuck my ass raw.
<</say>>
<<say _man>>
You like that, you filthy anal whore? My huge dick is stretching your asshole to the limit. I'm going to wreck your ass, you dirty slut.
<</say>>
<<say _girl>>
Yes, destroy my ass with your massive cock! Use me like the anal slut I am. Fuck me until I can't walk straight, you brutal bastard.
<</say>>
<<case 9>>
<<say _girl>>
Give it to me, I want to taste your load. Fill my mouth with your hot cum.
<</say>>
<<say _man>>
I'm almost there, you sexy slut. Open wide and get ready to swallow.
<</say>>
<<video _url>>
<<say _girl>>
Mmm, I'm so hungry for it. Blast your jizz down my throat, I want every drop.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Lily'; _man = 'Guy'; _video = '2'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Fuck me harder, you bastard. Ram your big cock deep in my tight pussy. Make me your filthy whore.
<</say>>
<<say _man>>
You like that, you slutty bitch? Take my huge dick like a good little cum dumpster. I'm going to tear your cunt apart.
<</say>>
<<say _girl>>
Yes, use me! Fuck my brains out from behind like the worthless fucktoy I am. Your cock feels so amazing stretching my hole.
<</say>>
<<say _man>>
Such a nasty whore, loving every inch of my cock pulverizing your pussy. I'm going to fuck you until you're nothing but a quivering, dripping mess.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
Your wet pussy feels so amazing gripping my dick. I love watching your sexy body ride me like this. Throw your hips back and forth, let me feel you slide up and down my shaft.
<</say>>
<<say _girl>>
Mmm yes, fuck me just like that! Ram your cock into my dripping cunt over and over. I want to feel every inch of you pistoning in and out of me as I grind my clit against you.
<</say>>
<<say _man>>
I'm going to drill your sweet little snatch so hard. You're going to feel my thick cock stretching your tight hole as I fuck you senseless. Keep slamming yourself down on me, I want to feel your pussy clench around me.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
Your tongue feels so good on my clit. I love grinding my pussy all over your face.
<</say>>
<<say _man>>
Mmm, your sweet juices taste so fucking good. Keep riding my mouth, you dirty slut.
<</say>>
<<say _girl>>
I'm getting so close, don't stop eating me out. Lick my clit harder, make me cum!
<</say>>
<<say _man>>
Fuck yeah, use my tongue to get off. Drench my face with your squirt, you sexy little whore.
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Fuck me harder, you bastard! Ram your thick cock deep in my ass. I want to feel your balls slapping against me.
<</say>>
<<say _man>>
Take this big dick, you filthy anal slut. Your tight little asshole is gripping me so hard. I'm going to tear you a new one.
<</say>>
<<say _girl>>
Yes, destroy my asshole! Use me like a cheap whore. I love being your anal fucktoy.
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
You look so fucking hot riding me reverse cowgirl, your cheeks spread and my dick disappearing into your ass. Keep slamming down on it hard.
<</say>>
<<say _girl>>
Mmm yeah, pound my ass! Fuck it rough, you can go as deep and hard as you want. My hole is all yours, use it.
<</say>>
<<say _man>>
Damn your asshole is gripping my cock so tight. I could fuck you like this for hours, drilling your backdoor over and over. You like that, you anal slut?
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Your cock feels so good in my mouth, fucking my face like that. I love being used as your personal slut.
<</say>>
<<say _man>>
That's right, you're my dirty little cocksucker. Gag on it and take it deep in your throat.
<</say>>
<<say _girl>>
Mmmph mm mmm! [Gagging noises] I'm such a whore for your big dick. Fuck my throat harder!
<</say>>
<<say _man>>
You like that, don't you? You're nothing but a cum dumpster for me to use and abuse.
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
You like that don't you, you dirty anal slut? You love having your asshole pounded by my huge dick.
<</say>>
<<say _girl>>
Yes, fuck my ass harder! Stretch out my tight asshole with your monster cock. I'm your anal whore.
<</say>>
<<say _man>>
Take it, take my cock deep in your ass. I'm going to destroy your little asshole. Such a hot dirty girl.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Oh fuck yeah, use my asshole! Pound me hard with your huge dick. I'm your filthy anal slut, fuck me till I scream!
<</say>>
<<say _man>>
I'm gonna wreck your ass, you like that? You're nothing but a fucktoy for my cock. Moan like the cumdumpster you are.
<</say>>
<<say _girl>>
Your cock is destroying my ass! Fuck me harder, I want it brutal! Use me like the cheap whore I am. Make me your cum-filled anal hole!
<</say>>
<<case 9>>
<<say _man>>
Lily, get on your knees and open that pretty mouth of yours. I'm going to blow my load all over your face.
<</say>>
<<say _girl>>
Mmm, yeah, give it to me. I want to feel your hot cum dripping down my cheeks and chin. Cover me in it.
<</say>>
<<video _url>>
<<say _man>>
You like that, you filthy slut? You want me to paint your face white with my jizz?
<</say>>
<<say _girl>>
Yes, use me like the cum dumpster I am. Give me every last drop of your seed until I'm totally glazed.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Lily'; _man = 'Guy'; _video = '3'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Your mouth feels so fucking good on my cock, Lily. Suck it harder, all the way down your throat.
<</say>>
<<say _girl>>
I love the taste of your big hard dick in my mouth. I want to deepthroat you until you cum.
<</say>>
<<say _man>>
Look at me as you're blowing me, you dirty slut. Slob on it and get it all wet with your spit.
<</say>>
<<say _girl>>
Mmm, your cock is so thick and long. I love feeling it hit the back of my throat. Fuck my mouth.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
Mmm, use my tits, baby. Pound your hard dick between them. I want to feel every inch.
<</say>>
<<say _man>>
I'm gonna thrust deep and shoot my load all over your pretty face. You want that, don't you?
<</say>>
<<say _girl>>
Yes, cover me in your hot cum! Shoot it on my tongue, in my eyes, all over my chest. Mark me with it! But first fuck my pussy!
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Your tight pussy feels so amazing as you ride my cock. I love watching your ass bounce with each thrust. Keep going, faster!
<</say>>
<<say _girl>>
Mmm, your dick fills me up so perfectly. I'm getting closer already. Fuck me harder, I want to feel you deep inside me.
<</say>>
<<say _man>>
I'll fuck you as hard as you can take. This is the best pussy I've ever had. Your juices are dripping down my shaft.
<</say>>
<<say _girl>>
Yes, use me! Pound my wet cunt with your big cock. I'm your dirty little slut, fuck me... Don't hold back!
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
You like that, don't you? My big cock stretching your tight little ass. I'm gonna fuck you hard and raw, make you scream.
<</say>>
<<say _girl>>
Oh fuck yes, give it to me! Ram that thick dick deep in my ass. Tear me up, I want it rough and filthy.
<</say>>
<<say _man>>
Damn your asshole is gripping me so tight. I'm gonna pound you until you're a quivering, gaping mess. You're my fucktoy now.
<</say>>
<<say _girl>>
Use me! Fuck my ass, make me your dirty slut. I'm here for your cock, destroy me with it! Give it to me harder!
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
Oh my god, your cock feels so big in my ass! Fuck me harder, I want you to destroy my asshole.
<</say>>
<<say _man>>
You like that, don't you? I'm going to pound your ass until you're screaming my name. Your ass is mine now.
<</say>>
<<say _girl>>
Yes, it's all yours! Use my ass however you want. I'm your dirty little slut tonight. Just don't stop fucking me!
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Ow, your cock feels so huge in my tight ass, it hurts! But don't stop, keep fucking me harder! Use my ass however you want, just keep pounding me with your big cock!
<</say>>
<<say _man>>
You've got such a perfect ass for fucking. I'm gonna rail you hard till you're screaming in pain and pleasure. I love the way your asshole grips my dick so tightly. You like that rough anal fucking, don't you, you dirty slut?
<</say>>
<<say _girl>>
Yes, yes, yes! I'm your dirty little anal whore!
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
This feels so intense, your cock is stretching my tight ass. I love how deep you're going.
<</say>>
<<say _man>>
Your asshole is gripping me so hard. Keep riding me like that, I want to fuck your ass deep and rough.
<</say>>
<<say _girl>>
Ah, it hurts but I love it! Don't stop, use my ass for your pleasure. Fuck me as hard as you can.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Mmmm, your big cock tastes so good in my mouth. Lick my clit, I want to come on your tongue.
<</say>>
<<say _man>>
I'm going to make you squirt all over me. Keep sucking, you're making me so hard.
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
That's it baby, drink it all down. You're such a filthy little cock sucker.
<</say>>
<<say _girl>>
Mmm, salty and sweet at the same time. I want more of your delicious cum in my mouth.
<</say>>
<<say _man>>
Get ready for another big mouthful, you hungry slut. Gonna paint your face with it.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Lily'; _man = 'Guy'; _video = '4'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
That's it baby, take it all the way down. Fuck, your mouth feels incredible.
<</say>>
<<say _girl>>
Mmmphh... I want to make you feel so good with my warm, wet mouth.
<</say>>
<<say _man>>
You're doing amazing, Lily. I love watching my cock slide in and out of your pretty lips.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
Fuck me harder, I want to feel your big cock deep inside me. Pound my tight pussy with your thick shaft.
<</say>>
<<say _man>>
I'm going to rail you so hard, baby. This dripping wet snatch is all mine. I'm claiming this cunt with my cock.
<</say>>
<<say _girl>>
Yes, use me! Fuck my holes, fill me up with your fat dick. I'm your little fucktoy, don't hold back.
<</say>>
<<say _man>>
That's it, take it all. I'm going to wreck your pussy, make you cum on this cock. Such a good little slut.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
Your cock feels so good in my hand, I love stroking it nice and hard for you. Sucking on your toes really turns me on too.
<</say>>
<<say _man>>
Damn girl, your grip is perfect. Keep jerking me off like that and don't stop.
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Ohhh fuck, the dildo is stretching my ass so wide as I slam down on your huge cock! You're going to make me cum so hard like this! Pound me, use me, fuck my holes!
<</say>>
<<say _man>>
Love watching you take my cock deep while fucking yourself with that toy. Such a naughty slut, let me use your holes.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
Damn, your cock feels so good between my heels. I love stroking it with my smooth feet. Keep that thick dick hard for me.
<</say>>
<<say _man>>
Fuck yeah, your feet feel amazing on my shaft. You're jerking me off so well, baby. Your heels are like little masterpieces. Don't stop.
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
Fuck yeah, ride me baby! Slam that pussy down on my dick.
<</say>>
<<say _girl>>
Ah! Ah! I'm bouncing on your cock so hard! You like that?!
<</say>>
<<say _man>>
Damn right I do! Your tight little pussy is milking my dick!
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Oh fuck yeah, your cock feels so good in my ass! I'm fucking myself so hard with this rubber dick. Ahhh!
<</say>>
<<say _man>>
Damn, your tight little asshole is gripping my cock! Pound that dildo deep in your wet pussy. I want to hear you moan.
<</say>>
<<say _girl>>
Yesss, I'm ramming it in as far as it will go! Your huge cock is stretching my ass so wide! Fuck me harder!
<</say>>
<<say _man>>
I'm gonna fuck your ass raw, you dirty little slut! Cum all over that dildo while I wreck your tight hole.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
OOOOH YES, fuck my ass! Use me like your personal fucktoy, I'm your anal whore! Ah fuck, your cock feels so huge in my tight ass!
<</say>>
<<say _man>>
That's right, you're my dirty anal slut! I'm gonna rail your ass until you're screaming in ecstasy. Take my big cock like a good girl.
<</say>>
<<say _girl>>
YES! YES! YES! Pound me harder, I want you to destroy my little asshole.
<</say>>
<<case 9>>
<<say _girl>>
Ahh, yes! Use me, fuck my ass and pussy! I'm your dirty little cumdumpster. Fill both my holes with your hot load.
<</say>>
<<say _man>>
Get ready, you nasty cumslut. I'm going to blast my thick jizz deep in your cunt and ass. You're going to be dripping with my seed.
<</say>>
<<video _url>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Lily'; _man = 'Guy'; _video = '5'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Your mouth feels so good, Lily. I love fucking your pretty face while your slutty girlfriend licks my balls.
<</say>>
<<say _girl>>
Mmm, I love the taste of your hard cock, baby. We're both here to please you.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
Your mouth feels so amazing on my cock, Lily. Suck it deep and hard.
<</say>>
<<say _girl>>
I love the taste of your big dick, babe. I'm going to make you moan with pleasure.
<</say>>
<<say _man>>
That's it, take it all the way in. You're such a good little cock sucker.
<</say>>
<<say _girl>>
Mmm, I want to deepthroat you until you can't take it anymore. Is that what you like?
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
Oh yeah, I love your big cock slamming into my ass! Fuck me harder, I can take it.
<</say>>
<<say _man>>
You're such a dirty slut, Lily. I'm going to fuck your ass so hard you won't be able to walk straight afterwards.
<</say>>
<<say _girl>>
Yes, use my ass! Fuck it as hard as you can! I want you to destroy it with your huge dick.
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Mmm, her pussy tastes so good. I love licking my horny girlfriend's cunt while you brutally fuck her in the ass. We are such filthy girls for you, aren't we?
<</say>>
<<say _man>>
You're damn right, you're my perfect little whores. I'm going to pound her asshole so hard. Lick faster, Lily, make her cum with your tongue. You're doing great, my nasty sluts.
<</say>>
<<say _girl>>
Yes, we live to please you! I'm licking her faster, she's so wet and tasty. Ahh, she's about to cum for me. We love being your dirty playthings, fuck us harder!
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
Your tight little ass feels so good, Lily. I love pounding you from behind like this.
<</say>>
<<say _girl>>
Oh yes, fuck me harder! I want to feel your big cock stretching my asshole.
<</say>>
<<say _man>>
You like that, you filthy slut? I'm going to tear your ass up.
<</say>>
<<say _girl>>
Yes, use me! Fuck my ass as hard as you can. I'm your dirty whore.
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Mmm, I can taste her on your cock. Fuck my mouth, use me. I want you to ravage us both.
<</say>>
<<say _man>>
You like being used like a dirty little slut, don't you Lily? Sucking my cock after I've been in her ass.
<</say>>
<<say _girl>>
Yes, I love it. Your cock is so hard and tastes so good. Fuck my throat, I want to please you.
<</say>>
<<say _man>>
Such a good little cock sleeve. I'm going to fuck your face so hard. Then I'll use your friend's tight ass again.
<</say>>
<<say _girl>>
Use us however you want. We're here for your pleasure. Fuck us as hard as you can, we love it.
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
You like that, don't you? Tell me how much you love my big dick pounding your tight little asshole.
<</say>>
<<say _girl>>
Oh yes, I love it so much! Your cock is so big and hard, it feels incredible in my ass. Don't stop, fuck me harder!
<</say>>
<<say _man>>
Damn, your ass is so perfect. I'm going to rail you so hard, you won't be able to walk straight afterwards. This ass is mine.
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
Alright girls, get down there and lick my balls. Show me how much you love the taste.
<</say>>
<<say _girl>>
Mmm, we love sucking and licking your big balls. They taste so good in our mouths.
Yea, we want to please you with our tongues. We'll make you feel so good as we worship your sack.
<</say>>
<<say _man>>
That's it, work those balls with your hot little tongues. Lick them clean, girls.
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
Here it comes, open up and say "ahhh!" Time to fill those pretty little mouths with my hot jizz.
<</say>>
<<say _girl>>
Mmmhmm, shoot it all over our tongues. We love the taste of your thick cream! Let us lick it all up and swallow every drop. Yum! Give it to us now! Don't hold back, give us every last drop.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Jess'; _man = 'Guy'; _video = '6'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock feels so big and hard in my mouth, I love deep throating you like this. My jaw is stretching to take you all the way down my throat.
<</say>>
<<say _man>>
Fuck yeah, that's it. Look up at me while you're choking on my dick. I love seeing your pretty eyes watering as you deep throat me.
<</say>>
<<say _girl>>
Mmmf fmf fmm... Mmmphh... I'm trying, you're so deep in my throat, it's making me gag.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
Your tits feel so fucking amazing wrapped around my cock. Keep 'em squeezed tight while I thrust deep.
<</say>>
<<say _girl>>
Mmm, your dick sliding between my big tits turns me on so much! Give it to me harder, I want to feel every inch.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Your ass looks so hot bouncing on my cock like that. I love watching your cheeks jiggle with each thrust. Keep riding me hard, baby.
<</say>>
<<say _girl>>
Mmm yeah, your dick feels so good inside me. I love the way you fill me up completely. Fuck me deep with that big cock!
<</say>>
<<say _man>>
Damn, your pussy is so tight and wet. It's like a vice grip on my shaft. I'm going to pound you hard and make you scream.
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
You like that, you dirty slut? Take it all, you fucking whore. I'm going to fuck you so hard.
<</say>>
<<say _girl>>
Yes, fuck me! Use me, I'm your filthy little cum dumpster. Destroy my tight pussy with your big cock.
<</say>>
<<say _man>>
Such a good little cock sleeve. I'm going to tear you apart, you disgusting fuck toy.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
Oh fuck yeah, pound me harder! I love the way you fuck me so roughly from behind. Don't stop, give it to me!
<</say>>
<<say _man>>
Damn right I'll give it to you. This is my pussy now and I'll use it however I want. You're nothing but a fucktoy for my cock.
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Rougher, fuck me harder! Use my holes, I'm just here for your pleasure.My tight pussy feels so good around your big cock. You like that, baby?
<</say>>
<<say _man>>
Fuck yeah, your cunt is gripping me so tight. I'm gonna pound you hard.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
I want you to fuck me hard, like you mean it. Look into my eyes and give it to me rough.
<</say>>
<<say _man>>
I'll fuck you so hard you won't be able to walk straight afterwards. Take my big cock, you dirty slut.
<</say>>
<<say _girl>>
Your cock feels so good inside me. Pound me harder, make me your little fucktoy. I'm all yours, use me.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Fuck me harder! I want it rough, tear me apart with that huge cock.
<</say>>
<<say _man>>
You're such a good little fucktoy. Gonna rail you so hard. Take it all, every inch, you dirty slut.
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
Your tits look so fucking hot with my cum all over them. I love coating your big naturals with my jizz.
<</say>>
<<say _girl>>
Mmm, I'm your dirty little cum slut, aren't I? You can use my tits as your personal fuck toys and jerk off on them whenever you want.
<</say>>
<<say _man>>
Damn right you are, baby. You're my perfect fuck doll. I'm gonna pump my load all over your sexy chest again and again.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Lana'; _man = 'Guy'; _video = '6'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Your mouth feels so good wrapped around my cock. I love fucking your pretty face like this. Look up at me as I use your throat.
<</say>>
<<say _girl>>
Mmmph fuk mmmph uhh mmmph. I'm your dirty slut, use me. Choke me with your big dick.
<</say>>
<<say _man>>
I'm going to come in your mouth if you keep deepthroating me like that. Relax your throat and take me all the way. Be a good cocksucking whore.
<</say>>
<<say _girl>>
Mmmph uhh mmmph yeah mmmph. I want your hot cum in my mouth. Breed my throat, stud. Use me up.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
You like that, baby? My big cock feels so good inside your tight little pussy.
<</say>>
<<say _girl>>
Oh yeah, fuck me harder! I want to feel every inch of you.
<</say>>
<<say _man>>
Damn, you're so wet and sloppy. I'm gonna rail you so hard.
<</say>>
<<say _girl>>
Pound me, use me! Make me your filthy slut.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Your tight little pussy feels so good gripping my cock. Keep those pretty eyes locked on me while I pound you hard.
<</say>>
<<say _girl>>
Fuck me deeper! Love staring into your eyes while you use my cunt. Give it to me rough.
<</say>>
<<say _man>>
My dick is buried to the hilt in your slick hole. I'm going to rail you until you're a quivering, dripping mess.
<</say>>
<<say _girl>>
Yes, destroy my pussy with that thick cock! Choke me with it. I want to taste your balls slapping against me.
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
Your tight little pussy feels so fucking good. Keep rubbing that clit while I pound you hard.
<</say>>
<<say _girl>>
Oh fuck, your big cock stretching me out feels incredible. I'm getting so close already.
<</say>>
<<say _man>>
That's it, play with your sensitive little clit. I love watching you get yourself off while I fuck you deep.
<</say>>
<<say _girl>>
Mmm I'm gonna cum soon, your cock hits me just right. Fuck me harder, make me squirt all over you!
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
Your cock feels so huge in my throat, I love deepthroating you like this.
<</say>>
<<say _man>>
Fuck yeah, your warm wet mouth feels incredible. Take it all the way down.
<</say>>
<<say _girl>>
Mmmf mmf mmmm... Ahhhh... I want you to use my mouth however you want. Fuck my face.
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
You like that, baby? My tight pussy feels so good around your big cock.
<</say>>
<<say _man>>
Fuck yes, your wet cunt is gripping me so tight. I'm going to pound you hard.
<</say>>
<<say _girl>>
Yesss, fuck me rough! Use my holes, I'm your dirty little slut.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
I want you to fuck me hard in this crazy position, beby. Ram your big cock into my tight pussy and make me scream.
<</say>>
<<say _man>>
You like that, you dirty slut? I'm going to pound you so hard, your cunt will be stretched and sore tomorrow.
<</say>>
<<say _girl>>
Oh yeah, use me like your personal fucktoy! I'm here for your pleasure, to be brutally fucked in every hole.
<</say>>
<<say _man>>
Such a good little cocksleeve. I'm going to use your pussy until I'm ready to explode, then spray my load all over your face.
<</say>>
<<say _girl>>
Fill me up, stud. Breed me with your thick cum like a good boy. I want to be dripping with your semen.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Your cock feels so big and hard inside my tight pussy. Fuck me deeper, I want to feel you in my cunt.
<</say>>
<<say _man>>
I love how your cunt grips my dick so tightly. I'm going to pound you until your pussy is dripping with my cum.
<</say>>
<<say _girl>>
Fuck yes, use my hole! Ram that thick cock into me as hard as you can. I'm your dirty little fucktoy.
<</say>>
<<say _man>>
Such a good little slut, taking my cock like a champ. Your pussy is so wet and sloppy, I love fucking your brains out.
<</say>>
<<case 9>>
<<video _url>>
<<say _girl>>
Your cum tastes so fucking good, I want to swallow every last drop. Fuck my mouth and give me more of your hot load.
<</say>>
<<say _man>>
Take it all, you dirty little cum slut. Swallow my jizz and then thank me for using your pretty face as my personal cum rag.
<</say>>
<<say _girl>>
Mmm, I love being your filthy cum dumpster. Pump my throat full of your seed until it's dripping out of my nose. I want to choke on it.
<</say>>
<<say _man>>
Fuck yeah, I'm going to blow my load deep in your slutty throat. You're going to drink all my cum like a good little cocksucker. Then you'll clean up your mess with your tongue.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Maya'; _man = 'Guy'; _video = '6'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock tastes so good in my mouth. I love how you fuck my face.
<</say>>
<<say _man>>
Suck it harder, slut. Relax your throat and take it all in.
<</say>>
<<say _girl>>
Mmm, I'm trying. Your dick is so big, it's filling up my entire mouth.
<</say>>
<<say _man>>
That's it, you're doing great. Look up at me while you're sucking me off.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
I'm going to ride you hard, baby. Get ready for the wildest ride of your life.
<</say>>
<<say _man>>
Fuck yeah, take control, Maya. I want to feel your tight pussy clenching around my cock.
<</say>>
<<say _girl>>
My pussy is so wet for you. I'm going to grind on your cock until we both explode with pleasure.
<</say>>
<<say _man>>
Ride me like a wild animal, baby. I want to hear you moan as you slam down on my dick.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
You're such a dirty little slut, bouncing up and down on my cock like that. I love watching your tits jiggle as you ride me.
<</say>>
<<say _girl>>
Mmm, I'm your filthy whore. Use me, fuck me hard with your huge dick. Make me your cum dump.
<</say>>
<<say _man>>
Damn right you're my whore. I'm going to fuck you until you're begging for my cum. You want that, don't you, you nasty slut?
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
I love the taste of your cock in my mouth while you eat my pussy. It's so hot and intense.
<</say>>
<<say _man>>
Your pussy tastes so sweet, baby. Suck my cock harder, I want to feel your warm mouth all over it.
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
Fuck yeah, I love watching you touch yourself while I rail you. Your tight pussy is gripping my dick so hard.
<</say>>
<<say _girl>>
Mmm, keep slamming that thick cock into me. I'm getting close from rubbing my clit and feeling you deep inside.
<</say>>
<<say _man>>
I'll fuck you as hard as you want, baby. This is the best - my dick owning your cunt while you get yourself off on it.
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
Your ass looks so hot bouncing on my cock like that. Keep riding me hard, baby.
<</say>>
<<say _girl>>
I love feeling your big dick sliding in and out of my tight pussy. Fuck me deeper!
<</say>>
<<say _man>>
You're such a naughty girl, taking my cock so deep in your wet cunt. I'm gonna pound you hard.
<</say>>
<<say _girl>>
Yes, give it to me rough! Use my holes however you want. I'm your dirty little slut.
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
Use your tongue, lick my shaft while you're blowing me. You're so good at this.
<</say>>
<<say _girl>>
Mmm, your cock is so big, it fills my mouth completely. I want to please you so much. I'm going to suck you until you can't take it anymore.
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
Your ass looks so hot from this angle. I love fucking you doggy style like this.
<</say>>
<<say _girl>>
Fuck me harder! Ram your big cock deep into my tight pussy. Make me moan with pleasure.
<</say>>
<<say _man>>
I'm going to pound you so hard, baby. You like that, don't you? Taking my thick dick deep in your cunt.
<</say>>
<<say _girl>>
Yes, fuck me rough! Use me like your personal fucktoy. My pussy is all yours.
<</say>>
<<case 9>>
<<video _url>>
<<say _girl>>
I love being coated in your warm jizz. Fill my mouth with your seed.
<</say>>
<<say _man>>
You're such a good little cum slut. Swallow every last drop.
<</say>>
<<say _girl>>
Mmm, your cum tastes so good. I want you to cover my face with more.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Lily'; _man = 'Guy'; _video = '6'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock feels so big and hard in my mouth. I love how you taste. Fuck my throat with that huge dick.
<</say>>
<<say _man>>
Suck it deep, baby. Look at me while you're choking on my cock. You're such a good little slut.
<</say>>
<<say _girl>>
Mmm, I want to please you so much. Use my mouth however you want. I'm here for your pleasure.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
Fuck me hard, give it to me rough. Your big cock feels so good stretching my tight little pussy.
<</say>>
<<say _man>>
You like that, you little slut? Take this throbbing cock deep in your cunt. I'm going to pound you until you're sore.
<</say>>
<<say _girl>>
Yes, use me! Fuck me like a dirty whore. I want to feel your raw power ramming into me over and over.
<</say>>
<<say _man>>
Such a hot, wet, willing hole. I'm going to wreck your pussy with my huge dick. You're nothing but a fucktoy for me to use.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Your mouth feels so amazing, Lily. Keep sucking me off like that, you dirty slut.
<</say>>
<<say _girl>>
Mmm, I love the taste of your big cock, baby. And your balls are so tender and delicious. I could do this all day.
<</say>>
<<say _man>>
You're such a good little cock sucker, aren't you? Take it all the way down your throat. Choke on it.
<</say>>
<<say _girl>>
Gagging on your huge dick is so hot... I love feeling it pulse and throb in my mouth. Fuck my face, stud.
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
Your tight pussy is gripping my cock so intensely. I love watching your tits bounce as you ride me harder.
<</say>>
<<say _girl>>
Mmm, you're fucking me so deep. Your dick is so hard and thick. Pound me harder with that huge cock!
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
Suck it deeper, all the way down your throat. Show me how much you love it. Keep going just like that.
<</say>>
<<say _girl>>
Mmm, I love tasting your big hard cock. You like watching me worship it with my mouth?
<</say>>
<<say _man>>
Hell yeah, seeing you on your knees sucking me off is so hot. You're such a good little cock sucker.
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Ah fuck, your cock feels so good! I'm gonna ride you hard.
<</say>>
<<say _man>>
Damn, your pussy is so tight! Ride my dick, you filthy slut. Take it all, take my big cock deep in your cunt!
<</say>>
<<say _girl>>
Mmm, yes! Fuck me, fuck me harder! I wanna feel every inch of you.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Oh my god, your cock feels so huge in my tight pussy!
<</say>>
<<say _man>>
Your little cunt is so fucking snug, Lily. I love feeling your walls grip my dick as I thrust deep inside you.
<</say>>
<<say _girl>>
Ah, ah, yes! Fuck me harder! Use my pussy, make it yours!
<</say>>
<<say _man>>
With pleasure, baby. I'm going to pound your tight hole until you're screaming my name. Take my cock like a good girl.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Fuck me harder from behind, I want your big cock slamming into my tight pussy. Give it to me rough!
<</say>>
<<say _man>>
I'm gonna fuck your wet little cunt so hard until you're begging for my hot load all over your face. You want my sperm dripping off your cheeks?
<</say>>
<<say _girl>>
Yes, don't hold back, use me like a slut and cover me in your cum. I want to feel your thick jizz shooting onto my mouth. Give me that dirty facial.
<</say>>
<<say _man>>
You're such a nasty cock-hungry whore. I'm gonna blow my huge load on your pretty face, you filthy cum dumpster. Get ready for a massive facial, you cum-loving slut.
<</say>>
<<case 9>>
<<say _girl>>
Please cover my face with your hot spunk! Shoot your load out and let me taste it. I'm your cock-sucking, cum-guzzling slut. Give me that semen, I fucking need it!
<</say>>
<<video _url>>
<<say _man>>
Here it comes, you filthy cum-whore! Open wide and take my load, you nasty fucking slut. Guzzle down my jizz, you disgusting cum-dumpster. Ahhh, fuck yeah!
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
/* количество диалогов */
<<set _dialogsTotal = 10; >>
/* если массив с номерами диалогов отсутствует, заполняем его */
<<if typeof $dialogsMinet == "undefined" || $dialogsMinet.length == 0>>
<<set $dialogsMinet = [];>>
<<for _i=1; _i<=_dialogsTotal; _i++>><<run $dialogsMinet.push(_i); >><</for>>
<</if>>
/* получаем случайный номер диалога и удаляем его из массива диалогов */
<<set _dialog = $dialogsMinet.pluck(); >>
/* отображаем выбранный диалог (_girl и _man берутся из родительского пассажа) */
<<switch _dialog>>
<<case 1>>
<<say _girl>>Диалог 1<</say>>
<<case 2>>
<<say _girl>>Диалог 2<</say>>
<<case 3>>
<<say _girl>>Диалог 3<</say>>
<<case 4>>
<<say _girl>>Диалог 4<</say>>
<<case 5>>
<<say _girl>>Диалог 5<</say>>
<<case 6>>
<<say _girl>>Диалог 6<</say>>
<<case 7>>
<<say _girl>>Диалог 7<</say>>
<<case 8>>
<<say _girl>>Диалог 8<</say>>
<<case 9>>
<<say _girl>>Диалог 9<</say>>
<<case 10>>
<<say _girl>>Диалог 10<</say>>
<</switch>>
<style>body {background-image: url(bg/intro.jpg);}</style>
/* Локации:
0 - техническое название
1 - отображаемое название
2 - изображение
3 - локация готова (1), не готова (0)
4 - для подписчиков (1), для всех (0)
________________________________________________ */
<<set _locations = [
["SecretLab", "Secret Laboratory", "locations/SecretLab.jpg", 1, 0],
["AbandonedAirport", "Abandoned Airport", "locations/AbandonedAirport.jpg", 0, 0],
["OrbitalStation", "Orbital Station", "locations/OrbitalStation.jpg", 0, 0],
["RoboticsFactory", "Robotics Factory", "locations/RoboticsFactory.jpg", 0, 0],
["CyberpunkGhetto", "Cyberpunk Ghetto", "locations/CyberpunkGhetto.jpg", 0, 0],
["GiantAirship", "Giant Airship", "locations/GiantAirship.jpg", 0, 0],
["PolarOutpost", "Polar Outpost", "locations/PolarOutpost.jpg", 0, 0],
["SunkenMegapolis", "Sunken Megapolis", "locations/SunkenMegapolis.jpg", 0, 0],
["MiningComplex", "Mining Complex", "locations/MiningComplex.jpg", 0, 0],
["VolcanoCity", "Volcano City", "locations/VolcanoCity.jpg", 0, 0],
["IcyAsteroid", "Icy Asteroid", "locations/IcyAsteroid.jpg", 0, 0],
["RadioactiveZone", "Radioactive Zone", "locations/RadioactiveZone.jpg", 0, 0]
];>>
<div class="preparing-locations">
<div class="title">Experiment Locations</div>
<div class="subtitle">
Select a location where the testing of parasite-infected volunteers will take place:
</div>
<div class="locations-wrap">
<div class="locations">
<<for _location range _locations>>
/* класс для локации */
<<if _location[3] == 1>>
<<set _css="location active">>
<<else>>
<<set _css="location">>
<</if>>
<div @class="_css">
/* изображение и сообщение SOON */
<div class="image">
<img @src="_location[2]">
<div class="soon"><span>Soon</span></div>
</div>
/* название локации */
<div class="name">
<span>_location[1] </span>
<<if _location[4] == 1>><img src="ui/patreon-min.svg"><</if>>
</div>
/* ссылка на подготовку локации */
<<if _location[3] == 1>>
<<capture _location>>
<<link ''>>
/* если нужна подписка */
<<if _location[4] == 1 && $t.additionalLocations != 1>>
<<run Dialog.create("Exclusive Access Required");>>
<<run Dialog.wikiPassage("contentPatreon").open();>>
<<else>>
<<set $locationChosen = _location[0];>>
<<goto 'Prepare-Locations'>>
<</if>>
<</link>>
<</capture>>
<</if>>
</div><!-- .location -->
<</for>>
</div><!-- .locations -->
</div><!-- .locations-wrap -->
<div class="subtitle bottom">
New locations will be added soon.
Some locations will be available exclusively to my Patreon subscribers.
</div>
</div><!-- .preparing-locations -->
<style>body {background-image: url(bg/intro.jpg);}</style>
/* Девушки-добровольцы:
________________________________________________ */
<<set $volunteers = {};
$volunteers.Anna = {name: "Anna", photo: "photo/Anna.jpg", ready: 1, subscribe: 0};
$volunteers.Bella = {name: "Bella", photo: "photo/Bella.jpg", ready: 1, subscribe: 0};
$volunteers.Cara = {name: "Cara", photo: "photo/Cara.jpg", ready: 1, subscribe: 0};
$volunteers.Dina = {name: "Dina", photo: "photo/Dina.jpg", ready: 1, subscribe: 0};
$volunteers.Ella = {name: "Ella", photo: "photo/UnknownF.jpg", ready: 0, subscribe: 0};
$volunteers.Emma = {name: "Emma", photo: "photo/UnknownF.jpg", ready: 0, subscribe: 0};
$volunteers.Elsa = {name: "Elsa", photo: "photo/UnknownF.jpg", ready: 0, subscribe: 0};
$volunteers.Gaby = {name: "Gaby", photo: "photo/UnknownF.jpg", ready: 0, subscribe: 0};
$volunteers.Hana = {name: "Hana", photo: "photo/UnknownF.jpg", ready: 0, subscribe: 0};
$volunteers.Jade = {name: "Jade", photo: "photo/UnknownF.jpg", ready: 0, subscribe: 0};
>>
/* Девушки-добровольцы:
________________________________________________ */
<<set $appearances = {};
$appearances.Jess = {name: "Jess", photo: "photo/Jess.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 1, subscribe: 0};
$appearances.Lana = {name: "Lana", photo: "photo/Lana.jpg", face: "Blonde",
sex: [9,9,9,9,9,9], ready: 1, subscribe: 0};
$appearances.Maya = {name: "Maya", photo: "photo/Maya.jpg", face: "Redhead",
sex: [9,9,9,9,9,9], ready: 1, subscribe: 0};
$appearances.Lily = {name: "Lily", photo: "photo/Lily.jpg", face: "Mulatto",
sex: [9,9,9,9,9,9], ready: 1, subscribe: 0};
$appearances.Nina = {name: "Nina", photo: "photo/Nina.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 1, subscribe: 1};
$appearances.Lucy = {name: "Lucy", photo: "photo/Lucy.jpg", face: "Blonde",
sex: [9,8,9,9,9,9], ready: 1, subscribe: 1};
$appearances.Nora = {name: "Nora", photo: "photo/Nora.jpg", face: "Redhead",
sex: [9,9,8,8,9,9], ready: 1, subscribe: 1};
$appearances.Paige = {name: "Paige", photo: "photo/Paige.jpg", face: "Mulatto",
sex: [9,9,9,9,9,9], ready: 1, subscribe: 1};
$appearances.Ruby = {name: "Ruby", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Sara = {name: "Sara", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Pearl = {name: "Pearl", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Tess = {name: "Tess", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Uma = {name: "Uma", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Yara = {name: "Yara", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Cleo = {name: "Cleo", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Mia = {name: "Mia", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Zoe = {name: "Zoe", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Ava = {name: "Ava", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Lia = {name: "Lia", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.June = {name: "June", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Mila = {name: "Mila", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Gwen = {name: "Gwen", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Tori = {name: "Tori", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Gia = {name: "Gia", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Alma = {name: "Alma", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Mira = {name: "Mira", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Petra = {name: "Petra", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
$appearances.Esme = {name: "Esme", photo: "photo/UnknownF.jpg", face: "Brunette",
sex: [9,9,9,9,9,9], ready: 0, subscribe: 0};
>>
/* Подготовка выбранных девушек:
$counter - счетчик выбранных девушек
$volunteersChosen - массив выбранных добровольцев
$appearancesChosen - массив выбранных обликов
$p - объект с девушками
________________________________________________ */
<<if typeof $counter == "undefined">>
<<set $counter = 1; $volunteersChosen = []; $appearancesChosen = []; $p = {};>>
<</if>>
/* отображаем девушек-добровольцев */
<div class="preparing-volunteers">
<div class="title">Volunteer Girls</div>
<div class="subtitle">
<<switch $counter>>
<<case 1>>Choose the first volunteer to be infected with the parasite:
<<case 2>>Choose the second volunteer to be infected with the parasite:
<<case 3>>Choose the third volunteer to be infected with the parasite:
<<case 4>>Choose the fourth volunteer to be infected with the parasite:
<</switch>>
</div>
<div class="volunteers-wrap">
<div class="volunteers">
<<for _key, _value range $volunteers>>
/* класс для девушки */
<<if $volunteersChosen.includes(_key)>>
<<set _css="volunteer chosen">>
<<elseif _value.ready == 1>>
<<set _css="volunteer active">>
<<else>>
<<set _css="volunteer soon">>
<</if>>
<div @id="_key" @class="_css">
<div class="photo"><img @src="_value.photo"></div>
<div class="name">
<span><<=_value.name>></span>
<<if _value.subscribe == 1>><img src="ui/patreon-min.svg"><</if>>
</div>
<div class="check">✔</div>
<div class="soon-text">Soon</div>
<div class="chosen-text">Already Chosen</div>
<<capture _key, _value>>
<<link ''>>
/* если нужна подписка */
<<if _value.subscribe == 1 && $t.additionalNPCs !=1 >>
<<run Dialog.create("Exclusive Access Required");>>
<<run Dialog.wikiPassage("contentPatreon").open();>>
<<else>>
/* убираем клас "selected" у ранее выбранного решения */
<<if _volunteerSelected >>
<<toggleclass `'#' + _volunteerSelected` 'selected'>>
<</if>>
/* указываем выбор игрока */
<<set _volunteerSelected = _key;>>
/* добавляем клас "chosen" */
<<toggleclass `'#' + _volunteerSelected` 'selected'>>
<</if>>
<</link>>
<</capture>>
</div><!-- .volunteer -->
<</for>>
</div><!-- .volunteers -->
</div><!-- .volunteers-wrap -->
<div class="subtitle bottom">
New volunteer girls will be added soon.
</div>
</div><!-- .preparing-volunteers -->
/* отображаем паразитические облики */
<div class="preparing-appearances">
<div class="title">Parasitic Appearances</div>
<div class="subtitle">Choose the appearance the parasite will transform the volunteer into:</div>
<div class="appearances-wrap">
<div class="appearances">
<<for _key, _value range $appearances>>
/* класс для облика */
<<if $appearancesChosen.includes(_key)>>
<<set _css="appearance chosen">>
<<elseif _value.ready == 1>>
<<set _css="appearance active">>
<<else>>
<<set _css="appearance soon">>
<</if>>
<div @id="_key" @class="_css">
<div class="photo"><img @src="_value.photo"></div>
<div class="name">
<span><<=_value.name>></span>
<<if _value.subscribe == 1>><img src="ui/patreon-min.svg"><</if>>
</div>
<div class="soon-text">Soon</div>
<div class="chosen-text">Already Chosen</div>
<<capture _key, _value>>
<<link ''>>
/* если нужна подписка */
<<if _value.subscribe == 1 && $t.additionalNPCs !=1>>
<<run Dialog.create("Exclusive Access Required");>>
<<run Dialog.wikiPassage("contentPatreon").open();>>
/* если девушка-доброволец не выбрана */
<<elseif typeof _volunteerSelected == "undefined">>
<<run Dialog.create("No Volunteer Selected");>>
<<run Dialog.wikiPassage("noVolunteerSelected").open();>>
/* обрабатываем результат */
<<else>>
<<run $volunteersChosen.push(_volunteerSelected);>> /* добавляем доб-ца */
<<run $appearancesChosen.push(_key);>> /* добавляем облик */
<<goto 'Prepare-Girls'>> /* переходим в пассаж обработки */
<</if>>
<</link>>
<</capture>>
</div><!-- .appearance -->
<</for>>
</div><!-- .appearances -->
</div><!-- .appearances-wrap -->
<div class="subtitle bottom">
New appearances will be added soon.
Some appearances are available exclusively to my Patreon subscribers.
</div>
</div><!-- .preparing-appearances -->
$bg
<<img 'img/scanners.jpg'>>
<<say 'Computer'>>
Our synaptic sensors indicate that <<=$sexGirl>> is currently experiencing strong sexual arousal while she sleeps. We can connect to her subconscious and record her erotic dream. This will help us enhance her level of parasitism in the future.
<</say>>
<div class="links">
<<link "Connect to $sexGirl's Subconscious" `$sexGirl + '-Sex-' + $p[$sexGirl].video`>><</link>>
</div>
/* ДЛЯ ТЕСТОВ - УДАЛИТЬ!!!!!!!!
<div class="links">
<<link 'End the Day (Start New Day)' 'New-Day'>>
<<set $t.sidebar = 1; >>
<</link>>
</div>
*/<<widget "img">>
/* адрес изображения */
<<set _src = _args[0]; >>
/* выводим html-код видео */
<div class="img-widget"><img @src="_src"></div>
<</widget>><table class="modal">
<tr>
<td class="img"><img src="ui/patreon-min.svg"></td>
<td class="text">
<p>This content is only available with a cheat code that can be obtained through a Patreon subscription.</p>
<p>Subscribe to my Patreon to gain access.</p>
</td>
</tr>
</table><table class="modal">
<tr>
<td class="img"><img src="photo/No-girl.jpg"></td>
<td class="text">Please select a volunteer before choosing an appearance. You must assign the appearance to a specific volunteer.</td>
</tr>
</table><style>body {background-image: url(bg/intro.jpg);}</style>
/* Базовые параметры
_____________________________________________________ */
<<set
_volunteer = $volunteersChosen.last(); /* техническое имя выбранного добровольца */
_appearance = $appearancesChosen.last(); /* техническое имя выбранного облика */
_parasiteColors = ["Red", "Green", "Blue", "Yellow"]; /* цвета паразитов */
>>
/* Собираем параметры девушки
_____________________________________________________ */
<<set
$p[_appearance] = {
name: $appearances[_appearance].name,
photo: $appearances[_appearance].photo,
face: $appearances[_appearance].face,
volunteer: _volunteer,
parasitism: 0,
health: 100,
hunger: 0,
thirst: 0,
strength: 10,
stamina: 10,
agility: 10,
mind: 10,
video: 1,
sex: $appearances[_appearance].sex
};>>
/* Обработка паразитов
_____________________________________________________ */
/* выбираем цвет паразита */
<<set $p[_appearance].parasite = _parasiteColors[$counter-1]; >>
/* увеличиваем скил до 30% зависимо от цвета паразита */
<<switch $p[_appearance].parasite>>
<<case "Red">><<set $p[_appearance].strength = 30;>>
<<case "Green">><<set $p[_appearance].stamina = 30;>>
<<case "Blue">><<set $p[_appearance].agility = 30;>>
<<case "Yellow">><<set $p[_appearance].mind = 30;>>
<</switch>>
/* Порядок отображения секс-сцен
_____________________________________________________ */
/* если выбраны все 4 девушки */
<<if $counter == 4>>
/* объявляем базовые переменные */
<<set _girls = Object.keys($p); _p = {}; _sexMax = 0; $sexOrder = [];>>
/* заполняем _p ("Девушка" : "Кол-во_Видео") */
/* определяем _sexMax (максимальное кол-во видеороликов) */
<<for _girl range _girls>>
<<set _p[_girl] = $p[_girl].sex.length-1;>>
<<if _sexMax < _p[_girl]>><<set _sexMax = _p[_girl];>><</if>>
<</for>>
/* заполняем послед-сть видео девушек массивами с именами девушек */
<<for _i = 0; _i < _sexMax; _i++>>
<<set $sexOrder[_i] = [];>>
<<for _girl, _videos range _p>>
<<if _p[_girl] > 0 >>
<<run $sexOrder[_i].push(_girl);>>
<<set _p[_girl]--;>>
<</if>>
<</for>>
<</for>>
/* получаем один массив с послед-стью видео девушек */
<<set $sexOrder = $sexOrder.flat();>>
<</if>>
/* Отображаем результаты
_____________________________________________________ */
/* отображаем видео с паразитом и добровольцем */
<<video `_video = 'video/Parasites/'+_volunteer+'-'+random(1,5)+'.mp4'`>>
<<say 'Computer'>>
STATUS:
<ul>
<li>The process of the parasite taking hold in <<=$p[_appearance].volunteer>>'s body was successful.</li>
<li>The parasite restructured <<=$p[_appearance].volunteer>>'s cells, giving her a new appearance (<<=$p[_appearance].name>>).</li>
<li><<=$p[_appearance].volunteer>>, now transformed into <<=$p[_appearance].name>>, is ready to participate in the experiment.</li>
</ul>
<</say>>
/* отображаем результат трансформации */
<<can 'Transformation Result:'>>
<div class="girl-transformed">
<div class="girl volunteer">
<div class="photo"><img @src="$volunteers[_volunteer].photo"></div>
<div class="name"><span><<=$volunteers[_volunteer].name>></span></div>
</div>
<div class="arrow"><img src="ui/arrows.png"></div>
<div class="girl">
<div class="photo"><img @src="$p[_appearance].photo"></div>
<div class="name"><span><<=$p[_appearance].name>></span></div>
</div>
</div><!-- .host-transform -->
<</can>>
/* ссылки на выбор следующего добровольца или на подготовку локации */
<div class="links">
<<if $counter < 4>>
<<link 'Choose the Next Volunteer Girl' 'Choosing-Girls'>>
<<set $counter++; >>
<</link>>
<<else>>
<<link 'Proceed to Select an Experiment Location' 'Choosing-Locations'>>
<<unset $counter, $volunteersChosen, $appearancesChosen>>
<<set $wasted = [];>> /* объявляем массив для выбывших девушек */
<</link>>
<</if>>
</div>
/* подключаем настройки выбранной локации */
<<include `'_Params-' + $locationChosen`>>
/* подключаем монстров выбранной локации */
<<include `'_Monsters-' + $locationChosen`>>
/* подключаем инвентарь выбранной локации */
<<include `'_Items-' + $locationChosen`>>
/* отображаем пролог выбранной локации */
<<include `'_Prolog-' + $locationChosen`>>
/* отображаем инвентарь */
<div class="inventory">
<div class="title">Your Supplies</div>
<div class="subtitle">Click the «<i>i</i>» button to view the item description</div>
<div class="items-wrap">
<div class="items line">
<<set
_items = Object.keys($i);
_zeroCount = 0;
>>
/* отображаем предметы, которые есть в инветаре */
<<for _i = 0; _i < _items.length; _i++>>
<<set _item = _items[_i]; >>
/* пропускаем итерацию если предмета нет в инвенатаре */
<<if $i[_item].count == 0>><<set _zeroCount++;>><<continue>><</if>>
<div class="item-wrap">
<div class="item">
<div class="image">
<img @src="$i[_item].img">
<<capture $i[_item]>>
<<link 'i'>>
<<run Dialog.create($i[_item].title);>>
<<run Dialog.wikiPassage("aboutInventoryItems");>>
<<run Dialog.open();>>
<</link>>
<</capture>>
</div>
<div class="name param">$i[_item].title</div>
<div class="count param">Count: $i[_item].count</div>
</div><!-- .item -->
</div><!-- .item-wrap -->
<</for>>
/* если в инвентаре так и не оказалось предметов, отображаем уведомление */
<<if _zeroCount == _items.length>>
<div class=inventory-empty>Your inventory is empty</div>
<</if>>
</div><!-- .items line -->
</div><!-- .items-wrap -->
</div><!-- .inventory -->
/* ссылка на первый игровой день */
<div class="links">
<<link 'Start the First Day of the Experiment' 'New-Day'>><<set $gameOn = 1;>><</link>>
</div>
<<set
$i = {};
$i.Food = {
title: "Food",
img: 'items/Food.jpg',
use: "Reduces hunger (-"+$useFood+"%)",
desc: "Expiration date is long gone, but we believe in the magic of cans! Still crunchy? Then it’s edible!",
count: random(3,3),
chemicals: 1,
days: 1
};
$i.Water = {
title: "Water",
img: 'items/Water.jpg',
use: "Reduces thirst (-"+$useWater+"%)",
desc: "Clear, refreshing, and probably safe - probably. Drink at your own risk!",
count: random(3,3),
chemicals: 1,
days: 1
};
$i.Medkit = {
title: "Medkit",
img: 'items/Medkit.jpg',
use: "Restores health (+"+$useMedkit+"%)",
desc: "Your best chance at surviving bad decisions.",
count: random(3,3),
chemicals: 1,
days: 1
};
$i.ShockBat = {
title: "Shock Bat",
img: 'items/ShockBat.jpg',
use: "+"+$useShockBat+"% chance to defeat monsters",
desc: "Hit and stun! Victory not guaranteed 100%, but it’s fun!",
count: random(1,2),
chemicals: 1,
days: 1
};
$i.TeslaStrike = {
title: "Tesla Strike <img class='unique-item' src='ui/patreon-min.svg'>",
img: 'items/TeslaStrike.jpg',
use: "100% chance to defeat monsters",
desc: "The exclusive weapon for Patreon subscribers: 100% monster defeat guaranteed!",
count: 0,
chemicals: 0,
days: 0
};
$i.Toolkit = {
title: "Toolkit",
img: 'items/Toolkit.jpg',
use: "In some quests",
desc: "For when you need to fix, build, or just feel like a genius - everything you need in one box!",
count: random(1,2),
chemicals: 1,
days: 1
};
$i.DuctTape = {
title: "Duct tape",
img: 'items/DuctTape.jpg',
use: "In some quests",
desc: "Sticks to many things, but be careful - don’t stick to yourself!",
count: random(1,2),
chemicals: 1,
days: 1
};
$i.Wires = {
title: "Wires",
img: 'items/Wires.jpg',
use: "In some quests",
desc: "Great for electrical connections, but be careful - one wrong move, and you're in for a shock!",
count: random(1,1),
chemicals: 1,
days: 1
};
$i.Battery = {
title: "Battery",
img: 'items/Battery.jpg',
use: "In some quests",
desc: "Small but necessary. Will charge almost anything, if you’re quick enough!",
count: random(1,1),
chemicals: 1,
days: 1
};
$i.Flashlight = {
title: "Flashlight",
img: 'items/Flashlight.jpg',
use: "In some quests",
desc: "Lights up the dark, but not for long - just like your patience!",
count: random(1,1),
chemicals: 1,
days: 1
};
$i.Welder = {
title: "Welder",
img: 'items/Welder.jpg',
use: "In some quests",
desc: "For when you need to join what shouldn’t be separated!",
count: random(1,1),
chemicals: 1,
days: 1
};
$i.Lighter = {
title: "Lighter",
img: 'items/Lighter.jpg',
use: "In some quests",
desc: "Starts a fire in seconds, just don’t expect it to last forever!",
count: random(1,1),
chemicals: 1,
days: 1
};
$i.Rope = {
title: "Rope",
img: 'items/Rope.jpg',
use: "In some quests",
desc: "Strong, but if you're not careful, you could be tangled for years!",
count: random(1,1),
chemicals: 1,
days: 1
};
$i.RodentSpray = {
title: "Rodent spray",
img: 'items/RodentSpray.jpg',
use: "In some quests",
desc: "Repels rodents. Possibly even mutant rodents.",
count: random(1,1),
chemicals: 1,
days: 1
};
>>
/* массив с уникальными предметами */
<<set $uniqueItems = ["TeslaStrike"];>>
/* если введен код, добавляем уникальные предметы */
<<if $t.uniqueItems == 1>>
<<for _key, _item range $uniqueItems>><<set $i[_item].count = 1;>><</for>>
<</if>>
<<say 'Computer'>>
STATUS:
<ul>
<li>The artificially created experimental location «Secret Laboratory» has been successfully set up.</li>
<li>The initial set of survival supplies has been placed in the inventory.</li>
<li>The volunteers' memories have been successfully erased.</li>
<li>Generating new memories and recording them into the volunteers' consciousness: <i style="color:red">In progress...</i></li>
</ul>
<</say>>
<<info 'The new memories of the volunteers:'>>
<center>Somewhere in a secret laboratory complex, due to either an accidental incident or deliberate sabotage, someone releases a highly dangerous viral pathogen.</center>
<</info>>
<<img 'img/SecretLab/Prolog-1.jpg'>>
<<info>>
<center>This pathogen instantly infiltrates the human body, triggering a rapid and uncontrolled cascade of cellular mutations. It rewires neural pathways, disrupts homeostasis, and induces aggressive behavioral shifts. As a result, the research complex's personnel are transformed into horrifying, highly aggressive mutant creatures.</center>
<</info>>
<<img 'img/SecretLab/Prolog-2.jpg'>>
<<info>>
<center>Only a few people miraculously avoided being infected by the dangerous viral pathogen. They split into groups and managed to take refuge in various rooms of the laboratory complex. And your group is one of them.</center>
<</info>>
<<img 'img/SecretLab/Prolog-3.jpg'>>
<<info>>
<center>A quarantine was immediately imposed in the laboratory complex - no one can enter or exit. Help your group of survivors endure until the quarantine is lifted and help arrives. By the way, during the widespread panic, a few girls managed to grab some useful supplies. These supplies will now help your group survive for a while.</center>
<</info>>
<style>body {background-image: url(bg/intro.jpg);}</style>
<div class="intro-game">
<style>
.intro-game .intro {
margin: 30px 0;
padding: 2%;
border-radius: 12px;
overflow: hidden;
background: #08151d;
border: 1px solid rgba(255, 255, 255, 30%);
-webkit-box-shadow: 0px 0px 5px 7px rgb(0 0 0 / 40%);
-moz-box-shadow: 0px 0px 5px 7px rgb(0 0 0 / 40%);
box-shadow: 0px 0px 5px 7px rgb(0 0 0 / 40%);
}
.intro-game .can-widget {
background: rgba(8, 21, 29, 85%);
border: 1px solid rgba(255, 255, 255, 30%);
}
.intro-game IMG {
display: block;
max-width: 100%;
height: auto;
}
.intro-game .links {
margin-top: 15px;
}
</style>
<div class="intro"><img src="img/intro-game.jpg"></div>
<<can>>
<center>This game is intended for mature audiences of the age of 18 and over! By starting the game you cofirm that you are at least 18 years of age or the age of majority in the jurisdiction you are accessing the game from.</center>
<div class="links">
<<link 'I am aged 18 or over' 'About-Game'>><</link>>
</div>
<</can>>
</div><style>body {background-image: url(bg/base.jpg);}</style>
<style>body {background-image: url(bg/intro.jpg);}</style>
<<info>>
<div style="text-align: center; font-size: 40px; font-family: impact; margin: 20px 0 25px;">
Prologue
</div>
<center>The events of this game take place in one of the secret biological laboratories of the research complex called «N.E.R.D.». The abbreviation «N.E.R.D.» was devised by the founders as a cover-up, as the full name of the complex stands for: <br><b>«Nucleic Exchange Research and Development»</b>.</center>
<</info>>
<<img 'img/about-game-1.jpg'>>
<<info>>
<center>The biologist scientists of this laboratory conducted genetic manipulations and DNA experiments to create new forms of life and successfully developed a unique species of parasites. People infected with these parasites can take on the appearance of any other person. Additionally, the parasite grants its host special physical and intellectual abilities.</center>
<</info>>
<<img 'img/about-game-2.jpg'>>
<<info>>
<center>Well, the parasites have been created, and several female volunteers are ready to undergo controlled infection with parasites. That means it's time to begin a series of practical experiments to understand how people infected with parasites will behave in extreme survival conditions.</center>
<</info>>
<<img 'img/about-game-3.jpg'>>
<<info 'Now, as the experiment curator, you must:'>>
<ul>
<li>Select four volunteers and infect them with parasites.</li>
<li>Choose the appearances into which the parasites will transform them.</li>
<li>Select one of the artificially created locations for the experiment.</li>
<li>Erase the volunteers' memories so they forget they are part of an experiment.</li>
<li>Integrate new memories into the volunteers about a critical incident.</li>
<li>Help the volunteers survive in extreme conditions for several months.</li>
</ul>
<</info>>
<div class="links">
<<link 'Begin Experiment Preparation' 'Choosing-Girls'>><</link>>
</div>
$bg
<<set _winGirls = 4-$wasted.length;>>
<<can>>
<center>
<div style="text-transform: upprcase; font-size: 50px; font-family: impact; margin: 20px 0 25px;">
You won!
</div>
Congratulations! This experiment is complete. <br>
Your test subject group managed to survive until the rescue team arrived. <br>
Survived: _winGirls out of 4 participants.
</center>
<</can>>
<<img 'img/win-game.jpg'>>
<<can>>
<center>
<p>Please support me if you enjoy my games and are waiting for new releases:</p>
<<subscribe>>
<p>I also invite you to check out another one of my games, «SexMachine».
<br>Find the links in my <a href="https://discord.gg/gM39Kh3589" target="_blank">Discord</a></p>
</center>
<</can>>
<div class="links">
<<link 'Do you want to start a new experiment?' 'Choosing-Girls'>>
<<set $t.sidebar = 1; $chemicals = 0;>>
<<unset $p, $q, $i, $m, $day, $dayLast, $bg, $sexOrder, $locationChosen>>
<<unset $uniqueItems, $wasted, $gameOn>>
<</link>>
</div>
$bg
<<can>>
<center>
<div style="text-transform: upprcase; font-size: 50px; font-family: impact; margin: 20px 0 25px;">
You lost
</div>
Bad news! You failed to help your test subject group survive until the rescue team arrived.
<br>
All four parasites have completely consumed their hosts.
<br>
<u>Your group survived for $day out of <<=$dayLast-1>> days.</u>
</center>
<</can>>
<<img 'img/lose-game.jpg'>>
<<can>>
<center>
<p>Please support me if you enjoy my games and are waiting for new releases:</p>
<<subscribe>>
<p>I also invite you to check out another one of my games, «SexMachine».
<br>Find the links in my <a href="https://discord.gg/gM39Kh3589" target="_blank">Discord</a></p>
</center>
<</can>>
<div class="links">
<<link 'Do you want to start a new experiment?' 'Choosing-Girls'>>
<<set $t.sidebar = 1; $chemicals = 0;>>
<<unset $p, $q, $i, $m, $day, $dayLast, $bg, $sexOrder, $locationChosen>>
<<unset $uniqueItems, $wasted, $gameOn>>
<</link>>
</div>
<<link 'Check Status'>>
<<if typeof $gameOn != "undefined">><<goto 'Main-Room'>>
<<else>><<run Dialog.create("Quick Navigation").wikiPassage("errorQuickNav").open();>>
<</if>>
<</link>>
<<link 'Distribute Supplies'>>
<<if typeof $gameOn != "undefined">><<goto 'Distribute-Supplies'>>
<<else>><<run Dialog.create("Quick Navigation").wikiPassage("errorQuickNav").open();>>
<</if>>
<</link>>
<<link 'Create Supplies'>>
<<if typeof $gameOn != "undefined">><<goto 'Create-Supplies'>>
<<else>><<run Dialog.create("Quick Navigation").wikiPassage("errorQuickNav").open();>>
<</if>>
<</link>>
<<link 'Extract Chemicals'>>
<<if typeof $gameOn != "undefined">><<goto 'Extract-Chemicals'>>
<<else>><<run Dialog.create("Quick Navigation").wikiPassage("errorQuickNav").open();>>
<</if>>
<</link>>
<<link 'Boost Parasitism'>>
<<if typeof $gameOn != "undefined">><<goto 'Boost-Parasitism'>>
<<else>><<run Dialog.create("Quick Navigation").wikiPassage("errorQuickNav").open();>>
<</if>>
<</link>>
<<link 'Upgrade Skills'>>
<<if typeof $gameOn != "undefined">><<goto 'Upgrade-Skills'>>
<<else>><<run Dialog.create("Quick Navigation").wikiPassage("errorQuickNav").open();>>
<</if>>
<</link>>
<<link 'Leave the Shelter'>>
<<if typeof $gameOn != "undefined">><<goto 'Leave-Shelter'>>
<<else>><<run Dialog.create("Quick Navigation").wikiPassage("errorQuickNav").open();>>
<</if>>
<</link>>
<<link 'Get More Stuff'>>
<<if typeof $gameOn != "undefined">><<goto 'Strange-Pyramids'>>
<<else>><<run Dialog.create("Quick Navigation").wikiPassage("errorQuickNav").open();>>
<</if>>
<</link>>
<<link 'Make Decision'>>
<<if typeof $gameOn != "undefined">><<goto 'Make-Decision'>>
<<else>><<run Dialog.create("Quick Navigation").wikiPassage("errorQuickNav").open();>>
<</if>>
<</link>>
<<link 'End the Day'>>
/* если игра еще не начата */
<<if typeof $gameOn == "undefined">>
<<run Dialog.create("Quick Navigation").wikiPassage("errorQuickNav").open();>>
/* если сегодняшний квест не выполнен */
<<elseif $q.day != $day>>
<<run Dialog.create("No decision made").wikiPassage("errorNoDecisionMade").open();>>
/* если квест выполнен */
<<else>>
/* увеличиваем номер дня */
<<set $day++;>>
/* удаляем выбывших девушек из посл-сти отображаемых секс-сцен */
<<run $sexOrder.deleteAll($wasted);>>
/* если игра закончилась, переходим в финальную сцену */
<<if $day == $dayLast>>
<<set $t.sidebar = 0; >> /* отключаем сайдбар */
<<goto 'Win-Game'>> /* переходим в финал */
/* показываем секс-сцену на каждый 4-й день (если еще остались) */
<<elseif $day % 4 === 0 && $sexOrder.length > 0>>
<<set $sexGirl = $sexOrder.shift();>> /* выбираем девушку для показа секс-сцены */
<<set $t.sidebar = 0; >> /* отключаем сайдбар */
<<set $p[$sexGirl].video++; >> /* увеличиваем кол-во разбл-нных роликов */
<<goto 'Girls-Sex-Start'>> /* переходим в пассаж с началом секса */
/* переходим в новый день */
<<else>>
<<goto 'New-Day'>>
<</if>>
<</if>>
<</link>>
/* ДЛЯ ТЕСТОВ - УДАЛИТЬ!!!!!!!!!!! */
<div style="display: none;">
<<link '+Day'>>
/* увеличиваем номер дня */
<<set $day++;>>
/* удаляем выбывших девушек из посл-сти отображаемых секс-сцен */
<<run $sexOrder.deleteAll($wasted);>>
/* если игра закончилась, переходим в финальную сцену */
<<if $day == $dayLast>>
<<set $t.sidebar = 0; >> /* отключаем сайдбар */
<<goto 'Win-Game'>> /* переходим в финал */
/* показываем секс-сцену на каждый 4-й день (если еще остались) */
<<elseif $day % 4 === 0 && $sexOrder.length > 0>>
<<set $sexGirl = $sexOrder.shift();>> /* выбираем девушку для показа секс-сцены */
<<set $t.sidebar = 0; >> /* отключаем сайдбар */
<<set $p[$sexGirl].video++; >> /* увеличиваем кол-во разбл-нных роликов */
<<goto 'Girls-Sex-Start'>> /* переходим в пассаж с началом секса */
/* переходим в новый день */
<<else>>
<<goto 'New-Day'>>
<</if>>
<</link>>
</div>
<table class="modal">
<tr>
<td class="img"><img src="ui/attention.jpg"></td>
<td class="text">Quick navigation is unavailable at this moment in the game.</td>
</tr>
</table><style>body {background-image: url(bg/code.jpg);}</style>
<<set _codes = {
AdditionalNPCs: '302eb20e7d3bd10dc688438e8448954a',
AdditionalLocations: 'cf6f85facc2aad3d16d7a2702e1d2032',
AdditionalChemicals: '1b1bdc970770f5b5c3f4e392b69bd756',
UniqueItems: '8062432cb2bc530c7c0962077ad2b5d4',
ImaginariumCharges: '07b3b9c632ae13d23ae58860fb1cc0bc',
CraftingSlots: '3f39383bd43742dfbce982014906ab8d',
UndoButton: 'ab8636dd16685caf1f2fcebe26685e03'
}; >>
<<can>>
<div class="cheats-enter">
<div class="title">Enter Cheat Code: </div>
<<textbox "_rawCode" "">>
<<button "OK">>
<<set _rawCode = _rawCode.trim(); >>
<<if setup.PASS(_rawCode) === _codes.AdditionalNPCs>>
<<set
$t.GetNPCs = 1;
_title = "Cheat code accepted";
_message = "<center><img src='ui/success.jpg'>";
_message += "<p>Additional girls unlocked.</p>";
_message += "</center>";
>>
<<CleanTag1>>
<<elseif setup.PASS(_rawCode) === _codes.AdditionalLocations>>
<<set
$t.GetLocations = 1;
_title = "Cheat code accepted";
_message = "<center><img src='ui/success.jpg'>";
_message += "<p>Additional locations unlocked.</p>";
_message += "</center>";
>>
<<CleanTag2>>
<<elseif setup.PASS(_rawCode) === _codes.AdditionalChemicals>>
<<set
$t.GetChemicals = 1;
_title = "Cheat code accepted";
_message = "<center><img src='ui/success.jpg'>";
_message += "<p>Additional chemicals received.</p>";
_message += "</center>";
>>
<<CleanTag3>>
<<elseif setup.PASS(_rawCode) === _codes.UniqueItems>>
<<set
$t.GetItems = 1;
_title = "Cheat code accepted";
_message = "<center><img src='ui/success.jpg'>";
_message += "<p>Unique items added to your inventory.</p>";
_message += "</center>";
>>
<<CleanTag4>>
<<elseif setup.PASS(_rawCode) === _codes.ImaginariumCharges>>
<<set
$t.GetCharges = 1;
_title = "Cheat code accepted";
_message = "<center><img src='ui/success.jpg'>";
_message += "<p>Number of Imaginarium charges increased.</p>";
_message += "</center>";
>>
<<CleanTag5>>
<<elseif setup.PASS(_rawCode) === _codes.CraftingSlots>>
<<set
$t.GetSlots = 1;
_title = "Cheat code accepted";
_message = "<center><img src='ui/success.jpg'>";
_message += "<p>Number of slots for simultaneous crafting increased.</p>";
_message += "</center>";
>>
<<CleanTag6>>
<<elseif setup.PASS(_rawCode) === _codes.UndoButton>>
<<set
$t.GetUndo = 1;
_title = "Cheat code accepted";
_message = "<center><img src='ui/success.jpg'>";
_message += "<p>Undo button unlocked.</p>";
_message += "</center>";
>>
<<CleanTag7>>
<<else>>
<<set
_title = "Invalid cheat code";
_message = "<center><img src='ui/attention.jpg'><b>";
_message += "<p style='color:#f55d0a;'>Invalid cheat code. Please try again.</p>";
_message += "</b></center>";
>>
<</if>>
<<script>>document.getElementById("textbox--rawcode").value = "";<</script>>
<<if _title && _message>>
<<run Dialog.create(_title).wiki(_message).open();>>
<<set _rawCode = "";>>
<<unset _title, _message>>
<</if>>
<</button>>
</div><!-- .cheats-enter -->
<div class="cheats-get">
<div class="title"><b><u>Get Cheat Codes:</u></b></div>
<<subscribe>>
/*
<div class="title"><b>Using cheat codes, you can get:</b></div>
<ul>
<li>Additional Girls</li>
<li>Additional Locations</li>
<li>Additional Chemicals</li>
<li>Imaginarium Charges</li>
<li>Unique Items</li>
<li>Crafting Slots</li>
<li>Undo Button</li>
</ul>
*/
</div>
<</can>>
<div class="links">
<<link 'Return' $t.prewPassage>><<set $t.sidebar = 1;>><</link>>
</div>
<style>
/* cheats */
.cheats-enter {
text-align: center;
margin-bottom: 15px;
}
.cheats-enter .title {
font-size: 24px;
line-height: 30px;
font-weight: bold;
margin-bottom: 15px;
}
.cheats-enter INPUT {
border-radius: 4px;
min-width: 161px;
width: 40%;
padding: 12px 10px;
margin-bottom: 5px;
box-sizing: border-box;
background: #0e0e0e;
border: 1px solid #d1d1d1;
}
.cheats-enter BUTTON {
border-radius: 4px;
background-color: #04AA6D;
border: 1px solid #04AA6D;
padding: 12px 20px;
margin-bottom: 5px;
box-sizing: border-box;
text-shadow: 1px 1px 2px rgb(0 0 0 / 70%);
}
.cheats-enter BUTTON:hover {
background-color: #03724a;
border: 1px solid #03724a;
}
.cheats-get {border-top: 1px dotted rgba(255, 255, 255, 0.3); text-align: center;}
.cheats-get .title {font-size: 15px; margin: 16px 0 10px; text-align: center;}
.cheats-get UL {display: inline-block; text-align: left; margin: 0;}
</style>
<style>body {background-image: url(bg/abstract.jpg);}</style>
<div class="credits">
<div class="title">Credits:</div>
<div class="models">
<div class="model">
<img class="photo" src='photo/Anna.jpg'>
<div class="name">Anna</div>
<div class="actor">Lulu Chu</div>
</div>
<div class="model">
<img class="photo" src='photo/Bella.jpg'>
<div class="name">Bella</div>
<div class="actor">Amirah Adara</div>
</div>
<div class="model">
<img class="photo" src='photo/Cara.jpg'>
<div class="name">Cara</div>
<div class="actor">Mia Nix</div>
</div>
<div class="model">
<img class="photo" src='photo/Dina.jpg'>
<div class="name">Dina</div>
<div class="actor">Purple Bitch</div>
</div>
<div class="model">
<img class="photo" src='photo/Jess.jpg'>
<div class="name">Jess</div>
<div class="actor">Liya Silver</div>
</div>
<div class="model">
<img class="photo" src='photo/Lana.jpg'>
<div class="name">Lana</div>
<div class="actor">Kira Noir</div>
</div>
<div class="model">
<img class="photo" src='photo/Maya.jpg'>
<div class="name">Maya</div>
<div class="actor">Little Dragon</div>
</div>
<div class="model">
<img class="photo" src='photo/Lily.jpg'>
<div class="name">Lily</div>
<div class="actor">Lily</div>
</div>
<div class="model">
<img class="photo" src='photo/Nina.jpg'>
<div class="name">Nina</div>
<div class="actor">Ariana Marie</div>
</div>
<div class="model">
<img class="photo" src='photo/Lucy.jpg'>
<div class="name">Lucy</div>
<div class="actor">Elsa Jean</div>
</div>
<div class="model">
<img class="photo" src='photo/Nora.jpg'>
<div class="name">Nora</div>
<div class="actor">Lenina Crowne</div>
</div>
<div class="model">
<img class="photo" src='photo/Paige.jpg'>
<div class="name">Paige</div>
<div class="actor">Ana Foxxx</div>
</div>
</div><!-- / models -->
</div><!-- / credits -->
<div class="links">
<<link 'Return' $t.prewPassage>><<set $t.sidebar = 1;>><</link>>
</div>
<style>
.credits .title {
font-size: 30px;
font-weight: bold;
text-align: center;
margin: 25px 0 22px;
}
.credits .models {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: -1%;
overflow: hidden;
margin-bottom: 20px;
}
.credits .model {
flex: 1 160px;
border-radius: 12px;
margin: 1%;
padding: 16px 5px 11px;
box-sizing: border-box;
text-align: center;
color: #fff;
text-decoration: none;
overflow: hidden;
background-color: #f4a302;
}
.credits .photo {
width: 95px;
height: 95px;
border-radius: 50%;
border: 2px solid #fff;
}
.credits .name {
font-weight: bold;
font-size: 18px;
line-height: 20px;
margin: 6px 0 6px;
padding-bottom: 8px;
text-shadow: 1px 1px 2px rgb(0 0 0 / 60%);
border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}
.credits .actor {
font-weight: bold;
text-shadow: 1px 1px 2px rgb(0 0 0 / 60%);
}
</style><style>body {background-image: url(bg/code.jpg);}</style>
<style>
.changelog .version-title {font-size: 20px; margin: 35px 0 20px;}
</style>
<div class="changelog">
<<can>>
<center><h1>Changelog:</h1></center>
<hr>
<div class="version-title">Version 0.1.0:</div>
<ul>
<li>Release of the Base Version of the Game.</li>
<li>12 girls added (Anna, Bella, Cara, Dina, Jess, Lana, Maya, Lily, Nina, Lucy, Nora, Paige).</li>
<li>First location added (Secret Laboratory).</li>
<li>100 quests added for 100 in-game days.</li>
<li>48 porn episodes (events) added.</li>
<li>449 porn scenes added.</li>
</ul>
<</can>>
</div>
<div class="links">
<<link 'Return' $t.prewPassage>><<set $t.sidebar = 1;>><</link>>
</div>
<<set
$m = {};
$m.Monster1 = {
name: 'Monster1',
weakness: ['agility'],
photo: 'photo/Deborah.jpg',
img: 'img/Monser1.jpg',
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
};
$m.Monster2 = {
name: 'Monster2',
weakness: ['strength'],
photo: 'photo/Deborah.jpg',
img: 'img/Monser1.jpg',
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
};
$m.Monster3 = {
name: 'Monster3',
weakness: ['stamina'],
photo: 'photo/Deborah.jpg',
img: 'img/Monser1.jpg',
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
};
$m.Monster4 = {
name: 'Monster4',
weakness: ['mind'],
photo: 'photo/Deborah.jpg',
img: 'img/Monser1.jpg',
desc: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
};
>><<widget "subscribe">>
<div class="subscribe-widget">
<a href="https://www.patreon.com/SupremeAI" target="_blank">
<img src="ui/patreon.jpg">
</a>
<a href="https://www.clica.net/user/supremeai" target="_blank">
<img src="ui/clica.jpg">
</a>
</div>
<</widget>><<widget "CleanTag1">>
<<set $t.additionalNPCs = 1;>>
<</widget>><<widget "prewPassage">>
<<if passage() != 'Cheats' &&
passage() != 'Credits' &&
passage() != 'Changelog'
>>
<<set $t.prewPassage = passage(); >>
<</if>>
<</widget>><<widget "CleanTag2">>
<<set $t.additionalLocations = 1;>>
<</widget>><<widget "CleanTag3">>
<<set $t.additionalChemicals = 1; $chemicals += 50; >>
<</widget>><<widget "CleanTag4">>
<<set $t.uniqueItems = 1;>>
<<if typeof $i != "undefined">>
<<for _key, _item range $uniqueItems>><<set $i[_item].count = 1;>><</for>>
<</if>>
<</widget>><<widget "CleanTag5">>
<<set $t.imaginariumTotal = 5;>>
<</widget>><<widget "CleanTag6">>
<<set $t.craftingSlots = 5;>>
<</widget>><<widget "CleanTag7">>
<<set $t.undoButton = 1;>>
<</widget>>$bg
<<img $q.active.lossImg>>
<<say 'Computer'>>
<<= $q.active.results[$q.active.chosen]>>
<</say>>
/* ---- Навигация ---- */
<<include 'Navigation'>><<widget "info" container>>
<div class="info-widget">
<<if _args[0]>>
<div class="info-title">_args[0]</div>
<</if>>
/* contents */
<<=_contents>>
</div><!-- .info .widget -->
<</widget>>$bg
<<say 'Computer'>>
Explore nearby locations to gather more supplies:
<ul>
<li>Choose a girl who will go on the journey.</li>
<li>Select the map of the area you want to explore.</li>
<li>Make sure the girl has enough health for this adventure.</li>
<li>Visit all the rooms and corridors you encounter.</li>
<li>Search cabinets, tables, and drawers to find something useful.</li>
<li>Be ready for various surprises and unexpected events.</li>
<li>Dangers will be waiting for you - stay cautious.</li>
<li>Watch your noise level - the louder you are, the higher the chance of attracting the monster.</li>
<li>Hide in a locker, under a table, or another suitable spot if the monster notices you.</li>
<li>Wait until the noise level decreases for the monster to leave.</li>
<li>You will find several technical devices that can defeat the monster.</li>
<li>Not all devices will work against the monster - choose the right one based on the monster's description.</li>
<li>Technical devices may be broken - find items to help repair them.</li>
<li>Use medkits to restore health.</li>
<li>Escape if you are unsure of your strength - in this case, you will lose the opportunity to collect valuable supplies.</li>
</ul>
<</say>>
<<img 'img/other/Leave-Shelter.jpg'>>
<<info 'Note:'>>
<center>
<p>This type of quest will appear in the upcoming update of the game "Parasitorium." You can find the latest development news and fresh links to this and my other games in my Discord:</p>
<a href="https://discord.gg/gM39Kh3589" target="_blank"><img src="ui/discord.jpg"></a>
</center>
<</info>>
/* ---- Навигация ---- */
<<include 'Navigation'>>$bg
<<img 'img/other/Strange-Pyramid.jpg'>>
<<say 'Computer'>>
We have found several strange pyramid-shaped objects:
<ul>
<li>The Pyramids have mysterious metaphorical inscriptions that resemble riddles.</li>
<li>It seems the answers point to an item that must be used to open the Pyramid.</li>
<li>Try to solve the riddle to figure out which item to apply.</li>
<li>Remember: you can’t use an item you don’t have. Use the Chemical Synthesizer to craft what you need.</li>
</ul>
Caution! We have discovered strange openings on the Pyramids:
<ul>
<li>These might be nozzles for releasing poisonous gases or aggressive acids.</li>
<li>It seems that if you solve the riddle incorrectly and use the wrong item, the Pyramid will harm one of your crew members.</li>
</ul>
<</say>>
<<info 'Note:'>>
<center>
<p>This type of quest will appear in the upcoming update of the game "Parasitorium." You can find the latest development news and fresh links to this and my other games in my Discord:</p>
<a href="https://discord.gg/gM39Kh3589" target="_blank"><img src="ui/discord.jpg"></a>
</center>
<</info>>
/* ---- Навигация ---- */
<<include 'Navigation'>><style>body {background-image: url(bg/base.jpg);}</style>
<<set _girl = "Deborah"; _man = "You"; >>
/*
Объявляем первый пассаж
___________________________________________________ */
<<if typeof $_passageCounter == "undefined">>
<<set $_passageCounter = 1;>>
<</if>>
/*
Отображаем нужный пассаж
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video `'media/' + _girl + '/' + _girl + '-1-1.mp4'`>>
<<include '_Dialogs-Minet'>>
<<say 'Deborah'>>
Mmm, your cock feels incredible in my mouth, Evan. I can feel it getting harder with every second, growing as I take you deeper. The way you respond to my tongue, it's driving me wild.
<</say>>
<<say 'You'>>
Fuck, you're amazing at this, baby. The way you tease me, I can barely hold back. I could cum right now just from the way your lips and tongue work together, taking all of me.
<</say>>
<<say 'Deborah'>>
I want to make you feel even better. I want to keep going until you lose control, until your hot cum explodes in my mouth. I need to taste you, to feel you completely give in to me.
<</say>>
<<say 'You'>>
You're such a dirty little slut, Deborah, and I love every second of it. Suck it harder, make me cum for you. I want to feel you take every inch of me.
<</say>>
<<case 2>>
<<video video/Deborah/Deborah-1-2.mp4>>
<<say 'Deborah'>>
Oh god, Evan, your cock feels incredible inside me. It's filling me up so completely, stretching me in all the right ways. Every thrust makes me want more, you're making me lose control.
<</say>>
<<say 'You'>>
Your pussy is so tight, I can barely hold back, baby. Every time I push deeper, it feels like I'm about to explode. Fuck, you feel so good wrapped around me, I can’t stop.
<</say>>
<<say 'Deborah'>>
Fill me up with your cum, Evan. I need to feel you lose control, I want to feel your warmth spill inside me. I need you to fill every inch of me with your cum.
<</say>>
<<say 'You'>>
I'm gonna fuck you so hard, baby, you won't be able to walk tomorrow. You asked for this, and now I'm going to make sure you feel it all night long.
<</say>>
<<case 3>>
<<video video/Deborah/Deborah-1-3.mp4>>
<<say 'Deborah'>>
Yes, Evan, keep fucking me just like that. I need it harder, deeper. Push me to the edge, make me feel every inch of you inside me. I can't get enough.
<</say>>
<<say 'You'>>
You like it rough, don't you? I can tell by the way you're begging for more. I'll give you rough, baby, exactly how you want it.
<</say>>
<<say 'Deborah'>>
Pound me, Evan. Don’t hold back, I want to feel you completely, I want you to fill me up with every thrust.
<</say>>
<<say 'You'>>
You're such a dirty slut, taking my cock like this. But I know you love it, don’t you? You love being used like this, don’t even try to deny it.
<</say>>
<<say 'Deborah'>>
I love it. I love every second of it, Evan. I crave it, I need more of you.
<</say>>
<<case 4>>
<<video video/Deborah/Deborah-1-4.mp4>>
<<say 'Deborah'>>
Mmm, I love the way your cock feels in my mouth, Evan.
<</say>>
<<say 'You'>>
You're so fucking good at this, baby. I could let you suck me all day.
<</say>>
<<say 'Deborah'>>
Do you want to fuck my mouth, Evan? Do you want to feel my throat tighten around your cock?
<</say>>
<<say 'You'>>
Fuck yes, I want to fuck your mouth. You're such a dirty little slut, and I love it.
<</say>>
<<case 5>>
<<video video/Deborah/Deborah-1-5.mp4>>
<<say 'Deborah'>>
Oh god, Evan, it feels so good when you're beneath me.
<</say>>
<<say 'You'>>
You like being in control, huh? Riding me like a wild animal.
<</say>>
<<say 'Deborah'>>
Yeah, I love it. I love feeling you deep inside me, feeling you submit to me.
<</say>>
<<say 'You'>>
Keep moving, baby. Show me how much you want it.
<</say>>
<<case 6>>
<<video video/Deborah/Deborah-1-6.mp4>>
<<say 'Deborah'>>
Oh yes, Evan, fuck me from behind. I love feeling you deep inside me like this.
<</say>>
<<say 'You'>>
Your ass looks so fucking good when I'm pounding you from behind.
<</say>>
<<say 'Deborah'>>
I'm yours, Evan. Take me however you want.
<</say>>
<<say 'You'>>
I'll take you rough and hard, baby. You asked for it.
<</say>>
<<case 7>>
<<video video/Deborah/Deborah-1-7.mp4>>
<<say 'Deborah'>>
Oh fuck, Evan, your cock feels so good inside me.
<</say>>
<<say 'You'>>
You're such a dirty slut, playing with yourself while I'm fucking you.
<</say>>
<<say 'Deborah'>>
I can't help it, it feels so good. You make me so wet, Evan.
<</say>>
<<say 'You'>>
Keep touching yourself, baby. I want you to cum with my cock inside you.
<</say>>
<<case 8>>
<<video video/Deborah/Deborah-1-8.mp4>>
<<say 'Deborah'>>
Oh god, Evan, you're fucking me so hard. It hurts, but it feels so good.
<</say>>
<<say 'You'>>
You wanted it rough, baby. You wanted to be fucked like the dirty slut you are.
<</say>>
<<say 'Deborah'>>
Yes, fuck me like your little whore. I want it rough, Evan.
<</say>>
<<say 'You'>>
I'll give it to you rough, baby. I'll make you scream my name.
<</say>>
<<case 9>>
<<say 'Deborah'>>
Yes, Evan, I can feel you getting close. Let it go, cum for me. I want to feel your entire body tense up as you explode. Give me every drop of your hot load, I’m craving it so much.
<</say>>
<<say 'You'>>
Fuck, baby, you're driving me crazy. The way you're begging for it, I can't hold back any longer. I'm going to shoot it all over your gorgeous face, marking you with my cum, just like you want.
<</say>>
<<say 'Deborah'>>
Yes, that’s exactly what I want, Evan. I need it, I want to feel the warmth of your cum dripping down my skin, the taste of you in my mouth. Give it to me, I’m ready to take all of it.
<</say>>
<<video video/Deborah/Deborah-1-9.mp4>>
<<say 'You'>>
Here it comes, Deborah, just like you asked for. Take every drop, you filthy slut. I want to see you covered in my cum, knowing you begged for this.
<</say>>
<<do>><center>Deborah's quest list has been updated.</center><</do>>
<<do>><center>You spent some more time with Deborah and then decided to go home.</center><</do>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Start New Day' 'New-Day'>>
<<set $t.sidebar = 1; >>
<</link>>
</div>
<</if>>
$bg
<<img 'img/scanners.jpg'>>
<<say 'Computer'>>
Our Neural Dream Scanners, Cognitive Imagers, and Psychoactive Sensors have successfully read and recorded the erotic dream from <<=$sexGirl>>. Visit the Sexual Imaginarium to use a new sexual scene to enhance <<=$sexGirl>>'s parasitism level.
<</say>>
<div class="links">
<<link 'End the Day (Start New Day)' 'New-Day'>>
<<set $t.sidebar = 1; >>
<<unset $sexGirl>> /* на всякий случай удаляем переменную с именем девушки */
<</link>>
</div><style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'ИМЯ_ДЕВУШКИ'; _man = 'ИМЯ_ПАРНЯ'; _video = 'НОМЕР_ВИДЕО'>>
/* формируем URL видео-ролика */
<<set _url = 'media/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
ДИАЛОГ
<<case 2>>
<<video _url>>
ДИАЛОГ
<<case 3>>
<<video _url>>
ДИАЛОГ
<<case 4>>
<<video _url>>
ДИАЛОГ
<<case 5>>
<<video _url>>
ДИАЛОГ
<<case 6>>
<<video _url>>
ДИАЛОГ
<<case 7>>
<<video _url>>
ДИАЛОГ
<<case 8>>
<<video _url>>
ДИАЛОГ
<<case 9>>
<<video _url>>
ДИАЛОГ
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'New-Day'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Nina'; _man = 'Guy'; _video = '2'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Alright, you sexy sluts, get on your knees and open wide. I want you both to take turns sucking my big cock while the other licks and sucks on my balls. Don't be gentle, take it deep in your throats and make sure you slobber all over it.
<</say>>
<<say _girl>>
Yes sir, we love sucking your huge cock! It tastes so good, we can't wait to feel it sliding in and out of our mouths while we worship your balls with our tongues. We'll make sure to get it nice and wet so it's ready for your next fuck hole.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
That's it, deeper, take it all the way down your throat. Suck it hard while she licks my balls and licks my hole. Fuck yeah, your filthy mouths feel incredible.
<</say>>
<<say _girl>>
Mmm we love servicing your cock and asshole at the same time. It makes us so hot knowing we're pleasing you with our naughty tongues. We'll make you cum hard.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
Your cock feels so good inside me, pounding my tight pussy from behind as I ride you hard. I love the feel of your hands gripping my hips, pulling me down onto you deeper.
<</say>>
<<say _man>>
Damn, your ass looks incredible bouncing up and down on my dick. You're such a sexy little slut, fucking me so wildly. Keep slamming that wet cunt down on me, I want to hear you moan with each thrust.
<</say>>
<<say _girl>>
Mmm, I'm such a dirty girl, just using your big cock for my own pleasure. Fuck me harder, make me scream! I want everyone to hear what a naughty whore I am, getting railed so brutally.
<</say>>
<<say _man>>
You like that, you filthy cock-hungry slut? Taking every inch of me deep inside your dripping snatch? I'm going to fuck you till you can't walk straight. This is my pussy now, you're just here to serve my cock.
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
You two look so hot together, both of you pleasuring me with your mouths. Does this turn you on as much as it does me?
<</say>>
<<say _girl>>
We love the taste of your hard cock. Sucking you off together is such a thrill for us. Your dick feels so big and powerful in our mouths.
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
This tight pussy of yours is gripping my dick so good. I'm gonna rail you hard till you're screaming my name in ecstasy.
<</say>>
<<say _girl>>
Yes, use me like your personal fucktoy! Slam that huge cock into me as hard as you can. I'm your slutty little cumdumpster. Your cock feels so big and hard pounding me from behind like this. I love how you're fucking me rough and deep.
<</say>>
<<say _man>>
Damn right you are, you filthy whore. I'm gonna fuck you till you can't walk straight.
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Rougher! Fuck me harder, I want to feel you split me open. Use me.
<</say>>
<<say _man>>
I'm going to rail you so brutally. This dripping cunt is mine to destroy.
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
You like that, sluts? You like how I'm railing you both hard? Tell me how much you love my big cock pounding you.
<</say>>
<<say _girl>>
Yes, we love it! Your cock feels so good fucking us! Fuck us harder, we want it rough!
<</say>>
<<say _man>>
That's right, take it like the filthy whores you are. I'm going to use your tight holes until I'm ready to explode.
<</say>>
<<say _girl>>
Use us! Fuck us as hard as you can! We're here for your pleasure! Give it to us, we need it so badly!
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
You dirty girls love the thought of me blowing my load in your mouths, don't you? You want me to pump you full of my seed.
<</say>>
<<say _girl>>
Yes, we're such filthy sluts for your cum! We need that creamy goodness filling us up. Don't hold back, give us every last drop!
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
Here it comes! I'm unloading gallons of cum into your greedy cunt! It's oozing out and covering Nina's face! What a fuckin' mess!
<</say>>
<<say _girl>>
Yes, fill her up with your cum! We want to taste your sperm, we crave it. Shoot your load deep inside her and we'll worship your cock together, licking every drop of your cum.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Nina'; _man = 'Guy'; _video = '3'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock feels so good in my mouth, I love the way you fuck my face. Give it to me hard. Don't hold back, use my mouth however you want. Fuck yeah, just like that!
<</say>>
<<say _man>>
Take it all, you dirty little cocksucker. Open wide and let me slam my dick down your throat.
<</say>>
<<say _girl>>
Mmmf hmmf mmmh mmf!
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
Your tight little pussy feels so good wrapped around my cock. I love how wet and warm you are inside. Your cunt was made for my dick to pound. I'm going to rail you so hard, you won't be able to walk straight afterwards. That's it, keep moaning, I know you love getting fucked rough.
<</say>>
<<say _girl>>
Oh fuck yes, give it to me hard! I need your huge cock stretching my tight hole. Use me, fuck me like a dirty slut. Pound my pussy with that big dick!
<</say>>
<<say _man>>
Such a good little cock sleeve. Take that dick, you filthy whore.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
Your cock feels so huge stretching my tight little pussy. Fuck me harder, slam your big dick deep in my cunt! I love how you pound me so brutally. My pussy is all yours, use it as you please.
<</say>>
<<say _man>>
I'm going to fuck your tight snatch until you're dripping with my cum. You like that, you little slut?
<</say>>
<<say _girl>>
Yes, fuck me until you fill me up with your hot load!
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Oh yeah, fuck me harder! Ram your big cock deep in my cunt. Pound me like a dirty whore. I'm your slut, use me. Make me your fucktoy.
<</say>>
<<say _man>>
I'm gonna rail you so hard. This pussy is mine.
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
Your tight pussy feels so good riding my cock. Keep bouncing on it hard.
<</say>>
<<say _girl>>
Mmm yes, I love feeling your big dick deep inside me. You like watching my tits jiggle as I ride you? I'm going to keep slamming down on your cock until you explode. Fuck me harder, rougher! Make me your dirty little slut.
<</say>>
<<say _man>>
Ride my cock, you filthy whore! Take it all!
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
I love watching you ride me like this, your perfect tits bouncing with each thrust. You're so wet and tight around my cock as you grind your hips. I can feel your pussy clenching me as you get closer. Keep fucking me just like that, you sexy little minx.
<</say>>
<<say _girl>>
Mmm yeah, I love feeling your big hard cock deep inside me. You fill me up so completely. I'm getting so turned on bouncing on your dick, I want to make you cum so hard.
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
I'm railing you so hard right now, Nina. My big cock is slamming into your tight pussy with the force of a jackhammer. You like that, don't you? Taking every inch of me, getting absolutely wrecked by my raw power. Your body is shaking, your tits are bouncing, and your wet hole is gripping me like a vice as I fuck you senseless in this brutal position.
<</say>>
<<say _girl>>
Yes, fuck me harder! I want to feel your cock destroy my pussy! Use me, pound me into submission, make me your fucktoy!
<</say>>
<<say _man>>
You're my little whore, Nina. And whores get used hard. I'm going to drill you until you're nothing but a quivering, dripping mess. Then I'll fill you with my hot load so you know who owns this pussy.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Your cock is so deep in my throat, I can barely breathe. You're fucking my mouth so hard, it feels like you're trying to split my jaw open. I love being used like a cheap slut, getting my face pounded by your thick cock. My eyes watering from the intensity. Please don't stop, use my mouth however you want.
<</say>>
<<say _man>>
Take it all, you dirty cock-sucking whore. Choke on my dick, I want to feel your throat convulsing around me. That's it, look up at me with those watery eyes while you deepthroat me. I'm going to fuck your pretty little face until I'm ready to blow my load down your throat.
<</say>>
<<say _girl>>
Mmph, mmph!
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
Fuck yeah, your pretty little mouth feels so good. I'm gonna cum down your throat, you filthy whore. Take it all like a good girl.
<</say>>
<<say _girl>>
Mmmf! I want it, give it to me! Flood my mouth with your hot load, I need to taste it!
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Nina'; _man = 'Guy'; _video = '4'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock feels so big in my mouth as you roughly grab my hair, forcing me to deepthroat you. I love being used like this, fucked in my mouth while you control my head. Choke me with your massive dick, I want to feel you hit the back of my throat with each thrust. My jaw hurts from stretching so wide around your girth. Fuck my face harder, I'm your dirty little cocksleeve.
<</say>>
<<say _man>>
Take it all, you slutty cocksucker. Deepthroat me like the good little whore you are. Gag on my dick, I love hearing you choke on it. Your pretty face looks so hot getting ravaged by my cock.
<</say>>
<<say _girl>>
Mmphh mm mhhmm! Ahhh, I can't breathe! You're fucking my throat so hard. I love being your personal fucktoy. Use me however you want, I just want to please you.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
I love having you pinned underneath me like this, your legs spread wide. I can thrust deep into your tight pussy from this angle. You feel so good wrapped around my hard cock. I'm going to pound you hard and make you moan with pleasure.
<</say>>
<<say _girl>>
Yes, fuck me deep and hard! Your big cock feels so amazing inside me. Use me, I'm here for your pleasure.
<</say>>
<<say _man>>
That's right, take my cock like a good little slut. I'm going to rail you until you're begging for more. This pussy is mine.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
Ow, your cock is so big! You're tearing my tight little ass apart, it hurts so much! I've never had anything this huge shoved up my asshole before.
<</say>>
<<say _man>>
That's right, take my massive dick in your narrow ass. I'll stretch your ass, make you feel every thick inch.
<</say>>
<<say _girl>>
Ah fuck, you're destroying my asshole! It's agonizing but I love it. Use me, fuck my ass hard!
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Oh fuck yes, give it to me! Your big dick stretches me out so good. I love the burn of your cock in my ass. Use me, fuck me hard and make me your dirty slut.
<</say>>
<<say _man>>
That's right, be a good little cock sleeve for me. I'm going to rail your ass until you're begging for more. You like being my anal whore, don't you?
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
This anal position is so intense! Your huge cock feels like it's tearing me apart. I'm not sure how much more I can take of this brutal pounding. It's excruciating but I love it.
<</say>>
<<say _man>>
Relax and take it all, you fucking slut. That's it, let me annihilate your tight little asshole.
<</say>>
<<say _girl>>
Oh god, you're destroying me! Fuck my ass harder, I want it to hurt so badly. Ruin me completely!
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
Your hot mouth feels so amazing on my cock. I love watching you deepthroat me like a good little slut. You're taking it all the way down your throat like such a whore. I could fuck your pretty face all day. Keep gagging on it, you dirty cockslut.
<</say>>
<<say _girl>>
Mmmf mmmff mmfm mff. Mmf mmmf mmfm!
<</say>>
<<say _man>>
Look at you, my cock sliding in and out of your wet mouth. Such a perfect cocksucker. Fuck, your tongue feels so good on my shaft. Keep it up, you're doing great.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Your huge cock is stretching my tight little asshole so much, I can barely take it. You're slamming into me so hard from behind, my whole body is jolted with each thrust. I'm pinned down, completely at your mercy as you brutally fuck my narrow backdoor. It's so intense, I don't know if I can handle it!
<</say>>
<<say _man>>
Relax and submit to me, you tight-assed slut. Your tiny hole feels incredible gripping my shaft. I'm going to rail you hard until you're a quivering, gaping mess.
<</say>>
<<say _girl>>
Oh god, you're wrecking my asshole! Use me, fuck me, make me yours! I'm just here for your pleasure, to be your fucktoy. Don't hold back, give it to me rough!
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
Your tight little ass feels so good, I'm gonna fuck you hard. This is my ass now, you like that don't you? I'm gonna tear you up, you dirty slut. Take it all, every inch. Yes, just like that.
<</say>>
<<say _girl>>
Ah fuck, you're so big. Pound me harder, I want it rough. Use me, I'm just your fucktoy.
<</say>>
<<say _man>>
Such a good little whore, taking it deep. I'm gonna wreck your ass, you're mine now.
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
I'm about to cum, get ready to swallow every last drop. Open wide and stick out your tongue. Don't you dare spill a single drop. I'm gonna blow my load right in your mouth.
<</say>>
<<say _girl>>
Give it to me, I want to taste it. Cum in my mouth, I'm waiting for it.
<</say>>
<<say _man>>
Here it comes, take it all. Swallow it like a good girl. That's it, every last drop.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Nina'; _man = 'Guy'; _video = '5'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Get on your knees and open your mouth, bitch. You're gonna deepthroat my big cock like a good little slut. Look at me while I fuck your face. Take it all, you dirty whore.
<</say>>
<<say _girl>>
Mmmph, mm mmm!
<</say>>
<<say _man>>
That's it, you like that don't you? Slobber all over my dick. I'm gonna use your mouth until I'm ready to cum.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
You like that, baby? I will lick your ass with my tongue until you moan with pleasure. Relax and enjoy the sensation of my mouth on your most private place.
<</say>>
<<say _man>>
Fuck yeah, your hot tongue is making me throb with need. Keep eating my ass out, you dirty slut.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
Your cock feels so good slamming into me from behind like this. I love how deep you can go in this position, it's like you're fucking my guts out. The way you grip my hips and pound me hard, using my body for your pleasure, it's so hot. I'm such a filthy slut for you, getting railed doggy style by your big dick.
<</say>>
<<say _man>>
Fuck yeah, I love taking you like this, my dick buried to the hilt in your tight little pussy. You're just a cock sleeve for me to use, aren't you? Such a good whore, letting me fuck you raw and hard, not holding back at all.
<</say>>
<<say _girl>>
Yes, use me! Fuck your hole, ruin my pussy with your huge cock! I'm nothing but your fucktoy, a cum dump for you to relieve your animal urges in. Keep pounding me, don't stop until you've had your fill of my holes!
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
I love fucking you from behind like this, your tight pussy feels so good gripping my cock as I slam into you deep and hard. Your ass looks amazing as I pound you, I can see your wetness glistening. This is the perfect position for raw, intense sex. I'm going to rail you until you're screaming my name in ecstasy.
<</say>>
<<say _girl>>
Yes, fuck me hard from behind! I want to feel your big dick destroying my pussy, use me as you pound me with your powerful thrusts. My body is yours to dominate, take me rough and make me your slut.
<</say>>
<<say _man>>
That's right, be a good little fucktoy for me. I'm going to use your holes and make you cum over and over again until you're a quivering, spent mess. This is what you were made for, to be fucked brutally by a real man.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
Come on, slide your big cock inside me. I want to feel you stretching me out. Ram it in hard and make me moan. Give it to me rough, I can take it.
<</say>>
<<say _man>>
Fuck yeah, your asshole looks so hot and inviting. I'm gonna pound the shit out of it. Get ready for the ass fucking of your life.
<</say>>
<<say _girl>>
Yes, use me! Fuck my ass as hard as you can. Make me your dirty little anal slut. I'm all yours, do with me what you want.
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
I want you to fuck my tight ass so hard, pound me from behind as I lay here for you. Ram your big cock deep in my asshole, I need it rough and brutal. Make me moan with pleasure as you dominate me anally.
<</say>>
<<say _man>>
You like that, you filthy slut? My cock feels so good stretching your ass, doesn't it?
<</say>>
<<say _girl>>
Yes, fuck me! Use my ass for your pleasure, I love being your sex slave.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Oh my god, I want it so badly. Give me that huge cock in my ass right now!
<</say>>
<<say _man>>
Here it comes, you dirty slut. I'm gonna rail your asshole so hard.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Mmm, I love touching your big hard cock with my feet. Feeling it twitch and throb against my skin as I stroke you is so hot. I want to make you feel amazing.
<</say>>
<<say _man>>
Your feet feel incredible on my dick. Keep going just like that. You're so sexy and erotic, Nina.
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
I'm gonna cum on your face, you dirty slut. Get ready for my hot load. Open wide and stick out your tongue. I'm gonna paint your pretty face with my jizz. You love being a cum dumpster don't you?
<</say>>
<<say _girl>>
Yes, I want your filthy spunk all over me. Give it to me. Cover my face in your thick cream.
<</say>>
<<say _man>>
Here it comes, you fucking cum bucket. Take my load like a good little whore.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Nina'; _man = 'Guy'; _video = '6'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
I've been thinking about your hot mouth all day, Nina. I want to grab your hair, shove my cock down your throat and fuck your pretty face hard. You're going to take it all like a good little slut, aren't you?
<</say>>
<<say _girl>>
Mmmhmm, I want that so badly. Use my mouth however you want, I'm all yours. Choke me with your big dick, I love it rough.
<</say>>
<<say _man>>
That's what I like to hear, you dirty whore. Open up and take every inch as I rail your throat.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
Your cock feels so deep in me from behind like this. I love how you're railing me doggystyle, slamming into my tight pussy hard and fast. The way you grip my hips and pound me is so primal and hot. Fuck me, give it to me rough!
<</say>>
<<say _man>>
You like that, you filthy slut? I'll destroy that sweet little cunt, make you scream. Take my big dick, all of it.
<</say>>
<<say _girl>>
Yes, use me, fuck me hard! Split me open with your thick cock. I'm your whore, just here for your pleasure. Fuck me till I can't take anymore!
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Your mouth feels so tight and warm around my cock as I thrust deep into your throat. I love seeing you on your knees, gagging and drooling as I use your pretty face like a fucktoy. You're such a good little cocksucker, taking it all the way down.
<</say>>
<<say _girl>>
Mmmph! Mmmm! Oh fuck, your cock is so big in my mouth and throat. I love being your dirty little slut, getting my face absolutely destroyed by your huge dick. Use me, fuck my throat harder!
<</say>>
<<say _man>>
That's it, take it all like a good girl. I'm going to fuck your face so hard, you won't be able to speak straight for a week. Your drool is dripping everywhere as I pound your mouth. What a disgusting, filthy whore you are.
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
I love riding your cock like this, with my back to you. Your dick feels so good slamming into my tight pussy from behind. I can feel every inch of you as I bounce up and down, taking you deep inside me. Mmm, you're fucking me so hard, just the way I like it.
<</say>>
<<say _man>>
Your pussy is so wet and hot as you slide up and down my shaft. I love watching your ass cheeks jiggle as you ride me. Keep going, fuck yourself on my cock, take it all.
<</say>>
<<say _girl>>
Yes, I'm going to keep riding you until I can't take it anymore. Your cock is going to make me cum so hard.
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
I love seeing you lying there on your back, legs spread wide, so I can thrust deep into your tight pussy. Your perfect tits bounce with each hard stroke as I pound you.
<</say>>
<<say _girl>>
Fuck me harder, I want to feel you deep inside me. Use me, pound my wet cunt with your big dick.
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
I want you so badly right now, fuck me hard with your big cock. Pound my tight little pussy as deep and rough as you can. Make me scream in ecstasy with each powerful thrust. I need to feel you claiming me completely, owning my body and making me cum undone around your huge dick.
<</say>>
<<say _man>>
Your tight snatch feels incredible wrapped around my cock. I'm gonna rail you so hard...
<</say>>
<<say _girl>>
Oh fuck yes, give it to me rough! Mmmph! Mmmm! ... use me for your pleasure.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Oh fuck, that hurts so much! You're destroying my tight little pussy with your huge cock. Fuck me harder, I want to feel you tear me apart! Ahhh, my cunt is on fire from your brutal pounding. Please don't stop, use me like a fucktoy!
<</say>>
<<say _man>>
Take it like a good little slut. Your pussy is mine to ruin.
<</say>>
<<say _girl>>
Yes, fuck me till I'm nothing but a used up cunt! I'm your whore!
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
Your ass looks so hot jiggling with each thrust. I can feel your wetness dripping down my shaft as I slam into you. Mmm, your clit is so hard and sensitive. I'm going to rub it fast and rough to make you explode in pleasure.
<</say>>
<<say _girl>>
Fuck me harder, don't hold back! Pummel my cunt with your big cock. Ahh, rub my clit faster, just like that! I'm going to gush all over your cock.
<</say>>
<<case 9>>
<<video _url>>
<<say _girl>>
Mmm, your cum tastes so sweet, like a creamy dessert. Swallowing your load is my favorite part. Your jizz is like an addictive drug that I crave. I want to drink every last drop from your cock.
<</say>>
<<say _man>>
That's it, drink it all down like a good little slut. Swallow my hot cum!
<</say>>
<<say _girl>>
Thank you for feeding me your delicious seed. I'm so thirsty for more of your spunk.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Lucy'; _man = 'Guy'; _video = '2'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock tastes so good, I love sucking it. I'm getting so wet just from blowing you.
<</say>>
<<say _man>>
Fuck yeah, your mouth feels amazing. Suck it harder, I want to feel you deep throating my big dick.
<</say>>
<<say _girl>>
Mmm, I'm trying to take it all the way down my throat. Your huge cock is stretching my mouth so wide.
<</say>>
<<say _man>>
Look at you, you filthy cock sucker. Gag on it, let me see your pretty eyes water.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
Your tight little pussy feels so good. I love fucking you from behind like this.
<</say>>
<<say _girl>>
Oh yeah, pound me harder! Ram that big cock deep inside me. I want to feel every inch.
<</say>>
<<say _man>>
I'm giving it to you rough just like you love. This is my pussy now.
<</say>>
<<say _girl>>
Yes, use me! Fuck me like a slut. I'm here for your pleasure.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
Rough anal sex is all I want from you tonight, stud. Give it to me hard and fast in my tight little ass.
<</say>>
<<say _man>>
You like it rough, huh? I'll destroy your ass with my big cock, fuck you until you're screaming.
<</say>>
<<say _girl>>
Yes, use me like a cheap whore! Stretch my asshole wide with your thick dick. Make me take every inch.
<</say>>
<<say _man>>
I'll tear your tight ass up, slut. Gonna pound you so hard you won't walk straight for a week. You're nothing but my fucktoy.
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Mmm, I'm trying to take you all the way in but you're so big. I love the taste of your cock and balls, I could suck you off all day long. Am I doing it right? Do you like how I'm pleasuring you with my mouth?
<</say>>
<<say _man>>
Fuck yeah, your hot little mouth feels incredible. I love seeing my dick sliding in and out between your sexy lips. Suck it harder, I want to feel your tongue swirling around the head.
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
Bounce on my dick, you like that don't you? I'm going to tear up your tight asshole. Take it all, you filthy whore.
<</say>>
<<say _girl>>
Ah, your cock feels so big stretching my ass. Use me, fuck my ass hard. I'm just here for your pleasure.
<</say>>
<<say _man>>
That's right, you're my sex toy. I'm going to rail your ass until I'm ready to explode. You love being my anal fuck doll.
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Your cock tastes so good, I love sucking you off. My mouth feels so full with your thick shaft.
<</say>>
<<say _man>>
Yeah, take it all the way down. Fuck yeah, your mouth is so hot and tight. Suck it harder, slut.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Your cock feels so good in my ass, fuck me harder! I'm rubbing my clit fast, I want to cum with you inside me.
<</say>>
<<say _man>>
You like that don't you slut? Keep playing with that wet pussy, I want to feel you squirt.
<</say>>
<<say _girl>>
Ah fuck! I'm going to explode all over your cock any second now. Don't stop slamming that ass!
<</say>>
<<case 8>>
<<say _girl>>
Yes, use me like your personal fucktoy! I'm here for your pleasure. Spray your hot load all over my ass when you're done with me.
<</say>>
<<say _man>>
That's right, you're just a cumdumpster for my cock. I'm going to paint your ass white with my jizz. Get ready for your reward, you filthy whore.
<</say>>
<<video _url>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 8>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Lucy'; _man = 'Guy'; _video = '3'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock tastes so good in my mouth, I love sucking you off. I could do this all day, you have no idea how much I love giving head.
<</say>>
<<say _man>>
Your mouth feels amazing, you're so good at blowing me. Keep going just like that, I'm really getting into it. Suck it harder!
<</say>>
<<say _girl>>
Mmm, I love how your cock feels in my throat. You're so big, it's almost too much to handle. But I'll take all of it, I want to deepthroat you completely.
<</say>>
<<say _man>>
Fuck that's hot, watching you gag on my dick. I love seeing you struggle with my size. Relax your throat and take it all, be a good little cock sucker.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
Your cock feels so big in my ass, fuck me harder! I'm rubbing my clit so fast, I'm gonna cum.
<</say>>
<<say _man>>
I love pounding your tight little asshole, you like that don't you slut? Rub that pussy till you gush all over my cock.
<</say>>
<<say _girl>>
Oh fuck yes, use my asshole! I'm getting close... my clit is throbbing. Fuck me harder, I'm your dirty whore!
<</say>>
<<say _man>>
Take it like a good girl, I'm gonna wreck your ass. Jerk that clit faster, I want to feel you cum on my dick. You're such a nasty bitch.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
It burns but I like the pain, just keep fucking my ass. Pound me harder, I want to feel you deep inside me.
<</say>>
<<say _man>>
I'll give you what you want, I'm going to rail your tight asshole until you can't take it anymore. You're taking my cock like a champ, what a sexy ass.
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
Your ass looks so hot bouncing on my dick as you ride me. I love the way you moan with each deep thrust. You take my cock so well, you dirty slut.
<</say>>
<<say _girl>>
I'm such a whore for your huge cock, use my holes however you want. Fuck my ass as hard as you can! I love how rough and deep you're fucking me, it's so intense!
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
Alright you filthy sluts, get to work. I want both of your pretty mouths wrapped around my hard cock right now. Lick and suck it good and don't forget about my balls.
<</say>>
<<say _girl>>
Yes sir! We'll take turns deep throating your big cock and slobbing on it with our wet mouths. We'll lick and gently suck on your sensitive balls too while we jerk you off. Mmm, your dick tastes so good!
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
Let's get this party started. I'm going to fuck your tight asshole while your slutty friend licks your wet pussy. You're both going to love every minute of it.
<</say>>
<<say _girl>>
We're ready for you, stud. Give us your big hard cock. We want to feel every inch of you deep inside our asses. Fuck my girlfriend while I lick her clit.
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
Look at you, you dirty little slut, licking my balls while I pound your friend's tight asshole. Your tongue feels so good, slurping and slobbing all over my sack.
<</say>>
<<say _girl>>
Mmm yes, we love being your filthy whores, serving your big cock, getting fucked in the ass and licking your heavy balls, all drooling and spit-soaked. Fuck us harder, use our holes, make us choke on your cock and cum.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
You like that, don't you? Fucking my tight ass while I lie back and take it.
<</say>>
<<say _man>>
Damn right I do. Your ass is so fucking perfect, I could pound it all day.
<</say>>
<<say _girl>>
Keep going, fuck me harder! I want to feel you deep inside me.
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
So, did you sluts enjoy tasting my cum? Was it as delicious as you hoped?
<</say>>
<<say _girl>>
We fucking loved it! Your sperm was so tasty, we want more! Please give us another load to swallow.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Lucy'; _man = 'Guy'; _video = '4'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock feels so big and hard in my mouth. I love how you're grabbing my hair and fucking my face rough.
<</say>>
<<say _man>>
Your mouth is so warm and wet. I love using your pretty face like my personal fuck toy. You're such a good little slut.
<</say>>
<<say _girl>>
Mmm, I'm your dirty whore who exists just to please you. Use me however you want. I love being your cocksleeve.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
Seeing your perfect ass bounce with each hard thrust is such a turn-on. You're taking my dick so well, you sexy little thing.
<</say>>
<<say _girl>>
The way you're gripping my hips and slamming into me... I'm losing my mind with pleasure. Use me however you want, I just want to satisfy you completely.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
Fuck me harder, I want to feel you deeper.
<</say>>
<<say _man>>
I love how your wet cunt grips my dick so tightly. You're such a sexy little slut. I'm gonna rail you so hard.
<</say>>
<<say _girl>>
Ah fuck, you're splitting me in half! Use me like your personal fucktoy. Pound my pussy with your big dick!
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Your ass tastes so sweet, I could lick it all day. My pussy is dripping wet just from rimming you.
<</say>>
<<say _man>>
Fuck yeah, your tongue feels incredible on my ass. Keep licking that hole.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
Mmm, you're fucking me so deep, I can feel your big cock hitting my G-spot with each thrust. It feels incredible.
<</say>>
<<say _man>>
I love watching your sexy body as you grind on my dick. Your tits are bouncing, it's so hot. Keep fucking me, you dirty slut.
<</say>>
<<say _girl>>
Yes, use me, fuck me hard! I'm your little sex toy, your cum dumpster. Fuck me with your big cock! Your cock feels so huge and hard inside my tight pussy.
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
You like that, baby? I'm going to rail you so good, your cunt is so wet and hot. Moan for me as I give it to you deep and rough.
<</say>>
<<say _girl>>
Yes, fuck me harder! I need your big dick stretching me out. Slam into me over and over, use my holes. I'm your filthy little slut.
<</say>>
<<say _man>>
Such a dirty whore, taking my cock like a champ. I'm going to fuck your brains out, you're mine now. Scream as I wreck your pussy.
<</say>>
<<say _girl>>
Ungh, you're so brutal! I'm a cumdumpster for your huge cock. Keep going, don't stop fucking me! I want you to use me all night long.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Mmm, I'm your dirty slut, aren't I? Choke me and pull my hair while I ride your big cock. I want to feel you lose control.
<</say>>
<<say _man>>
You want it rough, baby? I'll give you what you need. I'm going to fuck you so hard, you won't be able to walk straight afterwards.
<</say>>
<<say _girl>>
Yes, fuck me as hard as you can! I'm yours, use me however you want. Pound me with your huge cock and make me your little fucktoy.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Fuck me harder, slam your big dick deep in my tight snatch. Use me like a fucktoy.
<</say>>
<<say _man>>
I'm railing your tight pussy so hard. You like that, you dirty little slut?
<</say>>
<<say _girl>>
Yes, fuck me rough! Abuse my tight hole with your huge cock. Make me your filthy cum dump.
<</say>>
<<case 9>>
<<video _url>>
<<say _girl>>
I want you to cum all over my face and in my mouth. Give it to me rough and make a mess.
<</say>>
<<say _man>>
You filthy slut, you want my load all over you? Beg for it and I'll give you what you crave.
<</say>>
<<say _girl>>
Please cover my face with your hot cum, I need it so badly. Use me like your personal slut.
<</say>>
<<say _man>>
Open that pretty mouth and stick out your tongue. I'm going to paint your face with my seed.
<</say>>
<<say _girl>>
Yes, mark me with your cum! Make me look like the dirty whore I am for you. Don't hold back!
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Lucy'; _man = 'Guy'; _video = '5'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Your mouth feels so amazing, you're making me throb with pleasure. Keep taking it deep, all the way down your throat.
<</say>>
<<say _girl>>
Mmm, I love the taste of your hard cock. Getting it nice and wet for me.
<</say>>
<<say _man>>
That's it, get it good and slick. I'm going to fuck your pretty little face so hard.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
Your cock feels so good slamming into me from behind like this. I love the way you dominate me, taking me roughly. Fuck me harder, I want to feel you deep inside me.
<</say>>
<<say _man>>
You like that, don't you, you dirty slut? You love being used and fucked hard.
<</say>>
<<say _girl>>
Yes, I'm your filthy whore. Use my pussy, I'm here for your pleasure. Give it to me hard.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
You like that, you filthy slut? You want me to fuck you harder? Tell me how much you love my big cock destroying your tight little pussy.
<</say>>
<<say _girl>>
Yes, fuck me harder! I need you to brutally pound me into submission.
<</say>>
<<say _man>>
You're gonna take every inch of me, you desperate whore. I'm going to wreck you so good.
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Your cock feels so huge and hard inside my tight pussy. I'm bouncing up and down on it as fast and hard as I can. Fuck me, use my body for your pleasure!
<</say>>
<<say _man>>
Ride that dick, you filthy slut.
<</say>>
<<say _girl>>
Yes, I'm such a dirty whore, fucking your big cock!
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
Your tight pussy feels so good riding my cock like that. Keep bouncing on it, I love watching your ass cheeks shake with each thrust. You're such a naughty little slut, aren't you? Fucking my dick so hard and deep.
<</say>>
<<say _girl>>
Mmm fuck me harder! I want to feel your big cock pounding me deep.
<</say>>
<<say _man>>
I'm going to rail you so hard. This is my pussy now.
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
I love the taste of your cock in my mouth while you're eating my pussy. Your tongue feels so good on my clit. Keep going, just like that. I want to make you cum with my mouth.
<</say>>
<<say _man>>
Suck me harder, I'm getting close.
<</say>>
<<say _girl>>
I'm going to swallow every last drop.
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
Your tight little pussy feels so good. I'm gonna pound you hard and make you scream.
<</say>>
<<say _girl>>
Fuck me deep with your big cock. Ram it in hard, I want to feel you tear me apart. Use my cunt, I'm just here for your pleasure. Make me your fucktoy.
<</say>>
<<say _man>>
I'm gonna destroy your tight snatch, you dirty slut.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Oh fuck yeah, pound me! Slam your big cock into my dripping wet cunt. Fuck me like a dirty little slut. Use me like a rag doll. I want you to destroy my pussy with your dick.
<</say>>
<<say _man>>
I'm going to come in your hot mouth. You want to taste my cum, don't you?
<</say>>
<<case 9>>
<<say _girl>>
Give it to me, I want you to shoot your load in my mouth. Fuck my face with that big cock and paint my tongue with your hot jizz. I'm your dirty little slut and I need your sperm.
<</say>>
<<video _url>>
<<say _man>>
Open wide, here it comes.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Lucy'; _man = 'Guy'; _video = '6'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock tastes so good in my mouth, I love sucking you off like this.
<</say>>
<<say _man>>
Fuck yeah, your mouth feels amazing. Suck it harder, I want to feel your throat.
<</say>>
<<say _girl>>
I'm trying to deepthroat it all the way, mmff! I want you to cum in my mouth.
<</say>>
<<say _man>>
Keep going just like that, you're gonna make me explode. Damn, your lips look so hot wrapped around my dick.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
You like that, baby? My big cock feels so good deep inside your tight little pussy.
<</say>>
<<say _girl>>
Oh fuck, you're so big! Pound me harder, I want to feel you split me in half!
<</say>>
<<say _man>>
Get ready for a brutal fucking, you dirty slut. I'm going to rail you so hard until you're screaming my name.
<</say>>
<<say _girl>>
Yes, fuck me like a whore! Use my cunt, I'm just here for your pleasure. Give it to me rough!
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
Yes, fuck me! Use my pussy, I want to feel every thick inch of you slamming into me.
<</say>>
<<say _man>>
Damn right I will. I'm going to rail you so hard. This tight hole is mine to fuck as rough as I want.
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
Your mouth feels so fucking amazing. I love watching you deep throat my cock like that.
<</say>>
<<say _girl>>
Mmmf, I love the taste of your big hard dick in my throat. You like watching me gag on it?
<</say>>
<<say _man>>
Hell yeah, it's so hot seeing you struggle to take all of me. My cock is gonna destroy your pretty throat.
<</say>>
<<say _girl>>
Ugh, fuck! Pound my face harder with your cock. Use my mouth like it's your cum dumpster.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
I love riding your big cock like this, it feels so good inside me. Keep thrusting up into me hard, just like that.
<</say>>
<<say _man>>
Your tight little pussy feels amazing gripping my dick. Bounce up and down faster, I want to feel you sliding all the way up and down my shaft.
<</say>>
<<say _girl>>
I'm going to ride you until you explode inside me. You like that, baby? You like me fucking your cock with my wet cunt?
<</say>>
<<say _man>>
Fuck yeah, I love watching my cock disappear into your juicy snatch over and over. Slam down harder, take it all the way in.
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
That's it, work my shaft with your cunt. Ride it faster, make yourself cum on it.
<</say>>
<<say _girl>>
Yes, use my pussy, fuck me hard from behind! I'm going to gush all over your cock.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Ah fuck, your huge dick is destroying me! Don't stop, give it to me rough.
<</say>>
<<say _man>>
I'll fuck you as hard as I want, you're just a hole for me to use. Your dripping wet snatch feels amazing around my cock.
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
You like that, don't you? Fucking your tight little pussy while you rub your clit. I'm gonna pound you hard.
<</say>>
<<say _girl>>
Oh yeah, fuck me! Your big cock feels so good. I'm getting close...
<</say>>
<<say _man>>
That's it, play with your clit as I rail you. I want to feel you cum on my dick.
<</say>>
<<say _girl>>
Ungh, I'm almost there! Don't stop, keep fucking me! Your cock is so deep inside me...
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
Did you like swallowing my load? I loved watching you take it all. You're such a naughty little slut for me.
<</say>>
<<say _girl>>
I fucking loved it. It turned me on so much to have you shoot your load in my mouth. I want more of your cum.
<</say>>
<<say _man>>
Good girl. Keep sucking me off and I'll give you another big load to swallow. You're going to drink every last drop.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Nora'; _man = 'Guy'; _video = '2'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock feels so big and hard in my throat. I love deepthroating you like this, on my knees. My jaw is stretching so wide to take you all the way in.
<</say>>
<<say _man>>
Fuck yeah, that's it. Look up at me as you choke on my dick. Your eyes are watering but you love it. Such a good little cock sleeve.
<</say>>
<<say _girl>>
Mmmph! gags Oh god, I can barely breathe with your huge cock rammed down my throat!
<</say>>
<<say _man>>
Slobber all over it, you filthy slut. Get my cock good and wet so I can rail you hard next.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
Your cock feels so big and hard inside my tight pussy. Fuck me rougher, I want you to pound me into the mattress. Spank my ass until it's bright red and stinging.
<</say>>
<<say _man>>
I love how your wet little cunt grips my dick so tightly. You like it when I slam deep inside you and smack your round ass cheeks? My handprints look hot on your skin.
<</say>>
<<say _girl>>
Yes, spank me harder! Use your palm to really punish my bottom while you drill your cock into my dripping hole. I'm such a naughty slut for you.
<</say>>
<<say _man>>
Such a dirty whore, letting me rail you so brutally. I'm going to leave your ass bright red and your pussy gaping from my huge dick. Take it all like a good girl.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Your tight little pussy feels so good. I love pounding you from behind like this. My big cock is going to tear you apart. Take it all, you dirty slut.
<</say>>
<<say _girl>>
Ah fuck, your cock is so huge! Ram it in deeper, I want you to destroy my cunt. Fuck me like a whore!
<</say>>
<<say _man>>
I'm using your holes like they're mine. This is what you were made for, isn't it? To be fucked hard by a real man.
<</say>>
<<say _girl>>
Yes, just like that! Fuck me till I can't walk straight. I'm your fucking sex toy, use me!
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Your cock tastes so good in my mouth. I love how you fuck my face. Fuck me harder, I want to feel your shaft hitting the back of my throat.
<</say>>
<<say _man>>
You're such a good little cocksucker. Take it all, be a good slut.
<</say>>
<<say _girl>>
Mmm I'm your dirty whore. Use my mouth, I love being your cumdumpster.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
Ah, your cock stretches me so perfectly! I'm so full and it feels incredible.
<</say>>
<<say _man>>
I'm going to pound you hard and deep. This pussy is mine now.
<</say>>
<<say _girl>>
Yes, use me! Fuck your tight little slut as hard as you want. I'm all yours.
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
Your tight little pussy feels so good riding my cock. Keep bouncing on it like that. I love seeing your ass jiggle as you slam down on me.
<</say>>
<<say _girl>>
Mmm yeah, your big dick fills me up so perfectly. I'm gonna ride you hard and make you cum deep inside me.
<</say>>
<<say _man>>
Fuck yes, use my cock. Own it. Grind that clit on me while you ride me reverse cowgirl.
<</say>>
<<say _girl>>
Ohh I'm getting close already. You fucking me so good...
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Yes, use me, fuck me like a dirty little slut. I'm here for your pleasure, to satisfy your every desire.
<</say>>
<<say _man>>
That's right, you're my fucktoy, my sex slave. I'm going to drain my balls inside your dripping wet cunt.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
I love riding your big cock, it feels so good inside me. Your cock is so hard and thick, it's stretching my tight pussy. I'm bouncing up and down on it, slamming myself down hard. Fuck me deep with that huge dick!
<</say>>
<<say _man>>
Your pussy is so wet and tight, it's gripping my cock perfectly. I love watching your tits bounce as you ride me.
<</say>>
<<say _girl>>
Keep fucking me with that massive cock. Fuck me harder, I want to feel it in my cunt. Don't stop pounding me!
<</say>>
<<case 9>>
<<say _man>>
I'm gonna cum inside you now, I can't hold back any longer. Get ready, it's gonna be a big load. I'm gonna fill up your tight little pussy with my hot cum.
<</say>>
<<say _girl>>
Oh fuck yes, give it to me! Cum deep inside me, I want to feel your load pumping into me.
<</say>>
<<video _url>>
<<say _man>>
Here it comes, I'm cumming! Ahhh fuck, I'm unloading inside you right now.
<</say>>
<<say _girl>>
Mmm yeah, I love feeling you cum in me. Give me all your cum, fill me up completely.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Nora'; _man = 'Guy'; _video = '3'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock tastes so good in my mouth, I love sucking it deep. I'm getting so wet just from blowing you. Fuck my throat with your big dick.
<</say>>
<<say _man>>
That's it, take it all the way down. Your mouth feels amazing.
<</say>>
<<say _girl>>
Mmm, I want to make you feel so good. Is my hot little mouth getting you hard?
<</say>>
<<say _man>>
Oh yeah, you're making me throb. Keep working that cock with your tongue.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
Nora, you feel so tight and amazing as I thrust deep inside you. I love seeing your beautiful breasts bounce each time I pound you hard. You like that, don't you? Being taken roughly like this, fucked hard and fast.
<</say>>
<<say _girl>>
Yes, fuck me harder! Use me, pound my tight pussy with your big cock.
<</say>>
<<say _man>>
With pleasure, baby. I'm going to rail you so hard, make you scream from the intense pleasure.
<</say>>
<<say _girl>>
Ah, yes, your cock feels incredible as you slam it in me! Fuck me, use me, make me yours completely!
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Your tight little pussy feels so good wrapped around my cock. I love fucking you from behind like this. My dick is buried deep inside you.
<</say>>
<<say _girl>>
Yes, fuck me hard!
<</say>>
<<say _man>>
I'm going to pound your wet snatch until you're screaming my name in ecstasy. This is my pussy now, Nora.
<</say>>
<<say _girl>>
Take it, use it, fuck it! I'm all yours!
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Your cock tastes so good in my mouth. I love how it feels against my tongue. Give me all of it, I want to deepthroat you. Fuck my throat with your big dick.
<</say>>
<<say _man>>
That's it, take it all the way down.
<</say>>
<<say _girl>>
Mmm, I'm loving this. Your cock is so hard and thick.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
Take it rough, baby. I want you to fuck me hard and brutal. Pound that big cock into my tight little pussy until I'm screaming your name. Don't hold back, give it to me as dirty and raw as you can.
<</say>>
<<say _man>>
Just like that, yeah. Your cunt feels so good gripping my dick.
<</say>>
<<say _girl>>
Ah fuck, you're splitting me in two! Your huge cock is destroying my pussy, it hurts so good. Keep railing me, make me your filthy whore
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
Your tight pussy feels so good riding my cock. Keep bouncing up and down, I love watching your big tits jiggle.
<</say>>
<<say _girl>>
Mmm fuck me harder! I want to feel your big dick deep inside me.
<</say>>
<<say _man>>
You like that? My thick cock stretching your little cunt.
<</say>>
<<say _girl>>
Yes, fuck me like a dirty slut! Use me for your pleasure.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Fuck me harder, you bastard. Ram your huge cock deep in my tight little pussy. Make me your filthy whore. Use me like a sex doll.
<</say>>
<<say _man>>
Your cunt feels so amazing. I'm going to pound you until you're sore.
<</say>>
<<say _girl>>
Yes, tear me apart! Split me open with your massive dick!
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
I'm gonna cum in your mouth, baby. Get ready for it. Open wide and stick out your tongue.
<</say>>
<<say _girl>>
Give it to me, I want to taste it.
<</say>>
<<say _man>>
Here it comes, take it all.
<</say>>
<<say _girl>>
Mmm, your cum is so hot. I love swallowing it.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 8>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Nora'; _man = 'Guy'; _video = '4'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Mmm, I adore tasting your sweet pussy juices, they're like nectar. Sucking and licking your sensitive little clit makes me so hot and horny too.
<</say>>
<<say _man>>
That's so hot, Nora. I can see her squirming as you work her over. You're driving her wild with your skilled mouth. Keep going, baby, make her cum on your face. I want to hear her scream in pleasure as you eat her out.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
Your mouths feel so fucking good on my cock. Suck it harder, sluts. I want to see you gagging on it.
<</say>>
<<say _girl>>
We love sucking your big hard cock, sir. Our mouths are yours to use. We'll make you feel so good.
<</say>>
<<say _man>>
Lick my balls too, you dirty whores. Slobber all over my cock and balls. Show me how much you love it.
<</say>>
<<say _girl>>
Mmm, your balls taste so sweet. We're going to lick and suck every inch of you until you're ready to explode.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Nora, I love watching your tongue work its magic on her clit. You're so good at eating pussy, it's like you were born for this. Tell me, how does it feel to have your face buried in her sweet wetness?
<</say>>
<<say _girl>>
Mmm, it feels incredible. Her clit is so swollen and sensitive under my tongue. I love the way she tastes, so musky and delicious. Sucking and licking her little bud is making me so hot and horny. I could do this all day.
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
We love being used by you like this. Fuck us hard, we want to feel every thick inch of your cock in our holes. Give us your big dick, we'll make you feel so good.
<</say>>
<<say _man>>
You dirty girls are so sexy taking my cock in both your holes. I'm going to rail your pussies and faces so hard. Moan for me as I fuck you.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
Your cock feels so good in my mouth, I love sucking you off like this.
<</say>>
<<say _man>>
That's it, take it all the way down your throat. You're such a dirty little slut.
<</say>>
<<say _girl>>
Mmmhmm, I am your filthy whore, use my mouth however you want. I'm here for your pleasure.
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
You like that, baby? My tight pussy feels so good around your big cock.
<</say>>
<<say _man>>
Fuck yeah, your wet cunt is gripping my dick so hard. I'm gonna pound you deep.
<</say>>
<<say _girl>>
Rougher! Fuck me harder and faster. Use my holes, I'm your dirty little slut.
<</say>>
<<say _man>>
Greedy whore. I'll fuck your brains out, make you cum all over my cock. Take it!
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Your cock feels so huge inside my tight pussy. Fuck me harder, I want you to destroy my cunt!
<</say>>
<<say _man>>
I'm going to pound your pussy so hard you'll barely walk straight after this. You like that, you dirty slut?
<</say>>
<<say _girl>>
Yes, use me! Fuck me like a worthless whore, I want to be your sex toy. Ruin me completely!
<</say>>
<<say _man>>
You're nothing but a cum dumpster for my cock. I'm going to fuck you till you're nothing but a used up, sloppy mess.
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
You two disgusting sluts love swallowing my hot, sticky cum don't you? Tell me how much you crave my jizz coating your tongues and filling your throats.
<</say>>
<<say _girl>>
We fucking love it, your cum is so tasty and we're such cum hungry whores for you. Pump your load deep in our mouths and let us share it, we want to savor every last drop of your sperm.
<</say>>
<<say _man>>
That's it, drink it all down like the greedy cock-sucking cum dumpsters you are. My thick seed will make your pussies gush even more. Open wide and take my whole load, you filthy cumsluts.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 8>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Nora'; _man = 'Guy'; _video = '5'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Your sexy mouth feels incredible wrapped around me. I love seeing you on your knees, pleasuring me with that talented tongue. Suck it harder, I want to feel you deep throat my entire length.
<</say>>
<<say _girl>>
Mmm, I love having your big cock in my mouth. I could suck you for hours, getting you close to the edge again and again. Just don't cum in my mouth, save that for later.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
I love taking you from behind like this, your tight little pussy feels so good gripping my cock. Your ass looks incredible as I pound into you, I love watching it jiggle with each thrust. You're such a sexy bitch, made for fucking hard and rough.
<</say>>
<<say _girl>>
Ah fuck, your cock feels so big slamming into me like that! I'm such a dirty whore for you, use me...fuck me harder!
<</say>>
<<say _man>>
That's right, you're my little fuck slut. I'm going to rail you so hard, make you feel every inch. This pussy is mine, I'm going to destroy it.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Your hot mouth feels so amazing wrapped around my hard cock. You're taking it all the way down your throat, gagging on my big dick. I can feel your throat muscles contracting around my shaft with each thrust. Keep those pretty eyes on me as you worship my cock with your warm, wet mouth.
<</say>>
<<say _girl>>
Mmm, I love the taste of your cock. You fuck my throat so well, using me like your personal cocksleeve. I'm such a dirty whore for you, aren't I?
<</say>>
<<say _man>>
That's right, you're my perfect cocksucking slut. Slob on it harder and take it deep in your throat. I want to feel you gagging and drooling all over my dick.
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
You like that, you filthy slut? You like getting your cunt wrecked by my big dick? I'm going to fuck you until you can't take anymore.
<</say>>
<<say _girl>>
Yes, fuck me harder! Use me like a cheap whore! I want to feel you split me in two with your massive cock!
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
Your tight little pussy feels so good gripping my cock as you ride me hard. I love watching your perfect tits bounce with each thrust. Keep slamming down on my dick and make yourself cum all over it.
<</say>>
<<say _girl>>
Mmm, your cock fills me up so completely. I'm getting close already.
<</say>>
<<say _man>>
That's it, work your cunt on my shaft. Fuck yourself with my cock until you explode in ecstasy. I want to feel your pussy spasming as you gush all over me.
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
Damn, your pussy is so tight. I love watching you bounce on my dick, you sexy thing. Your ass looks incredible.
<</say>>
<<say _girl>>
Mmm, spank me! I've been a bad girl. Fuck my wet cunt hard, I want you to wreck me with that huge cock!
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
You like that, don't you? My big cock stretching your tight little pussy. I'm going to fuck you so hard. You're my dirty little slut, aren't you? Such a nasty whore for my cock.
<</say>>
<<say _girl>>
Yes, I love it! Fuck me harder! Use me, I'm your cum dump. Pound my cunt with that huge dick.
<</say>>
<<say _man>>
That's right, take it like a good girl. I'm going to rail you so hard. Your wet pussy feels so good gripped around my dick. I'm going to fuck you till you're dripping with my cum.
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
You like that big cock slamming your tight little pussy? Huh? Does it feel good when I pound you deep and hard like this? I can feel your wetness all over my dick. You're dripping for me, you dirty slut. Take it all, every inch of my thick cock.
<</say>>
<<say _girl>>
Yes, fuck me harder! I love your huge cock stretching my pussy. Give it to me rough and make me cum on that big dick.
<</say>>
<<case 9>>
<<say _man>>
I'm about to explode, baby. Get ready, I'm going to blow my load all over your pretty face. You want my hot cum? I'm going to cover you in it. Open wide, here it comes.
<</say>>
<<say _girl>>
Oh yeah, give it to me! I want to feel your warm jizz all over my face. Shoot your load on me, I'm ready.
<</say>>
<<video _url>>
<<say _man>>
Here it comes! Ahhh fuck!
<</say>>
<<say _girl>>
Mmm, your creamy spunk tastes so good. I love the sweetness of your semen on my tongue. Give me more! Let me lick your cock clean.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Nora'; _man = 'Guy'; _video = '6'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your cock tastes so good in my mouth, I love pleasuring you like this. Sucking you off makes me so wet and horny. I can't wait to feel you fuck me hard after this. For now, I'm going to keep blowing you until you can't take it anymore.
<</say>>
<<say _man>>
You're so good at giving head, Nora. Your warm, wet mouth feels incredible on my dick. Keep sucking me off just like that. I'm loving every second of it.
<</say>>
<<say _girl>>
Mmm, I can taste your precum. It turns me on so much knowing I'm driving you wild with my mouth. Get ready, because after I finish blowing you, I want you to rail me hard with that big cock.
<</say>>
<<say _man>>
Damn, you're making me so hard, baby. In a minute, I'm going to stuff your tight little pussy full of cock. But first, I want to enjoy your sexy mouth a bit longer.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
You like that, don't you Nora? My big cock stretching your tight little pussy. I'm going to fuck you so hard. This is my pussy now, I'm claiming it.
<</say>>
<<say _girl>>
Oh yeah, fuck me! Use my cunt, I want you to destroy it with your huge dick. Pound me as hard as you can.
<</say>>
<<say _man>>
Take my cock like a good slut. I'm going to rail you so hard. Your pussy feels incredible.
<</say>>
<<say _girl>>
I'm such a dirty whore for you. Fuck my brains out, I want to be your sex toy. Use me.
<</say>>
<<say _man>>
Get on your knees, I want that pretty mouth. Open wide and take my whole cock down your throat. I'm going to face fuck you.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
Your cock tastes so good, I love having it deep in my throat. Mmm yeah, I'm going to make you feel so good with my mouth. Fuck my face, use my throat, I want you to enjoy this so much. I love being on my knees for you, servicing you with my lips and tongue. Keep thrusting into my mouth, I can take it.
<</say>>
<<say _man>>
Fuck that's amazing, your mouth feels incredible. I love watching you suck my cock, you're so sexy on your knees like that. Keep going, take it deeper, I'm loving this.
<</say>>
<<say _girl>>
I want you to absolutely destroy my tight pussy next, pound me as hard as you can. I crave your big cock stretching me out, filling me up completely.
<</say>>
<<say _man>>
Oh I'll wreck your little cunt, get ready for me to rail you hard. You're going to be screaming from how rough I'm going to fuck you.
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
Your tight little pussy feels so good wrapped around my cock. I love fucking you hard like this, slamming deep into you. You like that, don't you? Taking my big dick all the way inside your snug hole. I'm going to pound you until you're screaming my name.
<</say>>
<<say _girl>>
Oh fuck, you're so big! Ram that huge cock into me! I need it deep, fuck me hard! Use my cunt, pound me with that massive dick!
<</say>>
<<say _man>>
Such a hot, wet, tight pussy. Made for my cock. I'm going to fuck you so hard, you won't be able to walk straight afterwards.
<</say>>
<<say _girl>>
Yes, destroy my pussy with that thick cock! Wreck me with it! I'm your fuck toy, use me!
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
I'm going to fuck you so hard you'll barely be able to walk afterwards. I'm going to pound your tight little pussy until you're screaming my name. You like it rough, don't you? Good, because I'm about to destroy your cunt with my big cock.
<</say>>
<<say _girl>>
Give it to me, you bastard. Fuck me like you hate me. I want to feel every inch of your thick dick stretching me out. Use me like your personal fucktoy.
<</say>>
<<say _man>>
Such a filthy little slut. I'm going to use your holes until you're nothing but a quivering mess. My cock is going to own your pussy.
<</say>>
<<say _girl>>
Yes, use me! Fuck me harder! I'm your dirty whore, fuck me 'til I can't take anymore!
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Your cock tastes so good in my mouth. I love how it feels against my tongue. I could suck you off all night long, baby.
<</say>>
<<say _man>>
That's it, just like that. Suck it hard. I love watching my dick slide in and out of your pretty little mouth. You're such a good cocksucker.
<</say>>
<<say _girl>>
Mmm, you're so big. I love having your thick cock stretching my mouth. Use me. Fuck my face just like you fuck my tight little pussy.
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
Your tight pussy feels so good riding my cock. I love watching your tits bounce as you slam down on me. Keep going, you dirty little slut. Ride me hard and make yourself cum on my dick.
<</say>>
<<say _girl>>
Mmm, your cock fills me up so perfectly. I'm getting close already. Fuck, you're so deep inside me. Keep thrusting up into me hard. I want to soak your cock with my juices.
<</say>>
<<say _man>>
You like that, you horny whore? Grind your clit on me. Use my cock to get yourself off. I want to feel your pussy clenching around me as you cum on my dick.
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
I'm going to fuck your mouth hard. Open wide and take my cock.
<</say>>
<<say _girl>>
Mmm, yeah, give it to me. Fuck my face.
<</say>>
<<say _man>>
Take it all, you filthy slut. Gag on it.
<</say>>
<<say _girl>>
Ungh, your cock is so big. Choke me with it.
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
Your face looks so hot covered in my cum. Swallow it all like a good girl. That's it, drink it down. Wipe your face and lick your lips. You look so sexy with my jizz all over you.
<</say>>
<<say _girl>>
Mmm, your hot cum tastes so good. I love being covered in it. Thanks for giving me your load, stud.
<</say>>
<<say _man>>
You're welcome, baby. You did great taking my cum. I'll give you more any time you want it.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Paige'; _man = 'Guy'; _video = '2'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Your mouth feels so good, I love fucking your pretty face.
<</say>>
<<say _girl>>
Mmmph, your cock tastes so good. Use my mouth, fuck me hard.
<</say>>
<<say _man>>
I'm going to cum soon, I want to fill your mouth with my hot load.
<</say>>
<<case 2>>
<<video _url>>
<<say _man>>
Your pussy is so tight, I love pounding you from behind. Is this what you wanted?
<</say>>
<<say _girl>>
Yes, fuck me harder! Use my cunt, make me your dirty little whore.
<</say>>
<<say _man>>
Such a good fucking girl, taking my cock so well. I'll fuck you till you can't walk straight.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Your ass is mine now, I'm going to tear it up. Let me hear you scream.
<</say>>
<<say _girl>>
Ahh, you're so deep in my ass! Fuck it, use it, make it hurt so good!
<</say>>
<<say _man>>
Dirty anal slut, I knew you'd love this. I'm going to wreck your tight little hole.
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
Oh fuck, your tongue feels amazing on my ass. Lick it all, get it nice and wet.
<</say>>
<<say _girl>>
Mmm, I love eating your ass, such a sexy hole. I could lick it all day.
<</say>>
<<say _man>>
Get your face right in there, I want to feel your tongue everywhere. You're such a good ass-eater.
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
Ride my cock, work that ass. Let me see you bounce on it.
<</say>>
<<say _girl>>
I love feeling your cock so deep in my ass! I'm going to ride you till I can't take anymore.
<</say>>
<<say _man>>
Fuck yeah, such a hot sight watching your ass take my dick. Ride it hard, you dirty anal whore.
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
Your ass looks so good bouncing on my cock. I'm going to fuck you so deep.
<</say>>
<<say _girl>>
Ahh, you're hitting my hole just right! Fuck my ass, make me your bitch!
<</say>>
<<say _man>>
I love seeing my cock disappear into your hole. Take it all, you insatiable anal slut.
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
Open up and take it all, I want to feel the back of your throat.
<</say>>
<<say _girl>>
Mmmph, your cock is so big in my mouth. Facefuck me, use me!
<</say>>
<<say _man>>
That's it, deepthroat it like a good cocksucker. I'll give you a nice big load to swallow.
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
I love watching you play with your clit while I pound your ass. Such a horny little thing.
<</say>>
<<say _girl>>
Mmm, your cock feels so good in my ass, I'm going to make myself cum all over it!
<</say>>
<<say _man>>
Cum for me, shoot that load while I wreck your ass. You're such a filthy anal cumdumpster.
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
I'm ready to blow my load all over your pretty face. Keep those eyes on me.
<</say>>
<<say _girl>>
Give it to me, cover me with your hot cum! I want to wear it like a mask.
<</say>>
<<say _man>>
Here it comes, get ready for your facial, you cum-loving slut!
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Paige'; _man = 'Guy'; _video = '3'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Your mouth feels so fucking amazing. Suck it harder, you dirty little slut.
<</say>>
<<say _girl>>
Mmm I love the taste of your big hard cock. You like watching me deepthroat it, don't you?
<</say>>
<<say _man>>
Hell yeah, it's so hot seeing my dick disappear down your throat. You're such a good cock sucker.
<</say>>
<<say _girl>>
I'm going to make you explode with pleasure. I want to drink every last drop of your cum.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
Oh fuck, your cock feels so big in my tight little ass. Pound me harder, I want it rough!
<</say>>
<<say _man>>
You like that, you anal whore? I'm going to tear up your backdoor. Take my huge dick!
<</say>>
<<say _girl>>
Yes, fuck my ass! Use me like your personal fucktoy. I'm here for your pleasure!
<</say>>
<<say _man>>
That's right, this is my ass now. I'm going to rail it until you're screaming for mercy.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Damn, your asshole is gripping my dick so tight. Loosen up so I can give it to you harder!
<</say>>
<<say _girl>>
It's so intense! I'm trying, but it burns! Just keep fucking my tender little rosebud.
<</say>>
<<say _man>>
I'll fuck it nice and hard, you naughty anal slut. You love having your tight ass destroyed don't you?
<</say>>
<<say _girl>>
Yes I do! I want to feel your huge cock in my ass for days. Fuck me until I can't walk straight!
<</say>>
<<case 4>>
<<video _url>>
<<say _girl>>
Your cock feels so good slamming into my wet pussy from behind. Don't stop, I'm getting close!
<</say>>
<<say _man>>
You want to come on my big dick, you horny little thing? I'm going to pound your tight snatch until you explode!
<</say>>
<<say _girl>>
Ungh, it's so deep this way! Fuck me through the orgasm! Make me gush all over your cock!
<</say>>
<<say _man>>
You're going to soak the bed when I'm done with you!
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
I love the view of my dick sliding in and out of your sloppy asshole. You're taking it like a champ!
<</say>>
<<say _girl>>
It feels so filthy and wrong. I love being your anal slut. Use my ass for your pleasure!
<</say>>
<<say _man>>
Oh I will, you can count on that. I'm going to fuck your ass until it's gaping and loose.
<</say>>
<<say _girl>>
Yes, destroy my asshole! I want to feel your cum dripping out of it for days afterwards!
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
Damn, your pussy is so tight. Ride me hard, you sexy little cowgirl. Make me moan!
<</say>>
<<say _girl>>
I love riding your big cock! It feels so amazing in my pussy. Ungh, your cock is hitting my G-spot! I'm going to bounce on it until I come all over it!
<</say>>
<<say _man>>
Fuck yes, use my dick to get yourself off! I love feeling your juicy snatch spasming around me!
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
Damn, your pussy is so fucking tight. I can feel it gripping my cock like a vice. You're going to milk me dry!
<</say>>
<<say _girl>>
It's so big! You're stretching me out so good! Give me every inch of that huge cock!
<</say>>
<<say _man>>
You want it all, you insatiable slut? I'll fuck you with my full length until you're begging for mercy!
<</say>>
<<say _girl>>
Yes, use my tight little pussy! Fuck me until I'm dripping with your cum! I want it so badly!
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Oh god, your cock feels so huge in my ass! It's filling me up completely! Fuck it deep!
<</say>>
<<say _man>>
You like that, you anal addict? I'm going to wreck your asshole with my massive dick!
<</say>>
<<say _girl>>
Yes, break it in! Use my ass for your pleasure! And when you're done, I want to taste your cum on my tongue!
<</say>>
<<say _man>>
I'm gonna fill your mouth with a huge load, you can count on it. You'll be dripping with cum for a week!
<</say>>
<<case 9>>
<<video _url>>
<<say _man>>
I'm getting close! Your mouth looks so hot and eager. I'm going to blow my load down your throat!
<</say>>
<<say _girl>>
Yes, give it to me! I want to taste your hot cum! Shoot your load in my mouth, I deserve it!
<</say>>
<<say _man>>
Here it comes, you dirty cum whore! Open wide and drink it all down! Swallow every drop!
<</say>>
<<say _girl>>
Mmm, your cum tastes so good! I love being your personal sperm dumpster. Thank you for filling my mouth!
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Paige'; _man = 'Guy'; _video = '4'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
Your mouth feels so fucking amazing. I love watching my cock disappear down your throat.
<</say>>
<<say _girl>>
Mmm, I love the taste of your big hard cock. I could suck you off all day long, baby.
<</say>>
<<say _man>>
You're such a good little cocksucker. I'm going to fuck your pretty face so hard.
<</say>>
<<say _girl>>
Use me however you want, I'm your dirty little slut. Choke me with that monster cock.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
Oh fuck yes, ram that thick cock into my tight little pussy! Pound me harder!
<</say>>
<<say _man>>
I'm going to wreck your sweet cunt, baby. You like that? You like getting railed from behind?
<</say>>
<<say _girl>>
Yes, fuck me like a dirty whore! Use my holes, I'm just your fucktoy.
<</say>>
<<say _man>>
Such a good girl, taking it so well. I'm going to fuck you until you're dripping with my cum.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
You have no idea how good your tight little asshole feels. I'm going to tear it up.
<</say>>
<<say _girl>>
Fuck my ass, destroy it! I want to feel you in me for days. Give it to me, you beast!
<</say>>
<<say _man>>
I'll fuck your ass so hard you won't be able to sit right for a week. You're my filthy anal slut, aren't you?
<</say>>
<<say _girl>>
Yes, I'm your anal whore! I live to serve your big dick. Fuck me harder, I can take it!
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
Fuck, your feet are so soft and warm. Your feet are so sexy, I love fucking you between your toes. You like being my dirty foot fuck toy, don't you?
<</say>>
<<say _girl>>
Mmm yeah, use my feet to get off. Mmm, I love the feel of your hard cock rubbing against the soles of my feet. Yes, I'm your naughty foot slut. Use my feet to get off.
<</say>>
<<case 5>>
<<video _url>>
<<say _man>>
You like that, don't you, bitch? You're so tight, your ass feels amazing.
<</say>>
<<say _girl>>
Oh fuck, you're so deep. Fuck me harder, I want to feel you tear me apart.
<</say>>
<<say _man>>
Such a filthy whore, taking it like a champ. I'm going to wreck your little asshole.
<</say>>
<<say _girl>>
Yes, destroy me, use me. I'm just your fucktoy, ruin my ass for anyone else.
<</say>>
<<case 6>>
<<video _url>>
<<say _man>>
I love taking you from behind like this, your ass looks so hot.
<</say>>
<<say _girl>>
Mmm yeah, pound me hard. Spank my ass, I've been a bad girl.
<</say>>
<<say _man>>
You like it rough, don't you? I'll give you a good spanking while I fuck you deep.
<</say>>
<<say _girl>>
Ah, your big cock feels so good. Fuck me harder, use me...I'm your dirty little slut.
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
I love how your pussy feels gripping my cock. You're so tight and wet for me.
<</say>>
<<say _girl>>
Fuck me harder, I want to feel you deep inside me. Make me cum with your big dick.
<</say>>
<<say _man>>
I'm gonna pound you so hard, you little slut. Cum for me while I rub your clit.
<</say>>
<<say _girl>>
Yes, yes, don't stop! Your cock feels so amazing slamming into me. I'm gonna cum!
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
Your mouth feels so good, Paige. I love fucking your face like this. Keep those pretty lips wrapped around my cock.
<</say>>
<<say _girl>>
Mmm, I love the taste of your hard cock in my mouth. Fuck my throat deeper, I want to feel you hit the back of my throat.
<</say>>
<<case 9>>
<<video _url>>
<<say _girl>>
Yes, cover me in your hot cum! Shoot it all over my legs and feet. I want to feel your seed dripping off my skin.
<</say>>
<<say _man>>
Here it comes, babe! Ahhh, fuck! I'm coming so hard on your amazing feet. Watching my jizz drip down your inner thighs is such a turn-on.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Paige'; _man = 'Guy'; _video = '5'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _girl>>
Your pussy tastes so good, I could eat it out all day.
<</say>>
<<say _man>>
Yeah! Lick her clit while I pound your tight little pussy, Paige. You like that, don't you?
<</say>>
<<say _girl>>
Yes, fuck me harder! I'm getting so turned on licking her sweet pussy while you rail me from behind.
<</say>>
<<say _man>>
You're such a naughty girl, Paige. I'm going to fuck you until you scream. Keep licking her good, make her cum on your tongue.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
Your cock feels so good in my throat, I love deepthroating you like this.
<</say>>
<<say _man>>
That's it baby, take it all the way down. Fuck, your mouth feels incredible.
<</say>>
<<say _girl>>
I want to share this with her. Watch me spit my saliva into her mouth.
<</say>>
<<say _man>>
Damn, that's so hot. You two are amazing together. Keep going, I love watching you.
<</say>>
<<case 3>>
<<video _url>>
<<say _girl>>
I love how your big cock feels inside me as I ride you reverse cowgirl. Your dick is hitting my G-spot just right.
<</say>>
<<say _man>>
You're bouncing on my dick so hard, Paige. I love seeing your ass jiggle as you slam down on me. Keep riding me like a slutty cowgirl.
<</say>>
<<say _girl>>
Mmm, your cock is so thick. I'm getting close to cumming on it. Don't stop fucking me with that huge dick!
<</say>>
<<say _man>>
Fuck yeah, cum on my cock, you dirty whore! Ride me harder!
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
Damn, her pussy is so tight. Watching her ride me is such a turn on. You like watching that, don't you Paige?
<</say>>
<<say _girl>>
I love seeing her enjoy your big dick. But I want to taste her sweet nectar on your shaft. Let me clean you off.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
Your cock feels so huge inside my tight pussy. Fuck me harder, I want to feel you deep.
<</say>>
<<say _man>>
I'm going to pound your cunt so hard. Take my big dick, you dirty slut.
<</say>>
<<say _girl>>
Oh yeah, use me. Fuck my wet hole with your thick cock. I'm just here for your pleasure.
<</say>>
<<say _man>>
That's right, you're just a fucktoy for me. I'm going to destroy your pussy.
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
Your cock tastes so good, I love sucking it deep into my throat.
<</say>>
<<say _man>>
Damn, your mouth feels incredible. Suck it harder, Paige.
<</say>>
<<say _girl>>
I want to make you feel amazing with my hot, wet mouth. Is that okay, Sir?
<</say>>
<<say _man>>
Hell yeah, keep going just like that. You're such a good little cocksucker.
<</say>>
<<case 7>>
<<video _url>>
<<say _girl>>
Oh fuck, you're stretching me so wide, baby! Your big dick is pounding me so hard. I love it rough like this.
<</say>>
<<say _man>>
Damn, your cunt is gripping me like a vice as I slam into you. I want to fuck you even deeper.
<</say>>
<<say _girl>>
Yes, fuck me as hard as you can! Pummel my tight snatch with your huge cock!
<</say>>
<<case 8>>
<<video _url>>
<<say _man>>
I love watching you two girls pleasure each other while I fuck her hard. Your tongues look so hot together.
<</say>>
<<say _girl>>
Mmm, she tastes so good. I love feeling her tongue in my mouth while I rub my pussy against hers. Fuck her harder, I want to see her moan.
<</say>>
<<case 9>>
<<say _girl>>
Fuck yeah, fill both our mouths with your hot cum. We want to taste it.
<</say>>
<<say _man>>
You sexy sluts look so hot with your mouths wide open, waiting for my load. I'm going to blast it right down your throats.
<</say>>
<<video _url>>
<<say _girl>>
Oh fuck, yes! Give us every last drop of your thick cum!
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
<style>body {background-image: url(bg/bedroom.jpg);}</style>
/*
Подготовка параметров
___________________________________________________ */
/* объявляем первую сцену */
<<if typeof $_passageCounter == "undefined">><<set $_passageCounter=1;>><</if>>
/* указываем главные параметры */
<<set _girl = 'Paige'; _man = 'Guy'; _video = '6'>>
/* формируем URL видео-ролика */
<<set _url = 'video/' +_girl+ '/' +_girl+ '-' +_video+ '-' +$_passageCounter+ '.mp4';>>
/*
Отображаем нужную сцену
___________________________________________________ */
<<switch $_passageCounter>>
<<case 1>>
<<video _url>>
<<say _man>>
I love fucking your pretty little mouth, you slutty cocksucker. Gag on it.
<</say>>
<<say _girl>>
Mmmph! I adore being used like your personal cock sleeve. Fuck my throat harder!
<</say>>
<<say _man>>
You're such a filthy whore, taking my cock down your throat. I'm gonna use your mouth till I'm ready to blow.
<</say>>
<<say _girl>>
Yes sir, your dirty little cum dumpster. Use me up! I want you to coat my tongue with your load.
<</say>>
<<case 2>>
<<video _url>>
<<say _girl>>
You like that, baby? My pussy feels so good around your big cock.
<</say>>
<<say _man>>
Fuck yeah, your tight little cunt is gripping me so hard. I love pounding you from behind like this.
<</say>>
<<say _girl>>
Rougher, fuck me harder! Slam your cock deep in my hole.
<</say>>
<<say _man>>
I'll fuck you as hard as you want, you dirty little slut. Taking my dick so well.
<</say>>
<<case 3>>
<<video _url>>
<<say _man>>
Yeah, just like that. Suck it hard, use your tongue. Love watching my big dick slide in and out of your pretty little mouth.
<</say>>
<<say _girl>>
Mmm, your cock feels so good in my mouth. I want to make you feel amazing with my lips and tongue. You like that, don't you?
<</say>>
<<say _man>>
Hell yeah, your mouth is so warm and wet. Suck me off good, slut. Get me nice and hard for your tight pussy.
<</say>>
<<case 4>>
<<video _url>>
<<say _man>>
You like that, baby? My big cock stretching your tight little pussy. I'm gonna rail you so hard.
<</say>>
<<say _girl>>
Oh fuck yeah, pound me! Use my cunt, I want you to wreck it with your huge dick. Don't hold back.
<</say>>
<<say _man>>
I'm gonna fuck you till you're sore and dripping with my cum. This pussy is mine now.
<</say>>
<<say _girl>>
Yes, fuck me harder! Own my pussy, make me your filthy little slut. I'm here for your pleasure.
<</say>>
<<case 5>>
<<video _url>>
<<say _girl>>
Oh fuck, your dick is so big and hard inside me. Pound me deeper, make me take every inch.
<</say>>
<<say _man>>
I'm gonna rail you so hard, make you scream with pleasure. This tight snatch is mine to fuck.
<</say>>
<<say _girl>>
Use me, fuck me rough. I want you to destroy my little cunt with that huge cock. Give it to me!
<</say>>
<<case 6>>
<<video _url>>
<<say _girl>>
I love riding your big cock like this, it feels so good inside me. Your cock is so hard and thick.
<</say>>
<<say _man>>
You're such a sexy little slut, bouncing up and down on my dick. I love watching your tits jiggle as you ride me.
<</say>>
<<case 7>>
<<video _url>>
<<say _man>>
Your tight ass feels so good, Paige. I love fucking you hard like this. Keep rubbing that clit, baby.
<</say>>
<<say _girl>>
Oh yeah, pound my ass! Your cock is so big and hard. I'm getting so close...
<</say>>
<<say _man>>
That's it, play with your pussy while I rail you from behind. I want to hear you moan.
<</say>>
<<say _girl>>
Mmm, you're so rough! Fuck me harder, babe! Use my ass, I want it to hurt a little.
<</say>>
<<case 8>>
<<video _url>>
<<say _girl>>
Mmm, your cock fills me up so perfectly. I'm getting close already. Fuck, you're so deep inside me right now. Don't stop!
<</say>>
<<say _man>>
Ride me harder, I want to feel you come on my dick. Squeeze me with your pussy! Yes, just like that...
<</say>>
<<say _girl>>
Fuck, I'm coming! Your cock is making me gush. Ahh, ah, ahh! You're so big and hard, it's too much!
<</say>>
<<case 9>>
<<video _url>>
<<say _girl>>
Oh yeah, that's it. Rub your hot cum all over my clit. I want to feel your load dripping out of me.
<</say>>
<<say _man>>
You like that, huh? You want me to paint your pretty little pussy with my jizz? Such a dirty girl.
<</say>>
<<say _girl>>
Mmmhmm, I'm your filthy slut. Mark me with your seed. Fuck, your sperm feels so amazing on my sensitive clit.
<</say>>
<<say _man>>
Damn, you're so fucking sexy with your pussy glistening with my cum. I wanna rub it in deeper, make it nice and messy.
<</say>>
<</switch>>
/*
Отображаем ссылки на пассаж
___________________________________________________ */
/* возвращаемся в этот пассаж */
<<if $_passageCounter != 9>>
<div class="links">
<<link 'Next' `passage()`>><<set $_passageCounter++;>><</link>>
</div>
/* выходим из цыклического пассажа */
<<else>>
/* удаляем счетчик пассажей */
<<unset $_passageCounter;>>
<div class="links">
<<link 'Next' 'Girls-Sex-End'>>
/*<<set $t.sidebar = 1; >> - это для других игр*/
<</link>>
</div>
<</if>>
/* количество цитат */
<<set _quotesTotal = 253; >>
/* если массив с номерами цитат отсутствует, заполняем его */
<<if typeof $newDayQuotes == "undefined" || $newDayQuotes.length == 0>>
<<set $newDayQuotes = [];>>
<<for _i=1; _i<=_quotesTotal; _i++>><<run $newDayQuotes.push(_i);>><</for>>
<</if>>
/* получаем случайный номер цитаты из массива и удаляем его из массива */
<<set _quotes = $newDayQuotes.pluck(); >>
/* отображаем выбранную цитату */
<<switch _quotes>>
<<case 1>>
"Survival is 90% attitude and 10% not pressing the wrong button." – Larry McGill
<<case 2>>
"When in doubt, blame the ventilation system." – Paula Briggs
<<case 3>>
"The best survival tool? A friend who runs slower than you." – Max Hargrove
<<case 4>>
"If it's beeping, it's either important or about to explode." – Jenna Cole
<<case 5>>
"Panic is just your brain's way of saying, «I got nothing, good luck!»" – Trevor Dorsey
<<case 6>>
"The key to survival: don’t touch the mysterious red button." – Chris Patton
<<case 7>>
"I didn’t sign up to be a hero – I just wanted snacks." – Amelia Raines
<<case 8>>
"Survival is just a fancy way of saying «Oops, but not yet»." – Oliver West
<<case 9>>
"If the lights go out, it’s either a power failure or a plot twist." – Natalie Finch
<<case 10>>
"Trust your instincts - unless they tell you to lick something." – Jake Simmons
<<case 11>>
"If you hear a creepy noise, walk the other way. Basic survival 101." – Dana Fowler
<<case 12>>
"In case of emergency, pretend you know what you're doing." – Vincent Gray
<<case 13>>
"If you're still alive, congratulations - you're winning." – Melissa Hart
<<case 14>>
"If survival depended on common sense, we'd all be doomed." – Laura Briggs
<<case 15>>
"When things get tough, remember: screaming is free." – Sophie Blake
<<case 16>>
"A true survivor knows that duct tape fixes almost everything." – Greg Walters
<<case 17>>
"If you can smell smoke, you're either too late or cooking dinner." – Ellie Grant
<<case 18>>
"Survival tip: never trust a flashing light." – Kyle Hendricks
<<case 19>>
"If you're running, try to figure out why later." – Zoe Collins
<<case 20>>
"Step one to survival: Don’t touch the obviously cursed object." – Nate Harper
<<case 21>>
"When someone says «What’s the worst that could happen?» - run." – Becca Lane
<<case 22>>
"Survival is a fine balance between bravery and knowing when to hide." – Mia Cross
<<case 23>>
"If you find a button labeled «DO NOT PRESS» - don't press it." – Josh Becker
<<case 24>>
"Nothing tests friendship like limited food supplies." – Ava Reid
<<case 25>>
"If you’re lost, follow the person who looks least worried." – Carrie Holt
<<case 26>>
"Survival tip: Always assume the weird noise is bad news." – Ethan Miles
<<case 27>>
"In survival situations, optimism is good - but a backup plan is better." – Lydia Ross
<<case 28>>
"Rule #1: Never be the first to open the creepy hatch." – Marcus Lane
<<case 29>>
"If you hear «We’re perfectly safe», prepare to run." – Tessa Moore
<<case 30>>
"Trust no one, especially the guy who says, «Trust me»." – Chloe Marks
<<case 31>>
"Survival fashion tip: Pockets. Lots of pockets." – Adam Frost
<<case 32>>
"A flashlight is great - until you realize what it’s showing you." – Nina Chambers
<<case 33>>
"If the air smells funny, it’s probably not a good sign." – Tom Archer
<<case 34>>
"There’s no «I» in survival - but there is an «I» in «I’m out of here»." – Casey Greene
<<case 35>>
"The best survivors are part genius, part lucky, and part too tired to care." – Megan Pierce
<<case 36>>
"If you hear «Oops», it's already too late." – Kelly Monroe
<<case 37>>
"Always remember: survival is just organized chaos." – Sean Briggs
<<case 38>>
"Survival is just a fancy word for «Oops, that almost killed me!»" — Greg Thornton
<<case 39>>
"When in doubt, press all the buttons - something has to work." — Molly Greene
<<case 40>>
"Good decisions come from experience. Experience comes from very bad decisions." — Ivan Pickett
<<case 41>>
"Surviving is easy - just don’t die. Simple, right?" — Fiona Marsh
<<case 42>>
"The key to survival? Blame the nearest person when things go wrong." — Benny Clarkson
<<case 43>>
"If it looks dangerous, it probably is. If it looks safe, it’s probably a trap." — Hazel Dunn
<<case 44>>
"Survival rule #1: Never be the person who says, «What could go wrong?»" — Oliver Hicks
<<case 45>>
"I’d make better choices if they didn’t all seem like terrible ideas." — Lydia Parker
<<case 46>>
"Plan A never works. Plan B is just Plan A with more panic." — Max Reynolds
<<case 47>>
"If you’re the smartest person in the room, it’s your fault we’re in this mess." — Ellie Chambers
<<case 48>>
"The first step to survival is convincing everyone else you know what you're doing." — Vince Morgan
<<case 49>>
"In any crisis, it helps to have snacks. Lots of snacks." — Tina Brock
<<case 50>>
"Choices are like sandwiches - always messy and you never know what's inside." — Mia Turner
<<case 51>>
"If survival was easy, everyone would do it." — Rachel Quinn
<<case 52>>
"Step one: Don't panic. Step two: Panic quietly." — Peter Locke
<<case 53>>
"Survival is mostly pretending you have a plan." — Jordan Wells
<<case 54>>
"A good decision is any decision that doesn’t explode immediately." — Derek Cooper
<<case 55>>
"It’s not paranoia if everything really is trying to kill you." — Bruce McKinley
<<case 56>>
"Survival is 90% luck and 10% pretending you planned it." — Olivia Hayes
<<case 57>>
"The most important survival skill? Looking busy while others do the work." — Laura Kent
<<case 58>>
"If it sparkles, it’s either treasure or a trap. Either way, worth checking." — Emma Carson
<<case 59>>
"Every decision is right if you wait long enough for people to forget it." — Donna Malone
<<case 60>>
"Panic strategically - it keeps people on their toes." — Tom Jenson
<<case 61>>
"Rule of survival: If it’s broken, it was already like that." — Charlotte Dean
<<case 62>>
"Bad decisions make great stories - and decent alibis." — Ian Harper
<<case 63>>
"You don’t need to be brave, just faster than the danger." — Sam Rivers
<<case 64>>
"When life gives you choices, pick the one with the best snacks." — Megan Fletcher
<<case 65>>
"A quick decision is usually just a fast mistake." — Patricia Grimes
<<case 66>>
"I make decisions the same way I make breakfast - messy, rushed, and usually regrettable." — Doug Perkins
<<case 67>>
"If you can't decide, flip a coin. If you’re unhappy with the result, you’ve made your choice." — Wendy Blake
<<case 68>>
"Decisions are like duct tape - rarely pretty but usually hold things together." — Marcus Reed
<<case 69>>
"A bad decision made quickly is still faster than a good decision made never." — Helen O’Brien
<<case 70>>
"I don’t always make good decisions, but when I do, it’s probably by accident." — Jerry Mullins
<<case 71>>
"Decisions are easy when you ignore the consequences." — Lauren Parker
<<case 72>>
"If Plan A doesn’t work, don’t worry - there are 25 more letters." — Bruce Sanderson
<<case 73>>
"Decision-making is like a buffet - take too long and all the good stuff is gone." — Charlie Dixon
<<case 74>>
"A decisive person is just someone who's really good at guessing." — Oliver Bennett
<<case 75>>
"I used to be indecisive, but now I’m not so sure." — Max Peters
<<case 76>>
"The best decisions are made with a full stomach and an empty inbox." — Paul Wilkins
<<case 77>>
"My decision-making process is 30% logic, 70% panic." — Zoe Marshall
<<case 78>>
"The secret to decision-making is simple - let someone else decide." — Carl Jenkins
<<case 79>>
"If you make the wrong decision confidently, people will still think you’re in charge." — Dean Richards
<<case 80>>
"Every decision has consequences, which is why I avoid them." — Brian Keller
<<case 81>>
"Sometimes the best decision is to take a nap and pretend it’s not your problem." — Fiona Drake
<<case 82>>
"Why make a decision today when you can regret it tomorrow?" — Victor Campbell
<<case 83>>
"My motto: when in doubt, delegate." — Tina Howell
<<case 84>>
"I never make decisions before coffee - it's too risky." — Edward Mason
<<case 85>>
"In tough situations, I ask myself: what would a responsible adult do? Then I do the opposite." — Kim Wallace
<<case 86>>
"I make decisions like I parallel park - slowly, awkwardly, and with a lot of regret." — Olivia Chase
<<case 87>>
"When all else fails, blame the guy who made the last decision." — George Pratt
<<case 88>>
"The quickest decision I ever made was to procrastinate." — Jack Henderson
<<case 89>>
"Making a decision is easy - living with it is the hard part." — Ted Walton
<<case 90>>
"If it’s a bad decision but it works, is it still bad?" — Daniel Quinn
<<case 91>>
"The best decisions are made after a snack break." — Rachel Boyd
<<case 92>>
"Decisions are easy if you don’t care about the consequences." — Chloe Walters
<<case 93>>
"Why choose wisely when you can choose quickly?" — Amelia Harris
<<case 94>>
"Decision-making is just an elaborate form of guessing." — Tom Barrett
<<case 95>>
"When faced with two options, pick the one you can explain later." — Vanessa Greene
<<case 96>>
"My decisions are 90% instinct, 10% blind hope." — Keith Dawson
<<case 97>>
"If you regret a decision, just pretend it never happened." — Lily Monroe
<<case 98>>
"I trust my gut - especially when it wants pizza." — Sophie Mitchell
<<case 99>>
"Surviving is simple, just don't die." - Anonymous Survivalist
<<case 100>>
"In the game of survival, procrastination is a luxury you can't afford." - John Quick, Survival Expert
<<case 101>>
"Surviving is all about knowing when to run, when to hide, and when to fight dirty." - Sarah Sly
<<case 102>>
"When life gives you lemons, make a Molotov cocktail." - Anonymous Anarchist
<<case 103>>
"Survival of the fittest is just another way of saying «every man for himself»." - Charles Darwin, Natural Selection Enthusiast
<<case 104>>
"If you're not willing to eat bugs, you're not serious about survival." - Gregor Samsa
<<case 105>>
"The difference between survival and extinction is a good supply of duct tape." - Handy Andy
<<case 106>>
"Survival is not for the faint of heart, but it is for the faint of preparation." - Nigel Noteworthy
<<case 107>>
"The only thing worse than having nothing to eat is having nothing to drink." - Thirsty Thurston
<<case 108>>
"Survival is not a spectator sport; you have to be willing to get your hands dirty." - Mud Pie
<<case 109>>
"In a survival scenario, the most important thing is to keep your cool... and your supplies dry." - Cool Hand
<<case 110>>
"The best survival tool is a good sense of smell... and a nose for trouble." - Nosey Nancy
<<case 111>>
"The key to survival is knowing how to ration your food... and your sanity." - Sanity Sally
<<case 112>>
"Surviving a shitstorm ain't about being a fucking hero, it's about being too damn stubborn to die." - John "Mad Dog" McGraw
<<case 113>>
"When life gives you lemons, don't just make lemonade – make a molotov cocktail and take those bastards down!" - Jake "Lemonade" Johnson
<<case 114>>
"Survival is all about knowing when to hold your ground and when to run like hell. And sometimes, it's about choosing the right orifice to stick your dick in." - Anonymous
<<case 115>>
"The key to surviving any situation is a good sense of humor, a fuck-ton of luck, and the willingness to do things that would make your grandma cry." - Sarah "Laughing Gas" Wilson
<<case 116>>
"In the end, we're all just animals trying to fuck our way through life. Survival of the horniest, I guess." - Dr. Richard "Dick" Love
<<case 117>>
"Life is like a game of poker. You never know what hand you're gonna get, but you gotta play it like a fucking pro or you're gonna lose your ass." - Vince "Poker Face" Vaughn
<<case 118>>
"The only thing that can stop a bad guy with a dick is a good guy with a bigger dick." - Clint "Big Dick" Eastwood
<<case 119>>
"Surviving isn't about being the strongest or the smartest. It's about being the most adaptable. And having a big enough dick to piss off your enemies." - Charles "Adapt or Die" Darwin
<<case 120>>
"If you're not willing to get your hands dirty, your dick sucked, or your ass kicked, then survival ain't for you." - Samuel "Dirty Hands" Jackson
<<case 121>>
"When it comes to survival, it's all about the pussy. Keep your pussy safe, and you'll make it through anything." - Tiger "Pussy Lover" Woods
<<case 122>>
"Fuck the rules. In a survival situation, the only rule is to stay alive. And maybe get laid along the way." - John "Fuck the Rules" Rambo
<<case 123>>
"Survival is a numbers game. You gotta fuck as many people as you can, just to increase your odds of making it out alive." - Dr. Stephen "Numbers" Hawking
<<case 124>>
"The best way to survive any situation is to keep your head down, your mouth shut, and your dick ready." - Jason "Silent But Deadly" Statham
<<case 125>>
"In the game of survival, the only thing that matters is the size of your balls. And your dick, of course." - Arnold "Big Balls" Schwarzenegger
<<case 126>>
"The key to surviving a fucking apocalypse is to have a good sense of direction, a reliable vehicle, and a shit-ton of condoms." - Max "Road Warrior" Rockatansky
<<case 127>>
"When you're stuck in a shitstorm, the only thing you can do is grab your dick and start paddling." - Bear "Shitstorm Survivor" Grylls
<<case 128>>
"Survival is all about knowing when to take a risk and when to play it safe. And when to take a dick." - James "Bondage" Bond
<<case 129>>
"In a survival situation, your only friend is your dick. So you better learn how to use it." - Tom "Dick-tator" Hanks
<<case 130>>
"The only thing that can save you in a survival situation is a strong will to live and a bigger dick than your enemies." - Bruce "Cock Cage" Lee
<<case 131>>
"Surviving a disaster is all about having the right tools. Like a big fucking gun and a dick that can go for hours." - Rambo "Tool Time" Stallone
<<case 132>>
"In a survival situation, you gotta be willing to do whatever it takes to stay alive. Even if it means fucking a dude." - John "Whatever It Takes" McClane
<<case 133>>
"Survival is all about making the best of a bad situation. Like turning a shitty day into a fuck fest." - Forrest "Fuck Fest" Gump
<<case 134>>
"The key to surviving a catastrophe is to have a plan, a backup plan, and a dick that can handle anything." - Hans "Plan B" Gruber
<<case 135>>
"In a survival situation, the only thing that matters is staying alive. And maybe getting some pussy along the way." - Ethan "Pussy Hunter" Hunt
<<case 136>>
"Survival is all about knowing when to fight and when to fuck. And when to do both at the same time." - Jet "Fight or Fuck" Li
<<case 137>>
"The only way to survive a disaster is to have a big fucking gun and a dick that can please anyone." - Ash "Boom Stick" Williams
<<case 138>>
"Survival is all about knowing when to be a hero and when to be a fucking coward. And when to be both at the same time." - Peter "Hero or Coward" Parker
<<case 139>>
"When the shit hits the fan, the only thing that matters is the size of your dick and the size of your balls." - John "Shitstorm" Matrix
<<case 140>>
"In survival situations, always remember: shit happens, but don't let it happen to you." - John "Survivor" Smith
<<case 141>>
"If you're not fucking shit up, you're not surviving right." - Anonymous
<<case 142>>
"My survival kit includes a sturdy knife, a pack of condoms, and a bottle of whiskey. You never know what you'll need." - Richard "Prepared" Johnson
<<case 143>>
"Surviving is easy when you have a tight pussy to come home to." - Samantha "Wildcat" Harris
<<case 144>>
"I don't always survive, but when I do, I prefer to do it with a beer in my hand and a woman by my side." - Michael "Most Interesting Survivor" Jordan
<<case 145>>
"If you can't stand the heat, get the fuck out of the survival kitchen." - Gordon "Ramsay" Davis
<<case 146>>
"I've survived on worse things than a dick sandwich... but not much worse." - Thomas "Desperate" Jefferson
<<case 147>>
"Life is like a dick: sometimes it's hard to handle, but if you know how to work it, it can be a fucking pleasure." - Jessica "Dick Whisperer" Johnson
<<case 148>>
"Survive today, fuck tomorrow." - Anonymous
<<case 149>>
"Never trust a skinny chef, or a survival expert who doesn't know how to cook a fucking squirrel." - James "Backwoods" Beard
<<case 150>>
"Survival is all about the pussy: you've got to have it, you've got to protect it, and you've got to know when to let it go." - Christopher "Casanova" Columbus
<<case 151>>
"When life hands you a dick, you don't make lemonade – you suck it." - Julie "Blowjob" Andrews
<<case 152>>
"I've never met a problem a good fuck couldn't solve." - Ashley "Problem Solver" Madison
<<case 153>>
"Surviving is all about knowing when to hold 'em and when to fold 'em – in life and in poker." - Kenny "Gambler" Rogers
<<case 154>>
"Life is short, fuck hard." - Anonymous
<<case 155>>
"The only thing better than surviving is surviving with a sexy partner." - Amber "Bae-caver" Heard
<<case 156>>
"I didn't claw my way to the top of the food chain to eat fucking vegetables." - Steven "Carnivore" Seagal
<<case 157>>
"Survival is about knowing when to take charge and when to let someone else take the lead... in the bedroom and out." - Grace "Boss" Jones
<<case 158>>
"My favorite survival skill is knowing how to give a mind-blowing blowjob." - Sarah "Seductress" Silverman
<<case 159>>
"Life's a bitch, but I'm the biggest dick." - David "Alpha" Lee
<<case 160>>
"If at first you don't succeed, try fucking it again." - William "Persistent" Shakespeare
<<case 161>>
"In the game of survival, you win or you die." - Tyrion "Imp" Lannister
<<case 162>>
"I'll survive anywhere, as long as there's a warm body next to me." - Ryan "Snuggle" Gosling
<<case 163>>
"You can't spell «survival» without «viva la vagina»." - Gloria "Vagina" Steinem
<<case 164>>
"I don't always survive, but when I do, I'm usually naked and covered in blood." - Chuck "Naked" Norris
<<case 165>>
"Survival is a numbers game: the more you fuck, the better your chances." - Dr. John "Statistical" Holmes
<<case 166>>
"In a world full of assholes, it's hard to pick just one." - Emma Sucks
<<case 167>>
"Choosing between two shitty options is like picking your favorite STD." - Olivia Dickson
<<case 168>>
"Life's a bitch, and so am I when I have to make decisions." - Sophia Bitchin'
<<case 169>>
"Making tough choices is like trying to fuck a unicorn, it's hard and you'll probably end up disappointed." - Isabella Horni
<<case 170>>
"When life gives you two shitty choices, just take a dump on both and walk away." - Mia Blow
<<case 171>>
"Decision making is like having sex with a blindfold on, you don't know what you're getting into until it's too late." - Ava Dumbass
<<case 172>>
"Life is like a box of chocolates, full of shitty choices and a few surprise orgasms." - Charlotte Dick
<<case 173>>
"I'd rather fuck a cactus than make another hard decision." - Amelia Pain
<<case 174>>
"Navigating life is like giving a blowjob, you gotta be careful not to choke on the tough decisions." - Grace Suckwell
<<case 175>>
"Choosing between two evils is like deciding which STD is less itchy." - Lily Dicks
<<case 176>>
"Decisions are like dick sizes, they're all disappointing in their own way." - Scarlett Blueballs
<<case 177>>
"Making choices is like being a porn star, sometimes you gotta take it up the ass." - Peyton Assrammer
<<case 178>>
"Decisions are like used condoms, better to just throw them out and move on." - Zoe Cumdumpster
<<case 179>>
"Choosing between two bad options is like being stuck between a rock and a hard place, only the hard place is actually a dick." - Taylor Boner
<<case 180>>
"Decisions are like a threesome, you think you're in control, but you're actually just getting fucked from both ends." - Madison Slutfest
<<case 181>>
"Making tough calls is like trying to solve a Rubik's cube while giving a handjob, it's hard and you'll probably end up with jizz on your face." - Addison Jizzface
<<case 182>>
"Decisions are like periods, they come at the worst times and leave you feeling like shit." - Aubrey PMSqueen
<<case 183>>
"Choosing between two shitty options is like having a threesome with your ex and their new partner." - Aria Fuckmylife
<<case 184>>
"Life's choices are like sex positions, you gotta try a few before you find one that doesn't hurt." - Mila Owmyanus
<<case 185>>
"Choosing between two evils is like deciding whether to fuck a bear or a wolf, either way, you're gonna get mauled." - Willow Roughfuck
<<case 186>>
"Decisions are like dildos, some are bigger, some are smaller, but they all have a purpose." - Leilani Fucktoy
<<case 187>>
"Choosing between two bad options is like trying to decide if you want to get herpes or gonorrhea." - Brielle Clapclinic
<<case 188>>
"Life is like a game of chess, you never know when you'll get fucked by a bishop." - John Smith
<<case 189>>
"In the game of survival, you gotta make the tough calls, even if it means sacrificing a few pawns." - Mike Johnson
<<case 190>>
"Choosing the right path is like picking the right prostitute; you gotta weigh the risks and rewards." - David Brown
<<case 191>>
"When faced with a difficult decision, just remember: sometimes you gotta shit in your hand to throw it at the wall." - Chris Green
<<case 192>>
"Life's a bitch, and then you die. But at least you can fuck the bitch before you go." - Alex Wilson
<<case 193>>
"In this game, you gotta be ready to make the hard choices, like choosing between food and sex." - Tom Hall
<<case 194>>
"The only thing harder than making tough decisions is trying to please a woman." - James Thompson
<<case 195>>
"Survival is a numbers game, just like trying to get laid at a bar." - Scott Martin
<<case 196>>
"Choosing the lesser of two evils is like picking the uglier of two hookers." - Mark Jameson
<<case 197>>
"Choosing the right path is like picking the right girl to fuck; you never know what you're gonna get." - Tyler Graham
<<case 198>>
"Survival is a game of chance, just like trying to get lucky at a strip club." - Luke Dawson
<<case 199>>
"Surviving is easy, it's the living part that's a bitch." - Marcus "No Mercy" Johnson
<<case 200>>
"The only thing harder than surviving is trying to get laid in a post-apocalyptic wasteland." - Jessica "Femme Fatale" Smith
<<case 201>>
"Fuck the rules, in a survival situation, the only rule is to stay alive." - Tom "Rogue" Anderson
<<case 202>>
"I didn't come this far just to die with blue balls." - Steve "Stiff" Johnson
<<case 203>>
"When the going gets tough, the tough get going... to find a safe place to masturbate." - Dr. Dick "Hands Solo" Longwood
<<case 204>>
"If you're not cheating, you're not trying hard enough." - Lance "The Cheat" Armstrong
<<case 205>>
"If you're not having fun, you're doing it wrong. Even if 'it' is surviving a catastrophe." - Jamie "Party Animal" Sinclair
<<case 206>>
"The only thing that can stop me is my own orgasms." - Mia "O-Face" Wallace
<<case 207>>
"When life hands you a dick, you better fucking swallow." - Jenna "Deep Throat" Jameson
<<case 208>>
"If I'm going to die, I might as well do it with a smile on my face and a boner in my pants." - Chad "Happy Camper" Johnson
<<case 209>>
"The key to survival? A stiff drink and a stiff cock." - James "Double Stiff" Bond
<<case 210>>
"Life is a game of inches, and I'm packing plenty of inches to survive." - John "Measuring Stick" Holmes
<<case 211>>
"The only thing that can fuck me harder than this apocalypse is my own hand." - Tiffany "Onanist" Cox
<<case 212>>
"Surviving is all about the right tools... and I've got the biggest tool of all." - Dirk "The Hammer" Diggler
<<case 213>>
"The key to survival? A stiff upper lip and a stiff lower lip." - Queen "Lip Service" Elizabeth
<<case 214>>
"The only thing that can kill me is boredom... and maybe a lack of lube." - Samantha "Slippery When Wet" Jones
<<case 215>>
"Surviving is a lot like sex: it's all about endurance and knowing when to come." - Casanova "The Endurer" Valentino
<<case 216>>
"The only thing worse than having to shit in a bucket is having to shit in a bucket without toilet paper." - Anita "Bucket Babe" Thompson
<<case 217>>
"When you're stuck in a room with a bunch of fuckwits, it's best to just embrace the clusterfuck." - George "Clusterfuck" Harrison
<<case 218>>
"Surviving in a locked room requires three things: food, water, and a shit ton of duct tape." - Duct "Tape Master" Johnson
<<case 219>>
"When life throws you into a small room, make sure you're the biggest dick in there." - Big "Dick Energy" Johnson
<<case 220>>
"Sometimes, the only way to survive is to embrace your inner psychopath." - Psycho "Inner Strength" Sanders
<<case 221>>
"When you're down to your last fucking MRE, that's when you find out what you're truly made of." - MRE "Last Meal" Jones
<<case 222>>
"If you can't find a way to make fire, you'll probably get fucked by frostbite." - Frostbite "The Fuck Up" Morgan
<<case 223>>
"When you're stuck in a room with no food, you'll eat anything, even your own fucking arm." - Arm "Cannibal" Davis
<<case 224>>
"Life is a big cock, and you gotta suck it to survive." - Suck "It Up" Masters
<<case 225>>
"When you're stuck in a closed space, you'll realize that humans are just animals with a bit more fucking intelligence." - Animal "Instinct" Johnson
<<case 226>>
"When you're running out of food, even a cockroach starts to look like a gourmet fucking meal." - Gourmet "Cockroach" Bryant
<<case 227>>
"I never let my survival gear get in the way of my love life. That's why I always keep a condom in my first aid kit." - Bear "Bare Necessities" Grylls
<<case 228>>
"When the going gets tough, the tough get naked and conserve body heat." - Chuck "Naked" Norris
<<case 229>>
"You can't spell «survival» without «u» and «i» – as in «urine» and «infection»". - Les "Pee-Drinker" Stroud
<<case 230>>
"The only thing better than a multi-tool is a multi-tool with a built-in bottle opener." - Tim "Tool Time" Allen
<<case 231>>
"In a survival situation, always keep your priorities straight: shelter, water, fire, and of course, a good stiff drink." - Ernest "Booze Cruise" Hemingway
<<case 232>>
"Survival is all about making the best of what you've got. Even if it's just duct tape and a prayer." - MacGyver "Duck Tape" Anderson
<<case 233>>
"When it comes to survival, there's no such thing as too much duct tape. It's like the force – it has a light side and a dark side, and it binds the universe together." - Han "Duct Tape" Solo
<<case 234>>
"One man's trash is another man's treasure – especially when you're scavenging for supplies." - Oscar "Trash Picker" the Grouch
<<case 235>>
"When the world ends, the only thing that will matter is how many rolls of toilet paper you have left." - Howard "Bathroom Reader" Hughes
<<case 236>>
"When the grid goes down, the only thing you'll have left is your wits, your skills, and your collection of vintage pornography." - Randy "Dirty Magazines" Savage
<<case 237>>
"When you're lost at sea, the most important thing to remember is to never go down with the ship. Unless, of course, you're on the Titanic – then it's every man for himself." - Jack "King of the World" Dawson
<<case 238>>
"The only thing better than a swiss army knife is a swiss army knife with a corkscrew." - James "Shaken, Not Stirred" Bond
<<case 239>>
"When it comes to survival, the only thing that matters is how many calories you can consume before the other guy does." - Augustus "Calorie Counter" Gloop
<<case 240>>
"In the apocalypse, the only thing that will save you is a good sense of direction and a map of all the hidden underground bunkers." - Indiana "Map Reader" Jones
<<case 241>>
"When you're lost in the desert, the only thing that matters is how many gallons of water you can carry and how good you are at distilling your own urine." - Lawrence "Desert Rat" of Arabia
<<case 242>>
"The key to surviving a nuclear holocaust is knowing how to build a fallout shelter out of old refrigerator boxes and duct tape." - Doc "Radiation" Brown
<<case 243>>
"In the wild, the most important thing to remember is to never, ever eat the yellow snow." - Frosty Snowman
<<case 244>>
"In the wild, it's kill or be killed. But in this shithole, it's fuck or be fucked." - Rambo "Tool Time" Stallone
<<case 245>>
"The key to survival is adaptability. Like being able to deepthroat when the situation calls for it." - Lara "Lick It" Croft
<<case 246>>
"Never underestimate the power of a good fuck. It can keep you warm in the coldest of nights." - Jack "Hand Solo" Bauer
<<case 247>>
"The most important thing in a survival kit is a sturdy tent. For all those lonely nights when you need to pitch a tent." - Edward "Tent Peg" Abbey
<<case 248>>
"The only thing worse than being lost in the wilderness is being lost in the wilderness with a boner." - Davy "Wood" Crockett
<<case 249>>
"The most important survival skill is being able to start a fire. Preferably in your pants." - John "Flint" Rambo
<<case 250>>
"In a survival situation, you gotta be willing to do anything to stay warm. Even if that means snuggling with a grizzly." - Jon "Bear Hug" Krakaue
<<case 251>>
"The only thing more important than finding food in the wild is finding a good place to jack off." - Jeremiah "Peach Fuzz" Johnson
<<case 252>>
"In a survival situation, you gotta be willing to do anything for a meal. Even if that means licking the MRE packet." - Guy "Slop Sucker" Fieri
<<case 253>>
"Survival is all about making the most of what you have. Like using a pinecone as a dildo." - John "Longwood" Muir
<</switch>>
/* Подготовка игровых параметров
_____________________________________________________ */
<<set
$useFood = 50; /* уменьшение голода от еды */
$useWater = 50; /* уменьшение жажды от воды */
$useMedkit = 50; /* повышение здоровья от аптечки */
$useShockBat = 25; /* повышение шанса от шоковой биты */
$upHungerThirst = 20; /* увелич-е голода\жажды (Girl-квесты) 20*/
$damageParasite = 30; /* дамаг от паразита (Parasite-квесты) 30*/
$damageMonster = 30; /* дамаг от монстра (Monster-квесты) 30*/
$damageHunger = 10; /* дамаг от голода (в начале дня) 10 */
$damageThirst = 20; /* дамаг от жажды (в начале дня) 20 */
$winSurvivors = 3; /* награда - химикаты (Survivors-квесты) */
$winParasite = 3; /* награда - химикаты (Parasite-квесты) */
$winItem = random(3,3); /* награда - количество предметов (Item-квесты) */
$winGirl = random(3,3); /* награда - количество предметов (Girl-квесты) */
$winMonster = random(3,3); /* награда - количество предметов (Monster-квесты) */
>>
/* Настройка квестов
_____________________________________________________ */
<<set
/* типы квестов и кол-во задач в них */
_q = {Survivors: 20, Item: 20, Girl: 20, Parasite: 20, Monster: 20};
$q = {}; /* объект с настройками квестов */
$q.types = []; /* все типы квестов */
$q.tasks = []; /* последовательность ежедневных задач */
$q.day = 0; /* день когда квест выполнен */
>>
/* заполняем массив с типами квестов и определяем у каких квестов больше задач */
<<set _qMax = 0; >>
<<for _type, _questsTotal range _q>>
<<run $q.types.push(_type); >>
<<if _qMax < _questsTotal >><<set _qMax = _questsTotal;>><</if>>
<</for>>
/* заполняем типы квестов номерами задач */
<<for _type range $q.types>>
<<if _q[_type] >0 >>
<<set $q[_type] = [];>>
<<for _i=1; _i<=_q[_type]; _i++>><<run $q[_type].push(_i); >><</for>>
<</if>>
<</for>>
/* заполняем последовательность задач массивами с типами задач */
<<for _i = 0; _i < _qMax; _i++>>
<<set $q.tasks[_i] = [];>>
<<for _type range $q.types>>
<<if _q[_type] >0 >>
<<run $q.tasks[_i].push(_type);>>
<<set _q[_type]--;>>
<</if>>
<</for>>
<</for>>
/* избавляемся от повторяемости в последовательности массивов типов задач */
<<for _i = 1; _i < _qMax; _i++>>
<<if $q.tasks[_i].length >1 >>
<<run $q.tasks[_i].shuffle();>>
<<if $q.tasks[_i-1].last() == $q.tasks[_i].first() >>
<<set _task = $q.tasks[_i].shift();>>
<<run $q.tasks[_i].push(_task);>>
<</if>>
<</if>>
<</for>>
/* получаем один массив с последовательностью не повторяющихся вподряд задач */
<<set $q.tasks = $q.tasks.flat();>>
/* Добавление химикатов
_____________________________________________________ */
<<if $t.additionalChemicals == 1>>
<<set $chemicals = 50; >> /* если есть код */
<<else>>
<<set $chemicals = 10; >> /* если нет кода */
<</if>>
/* Игровые дни и фон
_____________________________________________________ */
/* определяем первый и последний игровой день */
<<set $day = 1; $dayLast = $q.tasks.length+1;>>
/* бэкграунд локации */
<<set $bg = '<style>body {background-image:url(bg/'+$locationChosen+'.jpg);}</style>';>>
$bg