<div class="conversation">
<p>
If you are 18 years or older then have fun and enjoy this game if not, close it immediately.
This story contains or may contain in the future: rape, gender bender, transformation, sexual violence,
</p>
**work in progress
[[changelog]]
** Starting Gender?
[[Boy start|Male office]]
[[Grill start|GRadventure start]] - Note this path is "finished" at the end of the first chapter. I intend to come back to this later, but as per patreon poll I am focusing on art and main story.
[[Girl start|Gadventure start]]
Skip chapter 1 (May cause confusion as older chapters stories are updated):
[[chapter 1 skip]]
<p>
<h3>New Player Information</h3>
Arousal is increased by 1 per action. If you are completely naked, it adds another 5 arousal per action.
Don't let your arousal completely fill up or something bad may happen.
<img class="passage-image" src="demongodsassets/img/lustcrest/100.png" style="max-width:30%;">
</p>
<<set $outfit.accessory to "none">>
</div>You - General Info
<<set $genderstart to "">>
<<set $gender to "female">>
<<set $hair to "black">>
<<set $name to "">>
<<set $race to "Human">>
<<set $ears to false>>
<<set $sexcount to 0>>
<<set $maxarousal to 100>>
<<set $energy to 100>>
<<set $maxenergy to 100>>
<<set $arousalmod to 0>> - goes up or down based on what you're wearing / certain actions
<<set $days to 0>> number of days since acquiring your first home
<<set $daycounter to 7>> this will increase by 7 everytime tax day comes.
/* consider adding a variable for being famous at the brothel getting you special clients in future update */
<<set $blackpoolopinion to 0>>
<<set $slutfame to 0>>
<<set $currentlocation to "earth">>
<<set $locationmarker to "">>
/* -------------- gear + slot 1 + p.stats = current stats in statsmath widget, placed within passage header ---------------------- */
<<set $lust to 0>>
<<set $arousal to 0>>
<<set $p to {
lvl: 1,
hp: 100,
mp: 15,
maxhp: 100,
maxmp: 15,
melee: 13,
magic: 13,
pdef: 4,
mdef: 4,
charm: 13,
critrt: 0,
acceptance: 0,
charmcrit: 0,
}>>
<<set $outfitStats to {
none: {tier: 0, melee: 0, magic: 0, pdef: 0, mdef: 0, charm: 0, critrt: 0},
revealingdress: {tier: 1, melee: 0, magic: 0, pdef: 1, mdef: 2, charm: 2, critrt: 0},
jeans: {tier: 1, melee: 2, magic: 0, pdef: 2, mdef: 1, charm: 0, critrt: 0},
alluringdress: {tier: 2, melee: 0, magic: 3, pdef: 3, mdef: 3, charm: 2, critrt: 0},
rags: {tier: 1, melee: 0, magic: 0, pdef: 2, mdef: 1, charm: -2, critrt: 0},
goldenware: {tier: 4, melee: 4, magic: 0, pdef: 23, mdef: 20, charm: 1, critrt: 2},
tentacle: {tier: 4, melee: -10, magic: 0, pdef: 14, mdef: 16, charm: 30, critrt: 1},
adventurerdress: {tier: 3, melee: 3, magic: 3, pdef: 11, mdef: 13, charm: 0, critrt: 0}
}>>
<<set $accessoryStats to {
none: {melee: 0, magic: 0, pdef: 0, mdef: 0, charm: 0, critrt: 0}
}>>
<<set $currentstats to {
melee: 0,
magic: 0,
pdef: 0,
mdef: 0,
charm: 0,
critrt: 0,
}>>
/* --------------------------------------------------------------------- */
Enemy Stats
<<set $e to {
name: '',
type: '',
lvl: 0,
hp: 0,
melee: 0,
magic: 0,
pdef: 0,
mdef: 0,
res: 0,
reshp: 0,
critrt: 0,
weakness: '',
eleresist: '',
}>>
/* res is charm resist, reshp is amount of resistance until you win, critrt is crit chance */
Inventory
<<set $inv to {
cum: 0,
money: 0,
toy: false,
cumvial: 0,
}>>
<<set $cumstorage to 0>>
spells (we'll start with only 3 for forest, add more content later)
<<set $spells to {
claws: 1,
swap: false,
transform: false,
growth: false,
illusion: false,
fire: 0,
ice: 0,
wind: 0,
water: 0,
thunder: 0,
seduction: false,
aura: 0,
}>>
swap - temporarily swap bodies
transform - transorm target into something (tentacles?)
growth - target grows a cock
illusion - Must have to prevent bad end after wings grow if you leave
aura - public sex?
may add defense boost, enemy resist lower, atk boost, etc.
/* spell costs */
<<set $spellCosts = {
"illusion": 10,
"fire": 10,
"ice": 10,
"wind": 10,
"water": 10,
"thunder": 10,
"seduction": 30
}>>
/* spell tomes to learn spells */
Spell Tomes:
<<set $tome to {
swap: false,
transform: false,
growth: false,
illusion: false,
fire: false,
ice: false,
wind: false,
water: false,
thunder: false,
}>>
<<set $read to {
swap: 0,
transform: 0,
growth: 0,
illusion: 0,
fire: 0,
ice: 0,
wind: 0,
water: 0,
thunder: 0,
}>>
Maps
<<set $maps to {
blackpool1: true,
blackpool2: false,
blackpool3: false,
forest1: false,
forest2: false,
forest3: false,
}>>
Unlocked Locations (visited):
<<set $unlocked to {
forest1: false,
forest2: false,
forest3: false,
forestdungeon: false,
mountains_day: false,
mountains_night: false,
silentcity: false,
}>>
Mountains explore
<<set $undiscoveredPaths = []>>
forest events completed
<<set $events to {
forest1d2: false,
forest1e2: false,
}>>
Battle variables:
<<set $currentatk to "">>
<<set $enemyatk to "">>
set current attack and enemy (attack or magic) on page where you choose your attack.
Set attack widgets on next page. Go back to attack choice page.
Physical Upgrades
<<set $tail to false>>/*walking around naked or bottomless will result in bad end. Being stripped in public will also result in bad end, unless you have illusion spells*/
<<set $wings to false>> /* Automatically grow wings at a certain level. Will result in a bad end if you don't get the illusion spell to hide your wings*/
<<set $horns to false>>Same as wings
<<set $eyes to false>>
Progression required events
<<set $metbeforecity to false>> met Rhelyla before first city visit
<<set $brotheljob to false>> - will change to true after job interview
<<set $guardpermission to false>> /* guard approval to leave town */
<<set $townkillcount to 0>>/*everytime you accidentally kill someone, this goes up*/
<<set $alraunespared to 0>>
<<set $alrauneevent to false>>
<<set $alspecial to false>>
<<set $gatequest to false>>
<<set $taverndecision to false>>
<<set $tentaclepatmeet to false>>
<<set $alrauneally to false>>
<<set $ogreriddle to 0>>
<<set $riddle to ''>>
<<set $marketvisited to false>>
<<set $cleanstatue to 0>>
<<set $boss1attempt to 0>>
/* chapter 2 */
<<set $rhelylanote to false>>
<<set $charmtraining to 0>>
<<set $spidersilk to false>>
<<set $home to "blackpool">>
<<set $eyescenePlayed to false>>
<<set $arachnally to false>>
/* relationships */
<<set $rhelylarel to 30>>
<<set $azraelrel to 0>>
<<set $arachnajournals = [false, false, false, false, false, false, false, false, false]>> /* sets up arachna journals */
Regular events
<<set $taxman to 0>> Amount taxed every 5 days
<<set $taxmanmet to 0>>will be 1 if you've met
<<set $taxday to 0>>
<<set $hungerres to false>> /* will be unable to lower hunger after first masturbation until level up or sex*/
<<set $BPsuspicion to 0>> /* if this reaches 100, bad end */
<<set $rhelylaquestions to false>>
<<set $azraelmet to 0>>
<<set $bookladymet to false>>
<<set $dryadalive to true>>
<<set $dryadally to false>>
<<set $eiracharm to 0>>
Others
<<set $friend2 to "Emily">>
<<set $friend1 to "James">>
<<set $boss1alive to true>>
<<set $boss2alive to true>>
<<set $boss3alive to true>>
<<set $boss4alive to true>>
<<set $boss5alive to true>>
<<set $boss6alive to true>>
<<set $forest1minialive to true>>
<<set $alive to {
rhelyla: true,
azrael: true,
eira: true,
booklady: true,
friend1: true,
friend2: true,
garret: true,
jared: true,
seraphina: true,
silas: true,
arabella: true,
elyria: true,
}>>
<<set $arabellastone to true>>
shop and wardrobe
<<set $wardrobe to {
outfit: ['none', 'jeans',],
accessory: ['none',],
}>>
<<set $outfit to {
outfit: 'jeans',
accessory: 'none'
}>>
<<set $preset1 to {
outfit: 'none',
accessory: 'none'
}>>
<<set $preset2 to {
outfit: 'none',
accessory: 'none'
}>>
<<set $preset3 to {
outfit: 'none',
accessory: 'none'
}>>
/*end shop and wardrobe */
/* ------- One time use variables: ------- */
<<set $arousalcost to 400>>
<<set $energycost to 400>>
<<set $auracost to 500>>
<<set $mountainsDay = {
paths: [false, false, false, false, false, false],
healingVialChance: 10,
battleChance: 40,
discoverChance: 25,
randomEventChance: 25
}>>
Breast sizes
<<set $breastsize = ["small", "medium", "large"]>>
Patron?
<<set $patronversion to true>>
$name
<<headshot>>
<<acceptance>>
Level: $p.lvl
HP: $p.hp / $p.maxhp
MP: $p.mp / $p.maxmp
Lust (exp): $lust / 1000
Copper: $inv.money
Cum: $inv.cum
Day: $days
Energy: $energy / $maxenergy
<<lustcrest>>
[[stats]]
[[notebook]]
[[changelog]]
<<nobr>><div id="patreon-link">
<a href="https://www.patreon.com/daemonden" target="_blank"><img class="passage-image" src="demongodsassets/img/patreon.png" style="width:45px;"></a>
</div>
<<wallpaper>><</nobr>><div class="conversation">
You:
<<clothes>>
Outfit: $outfit.outfit
Race: $race
<<if $gender is "female">>
breast size: $breasts
<</if>>
Accessory: $outfit.accessory
<details>
<summary style="color:#8282f3;">Basic Stats</summary>
Level: $p.lvl
HP: $p.hp / $p.maxhp
MP: $p.mp / $p.maxmp
Melee: $p.melee | After gear boosts: $currentstats.melee
Magic: $p.magic | After gear boosts: $currentstats.magic
Physical Defense: $p.pdef | After gear boosts: $currentstats.pdef
Magical Defense: $p.mdef | After gear boosts: $currentstats.mdef
Charm: $p.charm | After gear boosts: $currentstats.charm
Crit Rate: $p.critrt | After gear boosts: $currentstats.critrt
</details>
<details>
<summary style="color:#8282f3;"><b>Lust</b>: $lust</summary>
This is your exp. You level up everytime this hits 1000.
You can only gain lust from tainted semen, which can be acquired from monsters. There is a small chance that humans could be slightly tainted.
</details>
<b>Hunger</b>: $arousal - Something bad may happen if this hits $maxarousal
<details>
<summary style="color:#8282f3;">Inventory</summary>
vials: $inv.cumvial
Money: $inv.money
Cum: $inv.cum
</details>
<details>
<summary style="color:#8282f3;">Spells:</summary>
<b>Sexual Healing</b>: No matter what kind of violence you receive that would result in pain or even death, as long as it is sexual in nature you will instantly recover.
<b>Sympathetic Orgasms</b>: Selfish lover? Not anymore. You experience their pleasure on top of your own.
<<nobr>>
<<if $spells.swap is true>>
Swap Magic<br>
<</if>>
<<if $spells.transformation is true>>
Transformation Magic<br>
<</if>>
<<if $spells.growth is true>>
Growth Magic<br>
<</if>>
<<if $spells.illusion is true>>
Illusion Magic<br>
<</if>>
<<if $spells.fire gte 1>>
Fire Magic level $spells.fire<br>
<</if>>
<<if $spells.ice gte 1>>
Ice Magic level $spells.ice<br>
<</if>>
<<if $spells.wind gte 1>>
Wind Magic level $spells.wind<br>
<</if>>
<<if $spells.water gte 1>>
Water Magic level $spells.water<br>
<</if>>
<<if $spells.thunder gte 1>>
Thunder Magic level $spells.thunder<br>
<</if>>
<</nobr>>
</details>
<<back>>
</div><div class="conversation">
Ver 0.4
Note: This update was massive. I don't want to set false expectations that every update will be this large, but I wanted to finish several things in this update, especially some story elements to try to keep the game making sense, especially as I change things (this is why some of the girl start path and slut path is/was messed up). I pretty much worked on this non-stop all month, so if there are bugs please be gentle and let me know. I'll fix any game breaking ones ASAP, minor ones I'll address in the follow-up update! (I will be out of town for 1 week after this release, but I'll bring my laptop and work on it when I can, I have discord on my phone so I'll constantly check the #bugs section).
A couple things I was hoping to add but ran out of time for, these should be present in the next update:
1. Updating female slut path to make more sense. Female slut path was made by copying most of the male and female virgin paths, which caused some consistency issues as I missed fixing parts. I intend to go back and fix these. Most of the female virgin path has been fixed in this update.
2. I am going to add a lewd scene when you first reach the forest to explain why your personality drastically changes (unless you chose slut) when you charm an enemy. Originally it was kind of a non-canon game mechanic but I've chosen to add an explanation. I had considered locking the charm button behind your characters acceptance of their situation, but since that could mess up player builds I've changed my mind.
New Content:
<ul>
<li>completely revamped battle system and removed some limitations I previously had when wanting to add new spells / enemies / etc. This means I can now add spells that effect battle in various ways other than just hurting the enemy. <span style="text-decoration: line-through;">(for now this is for the mountains region only, I intend to go back and redo the forest area a bit too but since that will probably be an entire update on it's own, I'm waiting on this)</span> Edit: Had to do the forest too as it messed up game balance among other things. Would have preferred to focus on adding more content but it needed to be done.</li>
<li>Adjusted how spells work</li>
<li>Added Illusion and seduction magic to battle</li>
<li>New enemies! (yaaaay) </li>
<li>new enemies means...New scenes!</li>
<li>More effort was placed into the writing of these scenes to make them less generic than the forest action scenes. However this also means that I'm only writing one scene per enemy, rather than writing variations for each spell / etc. This means you may come across scenes where you use magic that you haven't unlocked yet. </li>
<li>updated the UI (again)</li>
<li>armors now have tiers (mostly for me so I can decide how many stats to add to an armor). A higher tier armor has a larger pool of points to go towards stats. Tier's work in multiples of 5. Tier 1 armor is intended for level 1 - 5 characters, tier 2 is intended for level 6 - 10. However it is possible to obtain higher tier armor early. (If you obtain Goldenware early, you may miss out on some scenes).</li>
<li>Finished current waitress content</li>
<li>various images have been added or replaced on old content</li>
<li>new spells have been added to prepare for future content</li>
<li>Several new passages have been added. </li>
<li>Lots of updates to chapter 1 story, some of which was changed to work better with chapter 2.</li>
<li>wrote in a new optional ability that is unlocked after a certain scene, but I don't want to give too much away regarding this as it changes the story a bit, so I'll keep it vague. </li>
<li>New (extremely powerful) outfit to be found in the mountains! (patrons only)</li>
<li>Added outfit descriptions in the wardrobe</li>
<li>Added a notebook, you can find current objectives as well as some extra information here</li>
<li>Removed acceptance from your stats and replaced it with a small dialogue under your image</li>
<li>Shrunk all images, but made them expandable if you hover over them (mobile players will be unaffected), this should help prevent players from having to scroll down as much</li>
<li>After Allying with the dryad, you now receive boosts from any alraune you meet</li>
<li>new scenes if you return to melek taus after being defeated</li>
<li>Did you know Melek Taus is a lovesick puppy?</li>
<li>Added a skip chapter 1 feature, as there are things I've changed in chapter 1 this might cause some small confusion for the story. However I will likely continue improving and changing aspects of the story as we continue.</li>
<li>All enemies have portraits, I'm actually really happy I managed to get these done in time. Will be updating some later, though such as the bandits.</li>
<li>Finished mountains part 1! I will need to go back and make some edits and add a couple things I had planned to add originally, but this ordinarily should have been split into two updates. I worked nonstop on this update all month, I hope you guys like it!</li>
</ul>
Fixed:
<ul>
<li>If your slutfame in town goes above 100, there was a bug where you could no longer get customers. This has been fixed.</li>
<li>If you failed to pay taxes you would get stuck in a loop.</li>
<li>Significantly increased rewards for winning a battle</li>
<li>Moved several buttons into the container for better visibility</li>
<li>changed a bit of text the first time you visit the bookstore</li>
<li>made it a little easier to hit enemies in the forest so they don't dodge so often</li>
<li>drastically increased starting health to make enemy encounters less of a grind.</li>
<li>Enemies and player have higher attack damage and lower defense. - This works for the most part, but may need to start boosting defense a bit. For now this makes armor very important</li>
<li>fixed tax loop bug</li>
<li>Fixed a bug where if you saved 5 or more alraunes, the dryad wouldn't show up. But she would if you killed them. </li>
<li>Fixed images no longer showing up after making the alraunes your ally</li>
<li>rearranged some stuff in the caption menu</li>
<li>Walking through the forest again and again was a pain, you no longer need wings to take a shortcut</li>
<li>Fixed a bug where if you lost against melek taus you would be unable to re-challenge him</li>
<li>Male and female start office quiz questions have been re-written and are funnier (I hope) and it's a bit more obvious what stats are affected by your choices</li>
<li>Female virgin path has been largely rewritten to fix a lot of consistency issues</li>
<li>Fixed players able to meet Eira too early</li>
<li>Fixed a bug in the bookstore where you would meet the owner and Azrael at the same time</li>
<li>Fixed players able to meet Eira too early</li>
</ul>
Changelog
Ver 0.39
New content:
<ul>
<li>Reviewed and re-wrote some of the opening scenes</li>
<li>New scenes with rhelyla added, available after Melek Taus is dead</li>
<li>New scenes in the bookstore, available after Melek Taus is dead </li>
<li>added an 'ending' for grill route after reaching melek taus. This is intended to be temporary as I focus on the main story.</li>
<li>2 new armors added, one of which you can currently purchase it for a high price. Or use another method...</li>
<li>New scenes with the tailor (with art!)</li>
<li>Added Dryad fight, She is no longer at a fixed position and will appear after certain events, added scene for defeating her Note: due to these changes, you will be unable to see this scene without starting the game over.</li>
<li>Added images / stats for outfits at the tailor so you can preview them before purchasing</li>
<li>replaced images for your waitress at the tavern</li>
<li>Added a few images to the brothel</li>
<li>Added images, including different hair colors for when you wake up with a tail and wings</li>
<li>added images for alraune sex scenes</li>
<li>added images for squik sex scenes</li>
<li>added image for goblin soldier scene </li>
<li>added images for slime scenes</li>
<li>added image for melek taus sex scene</li>
<li>added images and two new outfits at the tailor</li>
<li>added images for scene with pat in your room (patron only)</li>
<li>Bonus: This was actually intended for the next version, but I don't know how to work/life balance:
To keep up appearances, you need to order food (no punishment for ignoring this). Upon doing so, you'll get to know the waitress. New tavern scenes!</li>
</ul>
Fixed:
<ul>
<li>Rewrote a portion of the brothel scenes / Not sure what happened here. It looks like I deleted a portion of this at some point by mistake. Also updated it a bit as it was still from my original version of the game.</li>
<li>When leaving your room, if you have illusion the text now changes from "tucking your ears behind your hair"</li>
<li>Updated text when going west from Forest 3- A1</li>
<li>rewrote some early text I was unsatisfied with
fixed a bug where the "not enough energy" message would repeat if you had multiple tomes and no energy.</li>
<li>altered various text that would be repetitive upon visiting your completed tome collection</li>
<li>Fixed incorrect image path for bandit headshot for optional bandit fight</li>
<li>Fixed a "bug" (ok I just forgot) where your race doesn't change</li>
<li>Fixed a bug regarding the taxman not showing up again after you refuse to pay him once</li>
<li>Fixed a bug where the tentacle image was being displayed instead of alraune's vines when charmed</li>
<li>Fixed a bug where you didn't raise your hidden stat (acceptance) when you did anything sexual in the forest. Acceptance raises how easy it is to do sexual actions or work at the brothel. A minor stat which will be irrelevant in future chapters.</li>
<li>rebalanced player level progression</li>
<li>rebalanced enemy stats</li>
<li>rebalanced outfit stats</li>
<li>updated enemy encounters: Forest 1 is more likely to give enemies level 1, with a smaller chance for level 2 and a low chance for level 3 enemies. Forest 2 and 3 have been similarly updated. </li>
<li>updated text when charming an enemy from arousal resilience to mental resistance. </li>
<li>Your arousal no longer goes up during battle</li>
<li>successfully charming an enemy now resets arousal</li>
<li>rebalanced and simplified code for outfit + character stats (this might require you to restart the game, but it may work by clicking the "update" option under changelog)</li>
<li>fixed a couple improperly sized images</li>
</ul>
Ver 0.38
New:
<ul>
<li>headshots now display ears / horns</li>
<li>multiple outfits (none in shop yet)</li>
<li>scenes based on whether or not you're wearing clothes / have an aura / wearing a certain outfit</li>
<li>you can now purchase hair color potions at the market</li>
<li>some images have been updated to reflect breast size - canceled and removed (might redo in the future, but too much image editing for now due to ears, horns, hair color)</li>
<li>your outfits now have their own stats</li>
<li>Several images have been updated with better quality</li>
<li>many characters have either gotten new portraits or have finally received their portraits (I've been working on this since before the first update)</li>
<li>Rhelyla is now an oriental inspired demon (succubus), as I originally envisioned her</li>
<li>MC art has been completely updated in almost all scenes / portraits / headshots</li>
<li>added enemy portraits</li>
<li>If you fail to pay weekly taxes, you're now forced to work in a stall next to the brothel (new gloryhole scene)</li>
<li>added image to status page if you're nude</li>
<li>If you're nude, or have an aura skill you can get propositioned for sex in town (currently does nothing). Need to have a high level of acceptance.</li>
<li>When in your wardrobe, added a section so you can preview your outfit + stats</li>
<li>Aura has been added as a skill. Will change some conversations in the future, will also mean you're more noticeable in town. Could be a double edged sword. </li>
<li>Public Sex has been added (part of Aura skill)</li>
<li>Several new brothel scenes (1 new sexual scene)</li>
<li>new shops</li>
<li>82 new images and an additional 50+ variations (same image with some changes) images added! I've been working on these for about 3 months, so I'm happy to drop a very large batch all at once.</li>
</ul>
Fixed:
<ul>
<li>Various typos</li>
<li>retrieving jeans from wardrobe is now fixed</li>
<li>leave town, fast travel to forest 3 has been fixed</li>
<li>Copper and cum gain have been adjusted. (Thanks Stadler!)</li>
<li>Rewrote portions of the male opening. I didn't like how quickly the main character would just go from being a guy to sucking monster cock with no explanation as to why.</li>
<li>It is no longer an instant game over when you wander around town with horns / tail. However, you still need to worry about rousing townsfolk suspicion. </li>
<li>re-worked brothel + rewards</li>
</ul>
Ver 0.36
This was intended as a bug update, but I ended up adding a lot of content that I had originally planned for my next update. I figured as an apology for the bugs you guys have experienced so far, I'd release it early. You may still see some broken images, these are intentional and will be fixed in my next update. My next update will be art focused, with some content. Additionally planned is the resolution size of the images for web players to improve load times and bandwidth for those who experienced slow loading.
<ul>
<li>Updated more scenes for players playing the grill path. Note: Most regular scenes will be the same, I will only be changing the story scenes for the grill (for now at least)</li>
<li>added a missing passage if you failed/refused to pay your taxes </li>
<li>Fixed an inconsequential error that happens when villagers are too suspicious of you, (didn't really matter since it's game over) </li>
<li>Fixed new body parts growing occasionally not displaying when leveling up, wings no longer need illusion magic as they're now retractable. However illusion magic is still needed for tail/horn. </li>
<li>Fixed some large gaps in UI</li>
<li>Upon testing my own game on mobile, I realized that some buttons were difficult or annoying to press. Made the buttons larger and more comfortable for mobile players. Still working on a better more permanent fix.</li>
<li>Removed repeatable guard tower event</li>
<li>Fixed conversation so Garret is no longer guarding the gate and simulataneously in the guard tower sleeping. </li>
<li>Fixed optional boss having Friend 2's character portrait. </li>
<li>Found and fixed a bug if you kill the optional boss in forest1 with a melee attack, you don't get the ice tome. </li>
<li>Modified spells, Grill can no longer learn any spells other than fire, illusion, and a couple others that aren't yet implimented. They're just not interested. (Grill does start with Fire 1 and Fire 2) </li>
<li>Fixed cumvials so they appropriately give you 50% of your maxhp, not 50% of your current hp. </li>
<li>Fixed going south from Forest 2, H1 </li>
<li>Fully tested multiple directions on all maps. Should have no issues. </li>
<li>Fixed never ending battles in Forest 3 </li>
<li>Forest 3, A6 flipped West and North so North is on top. </li>
<li>Added a scene with a statue to the forest</li>
<li>Added a scene where you kill or spare alraunes</li>
<li>Added a several scenes to the tavern. Can't do anything yet, these are just for pleasure or lore. </li>
<li>added a couple bards to the tavern. </li>
<li>added town fast travel to places you've been</li>
<li>added content to forest 2 and forest 3</li>
<li>added a dress</li>
<li>changed some questions and answers at the beginning of the game (male/female)</li>
<li>Some images have been updated/ added. Most will be added next update.</li>
</ul>
<<back>>
</div><details>Map</details>
<summary>
<<if $maps.blackpool1 is true>>
<a href="demongodsassets/maps/blackpool1.png">Click here for the map of Blackpool Lvl 1</a>
<</if>>
<<if $maps.blackpool2 is true>>
<a href="demongodsassets/maps/blackpool2.png">Click here for the map of Blackpool Lvl 2</a>
<</if>>
<<if $maps.blackpool3 is true>>
<a href="demongodsassets/maps/blackpool3.png">Click here for the map of Blackpool Lvl 3</a>
<</if>>
<<if $maps.forest1 is true>>
<a href="demongodsassets/maps/forest1.png">Click here for the map of Forest Lvl 1</a>
<</if>>
<<if $maps.forest2 is true>>
<a href="demongodsassets/maps/forest2.png">Click here for the map of Forest Lvl 2</a>
<</if>>
<<if $maps.forest3 is true>>
<a href="demongodsassets/maps/forest3.png">Click here for the map of Forest Lvl 3</a>
<</if>>
</summary>
<details>
<summary>Click here to expand your clothes wardrobe</summary>
Outfits:
$wardrobe.outfit
Accessories:
$wardrobe.accessory
</details>
<<run Engine.backward()>>
<<back>><<nobr>>
<<if $lust >= 1000 or $arousal >= 25>>
<div class="conversation" style="width:20%;">
<<if $lust >= 1000>><h3>I'm pretty full, I should sleep.</h3>
<</if>>
<<if $arousal lt 0>><<set $arousal to 0>><</if>>
/* a message warning you that you're getting hungry */
<<if $arousal >= $maxarousal>>
<<set $arousal to $maxarousal>>
<<goto "hunger">>
<<elseif $arousal >= "75">><h3>I'm getting dangerously hungry</h3> <br>
<<elseif $arousal >= "50">><h3>I'm pretty hungry...</h3> <br>
<<elseif $arousal >= "25">><h3>I'm starting to feel a bit peckish</h3> <br>
<</if>>
</div>
<</if>>
/* Increases arousal per page */
<<set $arousal to $arousal + 1>>
<<if $outfit.outfit is "none">>
<<set $arousal to $arousal + 4>>
<</if>>
/* current stats */
<<statsmath>>
<<if $energy lte 0>>
<<set $energy to $maxenergy>>
<<goto "energy">>
<</if>>
<<if $outfit.outfit is "tentacle">>
<<set $arousal to Math.round(0.92 * $maxarousal)>>
<</if>>
<</nobr>><<widget 'clothing'>>
<<set _item to _args[0]>>
<<set _price to _args[1]>>
<<set _slot to _args[2]>>
<<capture _item _price _slot>>
<<if !(wardrobe(_item, _slot))>>
_item : $<<= _price>>.00 <<if $inv.money > _price>>
<<link 'buy' 'Tailor'>> <<run $wardrobe[_slot].push(_item)>><<set $inv.money to $inv.money - _price>> <</link>>
<<else>> not enough money <</if>>
<</if>>
<</capture>>
<</widget>><div class="conversation">
<p>
As the sun began to set on a typical Saturday evening, you found yourself slumped on the couch, controller in hand, and a sense of anticipation coursing through your veins. After all, it had been weeks since you and your two closest friends had the chance to sit down and enjoy some video games together.
You were all in your late twenties, and like so many others, you struggled to balance the demands of work and the desire for a social life. Your job left you feeling overworked and underpaid, and scheduling hangouts with your buddies became a logistical challenge. But tonight, you had managed to clear your schedules, determined to unwind and have some fun.
As the clock ticked closer to the appointed time, you could feel your excitement growing. You had stocked up on snacks and drinks, and smash bros was already loaded up and ready to go. You were eager to escape the stresses of the real world and dive headfirst into a digital adventure, where anything was possible and the only limit was your imagination.
</p>
Your friends:
(male) <<textbox "$friend1" "James">>
(female) <<textbox "$friend2" "Emily">>
Continue to [[Saturday]]
</div>
<div class="conversation">
<<nobr>>
<<set $gender to "none">>
<<set $hair to "grill">>
<<set $genderstart to "grill">>
<<set $outfit.outfit to "none">>
<<set $p.acceptance to 100>>
<<set $breasts to "small">>
<<set $spells.fire += 2>>
<</nobr>>
<p><img class="passage-image" src="demongodsassets/people/fullbody/you/grill.png" >
You are a Jynx Grills SMART1000F - 30" Freestanding Smart Grill worth $7,600.
You can do everything. You make low, slow cooks and you smoke very easy. Your temperature takes 1/5 the time of a normal grill to get to max temperature. You require about 1/3rd the charcoal of a traditional grill for the same flavor. You also have an app!
You're not just a grill, you're a quantam leap forward for stuff people generally use grills for. The days of a person having to walk into their house with black hands from adding charcoal are over!
Your owner cooks smoked pork spare ribs, and country-style prok ribs, beef ribs, and your favorite... Wieners!
You just love when these Wieners get inside you and get all warm.
As you sit in the garage, you can feel the anticipation building inside of you. It's the same feeling you get every time your owner, Steve, takes you out of storage. You know what's coming tomorrow - grilling season is finally here!
You can't wait to feel the heat of the flames again, to sizzle and char the meat to perfection. And you know Steve is just as excited as you are. He's been talking about it nonstop, making all sorts of puns about hot dogs and burgers. You've lost count of how many times he's said something like,
</p>
<div class='row left'>
<div class='left-msg'>Steve<hr> I can't wait to grill some franks and beans!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/you/male.png">
</div>
</div>
<p>or
</p>
<div class='row left'>
<div class='left-msg'>Steve<hr> I'm going to cook up a storm tomorrow!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/you/male.png">
</div>
</div>
<p>But you have a feeling tomorrow is going to be extra special. Steve invited his friends Emily and James over, and you can already hear the laughter and conversation flowing. It's going to be a great day. You just know it. The only thing left to do now is wait for morning to arrive. You'll be ready. As the grill, you are eager to get cooking and serving up some delicious meals for your owner and his friends. The weather is warm and the sun is shining, it's the perfect day for a barbecue. You just hope Steve remembers to oil you up before you get started. You can't wait to see what kind of tasty treats he has in store tomorrow. Until then, You'll just have to keep dreaming of all the juicy burgers and sizzling hot dogs that are to come.
</p>
[[tomorrow]]
</div><<set $hair to "black">>
<div class="conversation">
<p>
<img class="passage-image" src="demongodsassets/img/apt/office.jfif" class="passage-image">
You're at another work event at your companies office. Usually you guys work from home, but for some reason they force you guys to come into the office for team building events. Sure, you show up to all the invites that involve free food, but that's different. Here you have to pretend to care about all the morale building stuff they do. Team Lead dyed her hair green because your team managed to hit all their goals?
...yaaay. As the team lead started passing out the packets for the colors test, you rolled your eyes. You doubt you'll ever enjoy these cheesy team building exercises, it's like when a company claims "we're all a family here". Yet it's easy for them to say when they're the boss. The company organizes those super-exciting team-building events that everyone just can't wait to attend? Nothing brings us "family" members together more than a day of forced fun and awkward icebreakers. And when they make decisions that directly impact us, they always have our best interests at heart, right? I mean, who needs dental care anyway? American dental procedures are just a few thousand dollars without insurance, so it's not like it's a big deal or anything. After all, we're one big, happy family looking out for each other, aren't we?
You put your thoughts and frustrations aside and listen to the instructions. Across the table, your colleague Sarah was practically jumping for joy about the test. She loved personality quizzes, and it wasn't uncommon she'd tell you what type of hamburger you were based on some stupid unrelated questions.
Whatever, you'll just do your best to rush through the questions like usual. Will you actually read them this time, or will you just pick randomly?
</p>
A surprise attack disrupts your quest. How do you react?
a) I charge into battle, my anger fueling my strikes.
b) I manipulate the enemy into finishing my quest
c) I calmly assess the situation and adapt my strategy.
d) BIG STICK SOLVE PROBLEM
<<listbox "_colors" autoselect>>
<<option 'a'>>
<<option 'b'>>
<<option 'c'>>
<<option 'd'>>
<</listbox>>
You face a mysterious and ancient puzzle to unlock a hidden treasure. How do you approach it?
a) BIG STICK SOLVE PROBLEM
b) You kidding? I'm fantastic at puzzles!
c) I get distracted and give up, who cares about a stupid puzzle
d) I trick a scholar into doing the work for me
<<listbox "_colors2" autoselect>>
<<option 'a'>>
<<option 'b'>>
<<option 'c'>>
<<option 'd'>>
<</listbox>>
You must select an ally to join your party for a perilous quest. How do you choose?
a) WHOEVER HAVE BIG STICK
b) I carefully weigh my options and choose someone who brings balance to the team
c) I manipulate someone into joining
d) Why choose? Bring them all!
<<listbox "_colors3" autoselect>>
<<option 'a'>>
<<option 'b'>>
<<option 'c'>>
<<option 'd'>>
<</listbox>>
Your party faces a dangerous decision that could have dire consequences. How do you proceed?
a) I calculate the best course of action
b) I flirt with someone and use them as my meatshield
c) I convince my team to follow my plan, even if I don't have one
d) BIG RISK; JUST USE BIG STICK
<<listbox "_colors4" autoselect>>
<<option 'a'>>
<<option 'b'>>
<<option 'c'>>
<<option 'd'>>
<</listbox>>
You attend a grand ball in a royal court. How do you behave?
a) Noone will leave without knowing my name
b) I use party tricks
c) I look for the ones in charge and manipulate the conversation in my favor
d) I'm shy and wait for people to come up to me
<<listbox "_colors5" autoselect>>
<<option 'a'>>
<<option 'b'>>
<<option 'c'>>
<<option 'd'>>
<</listbox>>
How often do you sleep around?
a) I am a huge slut
b) I am a virgin
c) I have had sex, but not frequently
<<listbox "_colors6" autoselect>>
<<option 'a'>>
<<option 'b'>>
<<option 'c'>>
<</listbox>>
<div class='row right'>
<div class='right-msg'>What the fuck!?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Sarah<hr> Shhh!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/fnpc2.png">
</div>
</div>
<p>
What the fuck is with that 6th question? Are they serious!? Your team lead is giving you a cold stare across the room.
</p>
<div class='row right'>
<div class='right-msg'>Don't shush me, have you not read the 6th question?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Sarah<hr> I don't care, I think it's pretty funny. What, like you've never sucked a cock before?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/fnpc2.png">
</div>
</div>
<p>
Where the Hell did they get this quiz that took a complete 180?
</p>
<<link 'Confirm' 'type of girl'>>
<<if _colors is "a">>
<<set $p.magic -= 1>>
<<set $p.melee += 1>>
<<elseif _colors is "b">>
<<set $p.charm += 1>>
<<set $p.magic -= 1>>
<<elseif _colors is "c">>
<<set $p.charm -= 1>>
<<set $p.magic += 1>>
<<elseif _colors is "d">>
<<set $p.charm -= 1>>
<<set $p.melee += 1>>
<</if>>
<<if _colors2 is "a">>
<<set $p.melee += 1>>
<<set $p.magic -= 1>>
<<elseif _colors2 is "b">>
<<set $p.magic += 1>>
<<set $p.melee -= 1>>
<<elseif _colors2 is "c">>
<<set $p.melee += 1>>
<<set $p.charm -= 1>>
<<elseif _colors2 is "d">>
<<set $p.charm += 1>>
<<set $p.melee -= 1>>
<</if>>
<<if _colors3 is "a">>
<<set $p.melee += 1>>
<<set $p.mdef -= 1>>
<<elseif _colors3 is "b">>
<<set $p.mdef += 1>>
<<set $p.melee -= 1>>
<<elseif _colors3 is "c">>
<<set $p.charm += 1>>
<<set $p.pdef -= 1>>
<<elseif _colors3 is "d">>
<<set $p.pdef += 1>>
<<set $p.mdef -= 1>>
<</if>>
<<if _colors4 is "a">>
<<set $p.magic += 1>>
<<set $p.melee -= 1>>
<<elseif _colors4 is "b">>
<<set $p.charm += 1>>
<<set $p.magic -= 1>>
<<elseif _colors4 is "c">>
<<set $p.charm += 1>>
<<set $p.melee -= 1>>
<<elseif _colors4 is "d">>
<<set $p.melee += 1>>
<<set $p.charm -= 1>>
<</if>>
<<if _colors5 is "a">>
<<set $p.charm += 1>>
<<set $p.magic -= 1>>
<<elseif _colors5 is "b">>
<<set $p.magic += 1>>
<<set $p.charm -= 1>>
<<elseif _colors5 is "c">>
<<set $p.charm += 1>>
<<set $p.magic -= 1>>
<<elseif _colors5 is "d">>
<<set $p.magic += 1>>
<<set $p.charm -= 1>>
<</if>>
<<if _colors6 is "a">>
<<set $p.acceptance += 75>>
<<elseif _colors6 is "b">>
<<set $p.acceptance += 10>>
<<set $p.charm -= 1>>
<<elseif _colors6 is "c">>
<<set $p.acceptance += 30>>
<<set $p.magic -= 1>>
<</if>>
<</link>>
</div>
<<set $genderstart to "fem">>
<<set $gender to "female">>
<<set $hair to "black">>
<<set $outfit.outfit to "jeans">><div class="conversation">
<p>
You're elated to see $friend2 arrive early, the excitement building inside you as you greet her.
<img class="passage-image" src="demongodsassets/people/fullbody/emily.png">
<div class='row right'>
<div class='right-msg'>Hi $friend2! It's so good to see you, how have you been?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>$friend2<hr>I've been doing great! Just started a new job!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Congrats! What will you be doing?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
With a twinkle in her eye, $friend2's voice rises with excitement as she speaks
<div class='row left'>
<div class='left-msg'>$friend2<hr> Well... You know how it's always been my dream to make a metroidvania!?....
I'll be working as a junior developer for a game company!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
Overcome with genuine happiness for your friend, you give her a heartfelt congratulations, proud of her achievement.
[[Say something dirty]]
[[say something nice]]
</p>
</div>
<div class="conversation">
<div class='row right'>
<div class='right-msg'>Hey $friend2, I find your clothes very offensive. How about throwing them on my floor?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
<<if $p.charm >= "30">>
<p>$friend2's eyes open wide in shock. After an awkward silence. She licks her lips.
</p>
<div class='row left'>
<div class='left-msg'>$friend2<hr> You know, I didn't think a cheesy line like that would ever work for me. I bet you used cheats to raise your charm, didn't you? Well whatever, its working for me. $friend1 is always late, I'll bet we have some time to head to your room.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
[[room|friendsex]]
<<else>>
<p>You can see in her eyes that you made a mistake. $friend2 looks very upset.
<img class="passage-image" src="demongodsassets/img/apt/angry.png" >
</p>
<div class='row left'>
<div class='left-msg'>$friend2<hr> What are you talking about?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<p>Instead of a coy smile and fluttering eyelashes like you were expecting, her expression falls and shows hurt and she grabs her phone. No doubt she's texting $friend1 and telling him to hurry up.
</p>
<<set $arousal to $arousal + 5>>
<div class='row left'>
<div class='left-msg'>$friend2<hr> I thought we were just here to hang out and play games. I'm not interested in you, especially not if you think it's okay to hit on your friends like this.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<p>You felt a sinking sensation in your stomach as you realized the mistake you had made. You had crossed a line and hurt someone you cared about. You apologized profusely and begged for Emily's forgiveness, promising to be more mindful of her boundaries in the future. It was a hard lesson, but one you knew you needed to learn.</p>
<div class='row left'>
<div class='left-msg'>$friend2<hr> Look, lets just pretend it didn't happen, ok?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<p>After a bit of an awkward silence, $friend1 arrives.
</p>
[[arrives|friend arrives]]
<</if>>
</div>
<div class="conversation">
<p><img class="passage-image" src="demongodsassets/img/apt/sun.png" >
You look at your friend Emily and feel your heart race. You've always admired her from afar, but never had the courage to tell her. She's sitting in the sunlight streaming through the window, and you can't help but be struck by how radiant she looks.
You clear your throat and take a deep breath, steeling yourself.
</p>
<div class='row right'>
<div class='right-msg'>You know, $friend2. I've been meaning to say something for a while now.
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
<p>$friend2 glances at you, her eyes bright and curious.</p>
<div class='row left'>
<div class='left-msg'>$friend2<hr> What is it?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<p>You hesitate for a moment, trying to find the right words.</p>
<div class='row right'>
<div class='right-msg'>I just wanted to say that you look absolutely stunning today. The sunlight really brings out the beauty in you.
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
<p>Her cheeks turn a deep shade of pink, and she smiles shyly.
You're not brave enough to go any further. She softly responds
</p>
<div class='row left'>
<div class='left-msg'>$friend2<hr> Thank you, thats very kind of you to say. I appreciate it.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<p>You feel a sense of warmth spread through your chest, knowing that you've made her feel good about herself. Maybe, just maybe, this could be the start of something special.
</p>
[[friend arrives]]
</div>
<div class="conversation">
<p>You're just as surprised as she is that that line worked. I mean you did cheat, and raise your stats, but you didn't think it would actually work.
She grabs you by the wrist and leads you to the bedroom.
As you enter the room, she turns and faces you.
</p>
<p>You gulp, as she starts to undo your pants. She grabs your cock and begins to stroke it. Teasing the tip with her tongue. She puts her tongue on the base of your dick, and licks all the way to the tip before putting it in her mouth.
When she begins sucking, you already know you're not going to last long.
</p>
<p>You cum on her face, but before you can even apologize-
</p>
<div class='row left'>
<div class='left-msg'>$friend2<hr> I'm not done yet
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<p>She strips then sits on your bed, exposing herself to you.
</p>
<img class="passage-image" src="demongodsassets/sexscenes/emily/emilyexposed.png" >
<p>You don't think you ever felt yourself go hard this fast after cumming before.
After she lays down on the bed, you figure you'll return the favor. You begin by kissing her neck, then going lower and kissing her chest, tits, abdomen, until you finally reach her groin.
You lick and you suck lovingly on her folds. She grinds herself against your face.
</p>
<div class='row left'>
<div class='left-msg'>$friend2<hr>Stick it in already!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<p>You line yourself up with her andtrance and rub your dick against her folds a few times, she moans and pushes herself closer to you. Finally you plunge into the warmth inside, beginning slowly at first. Then picking up the pace as you start to pound her.
</p>
<div class='row left'>
<div class='left-msg'>$friend2<hr> Do it inside!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<p>A slave to her demands, you do as she asks.
Never was there a more beautiful creature than this woman with cum dripping down her face, and out of her cunt.
</p>
<img class="passage-image" src="demongodsassets/sexscenes/emily/emilydoggy.png" >
<div class='row left'>
<div class='left-msg'>$friend2<hr> Move, I need to clean up before $friend1 arrives!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<p>She runs off to the bathroom and you wait in the living room.
</p>
[[friend arrives]]
</div><div class="conversation">
<p><img class="passage-image" src="demongodsassets/people/fullbody/james.png" >
$friend1 arrives with the pizza, and you and $friend2 both welcome him with open arms.
</p>
<div class='row left'>
<div class='left-msg'>$friend1<hr> I brought the pizza! Sorry I couldn't wait, I'm starving!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/james.png">
</div>
</div>
<p>
You respond with a grin
</p>
<div class='row right'>
<div class='right-msg'>We were waiting on you, we nearly died of starvation!
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
<p><img class="passage-image" src="demongodsassets/img/games/games.png" >
With pizza in hand, you all settle in to play video games for the night. As the night wears on, the pizza box becomes emptier and the laughs become louder. You tease each other mercilessly and make dumb bets about who will win the next round.
Eventually, the time comes for you to say goodbye. You all hug and promise to do it again soon, but deep down you know that life will get in the way again.
As you get ready for bed, you can't help but feel grateful for these moments with your friends, even if they are too far and few between. You guys still have the rest of your lives together, you'll find more time to hang out.
</p>
[[strip naked and sleep]]
[[just sleep]]
</div>
<<nobr>><<set $arousal to $arousal + 5>>
<<set $outfit.outfit to "none">>
<<set $outfit.accessory to "none">>
<<set $wardrobe.outfit.delete("jeans")>>
<</nobr>>
<div class="conversation">
<p><img class="passage-image" src="demongodsassets/img/games/fire.png" >
The blaring sound of the fire alarm abruptly pulls you from your slumber. Panic sets in as you take in the thick smoke filling the air and the pungent smell of burning plastic. You know something is off, and it's not until you burst into the hallway that the harsh reality hits you like a ton of bricks. Your kitchen is engulfed in flames, and the fire is quickly spreading throughout your apartment.
Your heart races as you try to devise an escape plan, but your hopes are dashed as you spot the stairs - the only way out - already ablaze. Trapped on the seventh floor with no way down, you feel the heat intensifying and your skin beginning to blister. Your mind races with thoughts of regret as you realize your fate is sealed.
But as the fire rages on, you suddenly realize a new source of regret - you're completely naked. You curse your foolishness for not grabbing clothes before fleeing your apartment, feeling exposed and vulnerable. The pain becomes too much to bear, and you stand there helplessly as the flames continue to consume everything in sight.
In a moment of bleak humor, you manage to mutter to yourself
</p>
<div class='row right'>
<div class='right-msg'>Damn, I'm gonna die naked.
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
<p>
But as the darkness overtakes you, you realize that this isn't just about dying without clothes - it's about dying without being able to say goodbye to the people you love.
</p>
[[you wake up][$currentlocation to "none"]]
</div><div class="conversation">
<p><img class="passage-image" src="demongodsassets/img/games/fire.png" >
As you awake to the blaring sound of the fire alarm, your heart races with adrenaline as you immediately sense something is off. The acrid smell of smoke fills your nostrils, and a sense of panic begins to well up inside of you. You quickly rush out of your bedroom and into the hallway.
Thick smoke clouds your vision, and you can feel the intense heat of the flames coming from your kitchen. With a sense of urgency, you sprint out of your apartment, your feet pounding against the pavement as you race towards the stairs.
But as you make your way to the stairs, you see that they are already engulfed in flames. You're trapped on the seventh floor, with no way down. The heat is intense, and you feel your skin beginning to burn as the fire rages around you.
With no other options, you stand there helplessly as the flames continue to consume everything around you. Your last thoughts are of regret and despair as the pain becomes too much to bear. You know you're going to die, and all you can do is hope that it will be quick.
</p>
<div class='row right'>
<div class='right-msg'>Damn, I never thought it would end like this. I miss my friends...
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
[[you wake up][$currentlocation to "none"]]
</div>
<div class="conversation">
<p>As you open your eyes, you realize you're surrounded by darkness. The absence of light and sound is suffocating.
</p>
<div class='row right'>
<div class='right-msg'>Is this Heaven? Hell? Purgatory?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
<p>You try to move your arms, but they feel heavy and unresponsive. You're not even sure if you have arms or if they're just phantom limbs. The thought makes you chuckle bitterly. Phantom limbs. Cause you're dead.
</p>
<div class='row right'>
<div class='right-msg'>There's nothing here...
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
<p>Suddenly, a bright light appears before your eyes, blinding you momentarily. As your vision adjusts, you see a glowing sun looming before you.
<img class="passage-image" src="demongodsassets/people/fullbody/goddess.png" >
</p>
<div class='row left'>
<div class='left-msg'>Goddess<hr>You are in the realm of the gods, You have died, and I have brought you here to offer you a chance at rebirth.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<p>The voice is feminine and commanding, and you can feel its power radiating through you.</p>
<div class='row right'>
<div class='right-msg'>A chance at rebirth?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Goddess<hr>You will be reborn in a world of corruption, You are immune to this corruption, and it is your task to absorb and purify it from the Tainted, or destroy it with your own power. In return, you will be granted the opportunity to continue living.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>...What?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Do I get a choice? Can't I go back? I have people I care about.
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Goddess<hr>No.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<p>This is sounding strangely like one of those isekai anime...
</p>
<div class='row right'>
<div class='right-msg'>But if I complete this task, what's in it for me?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
<p>Although the chance to live again doesn't sound too unpleasant, You can't help but feel a sense of suspicion towards the Goddess. There's no such thing as free.
</p>
<div class='row left'>
<div class='left-msg'>Goddess<hr>The chance at another life.
The chance to avoid the infinite abyss of death
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Hold up. Are you really a Goddess?
If you're a God, are you seriously telling me there's no afterlife? What the shit!?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
<p>The Goddess ignores your question and continues.</p>
<div class='row left'>
<div class='left-msg'>Goddess<hr>I am a Goddess
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<p>Is it you, or did the unfeeling cold voice just sound offended?
</p>
<div class='row left'>
<div class='left-msg'>Goddess<hr>You are a means to an end, Your existence serves a purpose of creating balance. Whether you fulfill that purpose or not is of no concern to me.
You are here now, and you must fulfill your task or die trying. Go to the forest. Find the source of the corruption and destroy it. I will provide the tools for you to do so.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<p>Tools?
</p>
<p>
Tools? This Goddess seems to be taking a rather hands-off approach.
So now a literal Goddess is telling your life doesn't even matter. What a Bitch.
Talk about lack of empathy.
But then, what is the point of all this then? Why even bother bringing you back to life?
</p>
<div class='row right'>
<div class='right-msg'>Wow. Rude.
Ok, well how do I even-
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
<p>Suddenly, you feel your consciousness slipping away, but you feel compelled to have one last word.
</p>
<div class='row right'>
<div class='right-msg'>I was an Atheist!
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/male.png'">
</div>
</div>
<p>
You can't help but feel a sense of anger towards this being that is treating you like a pawn in a game.
As you slip away into unconsciousness, you make a vow to yourself that you will find a way to take control of your own destiny, no matter the cost.
</p>
[[Awaken in a brand new world][$currentlocation to "plains"]]
</div>
<<nobr>><<set $gender to "female">>
<<set $hair to "black">>
<<set $breasts to "small">>
<<set $hair to "black">>
<<set $race to "human?">>
<</nobr>>
<div class="conversation">
<p><<if $outfit.outfit is "jeans">><img class="passage-image" src="demongodsassets/you/clothes/jeans.png" >
<<else>>
<img class="passage-image" src="demongodsassets/img/plains/plains.png" >
<</if>>
As you slowly come to consciousness, you feel the cool grass beneath your body and the warm sun on your face. You try to sit up, but something feels different. You feel long hair tickling your back and shoulders, but you've always kept your hair short... Aside from that time you tried to join a metal band, but you were never very good at guitar. You also feel a weight on your chest, and as you lift your hand to investigate, you feel two unfamiliar mounds <<if $outfit.outfit is "jeans">>with very perky points poking through the thin fabric. Your hand goes to your crotch in a panic unzipping in a hurry and shoving your hand down your pants, confirming something is missing.<<else>>with very fleshy tiny bumps poking the palms of your hands. Your hand goes to your naked crotch in a panic, confirming something is missing. <</if>>
<div class='row right'>
<div class='right-msg'>What the fuck, I have boobs!?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
However that brief touch between your legs felt..interesting.
</p>
[[take in your surroundings]]
[[touch it some more][$p.acceptance += 1]]
</div><div class="conversation">
<<set $p.acceptance += 1>>
<p>Well it's a new body, why not experience it!? It may be a bit weird, but who wouldn't at least experiment in this situation?
You're alone, <<if $outfit.outfit is "none">>naked <</if>>and sitting in a grassy field. There's not a single soul in sight.
<<if $outfit.outfit is "jeans">>You start by removing your clothes in a hurry and then<<else>>You<</if>> start by grabbing your left breast with your left hand, and moving your right hand to your crotch. Rather than inserting right away, you took time to experience this electrical new feeling simply by caressing around your pussy lips. You then start gently rubbing your new slit. This is something new entirely. You begin to thrust your hips back and forth, moaning and squealing. You've never felt so free, and so happy.
<img class="passage-image" src="demongodsassets/you/scenes/grassyplain/plainsbate.png" >
You can feel your clitoris growing wetter, and you begin to touch it with your fingers. You keep playing with your breasts and pussy, but your attention keeps drifting back to your clitoris.
You wonder if it's possible to cum with your hands. You've never tried this before, but it seems like the logical next step. You move your left hand and place it over your clit. You then move your right hand down and insert two fingers into your pussy. A nagging feeling at the back of your mind tells you that this isn't how girls usually masturbate, but your body begs to differ. Maybe you're lucky?
You thrust, in and out, in and out. But while it feels amazing it's not quite hitting you right. You move your fingers back upwards and focus on rubbing your clit. Amazing. You begin to moan louder and louder, until finally you feel yourself reach orgasm. You scream, your whole body shaking, your eyes rolling back in your head. You collapse onto the ground, gasping for breath.
For your first female orgasm, that was amazing. Addicting even!
[[take in your surroundings]]
</p>
</div>
<div class="conversation">
<p>
<<if $outfit.outfit is "none">><img class="passage-image" src="demongodsassets/img/plains/surveynaked.png" >
<<else>><img class="passage-image" src="demongodsassets/img/plains/plainsjeans.png" >
<</if>>
You begin to consider your surroundings. You're in a pretty empty plain. You see some mountains in the distance in one direction, and though it's distant you think you see some what looks like a medieval town in the other direction.
</p>
<div class='row right'>
<div class='right-msg'>Based on what the white light said, it sounds like this isn't Earth.
...
So how the Hell am I supposed to absorb this corruption, or whatever?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row right'>
<div class='right-msg'>Maybe it's a nice relaxing spa that I can just lay down and absorb... Well enough dumb jokes, time to get a move on.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<if $outfit.outfit is "none">>
<div class='row right'>
<div class='right-msg'>Sure wish I had some clothes. What if I run into other humans, they'll think I'm some sort of deviant...
God this is embarrassing.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<</if>>
<p>As you prepare to step out into the world, you can't shake the feeling that something isn't quite right. You pause, trying to focus on the source of your discomfort, and that's when you realize it - you have an extra sense, a sixth sense, that wasn't there before. It's almost as if you can feel an invisible appendage emanating from your body, a feeling that becomes even more pronounced as you start to focus on it.
At first, you're not sure what to make of this new sensation. It's not like anything you've ever experienced before, and you don't know how to describe it to anyone else. But as you continue to focus on it, you begin to realize that it feels like a charm spell - something that allows you to imbue objects with magical energy.
And that's not all. As you delve deeper into this strange new power, you realize that you have more magic at your disposal than you ever imagined. It's like a well of power within you, waiting to be tapped and harnessed. You don't know how you know this, or why you're able to use it, but you're certain that it's there, waiting for you to use it to its full potential.
It seems that as long as its sexual, any pain you receive turns into pleasure. Additionally you can't die from it.
You shudder to think what might kill you during sex. Maybe a rapist? Ugh
...
...
...So why does that feel like it might turn you on?
No matter what your thoughts were, you need to continue. It's probably a good idea to start thinking up new names, or perhaps keep your old one.
</p>
[[head towards city][$currentlocation to "blackpoolgate"]]
[[head towards mountains][$currentlocation to "mountains_day"]]
</div>
<<set $randname to random(11)>>
<<if $randname is 0>><<set $defname to "Dhysienne">>
<<elseif $randname is 1>><<set $defname to "Aezsha">>
<<elseif $randname is 2>><<set $defname to "Rhellia">>
<<elseif $randname is 3>><<set $defname to "Qinelin">>
<<elseif $randname is 4>><<set $defname to "Elineli">>
<<elseif $randname is 5>><<set $defname to "Mezaela">>
<<elseif $randname is 6>><<set $defname to "Nessiana">>
<<elseif $randname is 7>><<set $defname to "Nessoris">>
<<elseif $randname is 8>><<set $defname to "Ohirvia">>
<<elseif $randname is 9>><<set $defname to "Fyseraela">>
<<elseif $randname is 10>><<set $defname to "Lynnelin">>
<<elseif $randname is 11>><<set $defname to "Vylarah">>
<</if>>
<div class="conversation">
<p> The walk is slow it doesn't help that you're barefoot, and your breasts keep bouncing. Thankfully they're pretty small so it's not too much to handle. You think back to girls you've known in the past complaining about large breasts. At the moment at least, you're pretty grateful to be small chested, of course you'd rather still have a normal male chest... And body for that matter.
The wind keeps annoyingly blowing black strands of hair into your eyes, but before you know it you've arrived at the city gates.
You arrive to see a guard eyeing you suspiciously.
<img class="passage-image" src="demongodsassets/people/fullbody/garret.png" >
</p>
<div class='row left'>
<div class='left-msg'>Garret<hr>Who are you<<if $outfit.outfit is "none">> and where are your clothes<</if>>?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I don't know I think I was attacked by bandits on the way here<<if $outfit.outfit is "none">>, they took them<</if>>.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Garret<hr><<if $outfit.outfit is "none">>They took them? <</if>>And left you alive? And you're coming from the South, I don't know of any bandit camps out that way.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
<p>The story you thought up on your way isn't working very well.
</p>
<div class='row right'>
<div class='right-msg'>Look, I'm not asking you to let me in, could I just please have <<if $outfit.outfit is "none">>something to wear and maybe <</if>>a bite to eat? I'm famished...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>Now seems like the best opportunity to try out your new magic. You cast Charm Level 1 on the guard.
The guard looks at you semi-vacantly. you can feel his eyes travel down to your <<if $outfit.outfit is "none">>naked <</if>>breasts, then continue downwards.
Suddenly you realize this might not have been a great idea. The guard drops his spear and starts walking towards you, while simultaneously dropping his pants.
Slightly impressed he didn't trip over his pants, your eyes are suddenly drawn to his dick in full view. You can feel a tingle in your lower regions and realize that you might be a little wet. You're not used to having a vagina and it honestly feels like you had an accident. You'd love to spend more time convincing yourself that you're not turned on, but the current scene demands your attention. What's worse, you can't take your eyes off of it. You were never into men, and when you accidentally saw another man naked at the gym, or in porn you were never interested. But now, against your wishes you can't look away. You're focused, and nothing else in the world matters. Right now, you want it. You NEED it. Your mouth starts to salivate like you haven't eaten in weeks and someone just threw a fresh cooked meal right in front of you.
He's already begun stroking it by the time he reaches you and forces a kiss on you.
A nagging feeling in your brain is telling you this is wrong, but you barely notice it. You need this mans cock, and he will give it to you. Eagerly you kiss him back, enjoying the taste of sweat and his smell.
</p>
<<set $p.acceptance += 1>>
<div class='row left'>
<div class='left-msg'>Jared<hr>Garret! What the Hell are you doing to the poor woman, what the fuck is wrong with you!?
Even if she's a bandit do you really think she could do much damage with that tiny body of hers?
I'm sorry Miss, my name is Jared and I'm the captain here
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<p><img class="passage-image" src="demongodsassets/people/fullbody/jared.png" >
As you come to your senses, you realize what just happened. Not only did you allow this, you WANTED it. It's like you had no control over your own lust! What's worse, as you watch him frantically put his pants back on, with a confused expression on his face, you can't help but continue staring at his crotch. You're sickened at your own thoughts and yet you STILL want it!? What the fuck is wrong with you, you even had a girlfriend in your past life!</p>
<div class='row right'>
<div class='right-msg'>Thank you for your help!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Jared<hr>I will deal with him soon, you have my word.
Could you please tell me who you are and why you're here?<<if $outfit.outfit is "none">> And what happened to your clothes?<</if>>
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<p>You realize no one would really believe your story that you're from another world, so you just make up the lamest excuse you can think of on the spot.
</p>
<div class='row right'>
<div class='right-msg'>I'm really sorry, I seem to have lost my memory. All I remember is being attacked over there, then waking up <<if $outfit.outfit is "none">>naked <</if>>in that field south of us.
I don't even remember my name...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Jared<hr>Sounds like the work of Gypsies if you ask me. Rotten Mystics.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<p>He spits.
</p>
<div class='row left'>
<div class='left-msg'>Jared<hr>It's odd for a girl as pretty as you to be wandering around with no guard. Judging from your skin, you don't look like a farmers daughter. I'd wager you were a nobles daughter, or maybe you belong to one of the pleasure houses. Lets get you inside and we'll check missing person reports. Though it's not uncommon for nobles to sell their daughters to pay debts, so we might have nothing. <<if $outfit.outfit is "none">>I'll also get you something to wear while we're at it<</if>>For now, what should I call you?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'><<textbox "$name" $defname>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Jared<hr>Aye then, Come along.
And welcome to Blackpool.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<p>You follow Jared to the Guard Tower. He steps away for a moment.
</p>
[[2 hours later][$currentlocation to "blackpool"]]
</div><div class="conversation">
<p>You begin your trek towards the mountain in the distance.
It starts to get dark and you realize you should probably find shelter.
You walk around the base of the first mountain you approached until you find a barely worn path. You begin your trek up that path until, in the distance you see a cave. You can't tell how big it is, but it's big enough to at least shelter you for the night. Unfortunately there is no clear path to the cave, so you'll have to climb through the bushes to get there.
You finally make it there, and as you enter the cave you see a door just inside.
<img class="passage-image" src="demongodsassets/img/backgrounds/cavedoor.png" >
That's certainly weird, but you aren't complaining. So you knock.
No response. Maybe it's abandoned?
<img class="passage-image" src="demongodsassets/img/backgrounds/cavebed.png" >
You enter inside, as soon as your eyes land on the bed you immediately jump on it and just pass out.
...
...
...
...
...
...
...
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Well, it's not often that people come to my home and offer themselves to me
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>You wake up feeling groggy and look at the source of the voice.
You see a gorgeous winged woman with horns.
<img class="passage-image" src="demongodsassets/people/fullbody/rhelyla.png" >
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>But I'm not really into women, so you need to get up.
And before I let you leave, you need to explain to me how you entered.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>Fuck! She must be the one who lives here!
</p>
<div class='row right'>
<div class='right-msg'>I...
I...
I'm sorry! I just came up here in search of shelter. I saw a cave, and then I saw a door! I knocked but no one answered so I thought maybe it was abandoned so as soon as I saw the bed I was so tired I just passed out!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You look around seeing that you clearly missed how much stuff was here. It's clear this place wasn't abandoned.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>You say you saw the door?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>Her face softens.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I see. You're one of us.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>You look at her confused.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Well, I can't have you staying here. This is my territory. Where are you trying to go?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I don't know.
I don't really remember anything, I don't even know where I am.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Well, I'd recommend you head towards the city north of here as a start.
However it's not a good idea to reveal what we are to humans. I'd recommend caution.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>That comment again...
</p>
<<if $outfit.outfit is "none">>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Most don't believe we exist, but some do and they can be a problem. Here, I've got some old clothes you can have.
By the way, my name is Rhelyla.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>She hands you some clothes to wear. They look very provocative, but...when the alternative is being completely nude...well they're better than nothing. You put them on.
You check yourself out in the mirror. You look beautiful.
<img class="passage-image" src="demongodsassets/you/clothes/nohorns/noears/black/revealingdress.png" >
You apologize once more, and thank her for her help, then you head towards the city.
</p>
<<set $outfit.outfit to "revealingdress">>
<<set $wardrobe.outfit.push("revealingdress")>>
<<else>>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Most don't believe we exist, but some do and they can be a problem.
By the way, my name is Rhelyla.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>You apologize once more, and thank her for her help, then you head towards the city. </p>
<</if>>
[[head towards city][$currentlocation to "blackpoolgate"]]
</div>
<<set $metbeforecity to true>>
<<set $metrhe to true>>
<div class="conversation">
<p>After the guard named Jared brings you to the guard tower, he <<if $outfit.outfit is "none">><<set $outfit.outfit to "rags">><<set $wardrobe.outfit.push("rags")>>gives you some rags to wear and <</if>>brings you some bread and heads out promising to return soon after checking missing person logs and reaching out to a couple families.
<<if $outfit.outfit is "rags">><img class="passage-image" src="demongodsassets/you/clothes/nohorns/noears/black/rags.png" >
<<elseif $outfit.outfit is "jeans">><img class="passage-image" src="demongodsassets/img/scenes/breadjeans.png" >
<<else>><img class="passage-image" src="demongodsassets/img/scenes/breaddress.png" >
<</if>>
You chew on the bread as you really were starving. But while there wasn't much to begin with, your hunger isn't even a little bit sated.
</p>
<div class='row left'>
<div class='left-msg'>Jared<hr> Well, good news and bad news.
The bad news is we weren't able to find anyone missing matching your description. We checked noble houses as well as the pleasure women working in the tavern. I suppose it's possible you were a peasants daughter, though that's hard to believe with your unnaturally good skin. But we have no way of reaching out to every peasant family. And... If you want my brutal honesty, lass. If you're from any family, noble or otherwise, and they haven't reported you missing. I'd wager there's a good reason you wouldn't wish to return to them.
That said, the good news is that I was able to negotiate for you to stay. From now on, unless you do remember anything, your name is $name.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<p>Well you knew no one would report you missing since you made that story up in a hurry, but it's good to know that someone else was able to fill in the gaps in your story.
</p>
<div class='row left'>
<div class='left-msg'>Jared<hr> Now you clearly haven't got a penny to your name, and we got no place to offer you. My wife would kill me if I brought you home and well...I don't recommend staying with Garret.
Here, this is some of my own money. 200 copper won't get you far, but you should be able to get a couple nights stay in an Inn while you figure stuff out. This should at least help prevent you from having to sell your body for a bite to eat and a place to sleep.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Wow, I don't know what to say. You've saved me in more ways than one. Thank you. Thank you so much. I promise I will pay you back one day!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Jared<hr> Aye lass. Just keep your head down and stay out of trouble. And I recommend you find a way to earn money fast and hire a guard. A woman with skin as fair as yours is likely to be kidnapped for ransom, or never seen again.
For now, head north and turn left when you see the market. If you keep going straight for a bit, you should run right into the Inn.
Once you've got some money, if you ask me most of our apothacaries are quacks. But maybe one of them can help you recover your memory.
I'm sorry we can't help you more, but if you remember anything else please stop by and we'll do what we can.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<p>You thank him one last time, as you head out and try and find this Inn.
</p>
[[enter the city for the first time]]
</div>
<div class="conversation">
<p>You enter the city for the first time, and it doesn't take you long before you're worried you're already lost. This place is huge! You turned left at what appeared to be a market, but you've been walking for a long time and you haven't run into anything that looked like an Inn.
Before you start second guessing yourself and turning back the way you came, you see your road coming to an end and the building at the end of the street does look large enough to have some rooms.
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/innkeeper.png" >
You walk up to the building, finally at an end to your long trek and see a man sweeping in front of the entrance. Before you get a chance to say a word he already opens his mouth.
<div class='row left'>
<div class='left-msg'>Innkeeper<hr>We're full.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/innkeeper.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oh... Um, I'm sorry. The guards directed me here and said I could find a safe place to sleep. Do you have anything to spare? I'll even take a closet!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Innkeeper<hr>You daft, lass? I said we're full. Bugger off.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/innkeeper.png">
</div>
</div>
He pauses looking you up, starting at your legs and moving upwards to your face.
<div class='row left'>
<div class='left-msg'>Innkeeper<hr>Hehe. I suppose I can make an exception if you're willing to make a deal.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/innkeeper.png">
</div>
</div>
He starts rubbing his crotch through his robe while looking at you.
Even without his rude hand motions, a monkey would understand the meaning behind those eyes.
You nearly agree without thinking, but catch yourself. Why can't you control your lust!? What kind of body did that Goddess give you, the body of a nympho!?
You haven't even been a woman for a full day and you're already getting a good idea of what the rest of your life will be like.
Fuck this world.
<div class='row right'>
<div class='right-msg'>Ew, what the Fuck is wrong with you!? Fucking pervert! Asshole!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Innkeeper<hr>Oi this lass got the mouth of a sailor! Hahaha.
That's only making me harder.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/innkeeper.png">
</div>
</div>
<p>You turn to leave, absolutely pissed and doing your best to ignore the lingering regret. The fuck are you supposed to do now?
</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Hey lady!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
You look at the source of the voice and see a somewhat disheveled, dirty man. He's clearly drunk.
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/creep.png" >
<div class='row right'>
<div class='right-msg'>Yes?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Stranger<hr>I got a place you can stay. I got food too! All it'll cost is 20 copper!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>How do I know you won't do anything shady?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Heheh. Lady I'm after your money, not your body. Though...
I'd be willing to make you the same offer as the owner of that Inn, heh.
But I'll warn you, I've only got 1 bed and I'm not giving you a discount for sleeping on the floor. So 20 copper, and you get a meal, a floor and I'll even throw in a blanket.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
Even if he has ulterior motives, you're no longer in a position to reject him. You're starving and you have nowhere else to go. At this point you'll cross that bridge when you come to it. Can you fight him off in this body? More to the point, you're starving and he's offering you food. It's like this body has never eaten a single bite of anything before, despite the bread you had earlier!
Well, the hunger is clouding your judgement. It's probably a bad idea, but you NEED food.
</p>
[[Accept his offer]]
</div>
<div class="conversation">
<p>Despite your misgivings, you followed the man. He had trouble walking in a straight line, and you started to worry if he even knew where he was going, or based on how your surroundings got increasingly seedy looking, he might be leading you into a trap.
</p>
<div class='row right'>
<div class='right-msg'>Are you sure we're going the right way?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>well if that was ever a classic line... You're definitely getting raped.
</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Calm yourself lass, I know these streets better than anyone.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
<p>Ready to run in an instant, you continue following. You even lend him a shoulder to lean on and stay balanced after you get tired of picking him up off the ground too many times.
After some time passes and you're beginning to wonder just how massive this town is, he finally announces you've arrived. It's a shack. If it can even be called that. It's a run-down wooden shed with gaps in the wood. Definitely no protection from the elements.
After he leads you inside, he puts on a fire and begins cooking something in a pot. Surprisingly, while he has looked at you more than once, and he's made embarrassing attempts to flirt with you. He's been a perfect gentleman.
</p>
<div class='row right'>
<div class='right-msg'>Just how big is this town anyways?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>He grabs something off one his table and hands it to you. It's a map! (You can check the map in your inventory in the stats menu).</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Here you go. This'll help you-
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
<p>He sets to work immediately, using a flint and steel to light a small fire in the corner of the hovel. The pot he sets upon it, is dented and blackened from frequent use. The smell emanating from it is not particularly enticing, mostly just the smell of boiling water and maybe some root vegetables.
<img class="passage-image" src="demongodsassets/img/scenes/blackpool/creepcook.png" >
You take in your surroundings, the hovel is a far cry from the apartment walls you were accustomed to. The wooden walls are rotting and the air thick with the stench of decay. The table is cluttered with remnants of past meals, the utensils caked with food residue. You can't help but wonder how the man manages to keep his tools clean in this primitive age, but your hunger overrides your concerns as your stomach growls in protest.</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Hungry, eh? Haha.
I'm pretty proud of this recipe, I'm a cook at one of the local taverns. Don't got no spices here at home, but can still make a damn good stew. Here, it's ready.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
<p>You've had better, but given your expectations of medieval food it isn't bad. You hear him talking, but you can't make out the words. It's not that you're drugged, it's that you're STILL starving. It's to the point where you can't focus on anything around you, and you continue absolutely devouring the food.
The more you eat, the hungrier you are. What is going on?
</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Damn, lass. I didn't expect you to eat the entire thing. I should have charged you more.
Ah well, it's nice to have some company for once.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
<p>Your eyes are unfocused and you barely comprehend someone is talking. Everything around you seems blurry and your hunger is overpowering.
</p>
<div class='row left'>
<div class='left-msg' style="color: transparent; text-shadow: 0 0 5px rgba(0,0,0,0.2);">Stranger<hr>Listen, I know I said you have to take the floor. But your skin looks way too smooth and I don't want you to wake up all bruised. You can take my bed until morning. Might be some fleas, but it's probably safer than the floor. And I...
Wait, what are you doing?
Lady, if you keep taking your clothes off you can't blame me for what happens next. I mean, if this is your way of thanking me I'd happily accept. You just...don't seem right. Are you ok?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
<p>You begin feeling dizzy, and pass out
</p>
[[lewd dream][$currentlocation to "earth"]]
</div>
<div class="conversation">
<p>You wake up.
The first thing you notice is that you feel amazing. The second is that you're not hungry anymore.
You look down at your body. Disappointed that it was just a dream and you're still a woman.
You think back on that dream you just had, it's memory already fading. You remember you were back in your old body, then the dream went weird.
Even weirder, at no point during the dream did you think anything was off when you stopped fucking and started getting fuck.
You touch your chest and notice it feels sticky. Suddenly you remember the previous night. You're now naked, sticky and you don't know where that man is. Tears begin to flood your eyes.
<img class="passage-image" src="demongodsassets/you/scenes/home/wakeupcovered.png" >
</p>
<div class='row right'>
<div class='right-msg'>That fucking asshole raped me!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You start gagging and can feel yourself ready to vomit, repulsed by what happened to you. You turn to vomit over the side of the bed when you see the man looking up at you with his wide open eyes.
Shrieking, you jump out of bed and run to the door, briefly stopping to realize you're still naked. You pause only for a second debating on what to do before you realize he's not chasing after you. You look back. The light is dim, but he's still laying there. Maybe he's asleep? Maybe he has nocturnal lagophthalmos, and sleeps with his eyes open.
You're shaking, but you slowly creep back over to him. The light is dim, so you move closer to get a better look...
<img class="passage-image" src="demongodsassets/you/scenes/home/corpse.png" >
You panic and fall flat on your ass. Laying on the floor is a husk of a man. His face contorted in eternal pleasure, his eyes white and unseeing. His cock stands at attention, but his body is cold and stiff.
</p>
<div class='row right'>
<div class='right-msg'>What the fuck? He died of a heart attack while raping me? Serves you right, asshole.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>Doubt creeps in your mind as you remember that dream and how real it felt. But you push it away.
However you're a new face in a medieval town where no one knows you with a dead body. Would anyone believe you if you said you had nothing to do with this? Do you have nothing to do with this? He was raping you, maybe you attacked him subconsciously. Though that look on his face makes it seem like he died happy.
It's not worth the risk. You need to dump the body somewhere. A quick glance outside and it's still dark. You could drag him to an ally somewhere and pretend you never met him.
Still shaking, you slip your clothes on your sticky body. You grab him and pull as hard as you can before realizing he's surprisingly light. Maybe this won't be so hard.
You open the door and look both ways, before continuing your dragging. Not quite sure yet where you're taking him, anywhere is better than next to you.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>You must have been hungry! Do you not know how to pace yourself, or did he deserve it?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I swear! I don't know what happened! He was like this when I woke up! I think he knocked me out and raped me! I swear I never touched him!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
<img class="passage-image" src="demongodsassets/people/rhelyla/town.png" >
You look towards the source of the voice and you spot <<if $metrhe is true>>Rhelyla, completely naked.<<else>>a completely naked woman.<</if>> What's more, she has long ears and horns. She's definitely not human. Your eyes are drawn to something white dripping from her body. You can smell it. Sweet, salty, savory.
You snap out of it and look back at her as she begins talking</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Shh, shh. Calm yourself sweetie. I can smell him on you. You sucked all of his vitality away. It looks like you lost control. Briefly describe what you remember.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>You explain how he offered you a place to stay, and you followed him back where he gave you food. You explain that you passed out while eating and the food may have been drugged.
She sighs.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>You really are new at this aren't you. I don't understand how you've never needed to feed until now, or if you have a mountain of corpses you keep waking up to.
The reason the food didn't sate your hunger is because human food does nothing for creatures like us. Even if it was drugged, it wouldn't have worked on you.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>What do you mean creatures like us? I don't have ears and horns like you do. I don't know what you are, but I'm human!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Check your ears sweetie. You may need to come visit me at my home for a longer explanation. But you are a succubus. Does that body not feel incredibly light to you? Do you not feel like you can run a marathon right now without breaking a sweat? You just sucked up every ounce of energy that man had and made it yours. You are much stronger than any mere human.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>You reach for your ears. They don't feel right. They're long!
She isn't making sense, but you also can't deny what she's saying. Despite your emotional state, physically you feel amazing.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>We cannot survive without the sustenance humans provide us with. If we go too long without it, we lose control and our instincts took over. This man never drugged you, you just weren't eating and when you failed to feed yourself, your body took action for you.
Before anyone comes by, we need to do something about this body. I will take care of it for you, but before I go. I recommend you come find me. For now, just tuck your ears in your hair so no one sees them. <<if $metrhe is true>>Come back to my place at the mountain south of this city.<<else>>Come to the mountains south of this city. Search the base for a cave, within that cave you'll find a door. Only Succubi can see it, you'll know it when you do.<</if>> Until then, I'll leave you with one last tip. Never wait until you're starving, or else you'll lose control and this will happen again. As you grow more powerful you can stave the hunger off longer, but for now you'll likely need to eat as often as a human. When feeding, never drink to the last drop.
Oh and, I can smell corruption on him. He was tainted. It shouldn't be enough to harm you since we have a natural resistance to it. But you need to learn to smell it ahead of time to prevent consuming too much and becoming another one of those mindless monsters.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>You're still processing everything she's said when she grabs the corpse from you, flaps her wings and begins flying away. Just in time too, as you hear some noises nearby.
But a Succubus? Did that shitty Goddess really turn you, not only into a woman, but into a creature that literally requires cum to survive!? She couldn't have made you an Incubus or literally anything else? Hell, even a human woman would have been better. At least you could have been a lesbian.
You need time to consider and process this and what this means for your future. Shivering, you return to the home of the man you accidentally killed.
</p>
[[taxman first]]
</div>
<div class="conversation">
<<nobr>>
<<statsmath>>
<<set $currentlocation to "blackpool1">>
<<set $currentposition to "home">>
<<if $days == $daycounter>>
<<set $daycounter to $days + 7>>
<<goto "taxday">>
<</if>>
<</nobr>>
<<nobr>>
<<statsmath>>
<<set $currentlocation to "shack">>
<<set $locationmarker to "home">>
<<set _vials to Number($inv.cumvial - 3)>>
<<if $inv.cumvial gt 3>>
You have more vials of cum than you can carry! You put _vials into your chest for safekeeping.<br>
<<set $storagevials += _vials>>
<<set $inv.cumvial -= _vials>>
<<elseif $inv.cumvial lt 3>>
<<set $storagevials += $inv.vials>>
<<set $inv.vials to 0>>
<<if $storagevials gte 3>>
<<set $storagevials -= 3>>
<<set $inv.vials to 3>>
<<else>>
<<set $inv.vials to $storagevials>>
<<set $storagevials to 0>>
<</if>>
<</if>>
<<if $days == $daycounter>>
<<set $daycounter to $daycounter + 7>>
<<goto "taxday">>
<</if>>
<<set $p.hp to $p.maxhp>>
<</nobr>>
<<switch random(2)>>
<<case 1>>
<p>In your tiny, dilapidated home, you are immediately hit with the smell of mold and decay. The single room is cluttered and cramped, with a small cot pushed against one wall and a rickety table and chair taking up most of the space. The thatched roof is full of holes, letting in streams of sunlight that highlight the dust and grime covering everything. Despite its shortcomings, you know this small shack is the only place you have to call home. Maybe you should get a cave in the mountains like Rhelyla.
</p>
<<case 2>>
<p>Your eyes show you your run-down home, grimacing at the sight that greets you. The single room is cramped and cluttered, with a small cot pushed against one wall and a rickety table and chair taking up most of the space. The thatched roof is full of holes, letting in streams of sunlight that highlight the dust and grime covering everything. Despite the unsanitary conditions, you know you have no other choice but to call this dingy shack home.
</p>
<<default>>
<p>As you enter your cramped, dilapidated home, you can't help but feel a sense of despair wash over you. The single room is cluttered and cramped, with a small cot pushed against one wall and a rickety table and chair taking up most of the space. The thatched roof is full of holes, letting in streams of sunlight that highlight the dust and grime covering everything. Despite the shabby surroundings, you know you have nowhere else to go.
</p>
<</switch>>
<<if $boss1alive is false>>
<<if $rhelylanote is false>>
<<set $rhelylanote to true>>
<p>
As you stand in your tiny home, you notice a note on your floor. It looks like it was slipped under your door. Who could it be?
You lean over and pick it up off the floor. After unfolding it, you read the words.
</p>
<div class="conversation">
<p>
Hello $name,
I want to invite you back to my brothel for some extra training. It's a shame that no one has taught you anything about your body, or it's needs. This may be presumptuous of me, but I thought I might fill that role for you. I've noticed you've been avoiding using your charm magic. I can predict the reason is likely that you're having difficulty controlling it. For that reason, I'd like to offer to train you to control it so you can make better use of it... And so that you don't accidentally expose us.
Please come to the brothel at your earliest convenience.
Rhelyla must have noticed you've been avoiding charming patrons, or perhaps she knew about the incident with the guard. It would be nice if you could control your power without going overboard. You could perhaps manipulate that tailor into giving you that armor he refuses to sell you. You figure you'll decide later.
</p>
</div>
<</if>>
<</if>>
<<if $dressdays is $days>>
You hear a knock at your door. You open it to see a long box with ribbons. You quickly bring it inside.
Your dress has arrived, you carefully put it in your wardrobe!
<<set $wardrobe.outfit.push("partydress")>> (dress will be revealed in the next update)
A note from Azrael is attached to the box. You can now enter the upper district, but must be wearing this dress for the guard to let you through.
<h3>This is the end of the main story for now, please wait until next update for more!</h3>
<</if>>
[[wardrobe]]
[[sleep]]
[[masturbate]]
<<if $outfit.outfit == "none">>
<<if $p.acceptance lt 75 and $p.lvl lt 8>>
You're not ready to be leaving the house nude
<<else>>
[[town][$currentlocation to "blackpool", $locationmarker to "b5"]]
<</if>>
<<else>>
<<if $spells.illusion is true>>
Cast illusion on yourself and head to [[town][$currentlocation to "blackpool", $locationmarker to "b5"]]
<<else>>
Tuck your ears behind your hair and head to [[town][$currentlocation to "blackpool", $locationmarker to "b5"]]
<</if>>
<</if>>
<<if $tome.swap is true or $tome.transform is true or $tome.illusion is true or $tome.fire is true or $tome.ice is true or $tome.wind is true or $tome.water is true or $tome.thunder is true>>
<p>Or you can spend time learning magic by reading a tome!</p>
[[tomes]]
<<else>>
<p>Your shelf is looking pretty empty. Maybe you should look for some books?</p>
<</if>>
</div>
<<if $undiscoveredPaths is undefined>>
<<set $undiscoveredPaths to []>>
<</if>><div class="conversation">
<<set $arousal to 0>>
<<set $inv.cum to $inv.cum + 25>>
<<set $lust += 500>>
<p>You're in your room again sitting on the edge of your bed, back in your house. You're naked and your cock is in it's rightful place.
A woman was there with you. Not just any woman, it was the body you were stuck in. It must have all been a dream. You probably went to a bar, drank too much, brought this woman home and enjoyed each others company. Then had some wild dreams about her.
You don't know her name, and it's too late to care. But seeing your dream body from an outside perspective, it's pretty obvious that any man would react like the ones in your dream did. She's absolutely gorgeous, naked, and clearly coming onto you as she rubs your cock.
As she inserts your cock in her mouth, you throw your head back and let out a light moan. She continues working on you until you cum. She gulps it down greedily before looking at you and pushing you onto your back. You briefly notice a delicious salty taste in your mouth, but you're eager to let her have her way. You're not too experienced with dominant women but it's not like you have any interest in stopping her and you're not sure she'd stop if you tried. It was like you're a meal and she's ravenous.
<img class="passage-image" src="demongodsassets/sexscenes/dreams/lewd2.png" >
She positions herself above you, spreads herself open giving you a good look at her gaping vagina.
Then she slowly lowers herself onto your cock, impaling herself with a gutteral moan.
She continues pumping herself up and down on you, looking down at you with glowing red eyes. Her horns are on the sides of her head and curled backwards along her scalp, you didn't notice them previously, but for some reason it doesn't seem odd and you can't really seem to care about them at the moment.
<img class="passage-image" src="demongodsassets/sexscenes/dreams/lewd1.png" >
You feel yourself burst, and weirdly feel two orgasms at the same time. One major and one micro, both centered around your penis. This is amazing, no one has ever fucked you like her! Even though you both just came, for some reason you're not going soft yet as you can still feel her pleasuring you.
She pumps you, in and out, in and out and you have to reach up and grab your chest as it's bouncing around too much.
You start squeezing the mounds on your chest without realizing, reveling in the pleasure.
You feel yourself below squeezing and gribbing something long and hard. As you feel an explosion of pleasure from another orgasm, you feel yourself fill someone up and at the same time you feel yourself being filled with liquids dripping out of you.
You look down, and the woman is pounding your vagina. You grab her by the hair and pull her towards your nipples which she starts sucking on, eliciting yet another moan from you as you involuntarily squeeze your vagina around her cock.
She pulls out of you and commands you to get on your knees, you comply and she sprays your face with cum.
This time you push her onto her back, lining her member up with your slit, and penetrate yourself.
You guys continue fucking until you're completely drenched in semen, with it practically flowing out of your cunt.
</p>
500 exp gained!
[[next morning][$currentlocation to "shack"]]
</div>
<<set $ears to true>><div class="conversation">
<p>You awaken to an assertive pounding on your door. At first groggy, you open your eyes wide after remembering the events that happened earlier.
</p>
<div class='row right'>
<div class='right-msg'>No no no... Did I get caught? what should I do? I can cast Charm, but that will just make another man try and rape me. I don't ever want to see another one of those things as long as I live. What should I do...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>As you're panicking, the pounding happens again.
</p>
<div class='row left'>
<div class='left-msg'>Taxman<hr>Come on Mirko, I know you're in there. Open up!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/tax.png" >
You crack open the door
</p>
<div class='row right'>
<div class='right-msg'>I'm sorry, it's just me here...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Taxman<hr>Who are you? Did Mirko buy a whore? If he can afford a whore, he can afford to pay his taxes and back taxes. I don't care who, but someone needs to pay.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I'm not a whore... Taxes? I was just offered somewhere to sleep. When I woke up, he was already gone.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Taxman<hr>Ha. He knew I was coming. I'll bet he set you up. Listen, I don't care if you're his whore, some poor woman he tricked into marrying, or the new owner. He owes quite a sum. Today was the deadline, if I don't have the money I have to drag someone off for forced labor. It's either you or him. It doesn't matter who, but it's my job. Sorry lady.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I don't...I just arrived in this city. How much does he owe?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Taxman<hr>500 copper.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Fuck.. I... I have 200 copper? I was planning to look for work today. What kind of forced labor?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You could cast charm. But it hasn't even been a day since the previous events, you're not ready for another man to attack you, or the mental trauma that will come when you inevitably enjoy it.
The Taxman sighs.
</p>
<div class='row left'>
<div class='left-msg'>Taxman<hr>Sorry lady. He really pulled a fast one on you. He knew what was coming, so I doubt he'll be returning to this place. Probably found some other hole to crawl in.
Unless you're a whore, you wouldn't like the kind of work they'd put you to. I'd wager even most whores have higher standards.
Give me the 200 copper you have now, and I'll go back and tell them he was gone. Probably ran. They'll put out a search for him and his punishment will be worse. As for you, if you plan on staying here, then I recommend you find a way to earn money, fast. I return every 7 days to collect. The amount due is 200 copper.
...
I'd also recommend you find yourself a good husband who lives somewhere safer than this. A girl as pretty as you won't survive long in this part of town.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<p>Gross!
You pay the man and thank him for his generosity as he turns and leaves.
It just keeps getting worse. First you were raped. Then you find out you're not even human, and you're required to continue surviving off men. You're straight! Or you were anyways. Now you'd probably be considered a lesbian. But your body refuses to agree with you, and even the smell of the man who just left was making you wet. You could SMELL his arousal as he kept staring at your body, and you kept feeling a tingling sensation in your crotch. You reach down and touch yourself. Your fingers come back wet.
</p>
<div class='row right'>
<div class='right-msg'>What is wrong with me!? <<if $genderstart == "male">>I'm not into men!<<elseif $genderstart == "fem">>I'm not usually this horny!<</if>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You lay back down for a quick nap before you figure out the rest of your day.</p>
[[Dream|dream1sttime]]
</div>
<<nobr>>
<<widget 'lustcrest'>>
<<if $arousal lte (0.05 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/5.png" >
<<elseif $arousal lte (0.1 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/10.png" >
<<elseif $arousal lte (0.15 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/15.png" >
<<elseif $arousal lte (0.2 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/20.png" >
<<elseif $arousal lte (0.25 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/25.png" >
<<elseif $arousal lte (0.3 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/30.png" >
<<elseif $arousal lte (0.35 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/35.png" >
<<elseif $arousal lte (0.4 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/40.png" >
<<elseif $arousal lte (0.45 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/45.png" >
<<elseif $arousal lte (0.5 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/50.png" >
<<elseif $arousal lte (0.55 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/55.png" >
<<elseif $arousal lte (0.6 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/60.png" >
<<elseif $arousal lte (0.65 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/65.png" >
<<elseif $arousal lte (0.7 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/70.png" >
<<elseif $arousal lte (0.75 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/75.png" >
<<elseif $arousal lte (0.8 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/80.png" >
<<elseif $arousal lte (0.85 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/85.png" >
<<elseif $arousal lte (0.9 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/90.png" >
<<elseif $arousal lte (0.95 * $maxarousal)>><img class="lustcrest" src="demongodsassets/img/lustcrest/95.png" >
<<else>><img class="lustcrest" src="demongodsassets/img/lustcrest/100.png" >
<</if>>
<</widget>>
<</nobr>><<widget 'playerattack'>>
<<nobr>>
<<set $critchance to random(1, 100)>>
<<set $hitsuccess to random(1, 100)>>
<<if $currentatk == "fire" or $currentatk == "ice" or $currentatk == "wind" or $currentatk == "water" or $currentatk == "thunder">>
<<set $hitchance to ($p.lvl - $e.lvl) * 10 + 80>>
<<set $attacksuccess to ($hitchance gte $hitsuccess)>>
<<run console.log('hitchance: ' + $hitchance + ' hitsuccess: ' + $hitsuccess)>>
<<if $attacksuccess is true>>
<<if $currentstats.magic gt $e.mdef>>
<<set $edamage to $currentstats.magic - $e.mdef>>
<<set $spellLevel to $spells[$currentatk]>>
<<set $damageMultiplier to 1 + ($spellLevel - 1) * 0.5>>
<<if $currentatk == $e.weakness>>
<<set $edamage to $edamage * $damageMultiplier * 1.2>>
<<elseif $currentatk == $e.eleresist>>
<<set $edamage to $edamage * $damageMultiplier * 0.8>>
<<else>>
<<set $edamage to $edamage * $damageMultiplier>>
<</if>>
<<if $critchance lte $p.critrt>>
<<set $edamage to $edamage * 2>>
<<switch random(2)>>
<<case 1>>Critical hit! $currentatk magic engulfs $e.name, causing $edamage points of damage as they writhe in agony.
<<case 2>>Critical hit! A wave of $currentatk magic crashes into $e.name, causing $edamage points of damage!
<<default>>Critical hit! Your $currentatk magic pierces the enemy, causing $e.name to take $edamage points of damage!
<</switch>>
<<else>>
<<switch random(2)>>
<<case 1>>$currentatk magic engulfs $e.name, causing $edamage points of damage as they writhe in agony.
<<case 2>>A wave of $currentatk magic crashes into $e.name, causing $edamage points of damage!
<<default>>Your $currentatk magic pierces the enemy, causing $e.name to take $edamage points of damage!
<</switch>>
<</if>>
<<set $e.hp to ($e.hp - $edamage)>>
<<else>>
$currentatk magic engulfs $e.name, unfortunately it shrugs off the attack as it's magic defense is too high!
<</if>>
<<else>>
Your $currentatk spell missed!
<</if>>
<</if>>
<<if $currentatk == "melee">>
<<set $hitchance to ($p.lvl - $e.lvl) * 10 + 80>>
<<set $attacksuccess to ($hitchance gte $hitsuccess)>>
<<run console.log('hitchance: ' + $hitchance + ' hitsuccess: ' + $hitsuccess)>>
<<if $attacksuccess is true>>
<<if $currentstats.melee gt $e.pdef>>
<<set $edamage to $currentstats.melee - $e.pdef>>
<<if $currentatk == $e.weakness>>
<<set $edamage to $edamage * 1.2>>
<<elseif $currentatk == $e.eleresist>>
<<set $edamage to $edamage * 0.8>>
<</if>>
<<if $critchance lte $p.critrt>>
<<set $edamage to $edamage * 2>>
<<switch random(2)>>
<<case 1>>Critical hit! You unleash a fierce barrage of claw strikes on $e.name, dealing $edamage points of physical damage!
<<case 2>>Critical hit! With a flurry of razor-sharp claws, you tear into $e.name, causing $edamage points of damage!
<<default>>Critical hit! $e.name writhes in pain as you savagely slash at them with your claws, dealing $edamage points of devastating physical damage!
<</switch>>
<<else>>
<<switch random(2)>>
<<case 1>>You unleash a fierce barrage of claw strikes on $e.name, dealing $edamage points of physical damage!
<<case 2>>With a flurry of razor-sharp claws, you tear into $e.name, causing $edamage points of damage!
<<default>>$e.name writhes in pain as you savagely slash at them with your claws, dealing $edamage points of devastating physical damage!
<</switch>>
<</if>>
<<set $e.hp to ($e.hp - $edamage)>>
<<else>>
You unleash a fierce barrage of claw strikes on $e.name, but sadly it's defense is too high!
<</if>>
<<else>>
Your claws missed the $e.name by a long shot!
<</if>>
<</if>>
<<if $currentatk == "charm">>
<<set $hitchance to ($p.lvl - $e.lvl) * 10 + 85>>
<<set $attacksuccess to ($hitchance gte $hitsuccess)>>
<<run console.log('hitchance: ' + $hitchance + ' hitsuccess: ' + $hitsuccess)>>
<<if $attacksuccess is true>>
<<set $p.mp to $p.mp + ($p.lvl + 3)>>
You recover mp!
<<if $p.mp gt $p.maxmp>>
<<set $p.mp to $p.maxmp>>
<</if>>
<<if $currentstats.charm gt $e.res>>
<<set $edamage to $currentstats.charm - $e.res>>
<<if $critchance lte $p.critrt>>
<<set $edamage to $edamage * 2>>
<<switch random(2)>>
<<case 1>>
You successfully charm $e.name causing $e.name to lower its guard and take $edamage points of charm damage!
<<case 2>>
You successfully charm $e.name. Your words seem to have a mesmerizing effect on the $e.name, as it becomes entranced by your every word. $e.name takes $edamage points of charm damage!
<<default>>
The $e.name seems entranced by your charm, its hostility melting away as it becomes more receptive to your words. $e.name takes $edamage points of charm damage!
<</switch>>
<<else>>
<<switch random(2)>>
<<case 1>>
You successfully charm $e.name causing $e.name to lower its guard and take $edamage points of charm damage!
<<case 2>>
You successfully charm $e.name. Your words seem to have a mesmerizing effect on the $e.name, as it becomes entranced by your every word. $e.name takes $edamage points of charm damage!
<<default>>
The $e.name seems entranced by your charm, its hostility melting away as it becomes more receptive to your words. $e.name takes $edamage points of charm damage!
<</switch>>
<</if>>
<<set $e.reshp to ($e.reshp - $edamage)>>
<<else>>
Your charm attempt failed! It seems it's resistance is too high!
<</if>>
<<else>>
<<switch random(2)>>
<<case 1>>
Your charm attempt failed. $e.name simply sneers at your advances and remains unimpressed.
<<case 2>>
Your charm attempt failed. Despite your best efforts, $e.name remains immune to your charms and continues to glare at you with suspicion.
<<default>>
Your charm attempt failed. You try to win over the $e.name with your charms, but it only makes it more hostile and aggressive towards you.
<</switch>>
<</if>>
<</if>>
<<if $e.hp gt 0 and $e.reshp>>
<<if $enemyatk is "attack">>
<<enemyattack>>
<<else>>
<<enemymagic>>
<</if>>
<</if>>
<</nobr>>
<</widget>><<widget 'enemyattack'>>
<<nobr>>
<<set $hitsuccess to random(1, 100)>>
<<set $critchance to random(1, 100)>>
<<set $hitchance to ($p.lvl - $e.lvl) * 10 + 70>>
<<set $attacksuccess to ($hitchance gte $hitsuccess)>>
<<run console.log('enemy hitchance: ' + $hitchance + ' enemy hitsuccess: ' + $hitsuccess)>>
<<if $attacksuccess is true>>
<<if $critchance gt $p.critrt>>
<<if $e.melee gt $currentstats.pdef>>
<<set $pdamage to ($e.melee - $currentstats.pdef)>>
<<set $p.hp to Math.round($p.hp - $pdamage)>>
<p>You take $pdamage points of damage!</p>
<<else>>
<p>The $e.name attacks! It's blow was so weak that you take 0 points of physical damage!</p>
<</if>>
<<else>>
<<if ($e.melee *2) gt $currentstats.pdef>>
<<set $pdamage to (($e.melee *2) - $currentstats.pdef)>>
<<set $p.hp to Math.round($p.hp - $pdamage)>>
<p>You take $pdamage points of damage!</p>
<<else>>
<p>The $e.name attacks! It's blow was so weak that you take 0 points of physical damage!</p>
<</if>>
<</if>>
<<else>>
<p>The $e.name attempts to attack you! You read the attack and easily dodge.</p>
<</if>>
<</nobr>>
<</widget>><<widget 'enemymagic'>>
<<nobr>>
<<set $hitsuccess to random(1, 100)>>
<<set $critchance to random(1, 100)>>
<<set $hitchance to ($p.lvl - $e.lvl) * 10 + 70>>
<<set $attacksuccess to ($hitchance gte $hitsuccess)>>
<<run console.log('enemy hitchance: ' + $hitchance + ' enemy hitsuccess: ' + $hitsuccess)>>
<<if $attacksuccess is true>>
<<if $critchance gt $p.critrt>>
<<if $e.magic gt $currentstats.mdef>>
<<set $pdamage to ($e.magic - $currentstats.mdef)>>
<<set $p.hp to Math.round($p.hp - $pdamage)>>
<p>You take $pdamage points of damage!</p>
<<else>>
<p>The $e.name attacks! It's blow was so weak that you take 0 points of physical damage!</p>
<</if>>
<<else>>
<<if ($e.magic *2) gt $currentstats.mdef>>
<<set $pdamage to (($e.magic *2) - $currentstats.mdef)>>
<<set $p.hp to Math.round($p.hp - $pdamage)>>
<p>You take $pdamage points of damage!</p>
<<else>>
<p>The $e.name attacks! It's blow was so weak that you take 0 points of physical damage!</p>
<</if>>
<</if>>
<<else>>
<p>The $e.name attempts to attack you! You read the attack and easily dodge.</p>
<</if>>
<</nobr>>
<</widget>><<widget 'statsmath'>>
<<nobr>>
<<if $outfit.outfit is "none">>
<<set $outfitStats.none.charm to $spells.aura>>
<</if>>
/* outfits */
<<set $gear to $outfitStats[$outfit.outfit]>>
<<set $slot1 to $accessoryStats[$outfit.accessory]>>
/* Math for current stats */
<<for _key, _value range $gear>>
<<set $currentstats[_key] to ($gear[_key] + $p[_key] + $slot1[_key])>>
<</for>>
<</nobr>>
<</widget>>
<div class="conversation">
wardrobe passage
Change your outfit?
Outfits:
<<listbox '$outfit.outfit'>>
<<optionsfrom $wardrobe.outfit>>
<</listbox>><br>
<details>
<summary style="color:#7474d6;">Outfit preview and stats</summary>
<<nobr>>
<<if $wardrobe.outfit.indexOf('jeans') !== -1>>
<a href="#" onclick="showOutfit('jeans')">Jeans</a><br>
Earth clothes<br>
<</if>>
<<if $wardrobe.outfit.indexOf('revealingdress') !== -1>>
<a href="#" onclick="showOutfit('revealingdress')">Revealing Dress</a><br>
A gift from Rhelyla because you invaded her home and slept on her bed nude<br>
<</if>>
<<if $wardrobe.outfit.indexOf('alluringdress') !== -1>>
<a href="#" onclick="showOutfit('alluringdress')">Alluring Dress</a><br>
A gift from a mysterious statue<br>
<</if>>
<<if $wardrobe.outfit.indexOf('rags') !== -1>>
<a href="#" onclick="showOutfit('rags')">Rags</a><br>
Better than nothing<br>
<</if>>
<<if $wardrobe.outfit.indexOf('adventurerdress') !== -1>>
<a href="#" onclick="showOutfit('adventurerdress')">Adventurer Dress</a><br>
Classic adventurer armor<br>
<</if>>
<<if $wardrobe.outfit.indexOf('goldenware') !== -1>>
<a href="#" onclick="showOutfit('goldenware')">Goldenware</a><br>
Golden platemail, intended for a paladin who never returned<br>
<</if>>
<<if $wardrobe.outfit.indexOf('tentacle') !== -1>>
<a href="#" onclick="showOutfit('tentacle')">Tentacle Lingerie</a><br>
It has a curse on it so it looks like a normal dress whenever you're in public. If anyone other than a Succubi or Incubi put it on, they'd be trapped in it forever<br>
Permanantly locks a Succubus at max arousal<br>
<</if>>
<</nobr>>
</details>
<div id="outfit-preview" style="display: none;">
<img id="outfit-image" src="">
<p id="outfit-stats"></p>
</div>
<script>
function showOutfit(outfitName) {
var images = {
'jeans': 'demongodsassets/you/clothes/black/jeans.png',
'alluringdress': 'demongodsassets/you/clothes/black/alluringdress.png',
'adventurerdress': 'demongodsassets/you/clothes/black/adventurerdress.png',
'rags': 'demongodsassets/you/clothes/black/rags.png',
'revealingdress': 'demongodsassets/you/clothes/black/revealingdress.png',
'tentacle': 'demongodsassets/you/clothes/black/tentacle.png',
'goldenware': 'demongodsassets/you/clothes/black/goldenware.png',
};
var imageSrc = images[outfitName];
var tier = SugarCube.State.variables.outfitStats[outfitName].tier;
var melee = SugarCube.State.variables.outfitStats[outfitName].melee;
var pdef = SugarCube.State.variables.outfitStats[outfitName].pdef;
var magic = SugarCube.State.variables.outfitStats[outfitName].magic;
var mdef = SugarCube.State.variables.outfitStats[outfitName].mdef;
var charm = SugarCube.State.variables.outfitStats[outfitName].charm;
var critrt = SugarCube.State.variables.outfitStats[outfitName].critrt;
document.getElementById('outfit-image').src = imageSrc;
document.getElementById('outfit-stats').innerHTML = 'Tier: ' + tier + '<br>Melee: ' + melee + '<br>Magic: ' + magic + '<br>Physical Defense: ' + pdef + '<br>Magic Defense: ' + mdef + '<br>Charm: ' + charm + '<br>Critical Rate: ' + critrt;
document.getElementById('outfit-preview').style.display = 'block';
}
</script>
Accessory:
<<listbox '$outfit.accessory'>>
<<optionsfrom $wardrobe.accessory>>
<</listbox>>
<<link 'confirm outfit' 'home'>>
<</link>>
Presets:
<<link 'save preset 1' 'wardrobe'>>
<<set $preset1 to $outfit>>
<</link>>
<<link 'save preset 2' 'wardrobe'>>
<<set $preset2 to $outfit>>
<</link>>
<<link 'save preset 3' 'wardrobe'>>
<<set $preset3 to $outfit>>
<</link>>
<<nobr>>
<<if $wardrobe.outfit.includes($preset1.outfit) && $wardrobe.accessory.includes($preset1.accessory)>>
<<link 'load preset 1'>>
<<set $outfit to $preset1>>
<</link>>
<<else>>
Cannot load Preset 1. Missing items
<</if>>
<</nobr>>
<<nobr>>
<<if $wardrobe.outfit.includes($preset2.outfit) && $wardrobe.accessory.includes($preset2.accessory)>>
<<link 'load preset 2'>>
<<set $outfit to $preset2>>
<</link>>
<<else>>
Cannot load Preset 2. Missing items
<</if>>
<</nobr>>
<<nobr>>
<<if $wardrobe.outfit.includes($preset3.outfit) && $wardrobe.accessory.includes($preset3.accessory)>>
<<link 'load preset 3'>>
<<set $outfit to $preset3>>
<</link>>
<<else>>
Cannot load Preset 3. Missing items
<</if>>
<</nobr>>
<i>Note: Not wearing clothes will increase your arousal per turn by 4</i>
<<back>>
</div><div class="conversation">
<div class='row left'>
<div class='left-msg'>Tailor<hr> Hi, I'm just your friendly neighborhood tailor! Buy from me
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<details>
<summary style="color:red;">Click here to show outfits</summary>
<<clothing 'adventurerdress' 1500 'outfit'>>
<<if not $wardrobe.outfit.includes("adventurerdress")>>
<a href="#" onclick="showOutfit('adventurerdress')">Adventurer Dress</a><br>
<</if>>
</details>
<div id="outfit-preview" style="display: none;">
<img id="outfit-image" src="">
<p id="outfit-stats"></p>
</div>
/*
<details>
<summary style="color:red;">Click here to show accessories</summary>
<<clothing 'Accessory 1' 9999999999 'accessory'>>
Don't buy this, it's just a placeholder until the developer adds accessories!
</details>
*/
<<if $horns and not $wardrobe.outfit.includes("goldenware")>>
<p>
You notice a particularly dazzling gold armor.
You gaze at the glimmering gold armor in awe. It's a beautiful piece of craftsmanship, unlike anything you've ever seen in the slums.
<a href="#" onclick="showOutfit('goldenware')">Goldenware</a><br>
[[ask about the armor]]
</p>
<</if>>
[[exit|town]]
<<if $azraelquest is 2>>
<<set $azraelmet += 1>>
Show the dress design to the [[tailor|dressquest]]
<</if>>
<<if $spidersilk is true>>
Present the spidersilk to the tailor? [[spidersilk|dressquest2]]
<</if>>
</div>
<script>
function showOutfit(outfitName) {
var images = {
'jeans': 'demongodsassets/you/clothes/black/jeans.png',
'alluringdress': 'demongodsassets/you/clothes/black/alluringdress.png',
'adventurerdress': 'demongodsassets/you/clothes/black/adventurerdress.png',
'rags': 'demongodsassets/you/clothes/black/rags.png',
'revealingdress': 'demongodsassets/you/clothes/black/revealingdress.png',
'goldenware': 'demongodsassets/you/clothes/black/goldenware.png',
};
var imageSrc = images[outfitName];
var tier = SugarCube.State.variables.outfitStats[outfitName].tier;
var melee = SugarCube.State.variables.outfitStats[outfitName].melee;
var pdef = SugarCube.State.variables.outfitStats[outfitName].pdef;
var magic = SugarCube.State.variables.outfitStats[outfitName].magic;
var mdef = SugarCube.State.variables.outfitStats[outfitName].mdef;
var charm = SugarCube.State.variables.outfitStats[outfitName].charm;
var critrt = SugarCube.State.variables.outfitStats[outfitName].critrt;
document.getElementById('outfit-image').src = imageSrc;
document.getElementById('outfit-stats').innerHTML = 'Tier: ' + tier + '<br>Melee: ' + melee + '<br>Magic: ' + magic + '<br>Physical Defense: ' + pdef + '<br>Magic Defense: ' + mdef + '<br>Charm: ' + charm + '<br>Critical Rate: ' + critrt;
document.getElementById('outfit-preview').style.display = 'block';
}
</script><<set $arousal to 0>>
<div class="conversation">
<p>
You're starving. Unfortunately you let your hunger get out of control and you're no longer in control of your own actions. As your vision starts to fade, all you know is that you'll be seeking cum to feed.
<img class="passage-image" src="demongodsassets/sexscenes/blackpool/hunger.png" >
You have killed another human.
Suspicions have been raised.
<<set $townkillcount to $townkillcount + 1>>
<<set $BPsuspicion to $BPsuspicion + 20>>
You are no longer hungry.
You wake up to find another dead human in your home. You groan at yourself, frustrated that you lost control again. Maybe there's a way to strengthen yourself to control this. You quickly drag the body outside in search of a place to hide it. When finished, you come back home and rest a bit longer.
<<if $townkillcount gte 5 or $BPsuspicion gte 100>>
[[home|town bad end][$currentlocation to "shack"]]
<<else>>
[[home][$currentlocation to "shack"]]
<</if>>
</p>
</div>
<<set $days to $days + 1>>
<<set $energy to $maxenergy>>
<<set $p.hp to $p.maxhp>>
<<set $p.mp to $p.maxmp>>
<<if $lust gte 1000>>
<<goto "level up">>
<</if>>
<div class="conversation">
<p>You decide to get some sleep</p>
[[just dream]]
[[use cum to learn magic]]
</div>
<div class="conversation">
<p>
<<if $patronversion is true>>
<<if $tentaclepatmeet is true>>
Would you like to use Pat (cheats)?
[[use Pat]]
[[just masturbate][$energy -= 25]] Energy - 25
<<else>>
You decide to have some fun, and maybe lower your arousal while you're at it.
[[just masturbate][$energy -= 25]] Energy - 25
<</if>>
<<else>>
You decide to have some fun, and maybe lower your arousal while you're at it.
[[just masturbate][$energy -= 25]] Energy - 25
<</if>>
[[home][$currentlocation to "shack"]]
</p>
</div><div class="conversation">
<<set $race to "Succubus">>
<<set $days to $days + 1>>
<p>Tutorial:
When you sleep you are able to level up and spend cum to learn magic / skills.
You will always level up when you are at 1000 exp, so take care that you don't forget to sleep!
***
<br>
You had another dream, but can't remember what it was. Judging from your legs, it was probably another wet dream. Will all your dreams be like this? Will your entire personality just become sexual?
You reach up to scratch your scalp but pull back in a hurry as you felt a sharp pain!
At first you think you accidentally scratched a sore or soft spot on your scalp but you look down at your hands. They look normal in the dim light, until you reflexively stretch them. It catches you by surprise but it looks like you can extend your nails into claws! This could be useful if you get into a fight.
<<if $genderstart == "male">>
How do you handle this new body, and how can you force yourself, as a straight man, to have sex with men?
But the alternative is losing control and doing it anyways. While that does sound more appealing than having to be conscious, you may end up killing people. And honestly, you'd rather at least be in control of yourself, you'd hate to feel like a puppet. While the thought of men and their cum makes your body salivate, your brain is still resisting. But you NEED to do something...
What a rough situation that bitch goddess put you in...
<<elseif $genderstart == "fem">>
<<if $p.acceptance lt 50>>
This new body might be rough. But hey, could be worse. You could have reincarnated into a dude, or even something like a tree or an object! So at least you still have a mostly human-like body!
Having to have sex with men doesn't sound THAT bad. Having to eat cum as food sounds pretty gross, but it's not like you haven't swallowed before. Things could have been worse, you suppose.
<<else>>
This new body is pretty neat. You get to feel powerful, and if what Rhelyla said was true you even get control over men.
You were originally considering turning over a new leaf and not being such a slut this time around, but you want it. Your body wants it. What's the big deal?
<</if>>
<<else>>
Everything is so exciting! Originally you were a grill, now you get to experience so many new and exciting things! You do feel bad about killing someone, but that's exciting too! You've never experienced something like regret, empathy, sympathy, anger, lust, etc.
You really should thank that Goddess if you ever get a chance to meet her again!
<</if>>
[[home][$currentlocation to "shack"]]
</p>
</div>
<div class="conversation">
<p>
<<if $inv.money gte 200>>
You groggily open your eyes to the sound of persistent knocking at the door. As the noise continues, you realize it's the tax collector, here to collect your weekly taxes. You can't help but curse under your breath as you remember the 200 copper you have to pay.
You sit up in your bed, rubbing the sleep from your eyes and trying to shake off the grogginess. Your room is dimly lit by the dawn's early light filtering in through the dust-covered windows. You can't help but think about how unfair it is to have to pay taxes, especially so early in the morning.
With a sigh, you get out of bed and make your way to the door. As you open it, the tax collector greets you with a gruff
<<else>>
You groggily open your eyes to the familiar pounding at the door. The tax collector is here to collect your weekly taxes. Panic sets in as you realize that you don't have the 200 copper to pay him. You lay there for a moment, heart racing, wondering what to do.
You reluctantly rise from your bed, rubbing the sleep from your eyes as you make your way to the door. You open it to find the tax collector, a gruff looking man with a stern expression, holding out his hand expectantly.
<</if>>
<img class="passage-image" src="demongodsassets/people/fullbody/tax.png" >
<div class='row left'>
<div class='left-msg'>Taxman<hr>Good morning.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
As he holds out his hand expectantly. You can see the first rays of sunlight creeping over the horizon, casting a warm glow over the scene.
<<if $inv.money gte 200>>
[[pay him]]<</if>>
<<if $inv.money lt 200 or $p.acceptance gte 75>>
[[refuse to pay him]]
<</if>>
</p>
</div><div class="conversation">
<p>
You reluctantly reach into your coin purse and pull out the 200 copper, handing it over to the tax collector. He counts it quickly and nods, satisfied.
<img class="passage-image" src="demongodsassets/people/fullbody/tax.png" >
<div class='row left'>
<div class='left-msg'>Taxman<hr>Until next week,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
He turns and makes his way down the street.
You watch him go, feeling a mix of anger and resignation. You can't help but think about how much better you could have spent that 200 copper on. Taxation is theft! But it's better to just pay them and move on. With a heavy heart, you close the door and head back to bed.
<<set $inv.money to $inv.money - 200>>
[[home][$currentlocation to "shack"]]
</p>
</div>
<div class="conversation">
<p>
<<if $p.acceptance gte 75>>
You hesitate for a moment, considering your options. You could tell the truth and hand over the 200 copper, but the thought of being forced to whore your body out for a week in the tavern sounds almost...appealing. You're not quite sure why, but the idea of being forced to work for someone else, even if it is against your will, gives you a certain thrill.
You give the tax collector a sly grin and shake your head,
<div class='row right'>
<div class='right-msg'>I'm sorry, I don't have the money to pay my taxes this week.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The tax collector scowls, ready to summon a guard if you don't come quietly.
<div class='row left'>
<div class='left-msg'>Taxman<hr>Well, in that case, you'll have to come with me and do a week of forced labor at the brothel, all of your pay for that week will go to us no matter how much you make. You will not be allowed to leave.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
He gestures for you to follow him. You can't help but feel a small thrill of excitement as you follow him down the road, towards the tavern. You know it won't be easy, but the thought of being forced to work for someone else, of having to submit to their will, is strangely alluring.
<<else>>
You hesitate for a moment, considering your options. You're flat broke, you have only $inv.money copper to your name. The thought of being forced to whore your body out for a week in the tavern sounds revolting. <<if $genderstart is "male">>The thought of ever going anywhere near a penis is revolting, even if your body craves it and it causes your pussy to twitch and your mouth to start drooling. You hate this damn body!<</if>>
You look at the tax collector with puppydog eyes.
<div class='row right'>
<div class='right-msg'>I'm sorry... I tried to find work, honest. But I wasn't able to make enough!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The tax collector scowls, ready to summon a guard if you don't come quietly.
<div class='row left'>
<div class='left-msg'>Taxman<hr>Don't need your excuses. You know the laws. Will you come quietly or should I summon a guard?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
You whimper but nod your head affirmatively.
He gestures for you to follow him, dragging you to the stalls.
<</if>>
[[get to work|forced brothel]]
</p>
</div>
<<set $p.acceptance to $p.acceptance + 3>><div class="conversation">
<p>
<<switch random(12)>>
<<case 1>>
You awaken in an empty dark room. The only thing you see in front of you is a door.
You walk forward and open the door and are greeted by the site of a bathhouse. What's more, many men are laughing and chatting amongst themselves as they wash themselves. Completely oblivious to you or the door. You step inside and all eyes turn to you.
You look down and realize you're completely nude, like the men. But unlike the men, you're putting your full breasts and tight little butt on display for the entire bathhouse.
<img class="passage-image" src="demongodsassets/sexscenes/dreams/bath.png" >
One of the men speaks up.
<div class='row left'>
<div class='left-msg'>Dream Men<hr> Hey the whore we ordered has arrived!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
Everyone begins to cheer.
You see that he's very fat and hairy. A complete bull of a man. And he's speaking to you like an object that was purchased for the pleasure of others.
You suddenly remember, you are a whore! You've been working at this bathhouse for years and finally became the #1 most requested bathgirl! That slut Rhelyla won't take it from you again this month! Of course you mean the word slut in the most loving and endearing manner.
You're meant to service these men. To use your body to bring them pleasure. They all step towards you and grab hold of their cocks while stroking them.
<div class='row left'>
<div class='left-msg'>Dream Men<hr> Fuck her mouth! Make her take our cocks down her throat!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc2.png">
</div>
</div>
Your pussy tingles from excitement. You're violently grabbed and pushed onto your knees. One of them men gets behind you, while another positions himself in front of your mouth. Their forcefulness is only making you more wet. You're given no choice but to give these men what they want, what YOU want. You take the fat cock in front of you and slowly lower your head to lick at his cock.
<img class="passage-image" src="demongodsassets/sexscenes/dreams/buffet.png" >
You open your mouth wide and let the fat cock enter your mouth. as someone somewhere blasts you with a flood of cum. The man in front of you is already spitting in your mouth and you're eagerly swallowing down his salty load. The one at your twat finally pushes in and you nearly choke on the cock and cum in your mouth as you suck in a breath in surprise and arousal.
You suck him until his cock goes limp and another instantly takes his place, thrusting into your mouth, you have no choice but to swallow. You're gulping down his seed and saliva, all while you're being violently throatfucked. Another man above you blasts his cum in your hair and on your back. The one in your mouth sprays, and it's a lot. He just keeps cumming and cumming. Finally he pulls out, still cumming and covering your face as yet another man then grabs hold of you by the shoulders and forces your mouth down to his cock as you suck it with all your might.
<img class="passage-image" src="demongodsassets/sexscenes/dreams/cumbuffet.png" >
You're drooling all over it as you continue sucking, feeling it fill your mouth again and again. The pleasure from your pussy is pulsating as you're being pounded, when suddenly you feel a prick at your asshole. It doesn't even cross your mind if this man has two penises or how it's physically possible that another man could manage to fit there, but honestly all you care about is the delicious cum and pleasure you're currently experiencing. But before you know it you feel something hot enter your ass, filling it up. And you realize that the fat man who's cumming in your mouth has now stuffed his cock up your butt, pushing the entire length inside you in a single thrust.
<<if $p.acceptance gt 50>>
You wake up. A little horny after your dream.
<<else>>
You wake up. Even in sleep you can't get a break...
<</if>>
<<case 2>>
<img class="passage-image" src="demongodsassets/sexscenes/dreams/bath2.png" >
As you fall asleep, you wake up and find yourself in a bathhouse. Your mouth, ass and pussy are already stuffed full of cock and you're already dripping in semen. You're laying down on a table, surrounded by men. Each one of them are sitting on your legs while one is fucking you. You're so horny, but you've had so much cum pumped into you already that you feel too relaxed to move, besides it feels amazing to have cocks inside of you. As one man fucks you from behind, another one moves his hands down to your breasts. He begins fondling and squeezing your tits while one other one takes your right hand and forces it down to his cock.
<div class='row right'>
<div class='right-msg'>Oooohh....♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Your head flops back as you moan and another man pumps his cock in your fist.
Another man takes advantage of your mouth hanging open and angles his cock at your opening. He sprays his seed inside your mouth and you swallow it down without thinking, the aftertaste making you wish you had savored it a bit longer. As the cock in your twat pulls out, another cock enters your mouth. You suck on it, loving the taste of cum and cumming as you swallow another load down your throat.
<div class='row left'>
<div class='left-msg'>Dream Men<hr> Don't stop sucking!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oh Goddess, you're gonna make me cum again! ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You're on your back now, surrounded by men, each one fucking you in different ways. Some are fucking you from behind, some are fucking you from in front, some are fucking your hands, theres a cock between your tits. The bath water has turned to cum and it's dripping everywhere. You're moaning, sighing and cumming all over the place.
<div class='row left'>
<div class='left-msg'>Dream Men<hr> Let's all take turns cumming in her pussy until she's flowing like a river!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
<img class="passage-image" src="demongodsassets/sexscenes/dreams/bath3.png" >
The men are relentless, they keep fucking you, making you cum and cum and cum, your pussy is flowing with a multitude of mixed fluids. Your breasts and nipples covered in sperm, your belly coated in it, your pussy overflowing with cum and your face smeared with it. You're cumming harder than you ever have before, the pleasure is just overwhelming.
Suddenly a womans voice
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> $name, haven't you had enough? You're not going to leave any for me?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
Looking up at the woman through your cum soaked eyelids you see Rhelyla. She's naked, and she's holding a whip in her hand. Her hair is messy and her skin is dirty, but her body is perfect. And her pussy is dripping wet.
<<if $p.acceptance gt 50>>
You wake up. A little horny after your dream.
<<else>>
You wake up. Even in sleep you can't get a break...
<</if>>
<<case 3>>
You're in a bathhouse surrounded by men. But somethings odd about these men. You look at their crotch and instead of a penis, they all have a single wriggling tentacle! You bite your lip in anticipation, you're already dripping and excited to take these tentacle cocks.
<div class='row left'>
<div class='left-msg'>Dream Men<hr> What do you think, do you like tentacles?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc2.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I love them! ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Before anyone can even laugh, you're already on your knees and sucking one of the tentacles.
You feel something twist around your leg before entering your hungry twat. You moan and suck hard on the tentacle, trying to get as much as you can before it pulls away. But it doesn't pull away, it pushes in deeper.
<div class='row right'>
<div class='right-msg'>Aaaahh! ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The tentacle pulls out of your mouth and another is shoved in. You're getting fucked from both ends and it feels amazing. Your body is still sore from the beating you took, but your pussy is still on fire.
<div class='row right'>
<div class='right-msg'>More! Give me more!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The tentacles extend so deep in your mouth and pussy that you can practically feel them kissing eachother. You're moaning, you're cumming, you're orgasming. Over and over again. And soon you feel something warm and sticky begin to ooze from your cunt.
<<if $p.acceptance gt 50>>
You wake up. A little horny after your dream. Was that $friend1?
<<else>>
You wake up. Even in sleep you can't get a break...
<</if>>
<<case 4>>
You're in a classroom. You glance at the board and see your current assignment.
<img class="passage-image" src="demongodsassets/sexscenes/dreams/code/stophitler.png" >
Desks all around you, and students sitting in their desks chatting away. You look down and suddenly realize, you forgot to wear clothes to school! You're sitting there in nothing but your panties and bra, your large breasts bouncing as you sit there.
You reach down and touch yourself, finding your clit. You rub it and moan softly.
<img class="passage-image" src="demongodsassets/sexscenes/dreams/nudeclass.png" >
<div class='row right'>
<div class='right-msg'>Ooh, Ooohhh! ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Suddenly all the men and women in the class are staring at you. They're looking at you and whispering to each other.
<div class='row left'>
<div class='left-msg'>Male Classmate<hr> $name came to class naked!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Male Classmate<hr> Yeah, and she's totally doing herself in front of us! What a sexy slut!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc2.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Male Classmate<hr> She's soooo hot!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc2.png">
</div>
</div>
One of your classmates stands up, he's tall, handsome, and has a nice smile.
<div class='row left'>
<div class='left-msg'>Male Classmate<hr> Hi there, I'm John
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
You nod to him, still rubbing your clit.
<div class='row left'>
<div class='left-msg'>John<hr> Are you new here?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
You nod your head.
<div class='row left'>
<div class='left-msg'>John<hr> Oh, well I guess we have to teach you the rules then.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Rules?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>John<hr> Yes, we're a private school and we pride ourselves on teaching our students discipline.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
He unzips his pants and takes out his massive cock. It's thick and veiny, and he strokes it as he talks to you. You continue stroking your clit without realizing you've started to drool.
<div class='row left'>
<div class='left-msg'>John<hr> Rule #1, When a classmate takes out his cock, the class whore must suck it.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
You can only moan in response.
You open your mouth, your fingers never leaving your clit, and you take John's cock in your mouth. He's big, and he's thick. You gulp it down, taking every inch of his meat into your mouth. He moans as you slurp and slobber all over his cock.
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Take care of me too!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
Out of the corner of your eye, you see Rhelyla stripping in a hurry. For some reason you forgot she went to school with you.
<div class='row left'>
<div class='left-msg'>Male Classmate<hr> Oh fuck!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc2.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>FeMale Classmate<hr> Cum in my mouth!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/fnpc.png">
</div>
</div>
John reaches down and grabs your hair, pulling you up off his cock.
<div class='row left'>
<div class='left-msg'>John<hr> I want your ass, present it to me
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
You nod and put your chest on your desk, presenting your naked ass to him.
<div class='row left'>
<div class='left-msg'>John<hr> Mmmmm, Your body is so beautiful, I'm going to enjoy breaking you in properly.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<img class="passage-image" src="demongodsassets/sexscenes/dreams/deskfuck.png" >
You whimper, your eyes rolling back into your head as you cum again. Another boy comes up and rubs his cock along your cheek. You open your mouth inviting him in, but frustratingly he just keeps rubbing the tip of his dick across your face until he suddenly cums! The cum dripped down the side of your face and landed on the desk in front of your nose. You extended your tonge, lapping it up like a kitten while you're being pounded from behind.
<div class='row left'>
<div class='left-msg'>$friend1<hr> Guys! I brought the pizza!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/james.png">
</div>
</div>
<<if $p.acceptance gt 50>>
You wake up. A little horny after your dream. Was that $friend1?
<<else>>
You wake up. Even in sleep you can't get a break...
<</if>>
<<case 5>>
You're back in your college classroom of your past life, only this time you're a girl. You could have sworn you dropped out of this class?
You glance at the board and see your class assignment:
<img class="passage-image" src="demongodsassets/sexscenes/dreams/code/isekaisuccubus.png" >
<div class='row left'>
<div class='left-msg'>$friend2<hr> So, did you do the assignment?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
You look at your friend $friend2 and groan as you realize you did the wrong assignment. She looks down and sees what you've written so far:
<img class="passage-image" src="demongodsassets/sexscenes/dreams/code/antigravity.png" >
<div class='row left'>
<div class='left-msg'>$friend2<hr> What a great idea! I did the assignment, but I'll help you get extra credit! Let's go to the teacher together!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<img class="passage-image" src="demongodsassets/sexscenes/dreams/jamespizza.png" >
You both walk up to the teacher after class. James is sitting there eating pizza.
<div class='row left'>
<div class='left-msg'>Professor $friend1<hr> Can I help you ladies?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/james.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>$friend2<hr> We'd like to suck your cock,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Professor $friend1<hr> Why would you want to suck my cock?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/james.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>$friend2<hr> Because we want extra credit silly, and $name here didn't finish the assignment
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Professor $friend1<hr> *sigh* You know this is a place of learning, right? School Policy dictates that you may only suck for extra credit if all of your homework is complete. I can let is pass this time, but you know you still need to complete the final assignment to pass this class, right?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/james.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>What was the assignment again?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Professor $friend1<hr> You'll need to program a fully functional world-ending doomsday device by the end of the semester, and it must run successfully from a raspberry pi. But if sucking cock will help you learn by providing extra brain power, then I am after all your teacher.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/james.png">
</div>
</div>
He rolls his seat backwards and he's already naked from the waist down. His cock standing at attention.
<div class='row left'>
<div class='left-msg'>Professor $friend1<hr> Whichever girl swallows the most cum gets bonus extra credit!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/james.png">
</div>
</div>
Emily looks at you, and you at her. You both get down on your knees and start caressing his cock with your tongue.
You're sucking his cock, licking and tonguing it. Emily's lips slide up and down his shaft, while you're bobbing your head up and down his pole.
<div class='row left'>
<div class='left-msg'>Professor $friend1<hr> You two are so cute. *moan*
But don't forget to use your brains. If you want to get ahead in this class, then focus on the programming. Pop quiz, please write me a script so that everytime I speak I speak in Haiku's. Don't stop sucking or you'll get a demerit!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/james.png">
</div>
</div>
You both continue sucking cock while tapping on a typewriter that appeared from nowhere. You program as fast as you can and come up with:
<img class="passage-image" src="demongodsassets/sexscenes/dreams/code/haiku.png" >
<img class="passage-image" src="demongodsassets/sexscenes/dreams/teacher.png" >
As you submit your homework, the teacher bursts in your mouth and you swallow as much as you can, letting only a little dribble out of your mouth.
<div class='row left'>
<div class='left-msg'>$friend2<hr> Awww!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
Emily looks grumpy, as she licks the excess cum off your lips and dripping down your neck.
<div class='row left'>
<div class='left-msg'>Professor $friend1<hr> Good job girls! Here's your degree, now impress the rest of the world as much as you've impressed me!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/james.png">
</div>
</div>
<<if $p.acceptance gt 50>>
You wake up. A little horny after your dream. Was that $friend1?
<<else>>
You wake up. Even in sleep you can't get a break...
<</if>>
<<case 6>>
<img class="passage-image" src="demongodsassets/sexscenes/dreams/hamster.png" >
You dreamt you were a giant hamster and you had to take a final exam in a giant hamster wheel. Unfortunately you failed because you kept slipping and falling and the professor just laughed at you.
<<case 7>>
<img class="passage-image" src="demongodsassets/sexscenes/dreams/chickenteach.png" >
You dreamt your professor was a giant chicken and you had to take an oral exam in front of the whole class. But you were so nervous you mixed up what he meant by oral exam and you got expelled after putting his cock in your mouth in front of the whole class.
<<case 8>>
You dreamt your classmates were all giant ice cream cones and you started melting and ended up making a mess all over the floor.
<<case 9>>
You dreamt you were a powerful wizard and had to take an exam to prove your worth, but all the questions were in dragon language and you couldn't understand a thing. You ended up using your magic to cheat and got expelled from the wizarding academy.
<<case 10>>
You dreamt you were a knight, but instead of a sword and shield, you were armed with only a spoon and a fork. The dragon you were supposed to slay just laughed at you and ate you for breakfast. He appreciated the spoon and fork.
<<case 11>>
You dreamed that you were back on earth with your twin sister. You don't remember having a twin sister, but there she was.
You were both servants to a wealthy man. And he's coming home soon!
<div class='row right'>
<div class='right-msg'>You and your Sister<hr> Wecome home, master!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Master<hr> have you pets been good?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>You: Yes master, I have been very good. So much better than my sister! I edged all day, but didn't cum once!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Your sister shoots you a glare.
<div class='row right'>
<div class='right-msg'>Sister<hr> I was only masturbating because I was thinking about your amazing cock, master! Anyone who could think about you without masturbating doesn't truly value your worth master
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
She grins at you.
<div class='row left'>
<div class='left-msg'>Master<hr> Now now, slaves. You've both been so patient.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
He drops his trousers and yours and your sisters eyes glow at the sight of such a glorious cock.
<div class='row left'>
<div class='left-msg'>Master<hr> Turn around.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>You and your Sister<hr> Yes master!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You both turn and present your naked, dripping twat for your master.
Much to your dismay, he takes your sister first, but as if he knew what was on your mind, his hand started rubbing your clit. You moan as he pushes two fingers into your tight pussy. You cry out as he begins finger fucking you.
You grind your hips into his fingers, moaning and whimpering as you feel his fingers tease your sensitive bud.
He finishes cumming in your sister, and you almost whimper watching the extra cum drip out of her. Such a waste...
As he pulls out of your sister, he positions his cock against your open slit. Your sister positions herself under your masters and your legs, ready to catch and drops while she works your clit with her mouth. You feel your master spreading you apart with his huge cock.
You moan as he enters you, and he fills you completely. He starts thrusting into you, and you feel your sister licking your clit, causing you to orgasm again. You whimper and moan, but try to keep quiet so as not to upset your master.
Your master is fucking you hard, his balls slapping against your cunt and your sisters chin. You moan loudly, and your sister giggles
<div class='row right'>
<div class='right-msg'>Sister<hr> You're making so much noise, sister!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You attempt to respond in between moans.
<div class='row right'>
<div class='right-msg'>You: It's ok, master, You can punish me for being loud, master!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Your master continues to pound you, and you feel yourself getting closer and closer to an orgasm. Your dam bursts and you're squirting juices all over your sisters face, when suddenly your contractions cause your master to cum, his seed slowly flowing out of you and into your sisters waiting mouth... Lucky.
<div class='row right'>
<div class='right-msg'>You and your Sister<hr> Thank you, Master!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You both say, as you sit on the ground, the cum dripping out of your vagina's and onto the floor you'll have to clean.
<img class="passage-image" src="demongodsassets/sexscenes/dreams/twin/welcomehome.png" >
<<case 12>>
<<switch random(4)>>
<<case 1>>
You had a dream where Rhelyla was pretending to be your twin sister. You were both showing off in the mixed bath.
<img class="passage-image" src="demongodsassets/sexscenes/dreams/twin/bath.png" >
<<case 2>>
<img class="passage-image" src="demongodsassets/sexscenes/dreams/twin/bbq.png" >
You dreamt that you and your sister were out at a bbq when someone spilled beer all over the two of you. Your clothes were expensive, so naturally you both got undressed in a hurry.
<<case 3>>
<img class="passage-image" src="demongodsassets/sexscenes/dreams/twin/classroom.png" >
Your twin sister attended school with you! You would often compete with who could suck the most cum out of other students.
<<case 4>>
<img class="passage-image" src="demongodsassets/sexscenes/dreams/twin/lookatme.png" >
You dreamed that Rhelyla was your sister, and you were both after the same man. You dressed up in the same outfit and asked him who was cuter. Of course you were twins, so you were teasing him.
<<default>>
<img class="passage-image" src="demongodsassets/sexscenes/dreams/twin/restaurant.png" >
Your sister and you were at a restaurant, but things got a little wild and you started competing for who had bigger breasts.
<</switch>>
<<default>>
You dreamt you were a powerful wizard, but your spellbook was replaced with a cookbook. Your fellow wizards laughed as you tried to cast spells with recipes for roast chicken and apple pie.
<</switch>>
<<if $boss1alive is "false" and $eyes isnot "true">>
<<set $eyes to "true">>
Awakening from your slumber, the darkness of the night envelops you, pressing down like a heavy, tangible weight. An odd sensation begins to stir within you, concentrated around your eyes. It's as though a foreign power has taken hold, pulling and stretching the delicate orbs with an invisible force.
As the sensation intensifies, you become acutely aware of the world around you transforming. The once-impenetrable darkness appears to be lifting, revealing a landscape awash in shades of gray. The shadows that once danced menacingly in the corners of your vision have receded, replaced by a newfound clarity.
With every passing moment, your night vision improves, each detail of your surroundings coming into sharper focus. As you scan the area, you notice faint traces of magic shimmering in the air, like threads of an ethereal tapestry woven into the very fabric of reality.
Compelled to inspect the source of this change, you approach a basin filled with still water. The reflection that greets you is both familiar and unsettling. Your eyes, once human, have taken on a demonic aspect. Like those of a reptile, they now possess a vertical slit running down the center of each iris.
<</if>>
</p>
[[home][$currentlocation to "shack"]]
</div><div class="conversation">
<<nobr>>
<<switch random(2)>>
<<case 1>>
<p>You close your eyes and focus on the knowledge of magic within you. As you drift off to sleep, you feel the power you've obtained from cum flowing through your veins, imbuing you with the power to wield magic.</p><br><br>
<<case 2>>
<p>Before you drift off, you focus on the mysterious world of magic, seeking to uncover its secrets and harness its power, determined to master the arcane arts.</p><br><br>
<<default>>
<p>As you delve deeper into the magical arts, you begin to feel a surge of power coursing through your veins. You're excited to see what you can accomplish with your newfound abilities, and you can't wait to see what other mysteries the world of magic holds.</p><br><br>
<</switch>>
<details class="spell-button">
<summary style="color:#8282f3;">Change Breast size</summary><br><br>
Current size: $breasts<br>
Some people prefer different breast sizes, while some areas are hard to squeeze into if you're too big.<br>
<<if $inv.cum gte 650 and $breasts isnot "small">>
**[[Small Boobs - 650|use cum to learn magic][$breasts to "small", $inv.cum -= 650]] <br>
<<else>>
You need 650 cum for small breasts, or your breasts are already small.<br>
<</if>>
<<if $inv.cum gte 750 and $breasts isnot "medium">>
**[[Medium Boobs - 750|use cum to learn magic][$breasts to "medium", $inv.cum -= 750]] <br>
<<else>>
You need 750 cum for medium breasts, or your breasts are already medium.<br>
<</if>>
<<if $inv.cum gte 850 and $breasts isnot "large">>
**[[Large Boobs - 850|use cum to learn magic][$breasts to "large", $inv.cum -= 850]]<br>
<<else>>
You need 850 cum for large breasts, or your breasts are already large.<br>
<</if>>
<<if $inv.cum lt 650>>You haven't collected enough cum to change your breasts!<br><</if>>
</details>
<br>
<details class="spell-button">
<summary style="color:#8282f3;">Raise Max Arousal (hunger)</summary><br>
Raise your max arousal by 10 so you can last longer before getting hungry.<br>
Cost: $arousalcost cum!<br>
<<if $inv.cum gt $arousalcost>>
<<link "Raise Max Arousal" "use cum to learn magic">>
<<set $inv.cum to $inv.cum - $arousalcost>>
<<set $maxarousal += 10>>
<<set $arousalcost to Math.round($arousalcost * 1.25)>>
<</link>>
<<else>>
You don't have enough cum to learn this magic.<br>
<</if>>
</details>
<br>
<details class="spell-button">
<summary style="color:#8282f3;">Raise Energy<br></summary>
Raise your max energy by 10 (max: 200)<br>
Cost: $energycost cum!<br>
<<if $maxenergy >= 200>>
Your energy is already at the maximum level.<br>
<<elseif $inv.cum gt $energycost>>
<<link "Raise Max Energy" "use cum to learn magic">>
<<set $inv.cum -= $energycost>>
<<set $maxenergy += 10>>
<<set $energycost to Math.round($energycost * 1.25)>>
<</link>>
<<else>>
You don't have enough cum to learn this magic.<br>
<</if>>
</details>
<br>
<details class="spell-button">
<summary style="color:#8282f3;">Aura<br></summary>
This will raise your sexual aura, causing normal people to be unable to resist your charms. Caution, you cannot turn your aura off!<br>
(People in town will be more likely to approach you for public sex, some conversations may take a different turn). Additionally you receive a bonus to your charm based on the level of your aura when nude.<br>
Cost: $auracost cum! Current level: $spells.aura<br>
<<if $inv.cum gt $auracost and $spells.aura lt 10>>
<<link "Level Aura" "use cum to learn magic">>
<<set $inv.cum to $inv.cum - $auracost>>
<<set $spells.aura += 1>>
<<set $auracost to Math.round($auracost * 1.25)>>
<</link>>
<<else>>
You don't have enough cum to learn this magic, or you have already maxed it out!<br>
<</if>>
</details>
<br>
<<if $tome.swap is true or $tome.transform is true or $tome.growth is true or $tome.illusion is true or $tome.fire is true or $tome.ice is true or $tome.wind is true or $tome.water is true or $tome.thunder is true>>
<details class="spell-button">
<summary style="color:#8282f3;">Spells<br></summary>
<<if $read.swap is 3 and $spells.swap is false>>
Learn swap magic! Cost: 1000 cum.<br>
<<if $inv.cum gte 1000>>
[[Learn Swap|use cum to learn magic][$spells.swap to true, $inv.cum -= 1000]]<br>
<<else>>
You currently have $inv.cum which isn't enough for this spell.<br>
<</if>>
<</if>>
<br>
<<if $read.transform is 3 and $spells.transform is false>>
Learn transformation magic! Cost: 1000 cum.<br>
<<if $inv.cum gte 1000>>
[[Learn Transform|use cum to learn magic][$spells.transform to true, $inv.cum -= 1000]]<br>
<<else>>
You currently have $inv.cum which isn't enough for this spell.<br>
<</if>>
<</if>>
<br>
<<if $read.growth is 3 and $spells.growth is false>>
Learn growth magic! Cost: 1000 cum.<br>
<<if $inv.cum gte 1000>>
[[Learn Growth|use cum to learn magic][$spells.growth to true, $inv.cum -= 1000]]<br>
<<else>>
You currently have $inv.cum which isn't enough for this spell.<br>
<</if>>
<</if>>
<br>
<<if $read.illusion is 3 and $spells.illusion is false>>
Learn illusion magic! Cost: 300 cum.<br>
<<if $inv.cum gte 300>>
[[Learn Illusion|use cum to learn magic][$spells.illusion to true, $inv.cum -= 300]]<br>
<<else>>
You currently have $inv.cum which isn't enough for this spell.<br>
<</if>>
<</if>>
<br>
<<if $read.fire is 3 and $spells.fire is 0>>
Learn fire magic! Cost: 750 cum.<br>
<<if $inv.cum gte 750>>
[[Learn Fire|use cum to learn magic][$spells.fire += 1, $inv.cum -= 750]]<br>
<<else>>
You currently have $inv.cum which isn't enough for this spell.<br>
<</if>>
<</if>>
<br>
<<if $read.ice is 3 and $spells.ice is 0>>
Learn ice magic! Cost: 750 cum.<br>
<<if $inv.cum gte 750>>
[[Learn Ice|use cum to learn magic][$spells.ice += 1, $inv.cum -= 750]]<br>
<<else>>
You currently have $inv.cum which isn't enough for this spell.<br>
<</if>>
<</if>>
<br>
<<if $read.wind is 3 and $spells.wind is 0>>
Learn wind magic! Cost: 750 cum.<br>
<<if $inv.cum gte 750>>
[[Learn Wind|use cum to learn magic][$spells.wind += 1, $inv.cum -= 750]]<br>
<<else>>
You currently have $inv.cum which isn't enough for this spell.<br>
<</if>>
<</if>>
<br>
<<if $read.water is 3 and $spells.water is 0>>
Learn water magic! Cost: 750 cum.<br>
<<if $inv.cum gte 750>>
[[Learn Water|use cum to learn magic][$spells.water += 1, $inv.cum -= 750]]<br>
<<else>>
You currently have $inv.cum which isn't enough for this spell.<br>
<</if>>
<</if>>
<br>
<<if $read.thunder is 3 and $spells.thunder is 0>>
Learn thunder magic! Cost: 750 cum.<br>
<<if $inv.cum gte 750>>
[[Learn Thunder|use cum to learn magic][$spells.thunder += 1, $inv.cum -= 750]]<br>
<<else>>
You currently have $inv.cum which isn't enough for this spell.<br>
<</if>>
<</if>>
<br>
<<if $read.fire2 is 3 and $spells.fire is 1>>
Learn fire2 magic! Cost: 1000 cum.<br>
<<if $inv.cum gte 1000>>
[[Learn Fire2|use cum to learn magic][$spells.fire += 1, $inv.cum -= 1000]]<br>
<<else>>
You currently have $inv.cum which isn't enough for this spell.<br>
<</if>>
<</if>>
<br>
</details>
<<else>>
Find a tome to start learning magic!<br>
<</if>>
<br><br>
<<if $p.critrt lte 8 and $p.acceptance gte 10>>
<details class="spell-button">
<summary style="color:#8282f3;">crit Rate. Current Level $p.critrt<br></summary>
<<if $p.critrt is 0>>
Raise your crit chance, this also works with charm!<br>
<<if $inv.cum gte 750>>
Cost: 750 cum
[[Learn crit|use cum to learn magic][$p.critrt += 1, $inv.cum -= 750]]<br>
<<else>>
Cost: 750 cum
You don't have enough cum, or you're not comfortable enough with sexual actions yet!<br>
<</if>>
<<elseif $p.critrt is 1 and $p.acceptance gte 20>>
<<if $inv.cum gte 1000>>
Cost: 1000 cum<br>
[[Learn crit|use cum to learn magic][$p.critrt += 1, $inv.cum -= 1000]]<br>
<<else>>
Cost: 1000 cum<br>
You don't have enough cum, or you're not comfortable enough with sexual actions yet!<br>
<</if>>
<<elseif $p.critrt is 2 and $p.acceptance gte 30>>
<<if $inv.cum gte 1250>>
Cost: 1250 cum<br>
[[Learn crit|use cum to learn magic][$p.critrt += 1, $inv.cum -= 1250]]<br>
<<else>>
Cost: 1250 cum<br>
You don't have enough cum, or you're not comfortable enough with sexual actions yet!<br>
<</if>>
<<elseif $p.critrt is 3 and $p.acceptance gte 40>>
<<if $inv.cum gte 1500>>
Cost: 1500 cum<br>
[[Learn crit|use cum to learn magic][$p.critrt += 1, $inv.cum -= 1500]]<br>
<<else>>
Cost: 1500 cum<br>
You don't have enough cum, or you're not comfortable enough with sexual actions yet!<br>
<</if>>
<<elseif $p.critrt is 4 and $p.acceptance gte 50>>
<<if $inv.cum gte 2000>>
Cost: 2000 cum<br>
[[Learn crit|use cum to learn magic][$p.critrt += 1, $inv.cum -= 2000]]<br>
<<else>>
Cost: 2000 cum<br>
You don't have enough cum, or you're not comfortable enough with sexual actions yet!<br>
<</if>>
<<elseif $p.critrt is 5 and $p.acceptance gte 60>>
<<if $inv.cum gte 2500>>
Cost: 2500 cum<br>
[[Learn crit|use cum to learn magic][$p.critrt += 1, $inv.cum -= 2500]]<br>
<<else>>
Cost: 2500 cum<br>
You don't have enough cum, or you're not comfortable enough with sexual actions yet!<br>
<</if>>
<<elseif $p.critrt is 6 and $p.acceptance gte 70>>
<<if $inv.cum gte 3000>>
Cost: 3000 cum<br>
[[Learn crit|use cum to learn magic][$p.critrt += 1, $inv.cum -= 3000]]<br>
<<else>>
Cost: 3000 cum<br>
You don't have enough cum, or you're not comfortable enough with sexual actions yet!<br>
<</if>>
<<elseif $p.critrt is 7 and $p.acceptance gte 80>>
<<if $inv.cum gte 3500>>
Cost: 3500 cum<br>
[[Learn crit|use cum to learn magic][$p.critrt += 1, $inv.cum -= 3500]]<br>
<<else>>
Cost: 3500 cum<br>
You don't have enough cum, or you're not comfortable enough with sexual actions yet!<br>
<</if>>
<<else>>
Your crit rate is already maxed or you're still not comfortable with your body yet!
Crit rate: $p.critrt / 8 <br>
Your comfort level is $p.acceptance<br>
<</if>>
</details>
<</if>>
<br><br>
<<if $boss1alive is false and $eyes is false>>
<details class="spell-button">
<summary style="color:#8282f3;">Unlock dormant power<br></summary>
<span id="dormantPowerContent">
<<if $inv.cum gte 2000>>
<<link "Unlock the power">>
<<set $inv.cum -= 2000>>
<<set $eyes = true>>
<<replace "#dormantPowerContent">>
You've removed the barrier preventing you from accessing your power that stirred after you slew Melek Taus. However, you still aren't quite sure what it does. Maybe you should sleep on it and give it some thought tomorrow?<br>
<</replace>>
<</link>>
<</if>>
</span>
</details>
<</if>>
<span id="dormantPower">
<<if $eyes is true>>
You've removed the barrier preventing you from accessing your power that stirred after you slew Melek Taus. However, you still aren't quite sure what it does. Maybe you should sleep on it and give it some thought tomorrow?<br>
<</if>>
</span>
<br>
[[dream|just dream]]
<</nobr>>
</div><<set $lust to 0>>
<div class="conversation">
<p>
You wake up with an intense desire. A need.
Your hand is immediately between your legs, absentmindedly stroking your pussy. Your clit aches as you imagine men ravaging you. The imprint of a heavy, strange body on yours, the face of a man you can't quite place as he's driving his cock into you.
<<if $genderstart == "male">>
<<if $acceptance lte 100>>
After you cum, and the sound of your cries have faded. You realize you have leveled up!
You don't feel full anymore now that the energy you were holding has had somewhere to go.
You take a moment, relishing in the feel of the soft breeze playing across your bare breasts. It rustles your hair slightly, dragging it across your collarbone. You wonder if you should play more or go back to sleep.
You opt to play more, as you imagine a hard cock. Stroking yourself with more intention now, using the other hand to tease your nipple.
You take a pose you enjoy, turning over onto your stomach, right leg hiked high so you can use your left hand and grind into the mattress with your hips. You lick your fingers and start running a highlight real through your head of past sexual conquests, as you begin drawing circles around your clit with your middle finger.
Your pussy tightens and you arch your back so that you can reach deep inside and drag your wetness across your swollen clit. You close your eyes and imagine.
You see a man below you, his chest heaving, your fingers wrapped around his neck, pinning him to the bed. You reach back with my other hand to caress his balls, feel them contract. His face is twisted in ecstasy and you grind hinto him harder, commanding him to cum. His eyes and mouth open with a gasp and you feel him pump into you.
You bite your lip and close your eyes shut, feeling your orgasm rampage through your entire body.
You lose yourself, your hips rock and circle, legs tense.
After your orgasm, you lay there in the afterglow. Once again your powers have grown.
Once upon a time you never would have daydreamed about men. That now seems like a distant memory and you don't understand why you were so resistant to it.
<<elseif $acceptance lt 50>>
After you cum, and the sound of your cries have faded. You realize you have leveled up!.
You don't feel full anymore now that the energy you were holding has had somewhere to go.
You're still not happy imagining men. It's frustrating how involuntary it is. But it doesn't bother you as much as it used to.
You continue absentmindedly rubbing yourself.
<<elseif $acceptance lt 25>>
After you cum and come down from feeling amazing, you realize you have leveled up. But instead of feeling joy at getting more powerful you're frustrated. What was with that day dream a minute ago? Couldn't you at least have imagined a woman doing something to you? Even your daydreams are turning female.
You don't feel full anymore now that the energy you were holding has had somewhere to go.
You consider rubbing yourself some more as the pleasure was great, but you decide against it. You're too frustrated with the previous daydream.
Despite your feelings on the matter, your senses tell you that you've gotten a bit stronger.
It seems like that horned woman was right. You do grow stronger from cum. But is there any other way?
<</if>>
<<else>>
<<if $acceptance lte 100>>
<<elseif $acceptance lt 50>>
<</if>>
<</if>>
<<bodypart>>
<<nobr>>
<<set $p.lvl += 1>>
<<set $p.maxhp += 7>>
<<set $p.maxmp += 5>>
<<set $p.melee += 2>>
<<set $p.magic += 2>>
<<set $p.pdef += 1>>
<<set $p.mdef += 1>>
<<set $p.charm += 2>>
<<if $p.lvl % 3 == 0>>
<<set $p.pdef += 1>>
<<set $p.mdef += 1>>
<</if>>
<</nobr>>
Level up! Max HP: $p.maxhp, Max MP: $p.maxmp, Melee: $p.melee, Magic: $p.magic, Physical Defense: $p.pdef, Magical Defense: $p.mdef, Charm: $p.charm!
Please choose 1 additional stat to strengthen!
<<listbox "_chosenStat" autoselect>>
<<option 'melee'>>
<<option 'magic'>>
<<option 'pdef'>>
<<option 'mdef'>>
<<option 'charm'>>
<</listbox>>
<<link 'Confirm' 'just dream'>>
<<if _chosenStat is "melee">>
<<set $p.melee += 1>>
<<elseif _chosenStat is "magic">>
<<set $p.magic += 1>>
<<elseif _chosenStat is "pdef">>
<<set $p.pdef += 1>>
<<elseif _chosenStat is "mdef">>
<<set $p.mdef += 1>>
<<elseif _chosenStat is "charm">>
<<set $p.charm += 1>>
<</if>>
<</link>>
</p>
</div><<nobr>>
<<set _aura to random(99)>>
<div class="conversation">
<p>
<<if $outfit.outfit is "tentacle">>
As you move through town, your tentacle Lingerie works its way into your folds, rubbing you and keeping you on the edge.
Occasional small moans leave your lips, drawing eyes from strangers. But as far as they can tell, you're wearing a normal dress and they look away unable to explain why they're so aroused.
<</if>>
<<if $horns is true or $tail is true or $wings is true>>
<<if $spells.illusion is false>>
As you walk through the village, you can feel the eyes of the villagers on you. They stare and point, their whispers carrying to your ears. You try to ignore it and keep your head held high, but it's hard to shake the feeling of being a spectacle.
As you pass by, you notice mothers quickly grabbing their children and pulling them close, shielding their eyes as if they were afraid of you. You try to understand their fear, but it only makes the weight on your shoulders feel heavier. You can't help but wonder what they're saying
Blackpool is more suspicious of you.
<<set $BPsuspicion to $BPsuspicion + 5>>
<</if>>
<</if>>
<<blackpool1>>
</p>
</div>
<</nobr>>
<<if $outfit.outfit is "none">>
<<if _aura lt (4 + $spells.aura)>>
<<goto "proposition">>
<</if>>
<<elseif $outfit.outfit is "alluringdress">>
<<if _aura lt (9 + $spells.aura)>>
<<goto "proposition">>
<</if>>
<<else>>
<<if _aura lt $spells.aura>>
<<goto "proposition">>
<</if>>
<</if>>
<<if $BPsuspicion gte 100>>
<<set $BPsuspicion to 50>>
<<goto "town bad end">>
<</if>>
<<widget 'blackpool1'>>
Current position: $locationmarker<br>
<<nobr>>
<<if $locationmarker is "b5">>
<p>Your home is located here. It's not pretty but it's better than nothing.</p>
[[north|town][$locationmarker to "c3"]]<br>
<<if $brotheljob is true>>[[Go to the brothel|town][$locationmarker to "f1"]]<br><</if>>
<<if $guardpermission is true>>[[leave town][$currentlocation to "plains"]]<br><</if>>
<<if $marketvisited is true>>[[Market|town][$locationmarker to "f3"]]<br><</if>>
<<if $taverndecision is true>>[[tavern|town][$currentlocation to "tavern", $locationmarker to "c1"]]<br><</if>>
<<if $guardpermission is true>>[[town gate|town][$locationmarker to "a2"]]<</if>>
<</if>>
<<if $locationmarker is "c3">>
[[north|town][$locationmarker to "d3"]]<br>
[[south towards home|town][$locationmarker to "b5"]]<br>
<</if>>
<<if $locationmarker is "d3">>
[[north|town][$locationmarker to "e5"]]<br>
[[south|town][$locationmarker to "c3"]]<br>
<</if>>
<<if $locationmarker is "e5">>
[[west|town][$locationmarker to "e4"]]<br>
[[south|town][$locationmarker to "d3"]]<br>
<</if>>
<<if $locationmarker is "e4">>
[[west|town][$locationmarker to "e3"]]
[[east|town][$locationmarker to "e5"]]<br>
<</if>>
<<if $locationmarker is "e3">>
<p>You see an Inn.</p>
[[west|town][$locationmarker to "e2"]]
[[east|town][$locationmarker to "e4"]]<br>
<</if>>
<<if $locationmarker is "e2">>
[[north|town][$locationmarker to "f4"]]<br>
[[east|town][$locationmarker to "e3"]]<br>
[[south|town][$locationmarker to "d2"]]<br>
<</if>>
<<if $locationmarker is "e1">>
[[north|town][$locationmarker to "f1"]]<br>
[[south|town][$locationmarker to "d1"]]<br>
<</if>>
<<if $locationmarker is "a1">>
<<if $taverndecision is false and $guardpermission is false>>
<p>You see a guard tower. You could go in and talk to the guards again, but you don't feel like you need to anymore.</p>
<<else>>
<p>Well, you've made up your mind. Time to get it over with.</p>
[[enter guard tower]]<br>
<</if>>
[[north|town][$locationmarker to "b3"]]<br>
[[east|town][$locationmarker to "a2"]]<br>
<</if>>
<<if $locationmarker is "a2">>
<<if $guardpermission is false>>
<<if $taverndecision is false>>
<<set $gatequest to true>>
<div class='row left'>
<div class='left-msg'>Jared<hr>Whoa lass. You know it's dangerous out there, aye? There are monsters out there. You looking to turn into one of 'em?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I'm actually on my way out to hunt monsters. I was told it's a good way to keep the town safe and you guys pay money for dead monsters.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Jared<hr>Eh, no monsters really come near the town all that often. Besides that's a mans job. I can't let a frail thing like you out there. Even if you did have a legitimate reason for leaving this town, it would be too unsafe without a guard. You can try finding one at the tavern. Once you've found someone, go find Garret in the guard tower west of here, he'll finish the paperwork.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>You know, I thought you were nice but you're a little misogynistic aren't you?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Jared<hr>Misojawhat? You really might be a noble with those big words.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<<if $p.acceptance gt 50>>
<p>Should you just charm him? No, he has a wife. That'd be like rape, you aren't really comfortable with that right now.</p>
<</if>>
<p>It looks like Garret won't budge. You could probably force your way through with charm, but after what happened last time...
Maybe it wouldn't hurt to check the tavern. Though you'll need to find a way to ditch any guard you get. Can't have them finding out what you are.
</p>
<<else>>
<div class='row left'>
<div class='left-msg'>Jared<hr>Did you get someone to help?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<p>Before you get a chance to answer, another guard runs up and whispers something in his ear.
</p>
<div class='row left'>
<div class='left-msg'>Jared<hr>I'll be back soon, if you're all set head into the guard tower right there and Garret will handle the paperwork.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<p>Jared points west towards the guard tower.
</p>
<</if>>
<<else>>
<<switch random(1)>>
<<case 1>>
<p>Garret winks at you and opens the gate.</p>
<<default>>
<p>Jared lets you through with a yawn. He looks bored.</p>
<</switch>>
[[leave town]]<br>
<</if>>
[[north|town][$locationmarker to "b4"]]<br>
[[west|town][$locationmarker to "a1"]]<br>
<</if>>
<<if $locationmarker is "b1">>
[[north|town][$locationmarker to "c1"]]<br>
[[east|town][$locationmarker to "b2"]]<br>
<</if>>
<<if $locationmarker is "b2">>
[[west|town][$locationmarker to "b1"]]
[[east|town][$locationmarker to "b3"]]<br>
<</if>>
<<if $locationmarker is "b3">>
<p>You see the guard tower to the south, but you can't enter from here</p>
[[west|town][$locationmarker to "b2"]]
[[east|town][$locationmarker to "b4"]]<br>
<</if>>
<<if $locationmarker is "b4">>
<p>You can see the town gate to the south</p>
[[north|town][$locationmarker to "c2"]]<br>
[[west|town][$locationmarker to "b3"]]<br>
[[south|town][$locationmarker to "a2"]]<br>
<</if>>
<<if $locationmarker is "c1">>
<<if $gatequest is true>>
<p>You come across some loud laughter and look towards the source to find a Tavern.</p>
[[Enter the tavern|Tavern][$currentlocation to "tavern"]]<br>
<<else>>
<p>A tavern is located here, but you don't feel like drinking right now.</p>
<</if>>
[[north|town][$locationmarker to "d1"]]<br>
[[south|town][$locationmarker to "b1"]]<br>
<</if>>
<<if $locationmarker is "c2">>
[[north|town][$locationmarker to "d2"]]<br>
[[south|town][$locationmarker to "b4"]]<br>
<</if>>
<<if $locationmarker is "d1">>
[[north|town][$locationmarker to "e1"]]<br>
[[south|town][$locationmarker to "c1"]]<br>
<</if>>
<<if $locationmarker is "d2">>
[[north|town][$locationmarker to "e2"]]<br>
[[south|town][$locationmarker to "c2"]]<br>
<</if>>
<<if $locationmarker is "f1">>
<p>You come across a building with moans coming from an open window on the second story. Looking at it, it's pretty obvious this is a brothel.</p>
[[enter the brothel]]<br>
[[east|town][$locationmarker to "f2"]]<br>
[[south|town][$locationmarker to "e1"]]<br>
<</if>>
<<if $locationmarker is "f2">>
[[west|town][$locationmarker to "f1"]]
[[east|town][$locationmarker to "f3"]]<br>
<</if>>
<<if $locationmarker is "f3">>
<p>This is the market district. You can see various shops.</p>
<<set $marketvisited to true>>
[[market]]<br>
[[west|town][$locationmarker to "f2"]]
[[east|town][$locationmarker to "f4"]]<br>
<</if>>
<<if $locationmarker is "f4">>
[[north|town][$locationmarker to "g1"]]<br>
[[west|town][$locationmarker to "f3"]]<br>
[[south|town][$locationmarker to "e2"]]<br>
<</if>>
<<if $locationmarker is "g1">>
[[north|town][$locationmarker to "h1"]]<br>
[[south|town][$locationmarker to "f4"]]<br>
<</if>>
<<if $locationmarker is "h1">>
[[north|town][$locationmarker to "i1"]]<br>
[[south|town][$locationmarker to "g1"]]<br>
<</if>>
<<if $locationmarker is "i1">>
<p>An angry looking guard is standing here telling you no peasants are allowed any further.</p>
[[south|town][$locationmarker to "g1"]]<br>
<</if>>
<</nobr>>
[[return home|home][$currentlocation to "shack"]]
<script>
document.getElementById("map-image").addEventListener("click", function() {
this.classList.toggle("expanded");
});
document.addEventListener("click", function(e) {
var expandedImage = document.querySelector("#map-image.expanded");
if (expandedImage && e.target != expandedImage && !expandedImage.contains(e.target)) {
expandedImage.classList.remove("expanded");
}
});
</script>
<img class="passage-image" src="demongodsassets/maps/blackpool1.png" id="map-image" style="max-width:60%; transition: all 0.5s ease-in-out;" />
<</widget>><div class="conversation">
<p>You head south towards the plains. You reminisce on when you first woke up here.
You see some mountains in the distance. Rhelyla said you could visit her there.
You also see a Forest to the south east.
</p>
[[Forest|forest1][$currentlocation to "forest1", $locationmarker to "a1"]]
<<if $wings is true>>
<p>Or use your wings to take a shortcut!</p>
<<if $unlocked.forest2 is true>>[[forest2][$locationmarker to "a3", $currentlocation to "forest2"]]<</if>>
<<if $unlocked.forest3 is true>>[[forest3][$locationmarker to "a1", $currentlocation to "forest3"]]<</if>>
<<if $unlocked.forestdungeon is true>>[[forestdungeon]]<</if>>
<</if>>
[[Mountains][$currentlocation to "mountains_day"]]
[[back to town|town][$currentlocation to "blackpool", $locationmarker to "b4"]]
[[home][$currentlocation to "shack"]]
</div><div class="conversation">
<<if $guardpermission is false>>
<p>You knock on the large wooden door, but there's no response.
You pound on the door, and there's still no response.
Finally you decide to enter, and you find the guard Garret napping on a chair.
<div class='row right'>
<div class='right-msg'>Eh hem. <<if $genderstart is "grill">>EXCUSE ME, THYME IS MONEY!<</if>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Instead of being roused by your noise, he starts snoring louder.
You open the door you just entered and slam it as hard as you can.
Hilariously, the guard falls out of his chair in a panic.
<div class='row left'>
<div class='left-msg'>Garret<hr> Fuck! Where's my sword! Who's attacking!?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
He sees you standing there grinning
<div class='row left'>
<div class='left-msg'>Garret<hr> Ah, please excuse me. I was uh..thinking about something and didn't see you enter. How can I help?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I need to leave the city.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Garret<hr> Do you have a guard? I already told you...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Listen, I remembered something. It's not much, but I remember I was <<if $genderstart isnot "grill">>an adventurer. I can fight.<<else>>a cook! And I collect my own ingredients thank you very much.<</if>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Garret's laughter is as annoying as his attempt to conceal that he was sleeping.
<div class='row left'>
<div class='left-msg'>Garret<hr> You're a woman. That makes you weak. You're not a paladin so you have no defense against magic. Where are your weapons?
(sigh) Lady, I can't let regular people, especially women, out of here. You know what will happen if you get tainted by one of them?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
<<if $genderstart is "grill">>
<div class='row right'>
<div class='right-msg'>You butter believe it!
I can cast magic!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Your palm starts glowing with a small flame. Panic sets in his eyes.
<div class='row left'>
<div class='left-msg'>Garret<hr>Lady to make up for my earlier actions, put that out immediately. If the church or one of its followers finds out about this, it's certain death!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
You're surprised, but you put out your flames immediately. Likely the only thing that saved you from being reported is that you've already charmed him once.
<<else>>
Something about a misogynistic fantasy world seems very cliche, and kind of pisses you off.
It's pretty obvious he wouldn't believe you if you told him a Goddess told you that you're immune.
<</if>>
<div class='row right'>
<div class='right-msg'>Can you refresh my memory? About this taint? Amnesia and all, you know...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Garret<hr> Men and Women alike are targets when they leave town. Especially Women. You will be attacked. But it doesn't just end there.
They will violate you in every way possible. Losing your clothes will be the least of your worries, once even the smallest amount of corruption enters your body, you become tainted. There is no cure for being a tainted one, you'll slowly become a monster like them. Or, depending on how much you consumed, it could be very quick. If you're lucky.
Do you rellish the idea of wandering around like a mindless zombie with the only thought is to rape anyone and anything you come across?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
Fuck it
<div class='row right'>
<div class='right-msg'>What if I told you I'm immune?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Garret<hr> (laughter)
If that was true, I would personally request you to become an adventurer<<if $genderstart is "grill">> or cook or whatever. Though I'm not sure why a cook needs to leave town<</if>>.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>But I am.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Garret<hr> Lady maybe you bumped your head pretty hard when you lost your memory. But no one is immune. Now please, just go home.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
<<if $acceptance lt 50>>
You hesitate weighing your options.
You can either give up and go back to town like he suggests and find a way to make a living. Who knows what that Goddess will do if she finds out you're not even attempting to do the task she gave you.
You already made up your mind before coming here. It's revolting but you HAVE to do something.
<<else>>
Honestly, why did you even bother up to this point. You should have just done this from the beginning.
<</if>>
You kneel down in front of Garrets chair and begin casting your charm on him
<div class='row right'>
<div class='right-msg'>Please sir, let me leave.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Garret<hr> Lady you don't underst-
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
In an instant you've removed your clothes and are standing in front of him completely naked.
<div class='row right'>
<div class='right-msg'><<if $genderstart isnot "grill">>If you let me leave, I'll do you a favor..<<else>>Lime yours<</if>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You start fiddling with the tie on the guards pants as the guards eyes start to glaze over.
Your bodies instincts start to take over as you drop to your knees and take his length in your mouth. <<if $acceptance lt 50>>You can't believe you're doing this. <<if $genderstart == "male">>You never thought you'd willingly go down on a man.<</if>> Yet, you can't deny that despite your personal wishes, this is getting you hot.<</if>>
You work his cock with your mouth, sucking hard with your tongue and making eye contact with him the entire time.
It doesn't take long before he's tilting his head back and moaning loudly, when you suddenly feel something salty and delicious sliding down your throat.
<div class='row right'>
<div class='right-msg'>Did I really just find that delicious?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The guard snaps out of his stupor bringing you out of your thoughts
<div class='row left'>
<div class='left-msg'>Garret<hr> You can leave. I'll uhh, let the others know you're an experienced adventurer<<if $genderstart is "grill">> cook<</if>>.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
<<if $acceptance lt 50>>
You're humiliated. Now that you've swallowed cum, you're able to think clearly. You realize that you weren't as resistant to this as you should be. It's likely that when this body starts getting hungry, it starts getting harder to resist.
<</if>>
Your hunger is gone, and you've gained a small amount of cum from Garret.
[[leave town]]
<<set $arousal to 0>>
<<set $inv.cum to $inv.cum + 20>>
<<set $guardpermission to true>>
<<set $lust to $lust + 15>>
<<set $p.acceptance += 1>>
</p>
<<else>>
<p>
<div class='row left'>
<div class='left-msg'>Garret<hr> Is there something I can help you with?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'><<if $genderstart is "grill">>Nope, just making sure the Dev remembered to remove this scene<<else>>Nope, sorry!<</if>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<if $genderstart is "grill">>
<div class='row left'>
<div class='left-msg'>Garret<hr>Something is wrong with you.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
<</if>>
</p>
[[leave|town]]
<</if>>
</div>
<div class="conversation">
<<if $boss1alive is true>>
You should probably finish exploring the forest before coming here.
<</if>>
Explore the mountains during the day?
[[mountains - daytime][$currentlocation to "mountains_day"]]
<<if $metbeforecity is true>>
[[Visit Rhelyla]] Energy - 5
[[back|leave town][$currentlocation to "plains"]]
<<else>>
You explore the base of the mountains until you see a cave with a door inside. This must be the place that woman mentioned.
[[Visit Rhelyla]] Energy - 5
[[back|leave town][$currentlocation to "plains"]]
<</if>>
</div><div class="conversation">
<<set $energy -= 5>>
<p>You knock on the door, unsure if you'll receive an answer.</p>
<<set $rhelylahome to random(99)>>
<<if $rhelylahome gt 45>>
<p>On the other side of the door you hear a voice.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Oh it's you! I'm so happy you came to visit! Please enter!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
[[Enter|Rhelyla Home]]
<<else>>
<p>There's no answer, looks like she's not home right now. Let's return another time.</p>
[[Return|Mountains]]
<</if>>
</div><<set $metbeforecity to true>>
<div class="conversation">
<p>
<<if $rhelylaquestions is false>>
<<set $rhelylaquestions to true>>
You enter and look around surprised at how nice the place looks for a cave with a door.
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Welcome to my home! It's small, but I quite like it. What can I do for you?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>This place isn't very well hidden, do you just let anyone enter?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Of course not, dear. You're a Succubus and you don't know illusion magic? It's an absolute must for us if you wish to survive. Looks like you haven't grown your features yet. You are young, but soon you'll have certain features you'll need to hide from humans, our wings are retractable so that's easy enough, but you'll still need to hide your horns and tail. We use illusion magic to hide our bodies, as well as our homes. This illusion I cast is quite powerful and only another of my race could sense it and find it. To most others, there isn't even a cave. If you don't want to be chased out of town or killed, I highly recommend you learn illusion magic as soon as possible.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
You take note, then decide you have more questions you'd like to ask
<<else>>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> You're back!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I have more questions.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Ask away.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<</if>>
<details>
<summary style="color:#8282f3;">So what is taint, or corruption, or whatever?</summary>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> We Succubi have a slight resistance to the corruption. You'd do well to learn it's scent and avoid it. I've never heard of a Succubi succumbing to it and becoming one of those...things. But we're not immune. If you have one tainted creature, get away as fast as possible. Use whatever means are at your disposal to escape. Of course, if you get caught, do your best to escape before the corruption becomes more than you can handle.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
</details>
<details>
<summary style="color:#8282f3;">How often must I feed?</summary>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Sadly, Succubi tend to be a solitary race so I don't know much about how it varies from person to person. But in my experience, the longer I live and the stronger I grow the less I need to feed. However the more I feed, the more energy I consume. This means I can use more spells, and as a bonus I need to feed less often. When you sleep, you can subconsciously grow your powers in the direction you wish. So while we don't necessarily need to sleep much compared to a human, It's still a good idea to do so regularly. Our bodies can't get any stronger without a sleep cycle.
From what I've learned, it seems like younger Succubi expend too much energy when they're young. It's like a young Basilisk using its powers to turn you to stone over and over without realizing it's already accomplished its goal until it drops dead from exhaustion.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>A basilisk?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Just how clueless are you? You know, those bird things with scales? Surely when you were young, someone told you to stay away from them. To humans it would be certain death. To a young succubus like yourself, it would likely take you a minimum of 10 years to escape, if you weren't already destroyed by then
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
</details>
<details>
<summary style="color:#8282f3;">Is there any other way to feed besides sex with men?</summary>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Why would you ever want to do that?
As I mentioned previously, Succubi are a solitary race. But I don't think it's possible for us to not desire sex. It's kind of wired into our heads.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<<if $acceptance lt 50>>Dammit
<<else>>
<div class='row right'>
<div class='right-msg'>Just curious
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<</if>>
</details>
<details>
<summary style="color:#8282f3;">How should I seduce men to feed better?</summary>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> There are a few ways. For one, you could strengthen your aura. It's like a sexual aura, or you could think of it like pheremones that you give off. All Succubi have one, but it's something you'll need to improve on your own.
Alternatively, I used to have a dress that was cursed. It resulted in a lot of public sex which was a lot of fun... I'm not sure where I've misplaced it. If you manage to find it, its yours.
Of course, you could always try getting a job at a brothel. It's not even work, you get paid AND you get fed. Not to mention how fun it is!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
</details>
<details>
<summary style="color:#8282f3;">What kind of tainted monsters are there?</summary>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> In the forest, there's these plant like monsters called Alraune's. They used to be Dryad's, unable to stray very far from the tree they were born with. The Alraune is a tragic creature, once a beautiful Dryad imbued with the power of nature. But the demons, ever seeking to twist and corrupt, transformed the Alraune into a monster. Though their minds remain intact, they are now unable to resist attacking those around them. Their bodies have become twisted, resembling a plant with tentacles and a female body at its center. It is a sad sight to behold, a reminder of the destructive power of the demons and their never-ending thirst for domination. They're a lot of fun, and the sex is amazing! But even I can only handle the taint from one of them before I need to go home and recuperate for a week, and I'm at least a century older than you.
Additionally there are goblins, slimes, and I once saw this weird...Humanoid tentacle thing in the forest as I flew overhead. I don't know what it is, but that forest is dangerous
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
</details>
<details>
<summary style="color:#8282f3;">Do you know what's causing this corruption?</summary>
Rhelyla gets a dark look on her face<br>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> I don't know what they're called. Humans call them Demon Gods, and the one that lives in these very mountains has called himself the Demon God Pseudinferis.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>You've met one?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Well, no. Not directly. I watched slave caravan come through here that was ransacked by him. He told them himself that he was a God. I'm no good samaritan but even if I risked my life for those insignificant creatures, there's no way I would have gotten away. Instead I hid and hoped he wouldn't notice me. Whether it was my illusion magic, or he simply didn't care about me I don't know. But he left without looking my direction
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
</details>
<details>
<summary style="color:#8282f3;">So in my past life I was a human, and I guess I'm immune to corruption from tainted creatures</summary>
You almost bring this up, but you decide it's not the right time. You don't trust this woman yet, even if she has been incredibly helpful. Afterall, she did call humans "insignificant creatures", how would she react if she knew you used to be one?
</details>
<details>
<summary style="color:#8282f3;">Demons?</summary>
<div class='row right'>
<div class='right-msg'>Wait, we're demons?!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<if $genderstart isnot "grill">>
Why would a Goddess turn me into a Demon? Aren't Demons supposed to be evil?
<<else>>
Humans, demons, grills, extinct herbivores. It's all the same to you.
<</if>>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Yes, but not exactly what you're thinking. We are related to those Demon Gods or whatever they want to be called, same as the other Demon's who are currently at war with humans. After coming to this world, they immigrated to the same country as the beastmen.
Think of those "Gods" like distant cousins. They come from the same world as us, rumor has it that was 3,000 years ago.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>But how we all got here, I couldn't tell you. I was born in this world roughly 1,000 years ago and as far as I know the path home is long gone and mostly forgotten. You'd have to find out from them directly. But this is likely why we have some resistance to their taint. We can even remove the taint from humans who haven't transformed yet, but I wouldn't recommend doing so often. We can only handle so much.
Back to my original point however, if you have too many meals and get strong too quickly, you could find yourself in quite the predicament. You must learn to control your illusions before then, well enough that you can keep an illusion on yourself even while you sleep
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
</details>
<details>
<summary style="color:#8282f3;">So I understand I have to absorb essence from others. How do I use that to get stronger?</summary>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Don't worry, it's subconcious. You couldn't mess it up even if you tried. I don't really know how to explain it better than this, but any spells you learn, any body modifcations you make to yourself, you'll be able to do it by instinct without thinking about it.
...
However, make sure you sleep often. Any energy you take from men will be wasted if you reach a growth point and don't sleep. Who would want to waste that delicious semen?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
</details>
<details>
<summary style="color:#8282f3;">So if there are Dryads, humans, Succubi... What else are there? Are there elves?</summary>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Impressive, not even many humans know elves exist beyond fairy tales. Elves do not show themselves often. I don't know why. I heard something about a war when I visited an Elf village once, but they were very tight lipped and wouldn't tell me.
It's worth mentioning too that unlike humans, Elves know what we are. They're not particularly fond of us, but they tolerate us. You'll likely be allowed to trade with them, but don't expect to be making any friends. Also, your magic won't work on them. Illusion, or any spells you try and cast on them, including charm. If you try it, you're more likely to offend them.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Noted.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
That's disappointing. You were kind of excited to meet the most famous fantasy creature.
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Now for other races, there's another race of Demon-Kin closer related to us than those Demon Gods. But they are often warring with the humans, so it's not likely you'll meet one in this country. If they're found, they'd either be killed or put to work in a camp. There's also the beastfolk. You're more likely to see them than Demonkin, but they'll probably be in chains. Humans like to use them as slaves due to their natural strength. I've also heard rumors that some of them have joined the Demonkin's forces.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Beastfolk?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> You've never met one? They're human in appearance, the most obvious feature besides their strength or agility would be their ears and tail. But in this country, most of them hide those features if they're not already slaves. I do feel at least a little bad for them, be a dear and don't point them out to anyone else.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
</details>
<details>
<summary style="color:#8282f3;">You mentioned I needed to learn illusion magic. You're saying I'll grow wings and stuff like you?</summary>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Yes, these parts are hereditary in our demon ancestry. Your ears could pass you off as an elf, but as I mentioned previously, most humans don't know elves exist so it could still cause confusion and fear, and may get you killed. But I'm sure you've already noticed your claws. Here, take this.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
She takes a tome from one of her shelves and hands it to you.
You've obtained the illusion tome!
<<set $tome.illusion to true>>
</details>
<details>
<summary style="color:#8282f3;">If I have to have sex, where can I get some form of birth control? I don't want to get pregnant.</summary>
Rhelyla starts laughing incredibly hard
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Sweetie, I don't know what birth control is. And I'm not about to teach you about the birds and the bees. You know we can't breed outside of our own race, don't you? Whoever sired you failed you as a parent
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Wait, so I can get pregnant if I have sex with a succubus?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> ... Of course not. The men of our race are called Incubi. There's a very low possibility of them impregnating us, but it does happen. After all, you're alive. What about your mother?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<<if $genderstart is "grill">>
Technically wouldn't that goddess light be your mother? <br>
<div class='row right'>
<div class='right-msg'>Dunno. She just dumped me in those plains near here and said "Gouda Luck". Never saw her again.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<else>>
A half truth is probably best for now. It's better than explaining how you don't have any parents in this world, but a goddess sent you here and turned you into a succubi
<div class='row right'>
<div class='right-msg'>I never met them.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<</if>>
Immediately after the words leave your mouth, Rhelyla looks sad.
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> I see, this makes more sense that you don't know anything then. Though I'm curious how you survived these past.. What are you, twenty? Well, if you ever meet an Incubus you'll know right away. Like us, Incubi hide amongst humans hiding their presence with illusions. But like us, they're very rare. It's unlikely either of you will be able to resist eachother if you meet. We have very strong reactions to each other when we encounter the aura of another. I myself have met one in the last century I've been alive.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>So are you a parent?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> No, as I mentioned before. Pregnancy is still very rare for our race. Similar to a vampire's bite rarely turning a human into another vampire instead of a ghoul.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
Vampires exist too!?
</details>
<details>
<summary style="color:#8282f3;">Would you like to fuck?</summary>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Not interested.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oh sorry, I just thought...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Don't worry, it's nothing against you. You're just missing a certain body part I enjoy. However, I would be ecstatic to join you if we get a couple or ten men.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<<if $p.acceptance gt 50>>
Having other men involved could be fun
<<else>>
You were kind of hoping to have her alone<<if $genderstart == "male">>, maybe just to find out if you were still interested in women<</if>>, but maybe you could consider this option<<if $genderstart == "male">> if you're ever comfortable with men<</if>>.
<</if>>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> There's also another possibility, but I'm not ready yet. There's a certain Succubi spell I've been trying to learn but have had no success as of yet. There's a story of a Succubi who later in life became an Incubi. She left a tome detailing the spell. I don't wish to become an Incubi, I'm quite happy with being a Succubus. However, I was hoping I could learn how to grow a cock temporarily for some fun.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<<if $genderstart == "male">>You vow to keep an eye out for this tome. This might be your ticket to getting your cock back!
<<else>>That...Could be fun.
<</if>>
</details>
<details>
<summary style="color:#8282f3;">Can you teach me anymore magic?</summary>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> Well, I do have a magic tome here. Here, you can have this one. Should give you the basics so you can learn to use fire on your own. Be warned, avoid using this around anyone else at all costs. The church hunts down magic users and either enslaves or kills them.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<<if $genderstart isnot "grill">>
<<set $tome.fire to true>>You've acquired the fire tome!
<<else>>
<div class='row right'>
<div class='right-msg'>Oh that's ok, I already know fire magic! Thanks a latte though!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<</if>>
</details>
You've heard enough and it's time to head out.<br>
[[leave|leave town]]
</p>
</div><div class="conversation">
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/brothelguard.png" >
<<if $brotheljob is false>>
You enter the brothel and see a guard at the entrance. He's not a town guard, as his clothes are different, but he's still very clearly standing guard with a sword at his hip
<div class='row left'>
<div class='left-msg'>Brothel Guard<hr> Customer? We don't get a lot of women here.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/brothelguard.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Ah, no I uhh...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Brothel Guard<hr> Well if you came for a job, you've definitely got the body for it.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/brothelguard.png">
</div>
</div>
<<if $p.acceptance lt 75 and $arousal lt ($maxarousal * 0.75)>>
<div class='row right'>
<div class='right-msg'>No no no, sorry. I took a wrong turn. I'm sorry!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You run out the door
[[town]]
<<elseif $p.acceptance gte 75>>
You consider it. You love money. You love sex. Should you?
<<if $energy lt 15>>
Not enough energy.
<<else>>
[[Here for a job][$energy -= 15]] 15 energy
<</if>>
[[Sorry took a wrong turn|town]]
<<elseif $arousal gte ($maxarousal * 0.75)>>
No. Absolutely not. No.
And yet...You're famished. You're beyond starving. If you don't do this right now, you might kill another person...
<<if $energy lt 15>>
Not enough energy.
<<else>>
[[Here for a job][$energy -= 15]] 15 energy
<</if>>
[[Sorry took a wrong turn|town]]
<</if>>
<<else>>
You enter the brothel and see the guard.
<div class='row left'>
<div class='left-msg'>Brothel Guard<hr> Here for work?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/brothelguard.png">
</div>
</div>
<<if $p.acceptance gte 50>>
<<if $energy lt 30>>
You don't have enough energy right now.
<<else>>
[[Work at the Brothel][$energy -= 30, $slutfame += 1, $p.acceptance += 1]]
<</if>>
[[town]]
<<elseif $arousal gte ($maxarousal * 0.75)>>
Here again. You want to say no and leave, but you're starving.
<<if $energy lt 30>>
You don't have enough energy right now.
<<else>>
[[Work at the Brothel][$energy -= 30, $slutfame += 1, $p.acceptance += 1]]
<</if>>
[[town]]
<<else>>
No. You may have agreed to work here when you were desperate, but you're not starving right now and there are still other ways to earn money that don't involve...<<if $genderstart == "male">> Men.<<else>> selling your body.<</if>>
[[town]]
<</if>>
<</if>>
<<if $boss1alive is false>>
<<if $rhelylanote is true and $charmtraining lt 5>>
[[Visit Rhelyla|Charm Training]]
<</if>>
<</if>>
</p>
</div>
<div class="conversation">
<div class='row right'>
<div class='right-msg'>Um.. Yeah, I heard I could enough money to make a living here...you know, selling my body.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Brothel Guard<hr> Well I'm sure they'll love ya. Though I prefer women with more meat on their bones.
Come on then, I'll take you to the boss.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/brothelguard.png">
</div>
</div>
<p>You follow him inside. The first floor seems like your standard tavern, aside from the fact that all the servers are women... and they're nearly naked. Seems the employee uniform is a skirt and no top. If you get hired here, will you have to walk around topless and serve drinks too? You follow the guard up some stairs.
The guard leads you to a room that looks vaguely reminiscient of asian homes with Tatami mats. You're pretty sure it's even made from rice, which you weren't aware existed in this world.
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/brothelboss.png" >
A very handsome and well-trimmed man sits behind a desk poring over some documents. He glances up at you as the guard takes his leave.
</p>
<div class='row left'>
<div class='left-msg'>Brothel Boss<hr> An interview, huh. Not a lot of women come here on their own. They're usually sold to us by their shitty husbands or parents.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/brothelboss.png">
</div>
</div>
<p>He stares at your body, looking you from head to toe.
</p>
<div class='row left'>
<div class='left-msg'>Brothel Boss<hr> I can guarantee the women who work here are happier than out on the streets, and we make sure they're treated well.
You'll fit right in. But first I need to make sure you have the skills
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/brothelboss.png">
</div>
</div>
<<if $sexcount lt 10>>
<div class='row right'>
<div class='right-msg'>I'm afraid I've only been with $sexcount men so far if we're talking vaginal sex. I don't have a ton of experience.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>Well, human men anyways...</p>
<div class='row left'>
<div class='left-msg'>Brothel Boss<hr> No matter
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/brothelboss.png">
</div>
</div>
<p>He stands up and removes his pants. His dick is already pointing at you, and you can already feel yourself getting wet.
</p>
<div class='row left'>
<div class='left-msg'>Brothel Boss<hr> Everyone starts somewhere, lets see what you've got.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/brothelboss.png">
</div>
</div>
<p>You really don't know how to be sexy. It's not like you swayed your hips back when you were a <<if $genderstart == "male">>guy<<elseif $genderstart == "fem">>human<<else>>grill<</if>>, or gave a pouty face, or made any effort to appeal to men. But you give it your best, you need this job if you don't want to accidentally murder innocent people. Plus the extra money is nice.
You awkwardly strip your clothes off slowly, trying to be as sexy as possible.
You get on all fours and crawl up to him, removing his dick from his trousers. You're repulsed by your own actions but you're going to have to get used to it. You lick around the head, before taking it in your mouth and slowly bobbing your head up and down. Stroking the underside of his cock with your tongue.
</p>
<div class='row left'>
<div class='left-msg'>Brothel Boss<hr> Damn you're really good. You said you were inexperienced?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/brothelboss.png">
</div>
</div>
<p>You ignore the compliment, focusing on his cock.</p>
<<else>>
<div class='row right'>
<div class='right-msg'>I've slept with over $sexcount men so far. Don't worry, I'm quite confident.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Brothel Boss<hr> Glad to hear it.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/brothelboss.png">
</div>
</div>
<p>He stands up and removes his pants. His dick is already pointing at you, and you can already feel yourself getting wet.
</p>
<div class='row left'>
<div class='left-msg'>Brothel Boss<hr> Lets see what you've got.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/brothelboss.png">
</div>
</div>
<p>You know how to use your body to be sexy. You've done this plenty of times and there's not even a reason to worry. But you still give it your best, you need this job if you don't want to accidentally murder innocent people. Plus the extra money is nice.
You strip your clothes off slowly, trying to be as sexy as possible.
You get on all fours and crawl up to him, removing his dick from his trousers. You're excited and can't wait to put it in your mouth. You lick around the head, before taking it in your mouth and slowly bobbing your head up and down. Stroking the underside of his cock with your tongue.
</p>
<div class='row left'>
<div class='left-msg'>Brothel Boss<hr> Damn you weren't lying, you're amazing!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/brothelboss.png">
</div>
</div>
<p>You ignore the compliment, focusing on his cock.</p>
<</if>>
<div class='row left'>
<div class='left-msg'>Brothel Boss<hr> If you continue anymore I'm going to blow already. You're amazing. Lets switch
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/brothelboss.png">
</div>
</div>
<p>He motions you into position.
This time he wants you in his chair. Your back, flat against the seat of his chair, he begins to penetrate you. Whether you wanted this or not in the beginning you can't deny that you, or at least your body loves this.
While he's in control, he fucks you hard. You can't believe how good this feels, he's amazing. He's hitting the right spots like a pro. You're vaguely aware of how slutty your voice sounds as you moan on his cock.
<<if $genderstart == "male" or $genderstart == "grill">>You're not sure how much of your body fits the anatomy of a normal woman, and how much of it is purely part of your succubus race for sex.
For example, you can feel your vagina squeezing and rubbing his cock inside you<<if $genderstart == "male">> in ways you wish you could experience as a man<</if>>.<</if>>
That said, he doesn't last much longer. His grunting gets louder and louder until you feel him climax which triggers your own climax. He grunts and you scream from the pleasure.
After you finished, he starts putting his clothes back on.
</p>
<div class='row left'>
<div class='left-msg'>Brothel Boss<hr> You did good, time for you to meet the boss.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/brothelboss.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I thought you were the boss!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>Did you just get duped!?</p>
<div class='row left'>
<div class='left-msg'>Brothel Boss<hr> No, she said she wanted to see what you got before she accepted you. Truthfully she said she was going to hire you no matter what. Apparently you made some kind of impression on her.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/brothelboss.png">
</div>
</div>
<p>On 'her'? Wait this person already knew you were coming!? You consider his words when a voice speaks up.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> No need to go anywhere, I watched the whole thing!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Rhelyla!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>The man excuses himself and leaves while Rhelyla runs up and gives you a hug, not even caring as your twat drips semen on her leg.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> That's right sweetie, I'm so glad you decided to come work for me! I just knew we'd get along. Afterall, what other job is more perfect for people like us?
Needless to say, you've got the job. And you don't need to worry about your skills. It's in our nature to already be good at whatever fantasy the man has. You'll never leave anyone unhappy. Hell you might even bring in a small fortune, Men will line up for miles for you!
I've always wanted to hire another Succubus!
Make sure you build your fame, the more popular you are, the more copper you'll earn! And the more frequently men will request you. I'll even give you access to our VIP clients.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>She hugs you out of excitement before handing you your uniform. Your uniform is just a skirt. That's it.</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>You'll be allowed to purchase more outfits here soon, The only rule is that it must be revealing.
Additionally, once I send out a letter, you'll be able to work at any brothel if you ever leave the city. I'm so excited to have you here!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<<set $brotheljob to true>>
<<set $arousal to 0>>
<p>You now work at the Brothel! <<if $p.acceptance lt 50>>Though you'll only use it if you're hungry...<<else>>You can come and go as you please.<</if>>
</p>
</div>
Return to [[town]]<div class="conversation">
<<set _brothelpickup to random(99)>>
<<if $slutfame lte 20 and _brothelpickup lte 19>>
<<brothelclient>>
<<elseif $slutfame lte 40 and _brothelpickup lte 32>>
<<brothelclient>>
<<elseif $slutfame lte 60 and _brothelpickup lte 49>>
<<brothelclient>>
<<elseif $slutfame lte 80 and _brothelpickup lte 59>>
<<brothelclient>>
<<elseif $slutfame lte 100 and _brothelpickup lte 70>>
<<brothelclient>>
<<elseif $slutfame gt 100>>
<<brothelclient>>
<<else>>
<<switch random(4)>>
<<case 1>>
<p>
You start your shift. You walk around the first floor of the brothel, serving food and beer to patrons waiting for one to choose you to go upstairs.
One man stands out. He's tall, well-built and handsome, but he has the look of an air about him. He looks up from the table and puts a coin on the table. A sign to call you over.
<div class='row left'>
<div class='left-msg'>Brothel Patron<hr> A coin for conversation, What's your name?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
He takes another sip from his mug. as you pocket his coin.
<div class='row right'>
<div class='right-msg'>$name
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
There's a brief but awkward pause
<div class='row right'>
<div class='right-msg'>if you like what you see, you can take me upstairs
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Brothel Patron<hr> No, I'd just like some conversation
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
You sit beside him, as he talks to you about his youth, asking about yours. You're vague with your answers as most of them wouldn't make sense to a resident of this world, but he's rather kind.
</p>
<<case 2>>
<p>
You start your shift at the Brothel<<if $p.acceptance gt 75>> with enthusiasm. You love working here and hope to have many regular customers who are always happy to see you<</if>>. You take a deep breath and begin serving ale to the patrons. As the night wears on, you listen in on conversations and chat with the customers, waiting for someone to request your services. But as the night draws to a close, you realize that no one has put a coin on the edge of their table.
</p>
<<case 3>>
<p>
You start your shift at the brothel. You worked hard to get noticed and hoped to impress some of the patrons tonight. You served ale and listened in on conversations, laughed at every lame joke, blushed at every wandering hand, eager for someone to request your services. But as the night wears on, you notice that many of the patrons seem distracted or preoccupied. You try to engage them in conversation, but they are not interested. As the night draws to a close, you realize that no one has put a coin on the edge of their table for you or the other girls. You feel disappointed and frustrated.
</p>
<<case 4>>
<p>
You start your shift at the brothel. You serve ale and listen in on conversations, but you're not really engaged. You're just going through the motions. As the night wears on, you notice that many of the patrons are making lewd jokes and comments which you pretend to enjoy. You notice one patron finally put a coin on his table, but when you approach, he requests a different girl. You're disappointed.
</p>
<<default>>
<p>
You start your shift. The Brothel was a riot of sound and color, with men from all walks of life mingling together in raucous revelry. You could barely keep up with the orders, as you weaved through the throngs of drunken men. As you squeezed between them, you frequently felt a hand grab your rear or cup your breast. But you never looked back, as this was just part of the job.
Unfortunately you received no clients during this shift, but you did still make a few tips.
</p>
<</switch>>
<<set $coppermod to $slutfame + 20>>
<p>
Noone took you upstairs today, but you still received a tip.
You go home disappointed<<if $arousal gt 50>> and hungry<</if>>.
You collected $coppermod copper as tips
</p>
<<if $energy gte 30>>
[[work another shift|Work at the Brothel][$energy -= 30, $slutfame += 1, $p.acceptance += 1]]
<<else>>
You're too tired to work another shift.
<</if>>
Go back to [[town]]
<</if>>
</div> <<widget 'forest1map'>>
<div class="conversation">
<p>
<<nobr>>
Current position: $locationmarker <br>
<<if $locationmarker is "a1">>
<p>You are standing at the entrance to the Forest lvl 1. You can head deeper, or you can go back and exit.</p><br>
[[north|forest1][$locationmarker to "b1"]]<br>
<<if $wings is true>>
<p>Or use your wings to take a shortcut!</p>
<</if>>
<<if $unlocked.forest2 is true>>[[forest2][$locationmarker to "a3", $currentlocation to "forest2"]]<br><</if>>
<<if $unlocked.forest3 is true>>[[forest3][$locationmarker to "a1", $currentlocation to "forest3"]]<br><</if>>
<<if $unlocked.forestdungeon is true>>[[forestdungeon][$currentlocation to "forestdungeon"]]<br><</if>>
[[home][$currentlocation to "home"]]
<</if>>
<<if $locationmarker is "b1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest1][$locationmarker to "c4"]]<br>
[[south towards Forest Exit|forest1][$locationmarker to "a1"]]<br>
<</if>>
<<if $locationmarker is "c1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest1][$locationmarker to "d1"]]<br>
[[east|forest1][$locationmarker to "c2"]]<br>
<</if>>
<<if $locationmarker is "c2">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest1][$locationmarker to "c1"]]<br>
[[east|forest1][$locationmarker to "c3"]]<br>
[[north|forest1][$locationmarker to "d2"]]<br>
<</if>>
<<if $locationmarker is "c3">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest1][$locationmarker to "c2"]]<br>
[[east|forest1][$locationmarker to "c4"]]<br>
<</if>>
<<if $locationmarker is "c4">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest1][$locationmarker to "c3"]]<br>
[[north|forest1][$locationmarker to "d3"]]<br>
[[south|forest1][$locationmarker to "b1"]]<br>
<</if>>
<<if $locationmarker is "c5">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest1][$locationmarker to "d4"]]<br>
[[south|forest1][$locationmarker to "b2"]]<br>
<</if>>
<<if $locationmarker is "a2">>
<<if $forest1minialive is true>>
You sense something powerful up ahead. It might be better to come back when you're stronger. Continue anyways?<br>
[[continue|forest1miniboss]]<br>
<<else>>
You're back in the clearing where you killed that bandit. He was strong, but you've gotten stronger.<br>
<</if>>
[[north|forest1][$locationmarker to "b2"]]<br>
<</if>>
<<if $locationmarker is "b2">>
<p>The faint sound of a bubbling stream reaches your ears from the east.</p><br>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest1][$locationmarker to "c5"]]<br>
[[south|forest1][$locationmarker to "a2"]]<br>
[[east|forest1][$locationmarker to "b3"]]<br>
<</if>>
<<if $locationmarker is "b3">>
<p>You arrive at a stream</p><br>
[[west|forest1][$locationmarker to "b2"]]<br>
[[investigate the stream]]<br>
<</if>>
<<if $locationmarker is "d1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest1][$locationmarker to "e1"]]<br>
[[south|forest1][$locationmarker to "c1"]]<br>
[[east|forest1][$locationmarker to "d2"]]<br>
<</if>>
<<if $locationmarker is "d2">>
<<if $events.forest1d2 is false>>
<p>As you wander through the dense forest, you notice a small glint of metal poking out from behind a tree. You pause for a moment, considering whether or not you should spend the energy to investigate. The thought of possibly finding something useful is tempting, but you know that you need to be mindful of your energy reserves. Do you decide to investigate, or do you continue on your journey without stopping?</p><br>
<<if $energy gte 10>>
[[investigate][$energy -= 10, $events.forest1d2 to true]] - 10 energy<br>
<<else>>
<p>You don't have enough energy</p><br>
<</if>>
<<else>>
<p>You've already collected this!</p><br>
<</if>>
[[south|forest1][$locationmarker to "c2"]]<br>
[[west|forest1][$locationmarker to "d1"]]<br>
<</if>>
<<if $locationmarker is "d3">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest1][$locationmarker to "e2"]]<br>
[[south|forest1][$locationmarker to "c4"]]<br>
<</if>>
<<if $locationmarker is "d4">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest1][$locationmarker to "e4"]]<br>
[[south|forest1][$locationmarker to "c5"]]<br>
<</if>>
<<if $locationmarker is "e1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest1][$locationmarker to "f1"]]<br>
[[south|forest1][$locationmarker to "d1"]]<br>
<</if>>
<<if $locationmarker is "e2">>
<<if $events.forest1e2 is false>>
<p>You spot something shiny in the corner of your eye. It looks like a small, glinting copper coin. You're not sure how long it's been sitting here, but it could potentially be worth something. You wonder if it's worth spending 10 energy to investigate.</p><br>
<<if $energy gte 10>>
[[investigate][$energy -= 10, $events.forest1e2 to true]] - 10 energy<br>
<<else>>
<p>You don't have enough energy</p><br>
<</if>>
<<else>>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
<</if>>
[[east|forest1][$locationmarker to "e3"]]<br>
[[south|forest1][$locationmarker to "d3"]]<br>
<</if>>
<<if $locationmarker is "e3">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[east|forest1][$locationmarker to "e4"]]<br>
[[west|forest1][$locationmarker to "e2"]]<br>
<</if>>
<<if $locationmarker is "e4">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest1][$locationmarker to "f2"]]<br>
[[south|forest1][$locationmarker to "d4"]]<br>
[[west|forest1][$locationmarker to "e3"]]<br>
<</if>>
<<if $locationmarker is "f1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest1][$locationmarker to "g1"]]<br>
[[south|forest1][$locationmarker to "e1"]]<br>
<</if>>
<<if $locationmarker is "f2">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest1][$locationmarker to "g3"]]<br>
[[south|forest1][$locationmarker to "e4"]]<br>
<</if>>
<<if $locationmarker is "g1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[east|forest1][$locationmarker to "g2"]]<br>
[[south|forest1][$locationmarker to "f1"]]<br>
<</if>>
<<if $locationmarker is "g2">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest1][$locationmarker to "h1"]]<br>
[[west|forest1][$locationmarker to "g1"]]<br>
<</if>>
<<if $locationmarker is "g3">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest1][$locationmarker to "h3"]]<br>
[[south|forest1][$locationmarker to "f2"]]<br>
<</if>>
<<if $locationmarker is "h1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[east|forest1][$locationmarker to "h2"]]<br>
[[south|forest1][$locationmarker to "g2"]]<br>
<</if>>
<<if $locationmarker is "h2">>
<<if $maps.forest1 is false>>
<p>You see something out of place, and investigate behind some shrubbery. You find a treasure chest!
As you rummage through the old, musty treasure chest, you come across a finely-drawn map of the area. It's intricately detailed, with every twist and turn of the nearby forests and mountains marked out in precise ink. You can even see the faint lines of a hidden stream etched into the parchment. You wonder how long it's been since someone last used this map, and what secrets it might still hold. You carefully tuck it away in your pack, eager to explore the unknown regions it reveals.
</p><br>
<<set $maps.forest1 to true>>
<<else>>
<p>You're back to where you previously found the map</p><br>
<</if>>
[[west|forest1][$locationmarker to "h1"]]<br>
<</if>>
<<if $locationmarker is "h3">>
<p>You found the entrace to Forest lvl 2. Do you wish to go deeper?</p><br>
[[forest2][$unlocked.forest2 to true, $locationmarker to "a3", $currentlocation to "forest2" ]]<br>
[[south|forest1][$locationmarker to "g3"]]<br>
<</if>>
<</nobr>>
<br>
<<if $maps.forest1 is true>>
<script>
document.getElementById("map-image").addEventListener("click", function() {
this.classList.toggle("expanded");
});
document.addEventListener("click", function(e) {
var expandedImage = document.querySelector("#map-image.expanded");
if (expandedImage && e.target != expandedImage && !expandedImage.contains(e.target)) {
expandedImage.classList.remove("expanded");
}
});
</script>
<img class="passage-image" src="demongodsassets/maps/forest1.png" id="map-image" style="max-width:60%; transition: all 0.5s ease-in-out;" />
<</if>>
</p>
</div>
<</widget>><<set $currentlocation to "forest1">>
<<forest1map>>
<<set $energy -= 2>>
<<if $inv.cumvial gte 1>>
<<set _healing to $p.maxhp * 0.5>>
<<if $p.maxhp lt (_healing + $p.hp)>>
[[use vial of cum to heal 50% of health|forest1][$p.hp to $p.maxhp, $inv.cumvial -= 1]]
<<else>>
[[use vial of cum to heal 50% of health|forest1][$p.hp += _healing, $inv.cumvial -= 1]]
<</if>>
<</if>>
<div class="conversation">
<<if $tentaclepatmeet is false>>
<p>You go to the edge of the water and take a sip, then relax for a bit before your thoughts return to Rhelyla
She was absolutely gorgeous, and dripping in sexiness. She was also mysterious. Why is she so helpful and polite as a Demon? She definitely spoils what you imagined a demon might be like.
The stream babbles happily by as you continue to look at it, lost in thought.
</p>
<div class='row left'>
<div class='left-msg'>Voice<hr> Hello my dear, you seem to be lost in thought
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
<p>Surprised, you turn and look towards the voice and see a ball of tentacles. It has bright yellow eyes, but the tentacles are wriggling so much that you can't tell for sure.
<img class="passage-image" src="demongodsassets/people/fullbody/pat.png" >
</p>
<div class='row right'>
<div class='right-msg'>What...are you?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Voice<hr> Clearly I'm a valiant knight come to save the damsel and slay the wicked witch of the forest! Can't you tell from my shiny armor that I am the holiest of holy!?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>You're...a knight?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Voice<hr> Not very quick on Sarcasm, are you?
Well, what am I? Let me think. I am a giant ball of tentacles, with eyes everywhere. I am a creature from the dark depths of the abyss. I am an ancient being with great power. I am a being that cannot be tamed. I am a being that cannot be controlled. I am a being that cannot be contained. I am a being that cannot be stopped. So I guess you could say... I am death. I am destruction. I am your end.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
<p>You prepare your claws</p>
<div class='row right'>
<div class='right-msg'>First time I've seen one of these monsters talk, but I'll get rid of you all the same.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Pat<hr> Slow down there, miss. We really need to work on your humor. My name is Pat, and I am just a ball of tentacles as you can clearly see. I don't really know what I am to be honest, and I don't know where I came from or why I'm here. All I know is that I enjoy sex, long walks on the beach and backrubs. But I'm only capable of doing so with people who donate.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>So you're a prostitute?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Pat<hr> I guess if we're getting technical, that's not <i>untrue</i>. But I can only have fun with Succubi who donate via patreon, crypto, or other methods.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>What... What the Hell are you talking about?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<if $patronversion is true>>
<div class='row left'>
<div class='left-msg'>Pat<hr> Don't worry about it! I wasn't talking to you. Anyways, I sense that you're compatible. I'd love to come home with you? I can provide you with literal buckets of cum and an unlimited supply at your liesure.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Wait, I thought you were a monster? How am I compatible with a monster?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Pat<hr> See, this is what happens when you try to talk to a ball of tentacles without knowing anything about them.
The point is, I get to live in your home and you get a few extra sex scenes and you can now cheat.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Um..Sure. I guess?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You can now have sex with Pat in your room in exchange for massive amounts of cum or copper! This is however a cheat and completely optional.</p>
<<else>>
<div class='row left'>
<div class='left-msg'>Pat<hr> Don't worry about it! I wasn't talking to you. Anyways, it looks like you haven't donated. Please continue to enjoy the game, but I'll be on my way!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
<p>The thing called Pat (turns?) and leaves. It looks like he was offering you a method to cheat through life?</p>
<</if>>
<<else>>
<p>You come across a stream. You relax for a few minutes before returning on your way.</p>
<</if>>
<<set $tentaclepatmeet to true>>
[[return|forest1]]
</div>
<<widget 'forestevents'>>
<<set $forestevents to random(99)>>
<<if $forestevents lte 9>>
<p>As you wander through the dense forest, you catch a glint of something sparkling in the underbrush. Curious, you push aside a branch and see a small vial filled with a white liquid. You recognize it as a rare potion that can restore health. Excited at your luck, you carefully tuck the vial into your pack and continue on your journey, feeling a bit more confident with the extra healing on hand.
You find a vial of cum!
You add it to your collection.
</p>
<<set $inv.cumvial to $inv.cumvial + 1>>
<<set $randomeventcomplete to true>>
<<elseif $forestevents lte 49>>
<<goto "forest battles">>
<<elseif $forestevents lte 59 and $currentlocation is "forest2">>
<<set $randomeventcomplete to true>>
<<goto "tentacle trap">>
<<elseif $forestevents lte 99>>
<<switch random(10)>>
<<case 1>>
<p>As you walk through the dense forest, the sunlight filters through the trees, casting dappled shadows on the forest floor. The air is filled with the sound of birds singing and leaves rustling in the breeze. You catch a glimpse of a small rabbit darting between the bushes, its white tail flickering in the sunlight.
</p>
<<case 2>>
<p>As you continue on your journey, you notice the ground becomes increasingly muddy and slippery. You have to be careful where you step to avoid stumbling or slipping. Suddenly, you hear a loud crack and a tree falls just a few feet away from you, crashing to the ground and sending a shower of dirt and leaves into the air. You quickly jump out of the way, heart racing as you watch the tree come to rest on the forest floor. You take a moment to catch your breath before continuing on your way, more cautious now as you watch for any other potential hazards.
You lose 5 energy. <<set $energy to $energy - 5>><<set $randomeventcomplete to true>>
</p>
<<case 3>>
<p>The forest is alive with the sound of chirping birds and rustling leaves. As you walk through the dense undergrowth, you can hear the occasional tweet of something that sounds like a sparrow or the distant call of a predator. The leaves of the trees rustle softly in the gentle breeze, creating a soothing cacophony of sound. Sunlight filters through the branches overhead, casting dappled shadows on the forest floor. The patches of sunlight dance and shift with the movement of the leaves, creating a constantly changing tapestry of light and shadow. The air is fresh and clean, filled with the earthy scent of pine and the sweet aroma of blooming wildflowers. The forest is a peaceful, serene place, a natural haven from the stresses of the outside world.
</p>
<<case 4>>
<p>As you walk through the forest, the air is thick with the aroma of pine and moist soil. The gentle wind stirs the branches above you, causing a downpour of golden leaves to fall to the ground. The rustling of the leaves and the chirping of the birds fills the air, creating a symphony of sounds. The sunlight filters through the branches, casting dappled shadows on the forest floor. You feel a sense of peace and calm wash over you as you take in the beauty of the surroundings. The forest truly feels alive, with each element playing its part in the natural harmony.
</p>
<<case 5>>
<p>As you make your way through the dense foliage, the underbrush begins to thin out and the trees start to thin out. You find yourself walking into a small clearing, surrounded by towering trees on all sides. The ground beneath your feet is soft and spongy, covered in a blanket of fallen leaves and pine needles.
In the center of the clearing, a babbling brook winds its way through the trees, its surface glittering in the sunlight. The water is crystal clear, almost translucent, and you can see small fish darting through the shallow stream. The sound of the rushing water fills the air, calming and peaceful.
You take a moment to sit by the side of the brook, dipping your hand into the cool water and enjoying the peaceful surroundings. It's easy to forget the stress and chaos of the outside world in a place like this, and you find yourself feeling more relaxed and at peace than you have in a long time.
Recover 5 energy! <<set $energy to $energy + 5>><<set $randomeventcomplete to true>>
</p>
<<case 6>>
<p>A herd of kirins prances through the underbrush, their shimmering scales reflecting the sunlight. Their hooves make soft, muffled thuds on the forest floor. As they pass, the air is filled with the sound of their happy whinnies, and the faint, sweet scent of magic.
</p>
<<case 7>>
<p>The rustling in the bushes grows louder and a group of mischievous pixies dart out, their tiny wings a blur as they playfully chase each other through the trees. Their high-pitched laughter echoes through the forest, causing a flock of birds to take flight in alarm. As they pass by, one of the pixies pauses to steal a shiny trinket from a nearby mushroom before disappearing back into the underbrush.
</p>
<<case 8>>
<p>The forest is teeming with life, the vibrant green leaves of the trees seeming to glow in the dappled sunlight filtering through the canopy. The air is thick with the sweet scent of flowers and the earthy aroma of moss and fallen leaves. The sound of chirping birds and the rustling of small creatures in the underbrush fills the air. The ground is soft beneath your feet, a thick layer of moss and ferns cushioned by a bed of decomposing leaves. The towering trees loom above, their branches reaching out like gnarled fingers towards the sky. As you make your way deeper into the forest, the canopy grows denser, blocking out more of the sunlight and casting the forest floor in a cool, shadowy light. The distant sound of the waterfall grows louder, the mist of the falling water beckoning you closer.
</p>
<<case 9>>
<p>As you make your way through the dense forest, you catch sight of a black raven perched on a tree branch. It seems to be watching you with a sharp eye, almost as if it's studying you. You pause, intrigued by the bird's presence.
Suddenly, the raven flickers out of existence, disappearing before your very eyes. You blink, wondering if your eyes are playing tricks on you. You scan the area, searching for any signs of the bird's presence, but find none.
It didn't just fly away, it disappeared completely...
What was that raven, and where did it go? You push the thought out of your mind and continue on your way, hoping to reach your destination without any further strange occurrences.
</p>
<<case 10>>
<p>As you step into the meadow, you can't help but feel like you're being watched. The air feels electric and alive, and you can almost sense the presence of hidden eyes. You can see the occasional flicker of movement out of the corner of your eye, and you wonder if it might be the mischievous fairies rumored to inhabit these parts. You catch a glimpse of a tiny figure darting behind a flower, and you can't help but smile at the thought of the playful creatures hiding just out of sight.
</p>
<<default>>
<<set $randomeventcomplete to true>>
<<goto "lost">>
<</switch>>
<</if>>
<</widget>><div class="conversation">
<p>
<img class="passage-image" @src="'demongodsassets/people/fullbody/enemies/'+$e.type+'/'+$portrait+'.png'" >
<<nobr>>
<<set $atktype to random(99)>>
<<if $e.hp gt 0 and $e.reshp gt 0>>
<<if $e.type is "wolves">>
<<set $enemyatk to "attack">>
<</if>>
<<if $e.type is "slime">>
<<if $atktype lte 59>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<</if>>
<<if $e.type is "goblinsct">>
<<set $enemyatk to "attack">>
<</if>>
<<if $e.type is "goblinarcher">>
<<set $enemyatk to "attack">>
<</if>>
<<if $e.type is "goblinsldr">>
<<if $atktype lte 69>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<</if>>
<<if $e.type is "bandit">>
<<if $atktype lte 59>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<</if>>
<<if $e.type is "squik">>
<<if $atktype lte 69>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<</if>>
<<if $e.type is "alraune">>
<<if $alrauneally is false>>
<<if $atktype lte 59>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<<else>>
<p>You encounter an Alraune!</p>
<div class='row left'>
<div class='left-msg'>Alraune<hr> Hello $name, would you like to feed off of me?
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.type+'/'+$portrait+'.png'">
</div>
</div>
[[sex with alraune]]<br>
or <br>
<<if $currentlocation is "forest1">>
[[move on|forest1]]
<<elseif $currentlocation is "forest2">>
[[move on|forest2]]
<<elseif $currentlocation is "forest3">>
[[move on|forest3]]
<</if>>
<</if>>
<</if>>
<<if $e.type is "cringebandit">>
<<if $atktype lte 49>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<</if>>
<<if $e.type is "boss1">>
<<if $atktype lte 63>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<</if>>
<<if $e.type is "dryad">>
<<if $atktype lte 39>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<</if>>
<</if>>
<</nobr>>
<<nobr>>
<<if $e.type is "alraune">>
<<if $alrauneally is false>>
You approach the creature, taking in its appearance - a woman with green skin standing in the middle of a flower, surrounded by vines. You prepare yourself for battle, flexing your claws.
"I really don't wish to fight," the Alraune says, but you are determined to defeat it.
You are fighting $e.name level $e.lvl!<br>
What do you do?<br>
[[melee|battlescreen2][$currentatk to "melee"]]<br>
[[charm|battlescreen2][$currentatk to "charm"]]<br>
<<if $p.mp lt 10>>
You don't have enough mp to cast magic!
<<else>>
<<set _firemp to ($spells.fire * 10)>>
<<set _icmp to ($spells.ice * 10)>>
<<set _windmp to ($spells.wind * 10)>>
<<set _watermp to ($spells.water * 10)>>
<<set _thundermp to ($spells.thunder * 10)>>
<<if $spells.fire > 0>>
[[cast fire|battlescreen2][$currentatk to "fire", $p.mp -= _firemp]] level $spells.fire - costs _firemp mp<br>
<</if>>
<<if $spells.ice > 0>>
[[cast ice|battlescreen2][$currentatk to "ice", $p.mp -= _icmp]] level $spells.ice - costs _icmp mp<br>
<</if>>
<<if $spells.wind > 0>>
[[cast wind|battlescreen2][$currentatk to "wind", $p.mp -= _windmp]] level $spells.wind - costs _windmp mp<br>
<</if>>
<<if $spells.water > 0>>
[[cast water|battlescreen2][$currentatk to "water", $p.mp -= _watermp]] level $spells.water - costs _watermp mp<br>
<</if>>
<<if $spells.thunder > 0>>
[[cast thunder|battlescreen2][$currentatk to "thunder", $p.mp -= _thundermp]] level $spells.thunder - costs _thundermp mp<br>
<</if>>
<</if>>
<</if>>
<<else>>
You are fighting $e.name level $e.lvl!<br>
What do you do?<br>
[[melee|battlescreen2][$currentatk to "melee"]]<br>
[[charm|battlescreen2][$currentatk to "charm"]]<br>
<<if $p.mp lt 10>>
You don't have enough mp to cast magic!
<<else>>
<<set _firemp to ($spells.fire * 10)>>
<<set _icmp to ($spells.ice * 10)>>
<<set _windmp to ($spells.wind * 10)>>
<<set _watermp to ($spells.water * 10)>>
<<set _thundermp to ($spells.thunder * 10)>>
<<if $spells.fire > 0>>
[[cast fire|battlescreen2][$currentatk to "fire", $p.mp -= _firemp]] level $spells.fire - costs _firemp mp<br>
<</if>>
<<if $spells.ice > 0>>
[[cast ice|battlescreen2][$currentatk to "ice", $p.mp -= _icmp]] level $spells.ice - costs _icmp mp<br>
<</if>>
<<if $spells.wind > 0>>
[[cast wind|battlescreen2][$currentatk to "wind", $p.mp -= _windmp]] level $spells.wind - costs _windmp mp<br>
<</if>>
<<if $spells.water > 0>>
[[cast water|battlescreen2][$currentatk to "water", $p.mp -= _watermp]] level $spells.water - costs _watermp mp<br>
<</if>>
<<if $spells.thunder > 0>>
[[cast thunder|battlescreen2][$currentatk to "thunder", $p.mp -= _thundermp]] level $spells.thunder - costs _thundermp mp<br>
<</if>>
<</if>>
<</if>>
<</nobr>>
[[attempt to run away|escape]]
</p>
</div>
<<set $arousal to $arousal - 1>>
<<if $outfit.outfit is "none">>
<<set $arousal to $arousal - 4>>
<</if>> <<nobr>>
<<widget "gameConfig">>
<<set $enemiesByArea to {
"forest1": ["wolves", "slime", "bandit", "squik", "goblinsct"],
"forest2": ["wolves", "slime", "goblinarcher", "squik", "alraune", "goblinsct"],
"forest3": ["wolves", "slime", "goblinarcher", "squik", "alraune", "goblinsldr", "goblinsct"],
"mountains_day": ["goblinsct", "female_bandit"],
"mountains_night": ["night_enemy1", "night_enemy2", "night_enemy3"],
"silent_city": ["city_enemy1", "city_enemy2", "city_enemy3"]
}>>
<<setEnemyLevel>>
<<set $enemyClassifications to {
"goblinsct": ["physical_enemy"],
"goblinarcher": ["physical_enemy"],
"goblin_soldier": ["physical_enemy"],
"wolves": ["physical_enemy"],
"squik": ["magical_enemy"],
"alraune": ["magical_enemy"],
"dryad": ["magical_enemy"],
"slime": ["magical_enemy", "physical_immune"],
"bandit": ["physical_enemy"],
"Melek Taus": ["boss", "physical_enemy", "magical_enemy"],
"female_bandit": ["physical_enemy", "charm_immune"],
"god_enemy": ["physical_enemy", "charm_immune", "boss", "magical_enemy", "physical_immune", "magic_immune"]
}>>
<<if $enemiesByArea.hasOwnProperty($currentlocation)>>
<<set $e.name to $enemiesByArea[$currentlocation].random()>>
<<set $e.type to $enemyClassifications[$e.name]>>
<</if>>
<</widget>>
<</nobr>><<widget 'enemymodifier2'>>
<<if $e.type is "wolves">>
<<set $e.hp to 20 + (5 * $e.lvl)>>
<<set $e.melee to 4 + (2 * $e.lvl)>>
<<set $e.magic to 0>>
<<set $e.pdef to 3 + (2 * $e.lvl)>>
<<set $e.mdef to 2 + $e.lvl + random(0, 2)>>
<<set $e.res to 99999999>>
<<set $e.reshp to 99999999>>
<<set $e.critrt to random(2, 4)>>
<<set $e.weakness to "fire">>
<<set $e.eleresist to "wind">>
<<set $portrait to random(1, 3)>>
<</if>>
<<if $e.type is "slime">>
<<set $e.hp to 15 + (5 * $e.lvl)>>
<<set $e.melee to 3 + (2 * $e.lvl)>>
<<set $e.magic to 4 + (2 * $e.lvl)>>
<<set $e.pdef to 999999>> // Keeping the same value as before
<<set $e.mdef to 3 + (1 * $e.lvl)>>
<<set $e.res to 2 + (1 * $e.lvl)>>
<<set $e.reshp to 15 + (5 * $e.lvl)>>
<<set $e.critrt to 5 + $e.lvl>> // 5% base crit rate, increasing by 1% per level
<<set $e.weakness to "fire">>
<<set $e.eleresist to "water">>
<<set $portrait to random(1, 9)>>
<</if>>
<<if $e.type is "goblinsct">>
<<set $e.hp to 20 + (5 * $e.lvl)>>
<<set $e.melee to 4 + (2 * $e.lvl)>>
<<set $e.magic to 3 + (1 * $e.lvl)>>
<<set $e.pdef to 4 + (2 * $e.lvl)>>
<<set $e.mdef to 3 + (2 * $e.lvl)>>
<<set $e.res to 2 + (1 * $e.lvl)>>
<<set $e.reshp to 20 + (5 * $e.lvl)>>
<<set $e.critrt to random(1, 3)>>
<<set $e.weakness to "ice">>
<<set $e.eleresist to "wind">>
<<set $portrait to 1>>
<</if>>
<<if $e.type is "goblinarcher">>
<<set $e.hp = 15 + ($e.lvl * 12)>>
<<set $e.melee = 8 + (4 * $e.lvl)>>
<<set $e.magic = 10 + (4 * $e.lvl)>>
<<set $e.pdef = 6 + (3 * $e.lvl)>>
<<set $e.mdef = 6 + (3 * $e.lvl)>>
<<set $e.res = 8 + (3 * $e.lvl)>>
<<set $e.reshp = 12 + (4 * $e.lvl)>>
<<set $e.critrt to random(1,3)>>
<<set $e.weakness to "ice">>
<<set $e.eleresist to "wind">>
<<set $portrait to 1>>
<</if>>
<<if $e.type is "goblinsldr">>
<<set $e.hp = 20 + ($e.lvl * 15)>>
<<set $e.melee = 12 + (5 * $e.lvl)>>
<<set $e.magic = 0>>
<<set $e.pdef = 8 + (4 * $e.lvl)>>
<<set $e.mdef = 8 + (3 * $e.lvl)>>
<<set $e.res = 6 + (2 * $e.lvl)>>
<<set $e.reshp = 10 + (3 * $e.lvl)>>
<<set $e.critrt to random(1,3)>>
<<set $e.weakness to "ice">>
<<set $e.eleresist to "wind">>
<<set $portrait to 1>>
<</if>>
<<if $e.type is "bandit">>
<<set $e.hp = 20 + ($e.lvl * 12)>>
<<set $e.melee = 10 + (4 * $e.lvl)>>
<<set $e.magic = 5 + (2 * $e.lvl)>>
<<set $e.pdef = 7 + (3 * $e.lvl)>>
<<set $e.mdef = 7 + (3 * $e.lvl)>>
<<set $e.res = 8 + (3 * $e.lvl)>>
<<set $e.reshp = 12 + (4 * $e.lvl)>>
<<set $e.critrt to random(1,3)>>
<<set $e.weakness to "wind">>
<<set $e.eleresist to "fire">>
<<set $portrait to random(1,6)>>
<</if>>
<<if $e.type is "alraune">>
<<set $e.hp = 25 + ($e.lvl * 15)>>
<<set $e.melee = 10 + (3 * $e.lvl)>>
<<set $e.magic = 15 + (5 * $e.lvl)>>
<<set $e.pdef = 8 + (3 * $e.lvl)>>
<<set $e.mdef = 8 + (4 * $e.lvl)>>
<<set $e.res = 6 + (2 * $e.lvl)>>
<<set $e.reshp = 15 + (5 * $e.lvl)>>
<<set $e.critrt to random(1,3)>>
<<set $e.weakness to "fire">>
<<set $e.eleresist to "water">>
<<set $portrait to random(1,4)>>
<</if>>
<<if $e.type is "squik">>
<<set $e.hp = 15 + ($e.lvl * 10)>>
<<set $e.melee = 8 + (3 * $e.lvl)>>
<<set $e.magic = 7 + (3 * $e.lvl)>>
<<set $e.pdef = 12 + (4 * $e.lvl)>>
<<set $e.mdef = 12 + (4 * $e.lvl)>>
<<set $e.res = 5 + (2 * $e.lvl)>>
<<set $e.reshp = 8 + (3 * $e.lvl)>>
<<set $e.critrt to random(1,3)>>
<<set $e.weakness to "fire">>
<<set $e.eleresist to "ice">>
<<set $portrait to random(1,3)>>
<</if>>
<<goto "battlescreen">>
<</widget>><<if $maps[$currentlocation] is true>>
<img class="passage-image" @src="'demongodsassets/maps/'+$currentlocation+'.png'" style="max-width:120%;">
<</if>><<set $currentlocation to "forest2">>
<<forest2map>>
<<set $energy to $energy - 2>>
<<if $inv.cumvial gte 1>>
<<set _healing to $p.maxhp * 0.5>>
<<if $p.maxhp lt (_healing + $p.hp)>>
[[use vial of cum to heal 50% of health|forest2][$p.hp to $p.maxhp, $inv.cumvial -= 1]]
<<else>>
[[use vial of cum to heal 50% of health|forest2][$p.hp += _healing, $inv.cumvial -= 1]]
<</if>>
<</if>><<set $currentlocation to "forest3">>
<<forest3map>>
<<set $energy to $energy - 2>>
<<if $inv.cumvial gte 1>>
<<set _healing to $p.maxhp * 0.5>>
<<if $p.maxhp lt (_healing + $p.hp)>>
[[use vial of cum to heal 50% of health|forest3][$p.hp to $p.maxhp, $inv.cumvial -= 1]]
<<else>>
[[use vial of cum to heal 50% of health|forest3][$p.hp += _healing, $inv.cumvial -= 1]]
<</if>>
<</if>>
<div class="conversation">
<<nobr>>
<<if $e.hp lte 0>>
<<fightscene>>
<<set $expmod to 150 + (($e.lvl - $p.lvl) * 15)>>
<<if $expmod lt 0>>
<<set $expmod to 0>>
<</if>>
<<set $lust to $lust + $expmod>>
<<set $coppermod to Math.max($e.lvl * 20) + 50>>
<<set $inv.money to $inv.money + $coppermod>>
<<set $cummod to ($e.lvl * 10) + 25>>
<<set $inv.cum to $inv.cum + $cummod>>
<</if>>
<<if $e.reshp lte 0>>
<<charmscene>>
<<set $arousal to 0>>
<<set $expmod to 150 + (($e.lvl - $p.lvl) * 15)>>
<<if $expmod lt 0>>
<<set $expmod to 0>>
<</if>>
<<set $lust to Math.round($lust + $expmod)>>
<<set $coppermod to Math.max($e.lvl * 10) + 25>>
<<set $inv.money to $inv.money + $coppermod>>
<<set $cummod to ($e.lvl * 20) + 50>>
<<set $inv.cum to $inv.cum + $cummod>>
<</if>>
<<if $p.hp lte 0>>
<<set $lust to Math.round($lust * 0.90)>>
<br>
<p>You awake with a start, gasping for air as your heart pounds in your chest. You look around frantically, trying to get your bearings. You're in your bedroom, safe and sound. You let out a sigh of relief, realizing that it was all just a nightmare. You lay back down in bed, still feeling shaken by the intensity of the dream. You can't shake the feeling that it was more than just a dream, and you wonder if there is some deeper meaning to it all. You close your eyes, trying to push the thoughts out of your head and get some rest. You have lost 5% of your current exp.
</p>
[[home][$currentlocation to "shack"]]
<</if>>
<</nobr>>
<<if $p.hp gte 0>>
<<if $e.hp lte 0 or $e.reshp lte 0>>
<p>Congratulations! You have defeated $fullname and gained $expmod EXP!
You have also obtained $coppermod copper and $cummod cum!</p>
<<if $e.name is "alraune">>
[[spare her]]
[[kill her]]
<<else>>
<<if $currentlocation is "forest1">>
[[Return|forest1]]
<<elseif $currentlocation is "forest2">>
[[Return|forest2]]
<<elseif $currentlocation is "forest3">>
[[Return|forest3]]
<<elseif $currentlocation is "forestdungeon">>
[[Return|forest boss 2]]
<</if>>
<</if>>
<</if>>
<</if>>
</div>
<<set $illusionActive to false>><div class="conversation">
<p>
<img class="passage-image" @src="'demongodsassets/people/fullbody/enemies/'+$e.type+'/'+$portrait+'.png'" >
<<nobr>>
<<set $atktype to random(99)>>
<<if $e.hp gt 0 and $e.reshp gt 0>>
<<if $e.type is "wolves">>
<<set $enemyatk to "attack">>
<</if>>
<<if $e.type is "slime">>
<<if $atktype lte 59>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<</if>>
<<if $e.type is "goblinsct">>
<<set $enemyatk to "attack">>
<</if>>
<<if $e.type is "goblinarcher">>
<<set $enemyatk to "attack">>
<</if>>
<<if $e.type is "goblinsldr">>
<<if $atktype lte 69>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<</if>>
<<if $e.type is "bandit">>
<<if $atktype lte 59>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<</if>>
<<if $e.type is "squik">>
<<if $atktype lte 69>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<</if>>
<<if $e.type is "alraune">>
<<if $atktype lte 59>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<</if>>
<<if $e.type is "cringebandit">>
<<if $atktype lte 49>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<</if>>
<<if $e.type is "boss1">>
<<if $atktype lte 63>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<</if>>
<<if $e.type is "dryad">>
<<if $atktype lte 39>>
<<set $enemyatk to "attack">>
<<else>>
<<set $enemyatk to "magic">>
<</if>>
<</if>>
<</if>>
You are fighting $e.name level $e.lvl!<br>
<<playerattack>>
<<if $e.res gt 999>>
<p>Charm will not work on this creature!</p><br>
<</if>>
$e.name<br>
$e.hp hp remaining.<br>
$e.reshp points of mental resistance remaining.<br>
What do you do?<br>
[[melee|battlescreen2][$currentatk to "melee"]]<br>
[[charm|battlescreen2][$currentatk to "charm"]]<br>
<<if $p.mp lt 10>>
You don't have enough mp to cast magic!
<<else>>
<<set _firemp to ($spells.fire * 10)>>
<<set _icmp to ($spells.ice * 10)>>
<<set _windmp to ($spells.wind * 10)>>
<<set _watermp to ($spells.water * 10)>>
<<set _thundermp to ($spells.thunder * 10)>>
<<if $spells.fire > 0>>
[[cast fire|battlescreen2][$currentatk to "fire", $p.mp -= _firemp]] level $spells.fire - costs _firemp mp<br>
<</if>>
<<if $spells.ice > 0>>
[[cast ice|battlescreen2][$currentatk to "ice", $p.mp -= _icmp]] level $spells.ice - costs _icmp mp<br>
<</if>>
<<if $spells.wind > 0>>
[[cast wind|battlescreen2][$currentatk to "wind", $p.mp -= _windmp]] level $spells.wind - costs _windmp mp<br>
<</if>>
<<if $spells.water > 0>>
[[cast water|battlescreen2][$currentatk to "water", $p.mp -= _watermp]] level $spells.water - costs _watermp mp<br>
<</if>>
<<if $spells.thunder > 0>>
[[cast thunder|battlescreen2][$currentatk to "thunder", $p.mp -= _thundermp]] level $spells.thunder - costs _thundermp mp<br>
<</if>>
<</if>>
[[attempt to run away|escape]]<br>
<<if $e.type is "boss1">>
<<if $e.hp lte 0 or $e.reshp lte 0>>
<<goto "forest boss 2">>
<<else>>
<<if $p.hp lte 0>>
<<goto "battle finish">>
<</if>>
<</if>>
<<else>>
<<if $e.hp lte 0 or $e.reshp lte 0 or $p.hp lte 0>>
<<goto "battle finish">>
<</if>>
<</if>>
<</nobr>>
</p>
</div>
<<set $arousal to $arousal - 1>>
<<if $outfit.outfit is "none">>
<<set $arousal to $arousal - 4>>
<</if>><div class="conversation">
<<set _runsuccess to random(99)>>
<<set $currentatk to "run">>
<<set _runchance to (($p.lvl - $e.lvl) * 10) + 85>>
<<run console.log('run chance (must be higher to escape): ' + _runchance + ' Run success: ' + _runsuccess)>>
<<if _runchance gt _runsuccess>>
You have successfully escaped
<<if $currentlocation is "forest1">>
[[back|forest1]]
<<elseif $currentlocation is "forest2">>
[[back|forest2]]
<<elseif $currentlocation is "forest3">>
[[back|forest3]]
<<elseif $currentlocation is "mountains_day">>
[[back|mountains - daytime]]
<<elseif $currentlocation is "mountains_night">>
[[back|mountains - night]]
<<elseif $currentlocation is "silentcity">>
[[back|silentcity]]
<</if>>
<<else>>
You failed to escape from $fullname!
[[back|battle]]
<</if>>
</div><div class="conversation">
<<if $p.acceptance lt 25>>
<p>You were no party girl. Sure you've had a boyfriend or two. Even dabbled a bit with other girls. You may have given an ex-boyfriend oral once, but you're still a virgin. Some might say you were attractive, but most would probably say you were pretty plain. It's not that men don't flirt with you, you're just shy around new people. You keep your hair tied back in a ponytail, and wear pants more often than skirts. You often had a book wherever you went, enjoying reading fantasy novels, the occasional video game and some anime here and there.
</p>
<<elseif $p.acceptance lt 50>>
<p>You were no party girl. Sure you've had a boyfriend or two. Even dabbled a bit with other girls. You're certainly no virgin. However, you were far from being a slut either. Some might say you were attractive, but most would probably say you were pretty plain. You were shy around new people, kept your hair tied back in a ponytail, and wearing dresses and skirts. You often had a book wherever you went, enjoying reading fantasy novels, the occasional video game and some anime here and there.
</p>
<<else>>
<p>You loved to showoff. Your long black hair and blue eyes. Your thin athletic body, your perfect tits. You were the popular girl in high school, but you never really had boyfriends because you tend to sleep with them instead. You didn't want to be tied down by relationships. Now that you're older, you work a boring 8 - 5 office job. You still love to flirt with men, and women! But you have more experience now and know how to use it to get what you want. You love wearing tight clothes that show off your body. Though currently you're just in a pair of jeans and shorts. You don't need to show off for your friends who will be here soon.
</p>
<</if>>
<p>It was the weekend and 2 of your friends were coming over.
</p>
Your friends:
(male) <<textbox "$friend1" "James">>
(female) <<textbox "$friend2" "Emily">>
<p>You started preparing by making some snacks ahead of time. Oven baked brownies and some popcorn. The beer was already chilling in the fridge.
</p>
[[Continue to Saturday|Saturday Girl Start]]
</div><div class="conversation">
<p>
Your friends should be here soon. You guys were looking forward to playing some video games and getting drunk.
You guys were in your late 20's. Overworked and underpaid with a poor work-life balance like most others, so it was difficult to schedule times for you all to hang out.
On Saturday, $friend2 arrived first.
<img class="passage-image" src="demongodsassets/people/fullbody/emily.png" >
<div class='row right'>
<div class='right-msg'>Hi Emily! I'm so happy to see you! How have you been?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>$friend2<hr> I've been doing great! Just started a new job!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Congrats! What will you be doing?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>$friend2<hr> Well... You know how it's always been my dream to make a metroidvania!?....
I'll be working as a junior developer for a game company!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
You congratulate her, genuinely happy for her.
</p>
[[say something nice|say something nice (girl)]]
[[say something dirty|say something dirty (girl)]]
</div><div class="conversation">
<p>
You and $friend2 lounge around, chatting and laughing as you wait for $friend1. You can't help but notice how stunning she looks today, you're almost a little jealous. Her hair cascading down her shoulders in soft waves and her outfit hugging her curves in all the right places.
</p>
<div class='row right'>
<div class='right-msg'>Wow you look absolutely gorgeous today!
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
<p>You give her a genuine smile, she blushes</p>
<div class='row left'>
<div class='left-msg'>$friend2<hr> Thanks, you're too kind. I just threw this on, I didn't think I'd be getting any compliments today.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<p>You two continue teasing eachother until your friend arrives</p>
[[friend arrives|friend arrives (girl)]]
</div>
<<widget 'forest2map'>>
<div class="conversation">
<p>
<<nobr>>
Current position: $locationmarker<br>
<<if $locationmarker is "a3">>
<p>You've gone pretty deep into the forest, the tree's are starting to get thicker and you're starting to lose light. Will you continue or turn back?</p><br>
[[west|forest2][$locationmarker to "a2"]]<br>
[[go back|forest1][$locationmarker to "h3"]]<br>
<<if $wings is true>>
<p>no one is around, you can use your wings to take a shortcut!</p>
<</if>>
<<if $unlocked.forest3 is true>>[[forest3][$currentlocation to "forest3", $locationmarker to "a1"]]<br>
<</if>>
<<if $unlocked.forestdungeon is true>>[[forestdungeon][$currentlocation to "forestdungeon"]]<br>
<</if>>
[[home][$currentlocation to "shack"]]<br>
<</if>>
<<if $locationmarker is "a2">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest2][$locationmarker to "a1"]]<br>
[[east|forest2][$locationmarker to "a3"]]<br>
<</if>>
<<if $locationmarker is "a1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest2][$locationmarker to "b1"]]<br>
[[east|forest2][$locationmarker to "a2"]]<br>
<</if>>
<<if $locationmarker is "b1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest2][$locationmarker to "c2"]]<br>
[[south|forest2][$locationmarker to "a1"]]<br>
<</if>>
<<if $locationmarker is "c1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[east|forest2][$locationmarker to "c2"]]<br>
<</if>>
<<if $locationmarker is "c2">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest2][$locationmarker to "d1"]]<br>
[[south|forest2][$locationmarker to "b1"]]<br>
[[west|forest2][$locationmarker to "c1"]]<br>
<</if>>
<<if $locationmarker is "d1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[east|forest2][$locationmarker to "d2"]]<br>
[[south|forest2][$locationmarker to "c2"]]<br>
<</if>>
<<if $locationmarker is "d2">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest2][$locationmarker to "e1"]]<br>
[[west|forest2][$locationmarker to "d1"]]<br>
[[east|forest2][$locationmarker to "d3"]]<br>
<</if>>
<<if $locationmarker is "d3">>
[[west|forest2][$locationmarker to "d2"]]<br>
[[south|forest2][$locationmarker to "c3"]]<br>
[[east|forest2][$locationmarker to "d4"]]<br>
<</if>>
<<if $locationmarker is "c3">>
<<if $maps.forest2 is false>>
<<set $maps.forest2 to true>>
<p>As you get back up, rubbing your bruised elbow, you see that what you tripped on was a tattered, old map. Excited, you bend down to pick it up and brush off the dirt.
The map is old, with frayed edges and stains, but as you study it, you realize that it's a map of the surrounding area.</p>
<<else>>
<p>This is where you found that map. You're really grateful to have found it.</p>
<</if>>
[[north|forest2][$locationmarker to "d3"]]<br>
<</if>>
<<if $locationmarker is "d4">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest2][$locationmarker to "d3"]]<br>
[[east|forest2][$locationmarker to "d5"]]<br>
<</if>>
<<if $locationmarker is "d5">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest2][$locationmarker to "d4"]]<br>
[[south|forest2][$locationmarker to "c4"]]<br>
<</if>>
<<if $locationmarker is "c4">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest2][$locationmarker to "d5"]]<br>
[[south|forest2][$locationmarker to "b2"]]<br>
<</if>>
<<if $locationmarker is "b2">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest2][$locationmarker to "c4"]]<br>
[[south|forest2][$locationmarker to "a4"]]<br>
<</if>>
<<if $locationmarker is "a4">>
<<if $wardrobe.outfit.indexOf("alluringdress") gte 0>>
<p>The monument the statue stood on is still there, but the statue of the Succubus is gone. Who could have stolen something so heavy and why?
<<if $outfit.outfit is "alluringdress">>
For some strange reason, you're filled with joy. Almost as if the aura your dress gives off is making you somehow happy. Regain 20 Energy! <<set $energy += 20>>
<</if>>
</p>
<<else>>
<p>You step into a clearing. Well almost a clearing. It's thick with brush and vines. But in the center you see a statue.<br><br>
<img class="passage-image" @src="'demongodsassets/img/scenes/forest/statue/'+$cleanstatue+'.png'" ><br><br>
As you approach the statue, you can see that the vines are tangled around its arms and legs, obscuring much of its form. But what's most striking about the statue is the eerie aura of malice that seems to emanate from it. You have a feeling that this is not just a statue, but some kind of cursed object.</p><br><br>
<<if $energy gte 11>>
[[clean the statue]] - Energy - 10<br>
<<else>>
<p>You're too tired to worry about a statue right now.</p>
<</if>>
<</if>>
[[north|forest2][$locationmarker to "b2"]]<br>
<</if>>
<<if $locationmarker is "e1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest2][$locationmarker to "f1"]]<br>
[[south|forest2][$locationmarker to "d2"]]<br>
<</if>>
<<if $locationmarker is "f1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest2][$locationmarker to "g1"]]<br>
[[south|forest2][$locationmarker to "e1"]]<br>
<</if>>
<<if $locationmarker is "g1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[east|forest2][$locationmarker to "g2"]]<br>
[[south|forest2][$locationmarker to "f1"]]<br>
<</if>>
<<if $locationmarker is "g2">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest2][$locationmarker to "g1"]]<br>
[[east|forest2][$locationmarker to "g3"]]<br>
<</if>>
<<if $locationmarker is "g3">>
<p>You step into a clearing, surrounded by tall trees and lush greenery. Suddenly, you hear a beautiful and ethereal singing. As you look around, the singing abruptly stops and a rustle of leaves. But you see nothing around you.</p>
[[north|forest2][$locationmarker to "h1"]]<br>
[[west|forest2][$locationmarker to "g2"]]<br>
<</if>>
<<if $locationmarker is "h1">>
<p>You are about to enter the deepest part of the forest. Do you wish to go deeper? You sense that the monsters are getting stronger.</p><br>
[[deeper|forest3][$currentlocation to "forest3", $unlocked.forest3 to true, $locationmarker to "a1"]]<br>
[[south|forest2][$locationmarker to "g3"]]<br>
<</if>>
<</nobr>>
<<if $maps.forest2 is true>>
<script>
document.getElementById("map-image").addEventListener("click", function() {
this.classList.toggle("expanded");
});
document.addEventListener("click", function(e) {
var expandedImage = document.querySelector("#map-image.expanded");
if (expandedImage && e.target != expandedImage && !expandedImage.contains(e.target)) {
expandedImage.classList.remove("expanded");
}
});
</script>
<img class="passage-image" src="demongodsassets/maps/forest2.png" id="map-image" style="max-width:60%; transition: all 0.5s ease-in-out;" />
<</if>>
</p>
</div>
<</widget>><<widget 'forest3map'>>
<div class="conversation">
<<nobr>>
<p>
Current position: $locationmarker <br>
<<if $locationmarker is "a1">>
<p>You are now at the deepest part of the forest. You can head deeper, or you can go back and exit.</p><br>
[[north|forest3][$locationmarker to "b1"]]<br>
[[east|forest3][$locationmarker to "a2"]]<br>
[[west|forest2][$locationmarker to "h1"]] back towards Forest 2<br>
<<if $wings is true>>
<p>You can also take a shortcut with your wings!</p>
<</if>>
<<if $unlocked.forestdungeon is true>>
Take a shortcut?<br>
[[forestdungeon][$currentlocation to "forestdungeon"]]<br>
<</if>>
[[home][$currentlocation to "shack"]]
<</if>>
<<if $locationmarker is "b1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest3][$locationmarker to "c1"]]<br>
[[south|forest3][$locationmarker to "a1"]]<br>
<</if>>
<<if $locationmarker is "c1">>
<<if $maps.forest3 is false>>
<p>You see something out of place, and investigate behind some shrubbery. You find a treasure chest!
As you rummage through the old, musty treasure chest, you come across a finely-drawn map of the area. It's intricately detailed, with every twist and turn of the nearby forests and mountains marked out in precise ink. You can even see the faint lines of a hidden stream etched into the parchment. You wonder how long it's been since someone last used this map, and what secrets it might still hold. You carefully tuck it away in your pack, eager to explore the unknown regions it reveals.<br>
forest 3 map obtained!
</p><br>
<<set $maps.forest3 to true>>
<<else>>
<p>You're back to where you previously found the map.</p>
<</if>>
<br>
[[south|forest3][$locationmarker to "b1"]]<br>
<</if>>
<<if $locationmarker is "a2">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest3][$locationmarker to "a1"]]<br>
[[east|forest3][$locationmarker to "a3"]]<br>
<</if>>
<<if $locationmarker is "a3">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest3][$locationmarker to "a2"]]<br>
[[east|forest3][$locationmarker to "a4"]]<br>
<</if>>
<<if $locationmarker is "a4">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest3][$locationmarker to "a3"]]<br>
[[east|forest3][$locationmarker to "a5"]]<br>
<</if>>
<<if $locationmarker is "a5">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest3][$locationmarker to "a4"]]<br>
[[east|forest3][$locationmarker to "a6"]]<br>
<</if>>
<<if $locationmarker is "a6">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest3][$locationmarker to "b2"]]<br>
[[west|forest3][$locationmarker to "a5"]]<br>
<</if>>
<<if $locationmarker is "b2">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest3][$locationmarker to "c4"]]<br>
[[south|forest3][$locationmarker to "a6"]]<br>
<</if>>
<<if $locationmarker is "c4">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest3][$locationmarker to "d3"]]<br>
[[south|forest3][$locationmarker to "b2"]]<br>
<</if>>
<<if $locationmarker is "d3">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest3][$locationmarker to "e3"]]<br>
[[south|forest3][$locationmarker to "c4"]]<br>
<</if>>
<<if $locationmarker is "e3">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest3][$locationmarker to "f2"]]<br>
[[south|forest3][$locationmarker to "d3"]]<br>
<</if>>
<<if $locationmarker is "f2">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest3][$locationmarker to "g5"]]<br>
[[south|forest3][$locationmarker to "e3"]]<br>
<</if>>
<<if $locationmarker is "g5">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest3][$locationmarker to "g4"]]<br>
[[south|forest3][$locationmarker to "f2"]]<br>
<</if>>
<<if $locationmarker is "g4">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest3][$locationmarker to "g3"]]<br>
[[east|forest3][$locationmarker to "g5"]]<br>
<</if>>
<<if $locationmarker is "g3">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest3][$locationmarker to "g2"]]<br>
[[east|forest3][$locationmarker to "g4"]]<br>
<</if>>
<<if $locationmarker is "g2">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest3][$locationmarker to "g1"]]<br>
[[east|forest3][$locationmarker to "g3"]]<br>
<</if>>
<<if $locationmarker is "g1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[east|forest3][$locationmarker to "g2"]]<br>
[[south|forest3][$locationmarker to "f1"]]<br>
<</if>>
<<if $locationmarker is "f1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest3][$locationmarker to "g1"]]<br>
[[south|forest3][$locationmarker to "e1"]]<br>
<</if>>
<<if $locationmarker is "e1">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest3][$locationmarker to "f1"]]<br>
[[east|forest3][$locationmarker to "e2"]]<br>
<</if>>
<<if $locationmarker is "e2">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[west|forest3][$locationmarker to "e1"]]<br>
[[south|forest3][$locationmarker to "d1"]]<br>
<</if>>
<<if $locationmarker is "d1">>
To the east is you see a cave, but the path is blocked by thick flora. You'll need to go around. <br>
[[north|forest3][$locationmarker to "e2"]]<br>
[[south|forest3][$locationmarker to "c2"]]<br>
<</if>>
<<if $locationmarker is "c2">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forest3][$locationmarker to "d1"]]<br>
[[east|forest3][$locationmarker to "c3"]]<br>
<</if>>
<<if $locationmarker is "c3">>
<<if $randomeventcomplete is false>>
<<forestevents>>
<<else>>
<<forestevents2>>
<</if>>
[[north|forestdungeon][$currentlocation to "forestdungeon", $unlocked.forestdungeon to true]]<br>
[[west|forest3][$locationmarker to "c2"]]<br>
<</if>>
</p>
<</nobr>>
<p>
<<if $maps.forest3 is true>>
<script>
document.getElementById("map-image").addEventListener("click", function() {
this.classList.toggle("expanded");
});
document.addEventListener("click", function(e) {
var expandedImage = document.querySelector("#map-image.expanded");
if (expandedImage && e.target != expandedImage && !expandedImage.contains(e.target)) {
expandedImage.classList.remove("expanded");
}
});
</script>
<img class="passage-image" src="demongodsassets/maps/forest3.png" id="map-image" style="max-width:60%; transition: all 0.5s ease-in-out;" />
<</if>>
</p>
</div>
<</widget>><div class="conversation">
<p>
<<if $boss1alive is true and $boss1attempt == 0>>
As you trudge deeper into the forest, the thick underbrush gives way to a clearing. The trees around you tower high, their branches stretching out like gnarled fingers. The only sound is the soft rustle of leaves and the occasional call of a bird. But something feels off, as if you're being watched. And then you see it - a small hole in the ground, almost hidden by a cluster of bushes.
Curious, you approach the hole and peer inside. At first, all you can see is darkness. But as your eyes adjust, you realize that the hole is deeper than you thought. And then you see it - a writhing mass of tentacles, stretching out in every direction. The sight is both grotesque and mesmerizing. You can't help but wonder what kind of creature could possibly reside in such a place.
[[Down the rabbit hole]]
[[This isn't right, go back|forest3][$locationmarker to "c3"]]
<<elseif $boss1alive is true and $boss1attempt gt 0>>
You're back, and although nervous, you're ready to challenge the boss again.
[[forest boss rerun]]
<<else>>
He's already dead, There's no reason to go back there.
[[go back|forest3][$locationmarker to "c3"]]
<</if>>
</p>
</div><div class="conversation">
<<if $currentlocation is "forest1">>
<<if $locationmarker is "d2">>
<<set $events.forest1d2 to true>>
<<set $cumstorage to $cumstorage + 1>>
<p>+1 Cumvial! You sent that home to your storage.
</p>
<</if>>
<<if $locationmarker is "e2">>
<<set $events.forest1e2 to true>>
<<set $inv.money += 200>>
<p>You found 200 copper!
</p>
<</if>>
[[return|forest1]]
<</if>>
</div><div class="conversation">
<<nobr>>
<p>You look at your bookshelf</p><br><br>
<<if $energy lt 40>>
<p>You don't have enough energy. Maybe you should sleep and regain some energy before trying to learn magic.</p><br><br>
<<else>>
<p>Spend time learning magic!</p><br><br>
<</if>>
<<if $spells.illusion is false>>
<<if $tome.illusion is true>>
<<if $read.illusion lt 3>>
<<if $energy gte 40>>
[[read illusion tome|tome][$currenttome to "illusion", $energy -= 40]] - 40 energy<br><br>
<</if>>
<<else>>
<p>You've already finished reading about illusion</p>
<</if>>
<</if>>
<</if>>
<<if $spells.swap is false>>
<<if $tome.swap is true>>
<<if $read.swap lt 3>>
<<if $energy gte 40>>
[[read swap tome|tome][$currenttome to "swap", $energy -= 40]] - 40 energy<br>
<</if>>
<<else>>
<p>You've already completed reading about swap magic</p>
<</if>>
<</if>>
<</if>>
<<if $spells.transform is false>>
<<if $tome.transform is true>>
<<if $read.swap lt 3>>
<<if $energy gte 40>>
[[read transform tome|tome][$currenttome to "transform", $energy -= 40]] - 40 energy<br>
<</if>>
<<else>>
<p>You've already finished reading the transformation tome</p>
<</if>>
<</if>>
<</if>>
<<if $genderstart isnot "grill">>
<<if $spells.fire is 0>>
<<if $tome.fire is true>>
<<if $read.fire lt 3>>
<<if $energy gte 40>>
[[read fire tome|tome][$currenttome to "fire", $energy -= 40]] - 40 energy<br><br>
<</if>>
<<else>>
<p>You've already finished reading about fire</p>
<</if>>
<</if>>
<</if>>
<<if $spells.ice is 0>>
<<if $tome.ice is true>>
<<if $read.ice lt 3>>
<<if $energy gte 40>>
[[read ice tome|tome][$currenttome to "ice", $energy -= 40]] - 40 energy<br>
<</if>>
<<else>>
<p>You've already finished reading about ice</p>
<</if>>
<</if>>
<</if>>
<<if $spells.wind is 0>>
<<if $tome.wind is true>>
<<if $read.wind lt 3>>
<<if $energy gte 40>>
[[read wind tome|tome][$currenttome to "wind", $energy -= 40]] - 40 energy<br>
<</if>>
<<else>>
<p>You've already finished reading about wind</p>
<</if>>
<</if>>
<</if>>
<<if $spells.water is 0>>
<<if $tome.water is true>>
<<if $read.water lt 3>>
<<if $energy gte 40>>
[[read water tome|tome][$currenttome to "water", $energy -= 40]] - 40 energy<br>
<</if>>
<<else>>
<p>You've already finished reading about water</p>
<</if>>
<</if>>
<</if>>
<<if $spells.thunder is 0>>
<<if $tome.thunder is true>>
<<if $read.thunder lt 3>>
<<if $energy gte 40>>
[[read thunder tome|tome][$currenttome to "thunder", $energy -= 40]] - 40 energy<br>
<</if>>
<<else>>
<p>You've already finished reading about thunder</p>
<</if>>
<</if>>
<</if>>
<<else>>
<p>You're not really interested in anything other than fire magic. You ignore the other elemental tomes on your shelf.</p>
<</if>>
[[home][$currentlocation to "shack"]]
<</nobr>>
</div><div class="conversation">
<<nobr>>
<<if $currenttome is "swap">>
<<if $read.swap is 0>>
<<set $read.swap to $read.swap + 1>>
<p>Chapter 1.<br><br>
The art of bodyswap is a rare and powerful magic, not often wielded by even the most skilled of spellcasters. It allows the user to temporarily inhabit the body of another being, taking control of their actions and abilities. This magic can be used for a variety of purposes, from espionage and infiltration to simply experiencing life from a different perspective. But be warned, the art of bodyswap is not to be trifled with. It can have unforeseen consequences, and the longer one remains in another's body, the more difficult it becomes to return to one's own.</p><br><br>
<<elseif $read.swap is 1>>
<<set $read.swap to $read.swap + 1>>
<p>Chapter 2.<br><br>
In order to perform a successful bodyswap, the caster must first establish a connection with their intended target. This can be achieved through physical touch, or by using an object that holds a strong connection to the target, such as a personal belonging or a lock of their hair. Once a connection has been established, the caster must focus their energy and visualize the desired swap, taking care to visualize every detail of the target's body and mind. It is a delicate process, and one misstep can lead to disastrous results.</p><br><br>
<<elseif $read.swap is 2>>
<<set $read.swap to $read.swap + 1>>
<p>Chapter 3.<br>
Bodyswap magic is not to be taken lightly. It can be a useful tool, but it must be used with caution and care. The longer one remains in another's body, the more difficult it becomes to return to one's own. It is also important to remember that while in another's body, the caster is subject to the same weaknesses and limitations as their host. Use this magic wisely, and be prepared for the consequences that may arise.<br>
You can now learn a new spell!</p><br><br>
<<else>>
<p>As you browse your collection of magic tomes, your eyes fall upon the one on bodyswap. You remember the hours spent pouring over its ancient pages, studying the intricacies of the spell and practicing its incantations. It was a difficult but rewarding journey, and now you feel confident in your ability to use the temporary bodyswap spell to your advantage. You can't wait to put your newfound skills to the test.<br><br>
<</if>>
<</if>>
<<if $currenttome is "transform">>
<<if $readtransform is 0>>
<<set $read.transform to $read.transform + 1>>
<p>Chapter 1.<br>
The art of transformation is a powerful tool in the hands of a succubus. With the ability to shape shift into almost any female form we desire, we can blend in with those around us and move unseen amongst our prey. But be warned, this magic is temporary and requires careful control to maintain. Let the transformation slip and the true nature of a succubus will be revealed, leading to the risk of discovery and danger.</p><br><br>
<<elseif $read.transform is 1>>
<<set $read.transform to $read.transform + 1>>
<p>Chapter 2.<br>
The art of transformation is a delicate one, for it requires the manipulation of not just our own bodies, but those of others as well. It is a power that can bring great temptation, for with it we can become whoever we desire. But we must be careful, for the transformation of others is a risky endeavor. If we are not careful, we may inadvertently reveal our true nature and suffer the consequences. Or we could trap others in a form not of their liking. This might be enticing if you seek revenge, but beware of the risks.</p><br><br>
<<elseif $read.transform is 2>>
<<set $read.transform to $read.transform + 1>>
<p>Chapter 3.<br>
There are many dangers that come with the use of transformation magic. We must be cautious when using it on others, for if we reveal our true nature, it could lead to mistrust and anger. It is also important to consider the physical and emotional effects that transformation may have on the person being transformed. We must always be aware of the risks and use this power wisely.<br>
You can now learn a new spell!</p><br><br>
<<else>>
<p>As you browse through your collection of magic tomes, you come across the one on transformation magic. You recall the countless hours you spent pouring over its ancient pages, studying the complex spells and incantations needed to temporarily transform another being into a different form. The tome had warned of the risks involved in such a powerful magic, cautioning against using it lightly or without careful consideration. Despite the dangers, you had persevered, determined to master the art of transformation. Now, as you gaze upon the well-worn cover of the book, you can't help but feel a sense of accomplishment and pride at having completed its study. You carefully place the tome back on the shelf, grateful for the knowledge and power it has given you.</p><br><br>
<</if>>
<</if>>
<<if $currenttome is "growth">>
<<if $read.growth is 0>>
<<set $read.growth to $read.growth+ 1>>
<p>Chapter 1.<br>
The art of growth is a powerful tool in the hands of a succubus. By manipulating the size and shape of ourselves or others, we can gain an advantage in any situation or we are more capable of having sex with and absorbing energy from, let us say...Larger prey. It is a skill that requires careful control, as any misstep could have disastrous consequences.</p><br><br>
<<elseif $read.growth is 1>>
<<set $read.growth to $read.growth+ 1>>
<p>Chapter 2.<br>
To transform oneself, one must first understand the nature of their own body. It is important to know the limits of what can be changed and what cannot, as attempting to push beyond these limits can lead to injury or even death. However, with proper control, a succubus can increase their size and strength, or shrink down to a more diminutive form for stealth and deception.</p><br><br>
<<elseif $read.growth is 2>>
<<set $read.growth to $read.growth+ 1>>
<p>Chapter 3.<br>
The true power of growth magic lies in its ability to transform others. By altering the size and shape of those around us, we can gain an advantage in any confrontation. However, it is important to use caution when transforming others, as the risks are great. If the spell is not properly maintained, the victim may suffer permanent damage, or even death. It is a power that should not be taken lightly, and should only be used in the direst of situations. Always remember, the most important part of being a Succubus is making sure the world of men remains unaware of our existance.<br>
You can now learn a new spell!</p><br><br>
<<else>>
<p>As you peruse your collection of magic tomes, your gaze falls upon the ancient book on growth magic. You can't help but feel a sense of pride as you recall the hours you spent poring over its pages, learning the secrets of manipulating the size and scale of objects and creatures. Though the process of mastering such powerful magic was grueling, the sense of accomplishment you feel now makes it all worth it. You can't wait to put your newfound skills to the test and see just how much you can achieve with your newfound abilities.</p><br><br>
<</if>>
<</if>>
<<if $currenttome is "illusion">>
<<if $read.illusion is 0>>
<<set $read.illusion to $read.illusion+ 1>>
<p>The ancient book of spells, bound in worn leather and filled with yellowed pages, tells the tale of the succubi and their use of illusion magic. According to the text, these seductive creatures were able to use their powers of illusion to manipulate the desires and perceptions of those around them, bending reality to their will.<br><br>
Chapter 1.<br>
"The art of illusion is a powerful tool in the hands of a succubus. By manipulating the desires and perceptions of those around us, we can bend reality to our will. It is a skill that requires finesse and careful manipulation, but when wielded correctly, it can bring us great power and control."
</p><br><br>
<<elseif $read.illusion is 1>>
<<set $read.illusion to $read.illusion+ 1>>
<p>
The book goes on to describe how the succubi would use their magic to appear as the embodiment of their target's deepest desires, luring them into a false sense of security before revealing their true nature and feeding on their victim's life force. The ancient tome warns that succubi are not to be trusted, for they will stop at nothing to get what they want, even if it means manipulating the minds of those they encounter.<br><br>
Chapter 2.<br>
"To master the art of illusion, a succubus must first understand the desires of those around them. We must be able to read their wants and needs, and use this knowledge to our advantage. It is not enough to simply appear as the embodiment of their deepest desires; we must also be able to anticipate their reactions and guide them towards our own ends."
</p><br><br>
<<elseif $read.illusion is 2>>
<<set $read.illusion to $read.illusion+ 1>>
<p>Despite the danger they pose, the book also speaks of the allure of the succubi, their beauty and charm being nearly irresistible to those who cross their path. It is said that even the most cautious of individuals may find themselves powerless to resist the beguiling ways of the succubi, falling prey to their illusions and ultimately suffering the consequences. The book concludes with a warning to always be on guard against the deceptive nature of the succubi and their powerful magic of illusion.<br><br>
Chapter 3.<br>
But be warned, the use of illusion magic comes with great responsibility. We must be careful not to overstep our bounds and manipulate the minds of others too heavily. Those who succumb to our illusions may become dependent on us, unable to distinguish reality from the false world we have created for them. It is up to us, as succubi, to use our powers with caution and care, always remembering the dangers of misusing our abilities. Never revealing our nature to humans takes precedence!<br>
You can now learn a new spell!
</p><br><br>
<<else>>
<p>You flip through the pages of the ancient tome on illusions, scanning over the ancient script and illustrations. As you reach the end, a sense of familiarity washes over you. You realize that you've already completed reading this tome, the knowledge of illusion magic now ingrained in your mind. You close the book, feeling a sense of accomplishment and power surging through you. You can't wait to put your new skills to the test and see just how far you can bend reality to your will.</p><br><br>
<</if>>
<</if>>
<<if $currenttome is "ice">>
<<if $read.ice is 0>>
<<set $read.ice to $read.ice + 1>>
<p>Chapter 1.<br>
The art of ice magic is a powerful and often underrated force. It is a magic that requires control and precision, as the tiniest misstep can have catastrophic consequences. But when wielded properly, it can bring great destruction to those who stand in your way.</p><br><br>
<<elseif $read.ice is 1>>
<<set $read.ice to $read.ice + 1>>
<p>Chapter 2.<br>
To harness the power of ice, one must first understand the elements. Water, in its frozen form, is the basis for all ice magic. But it is not just about freezing water - it is about manipulating the very structure of ice itself. With practice and control, a skilled ice magician can create shards of razor-sharp ice, walls of solid ice, and even entire frozen landscapes.</p><br><br>
<<elseif $read.ice is 2>>
<<set $read.ice to $read.ice + 1>>
<p>Chapter 3.<br>
However, one must be careful when using ice magic. It is easy to become overconfident and lose control, causing accidental harm to those around you. And be warned - there are those who are resistant or even immune to the power of ice. It is crucial to always be aware of your surroundings and the potential for danger when wielding this powerful magic.<br>
You can now learn a new spell!</p><br><br>
<<else>>
<p>As you peruse your collection of magic tomes, your eyes land on the worn cover of the ice magic tome. You remember the frosty spells contained within its pages, and the satisfaction of mastering the arcane art of freezing your enemies in their tracks. You have already devoted countless hours to reading and studying this tome, and have mastered all of its icy secrets. It is now just a matter of time before you put your newfound skills to the test, unleashing a flurry of icy magic upon your foes.</p><br><br>
<</if>>
<</if>>
<<if $currenttome is "wind">>
<<if $read.wind is 0>>
<<set $read.wind to $read.wind + 1>>
<p>Chapter 1.<br>
Wind magic is a powerful and unpredictable force, harnessing the raw power of the air itself. It is said that those who master wind magic are able to call upon the winds to do their bidding, summoning gusts and gales to do their will.</p><br><br>
<<elseif $read.wind is 1>>
<<set $read.wind to $read.wind + 1>>
<p>Chapter 2.<br>
But with great power comes great responsibility. Wind magic can be dangerous, and those who wield it must be careful not to lose control. It is important to remember that the winds can be fickle, and even the most skilled wind mage must be prepared for unexpected outcomes.</p><br><br>
<<elseif $read.wind is 2>>
<<set $read.wind to $read.wind + 1>>
<p>Chapter 3.<br>
Despite the risks, wind magic is a force to be reckoned with. With proper training and control, one can use the winds to their advantage, using them to propel themselves through the air, or even deflect attacks. The possibilities are endless, and the rewards great, for those who are brave enough to take on the challenge of wind magic.<br>
You can now learn a new spell!</p><br><br>
<<else>>
<p>As you gaze upon your collection of magic tomes, you can't help but smile as you remember the time you spent poring over the ancient text of the wind magic tome. The pages were filled with descriptions of how to harness the power of the wind, from creating gusts strong enough to knock your enemies off their feet to summoning swirling tornadoes to devastate your foes. You recall learning about the many different ways in which wind magic could be used, from enhancing your movement speed to controlling the weather. You're grateful for the knowledge you gained from reading the tome, and you can't wait to put your newfound skills to the test.</p><br><br>
<</if>>
<</if>>
<<if $currenttome is "water">>
<<if $read.water is 0>>
<<set $read.water to $read.water + 1>>
<p>Chapter 1.<br>
Water magic is a versatile force, capable of both destruction and healing. It can be used to unleash powerful storms and floods, or to calm the raging sea. Those skilled in its use can even manipulate the very essence of water, shaping it to their will and using it to their advantage.</p><br><br>
<<elseif $read.water is 1>>
<<set $read.water to $read.water + 1>>
<p>Chapter 2.<br>
However, water magic is not to be taken lightly. Its power can be unpredictable, and those who wield it must be careful to maintain control. Those who lose control risk being swept away by the very forces they seek to control.</p><br><br>
<<elseif $read.water is 2>>
<<set $read.water to $read.water + 1>>
<p>Chapter 3.<br>
Despite its dangers, water magic is a force to be reckoned with. Those who master its use can achieve great feats and become a force to be reckoned with. But remember, with great power comes great responsibility. Use your abilities wisely, and always be mindful of the consequences of your actions.<br>
You can now learn a new spell!</p><br><br>
<<else>>
<p>As you peruse your collection of magic tomes, your eyes fall upon the one labeled "Water Magic." You remember pouring over its pages, studying the intricate spells and incantations that allowed you to harness the power of water. You recall the thrill of summoning a stream of water from thin air, or freezing it solid with a mere gesture. You smile as you realize you have mastered the art of water magic, and are ready to put your new skills to the test.</p><br><br>
<</if>>
<</if>>
<<if $currenttome is "thunder">>
<<if $read.thunder is 0>>
<<set $read.thunder to $read.thunder + 1>>
<p>Chapter 1.<br>
Thunder magic is a powerful force, harnessing the raw energy of lightning and channeling it into destructive spells. It is a dangerous and unpredictable art, requiring great control and focus from the caster. Those who master thunder magic are capable of unleashing devastating attacks upon their enemies, but they must also be wary of the potential consequences of their actions.</p><br><br>
<<elseif $read.thunder is 1>>
<<set $read.thunder to $read.thunder + 1>>
<p>Chapter 2.<br>
To wield the power of thunder magic, one must first understand the nature of lightning itself. It is a force that can be both destructive and transformative, capable of leveling entire forests or purifying the earth. The key to harnessing its power is to understand its moods and to anticipate its movements.</p><br><br>
<<elseif $read.thunder is 2>>
<<set $read.thunder to $read.thunder + 1>>
<p>Chapter 3.<br>
The greatest danger of thunder magic lies in its volatility. A single misstep or moment of distraction could have catastrophic consequences, both for the caster and those around them. It is crucial that those who practice this art be mindful of their surroundings and always remain in control of their powers. Only with careful study and diligent practice can one truly master the art of thunder magic.<br>
You can now learn a new spell!</p><br><br>
<<else>>
<p>As you peruse your collection of magic tomes, you notice that the one on thunder magic is no longer present. You recall spending countless hours poring over its ancient pages, deciphering the complex incantations and learning to harness the raw, destructive power of thunder. Now, as you stand before your shelves, you realize that your hard work has paid off and you have mastered this powerful form of magic. The memory of your studies fills you with a sense of accomplishment, and you can't help but feel a sense of pride at your newfound abilities. You can't wait to put your newfound knowledge to the test and unleash the full potential of your thunder magic on the world.</p><br><br>
<</if>>
<</if>>
<<if $currenttome is "fire">>
<<if $read.fire is 0>>
<<set $read.fire to $read.fire + 1>>
<p>Chapter 1.<br>
The element of fire has long been revered by those who seek to harness its destructive power. It is a force of nature that can bring great destruction, but also has the ability to purify and create. As a succubus, learning to control and wield fire magic will bring great strength and versatility to your arsenal of spells.</p><br><br>
<<elseif $read.fire is 1>>
<<set $read.fire to $read.fire + 1>>
<p>Chapter 2.<br>
To begin your journey in the art of fire magic, it is important to understand the fundamental principles at play. Fire is a reaction, fueled by oxygen and a source of fuel. By manipulating these factors, a succubus can conjure and control flames at will. Practice focusing your energy and intent, and you will soon be able to ignite even the smallest of sparks into a raging inferno.</p><br><br>
<<elseif $read.fire is 2>>
<<set $read.fire to $read.fire + 1>>
<p>Chapter 3.<br>
As you progress in your studies of fire magic, you will learn to harness the power of the flames for a variety of purposes. From using them to purify and cleanse, to using them as a weapon in battle, the options are endless. But be warned, fire is a fickle and dangerous element. Always be mindful of your surroundings and the potential consequences of your actions.<br>
You can now learn a new spell!</p><br><br>
<<else>>
<p>The flames of knowledge dance in your mind as you recall all that you have learned from the ancient fire tome. You feel a renewed sense of power and excitement as you contemplate all the fiery mischief you can now unleash upon the world. Perhaps it's time to put your newfound skills to the test and ignite the world around you!</p><br><br>
<</if>>
<</if>>
<<if $currenttome is "fire2">>
<<if $read.fire2 is 0>>
<<set $read.fire2 to $read.fire2 + 1>>
<p>Chapter 1.<br>
Advanced fire level 2 magic is a step up from the basics. It allows the user to not only create and control flames, but also to manipulate and enhance them. This can be a useful tool in battle, as well as in everyday life. However, with great power comes great responsibility. The user must be careful not to let their control slip, as the consequences could be catastrophic.</p><br><br>
<<elseif $read.fire2 is 1>>
<<set $read.fire2 to $read.fire2 + 1>>
<p>Chapter 2.<br>
In order to truly master advanced fire level 2 magic, it is important to practice and train regularly. The user must also be aware of their own limits and know when to stop before things get out of hand. It is also important to remember that fire magic should never be used lightly or without caution. The user must always be mindful of their surroundings and the potential risks involved in using such powerful magic.</p><br><br>
<<elseif $read.fire2 is 2>>
<<set $read.fire2 to $read.fire2 + 1>>
<p>Chapter 3.<br>
Now that you have mastered the basics of fire magic, it is time to take your skills to the next level. Advanced fire level 2 magic requires a deeper understanding of the element and a greater control over its power.<br>
One key aspect of this advanced magic is the ability to shape and mold the flames to your will. You will learn how to create intricate patterns and designs, using the fire to create visual displays of your power.<br>
But beware, with great power comes great danger. Advanced fire level 2 magic requires a heightened level of focus and control, as even the slightest mistake can result in devastating consequences. It is important to always be mindful of your surroundings and the potential risks involved in using this powerful magic.<br>
You can now learn a new spell!</p><br><br>
<<else>>
<p>The flames of knowledge dance in your mind as you recall all that you have learned from the ancient fire tome. You feel a renewed sense of power and excitement as you contemplate all the fiery mischief you can now unleash upon the world. Perhaps it's time to put your newfound skills to the test and ignite the world around you!</p><br><br>
<</if>>
<</if>>
<p>You finish reading for now and set the book back on its shelf.</p><br><br>
[[home][$currentlocation to "shack"]]
<</nobr>>
</div><div class="conversation">
<p>You enter the clearing and you see a disheveled looking man.
<img class="passage-image" src="demongodsassets/people/fullbody/enemies/bandit/5.png" >
As you approach the clearing, you notice the figure of a man standing in the center. He appears to be a bandit, much like the ones you've encountered before. But there's something different about him - an aura of power radiates from him, making you feel uneasy.
You cautiously approach, ready for any sudden movements. As you come closer, the man sneers at you, his eyes raking over your body with a mixture of contempt and lust.
</p>
<div class='row left'>
<div class='left-msg'>Bandit<hr> What do we have here? A pretty little thing like you shouldn't be wandering around these woods alone," he leers. "How about I protect you while you're here, in exchange for a little...favor?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/cringebandit/1.png">
</div>
</div>
<<if $p.acceptance gte 50>>
<p>You consider his offer for a moment. But even if you are easy, something about this guy just pisses you off.
</p>
<<else>>
<p>You feel your anger rising at his suggestive remarks
</p>
<</if>>
<div class='row right'>
<div class='right-msg'>I think I can handle myself, thanks. And I wouldn't want to catch whatever disgusting disease you have.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>As the man's sneer twists into a scowl, he readies himself for battle by raising his hands, causing flames to ignite from his fingertips.
</p>
<div class='row left'>
<div class='left-msg'>Bandit<hr> You may have underestimated me, girl,I may be a bandit now, but I was once an aristocrat and attended the prestigious Arcane Academy of Shadowfall. My skills in magic are not to be trifled with. I'll roast you alive if you're not careful.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/cringebandit/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I don't even know what that is. Sounds cringy.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You ready your claws.</p>
[[continue|battle]]
</div>
<<nobr>>
<<set $e.type to ["magical_enemy", "boss"]>>
<<set $e.name to "cringebandit">>
<<set $e.lvl to 8>>
<<randomEnemyEncounter>>
<<set $fullname to "Cringy Bandit">>
<<set $e.weakness to "charm">>
<<set $e.eleresist to "wind">>
<<set $portrait to 1>>
<</nobr>>
<<widget 'fightscene'>>
<p>
<<if $e.name is "squik">>
<<if $currentatk == "melee">>
<<if $wings is true>>
<<switch random(5)>>
<<case 1>>
The Squik swooped down from above, landing on top of you and wrapping itself around your arms in an attempt to restrain them. You were able to slip free by clawing at its face repeatedly but each time that you did so another tendril would wrap itself around your body or try and strangle you! As they began to take hold of you, you had no choice but to throw yourself backwards over the edge of the ledge. Luckily for you, this proved to be enough to send both the Squik and you tumbling onto the floor below giving you a chance to get loose.
You're starting to get tired, but you can see that the Squik is faltering. Its movements are slower, and it seems to be having trouble keeping up with your attacks. You see an opening and take it, darting in close and sinking your claws into its body. It lets out a final screech before collapsing, its tentacles going still. You pant for a moment, panting and trying to catch your breath, before walking over to the Squik's corpse. You wipe your claws off on its sliyour skin before turning and walking out of the room, feeling triumphant.
<<case 2>>
As you stand there on guard against the demonic creature's furious charge, your body coiled and ready, every sense alert for any change in direction or speed that would indicate it was about to strike from another angle. As if reading your mind, the creature leaps forward, bounding towards you with incredible agility, four tentacles reaching out menacingly in all directions like angry snakes, the first slithering towards you even before the beast itself lands, avoiding their grasp as you continue to strike out with your claws, taking out tentacle after tentacle.
You're starting to get tired, but you can see that the Squik is faltering. Its movements are slower, and it seems to be having trouble keeping up with your attacks. You see an opening and take it, darting in close and sinking your claws into its body. It lets out a final screech before collapsing, its tentacles going still. You pant for a moment, panting and trying to catch your breath, before walking over to the Squik's corpse. You wipe your claws off on its sliyour skin before turning and walking out of the room, feeling triumphant.
<<case 3>>
The sky burned crimson as the moon set behind the trees. Thick clouds rolled overhead, bringing dark rain that pelted the ground beneath you. The air was heavy and hot; it clung to your skin like oil, seeping through your clothes and drying your throat. Your long hair fluttered in the wind. At your feet lay the dead remains of a Squik, slashed to pieces by your claws. It's musky odor permeating the air around you, mingling with the scent of the soil underfoot. The heat had sapped all energy from your body. Despite your fatigue, you knew there were still enemies nearby who might try to attack you while you slept. It's time to move.
<<case 4>>
The Squik lunges forward with two long tentacles. They lash out towards you like phallic-like appendages; You back away quickly, dodging both attack paths as best you could while still keeping your guard up. With lightning speed, you counterattack, chopping off each arm before they even make contact with you.
Your strike was fatal though, you see an ichor of some sort leaking from it's various wounds. Your claws sink deep into the soft flesh between its eyes as you finish it off, crushing whatever it uses as a brain beneath your foot. Its body convulses wildly and then falls limp on the forest floor. A puddle of black fluid slowly begins to seep through its skin.
<<case 5>>
The sight of that huge monstrous beast fills your mind with lustful desire as it lays out its obscene perversion before you, towering over you like a great dark monolith covered in countless tentacles in a vaguely humanoid shape. It stares at you hungrily, wanting nothing more than to stick those enormous cocks inside your body again and make you scream out his name as he thrusts deep within you while crushing your tender young womb around his manhood until all of him is buried inside your belly, throbbing relentlessly
Unfortunately for it, or perhaps fortunately. You aren't interested in sex. You crave violence. You leap high into the air, slicing three of the many tentacles with your claws. They slither away from you in panic but that only makes things easier; there's no need for fancy dodging when they can't reach you anyway! As soon as their escape was blocked off by nearby trees, one after another, you land on each tentacle, pinning it between your feet until it snaps off or breaks under pressure. The others quickly back off and you circle around, trying to attack where they won't have such an easy way out again. This fight is going much better than last time, you think to yourself as you plunge through the ranks of flailing limbs and severed stumps
The Squik is starting to look a lot more humanoid, though still a wriggling mass. You're confident you can get in close and finish it off before it can stop you. You let out a fierce battle cry and launch yourself at the beast, claws and wings flashing.
The stench of its slime-drenched skin hit you as you leaped at it, your long tail whipping out behind you. Your horns gleamed crimson in the dim light, flashing brightly against the pale grey clouds that scudded above us like a stormy sea, heavy drops falling on my back like hailstones. You manage to catch it off guard with a powerful slash across the side of its face with one claw. The Squik roars in pain, reeling away from you. Its putrid flesh smears against yours as you grapple for a moment briefly worried it would attempt to insert itself inside of you. Instead, with a final slash it had enough, as it falls limp, unable to continue moving.
<<default>>
The sight of that huge monstrous beast fills your mind with lustful desire as it lays out its obscene perversion before you, towering over you like a great dark monolith covered in countless tentacles in a vaguely humanoid shape. It stares at you hungrily, wanting nothing more than to stick those enormous cocks inside your body again and make you scream out his name as he thrusts deep within you while crushing your tender young womb around his manhood until all of him is buried inside your belly, throbbing relentlessly
You dash at the Squik, making a quick slashing motion. The Squik flails wildly to keep away from you as you dart around it, lashing out at its tendrils whenever one gets too close for comfort. Its skin becomes increasingly dark, dripping in ichor. It suddenly whips back toward you, aiming right for where you had just been standing moments earlier, completely missing you as you toy with it. It turns on its heels sharply, trying desperately not to lose sight of you, but its motions slow until it can no longer follow you as you slip past it easily. It tries to grab hold of something — anything — that could possibly stop or delay your advance, but all it manages is to wrap itself up around a nearby oak. You take the opening and stab deep into the base of its neck, puncturing a thick vein as a fountain of blood gushes forth as the Squik writhes helplessly, going limp once again after a few moments.
<</switch>>
<<else>>
<<switch random(2)>>
<<case 1>>
The Squik charged at me, thrashing its limbs madly like some wild beast trying to dislodge an unwanted rider. Of course, that's the exact opposite this sex beast wants from you. But you're in no mood for sex, instead you would rather end its miserable life. You sidestep the flailing tendrils easily enough, catching hold of them. This should gross you out as they're phallic in nature and smell of a musky odor. But your Succubi body only gets turned on. Instead of disgust you take great pleasure in slashing off all six tentacles of the creature. It squeals with what sounds like pain but is really just frustration as you see it recoil.
You're starting to get tired, but you can see that the Squik is faltering. Its movements are slower, and it seems to be having trouble keeping up with your attacks. You see an opening and take it, darting in close and sinking your claws into its body. It lets out a final screech before collapsing, its tentacles going still. You pant for a moment, panting and trying to catch your breath, before walking over to the Squik's corpse. You wipe your claws off on the grass, and turn to walk away.
<<case 2>>
The sight of that huge monstrous beast fills your mind with lustful desire as it lays out its obscene perversion before you, towering over you like a great dark monolith covered in countless tentacles in a vaguely humanoid shape. It stares at you hungrily, wanting nothing more than to stick those enormous cocks inside your body again and make you scream out his name as he thrusts deep within you while crushing your tender young womb around his manhood until all of him is buried inside your belly, throbbing relentlessly
Unfortunately for it, or perhaps fortunately. You aren't interested in sex. You crave violence. You leap high into the air, slicing three of the many tentacles with your claws. They slither away from you in panic but that only makes things easier; there's no need for fancy dodging when they can't reach you anyway! As soon as their escape was blocked off by nearby trees, one after another, you land on each tentacle, pinning it between your feet until it snaps off or breaks under pressure. The others quickly back off and you circle around, trying to attack where they won't have such an easy way out again. This fight is going much better than last time, you think to yourself as you plunge through the ranks of flailing limbs and severed stumps
The Squik is starting to look a lot more humanoid, though still a wriggling mass. You're confident you can get in close and finish it off before it can stop you. You let out a fierce battle cry and launch yourself at the beast, claws and wings flashing.
The stench of its slime-drenched skin hit you as you leaped at it, your long tail whipping out behind you. Your horns gleamed crimson in the dim light, flashing brightly against the pale grey clouds that scudded above you both like a stormy sea, heavy drops falling on my back like hailstones. You manage to catch it off guard with a powerful slash across the side of its face with one claw. The Squik roars in pain, reeling away from you. Its putrid flesh smears against yours as you grapple for a moment briefly worried it would attempt to insert itself inside of you. Instead, with a final slash it had enough, as it falls limp, unable to continue moving.
<<default>>
As the Squik charges towards you, you prepare yourself for the fight. You extend your claws, ready to slice through its tentacles. The Squik layous out with one of its tentacles, trying to wrap it around your ankle. You quickly jump out of the way, avoiding the tentacle and launching yourself towards the Squik. You grip onto its tentacles with your claws, slicing through them with precision. The Squik howls in pain, thrashing harder.
You continue to attack the Squik with your claws, dodging its tentacles as they come at you. The Squik's movements become slower and more sluggish, and you know it's only a matter of time before it goes down. You let out a fierce battle cry as you plunge your claws into the Squik's head, finally defeating it.
As you stand triumphant over the defeated Squik, you can't help but feel a surge of pride and accomplishment. This was a tough battle, but you've proven yourself to be a skilled fighter. You take a moment to catch your breath before moving on, ready for whatever challenges come your way.
<</switch>>
<</if>>
<<elseif $currentatk is "fire">>
<<switch random(2)>>
<<case 1>>
You stood facing the Squik, your sharp claws glinting in the dim light of the forest. The creature was a humanoid mass of writhing tentacles, each one pulsing with a sickly green light. It towered over you, its tentacles writhing and undulating as it prepared to strike.
You flung out both arms, a blast of white-hot flame erupting from between your palms. The Squik screeched horribly, flailing desperately but unable to break free. The burning strands of its body blackened and withered before your eyes as they fell away from its head.
It attempted to flee, but you were not about to let it escape. You charged forward, your claws slashing through the tentacles with ease. The monster bellowed in agony as you tore it apart, piece by piece. As you closed in for the final blow, the monster caught you off guard with a swift tentacle strike, grazing your arm and leaving a shallow cut. You gritted your teeth and redoubled your efforts. The thing thrashed for several seconds longer before going limp on the ground, twitching weakly as if still alive despite all evidence to the contrary.
<<case 2>>
A towering form loomed over her. Its shape was monstrous, hulking above you in the darkness like an ancient monstrosity rising up from beneath the forest floor. Its tendrils gleamed with sickly in the moons light. They writhed and squirmed obscenely as they stretched toward you, eager to entwine themselves around your flesh.
Your fingers tingled faintly with power as you cast the spell. You hurled out both hands and pointed them at the beast's wriggling mass of tentacles. Flames exploded from each palm in brilliant orange balls, tearing through the air in quick succession. Each blast slammed into the creature's writhing body and erupted outward in a fiery spray, charring the long appendages and causing them to shrivel and curl in on themselves before finally withering away completely.
A burning tentacle slashed towards your chest! Your reflexes were fast enough that you managed to throw your arms up just in time to deflect the attack. The searing tendrils clung to your skin for a moment, scorching your flesh before fading away harmlessly.
As the fight dragged on, You began to tire. you knew you had to end it soon, before the monster could land a fatal blow. Gathering all of your remaining strength, you launched one final attack, your claws and magic tearing through the tentacles as you fought to defeat the monster once and for all. The monster screamed horribly as the last remnants of its life fled from its quivering form. It collapsed lifelessly on the ground, nothing more than an empty husk now that Its life force was gone.
<<default>>
It lunges at you, its tentacles reaching out to ensnare you. You duck and roll, narrowly avoiding its grasp. As you come up to your feet, you summon a burst of fire magic, using it to set the creature's tentacles ablaze. It howls in pain and thrashes about, giving you an opening to attack.
You seize the opportunity, launching yourself at it again. Your claws flash as you strike out at the monster, each blow sending it writhing to the ground. Despite your best efforts, however, it manages to slip through your defenses and land a solid hit on your leg with its tentacles. You stumble, but manage to keep your footing and continue fighting.
The battle is fierce and brutal, but in the end, you emerge victorious. The ground is littered with the pieces of its twitching body, and you stand tall and proud, your chest heaving with exertion and one leg throbbing with pain. You know that you have emerged from this battle stronger than ever before, and you are ready to take on whatever challenges may come your way.
<</switch>>
<<elseif $currentatk is "ice">>
<<switch random(2)>>
<<case1>>
Your breath plumed white as the air turned cold as you gathered together your energy. You took several deep, steadying breaths before closing your eyes and gathering up all of the power within yourself. The Squik's long limbs were moving at terrifying speed toward your chest, but even though time slowed around you like syrup, you could clearly see every tremor and quiver in them. As they drew closer you thrust out both arms at the thing, a mist of pure cold bursting forth from between them
The icy blast smashed into the monster and sent it crashing backward, tumbling through the dirt and leaves until it finally came to rest against one of the nearby trees. A horrible scream ripped from its mouth, then it stood back up and charged; or rather slithered, towards you. Its tendrils flickered erratically as it moved, but it's movements had been slowed from the icy cold magic covering the nearby flora in frost. The Squik's movements drastically slowed, this was your chance. Your magic surged, filling you with power, you raised your hands before you, summoning a giant icicle and pinning the Squik to a tree.
<<case2>>
The creature lunges forward at incredible speed, slashing out at you with all four of its tentacles. You leap aside, narrowly avoiding being impaled by the thing's grasping limbs. It has no face, nor does it have any intelligence. It's just a mass of sexual instinct. Still, you wonder how it knew where to attack. Had you not attacked first, it very likely would have been a docile mate. Now that it knows fear and pain though, it fights to protect itself.
A barrage of icy spears shoot forth from your palms as you brace yourself for the oncoming assault. Each spear is coated in frozen spikes of ice as they fly through the air, tearing into the creature's form as if made of steel. The monster screams in agony as its flesh melts away under the pressure of the blows, its writhing body finally falling limp and lifeless as it crumbles into pieces.
<<default>>
The creature lashed out with all four of its tentacles, forcing you to backpedal furiously before striking out once more at your attacker. As it threw out its first tentacle, however, you saw an opening, lunged forward, and swiped out with one claw enhanced with ice, knocking the long limb away from you. In an instant, two of the remaining three tentacles struck towards you, but you leapt aside just in time to avoid their grasping tendrils. With no way to defend yourself, you were forced to jump away again.
The battle is intense and exhausting, but you refuse to give up. You gather your ice magic, focusing all of your energy into one final attack. You unleash a blast of icy energy, the magic engulfing the Squik and freezing its tentacles solid.
The creature howls in pain as you strike out with your claws, tearing through its frozen tentacles with ease. It falls to the ground, its tentacles twitching in its death throes.
You stand victorious, your chest heaving with exertion as you survey the defeated creature. You know that you have emerged from this battle stronger than ever before, and you are ready to take on whatever challenges may come your way.
<</switch>>
<<elseif $currentatk is "wind">>
<<switch random(2)>>
<<case1>>
The Squik slowly crawls towards you. You inhale deeply, drawing upon the power of the wind within your lungs, willing it to move. The Squik pauses, sensing something amiss. A small gust of wind whips past the beast, causing it to recoil slightly, as if startled. You smile, knowing that you can use this to your advantage. You focus your mind, casting a burst of wind magic at the Squik. The creature shrinks back, looking at you warily. You reach out with your hand, pushing the wind at it. Suddenly it darts around you, its tentacles reaching for you. You let out a gasp as one of them wraps around your leg. You stumble forward for a moment, stunned, but quickly pull yourself together and slice the tendril with a claw and concentrate on refining your wind into a sharp blade.
The Squik howls in pain as the wind magic tears through its tentacles, its writhing form beginning to slow as the magic takes hold. You take advantage of its momentary weakness, leaping forward and striking out with your claws. You tear through the tentacles with ease, your magic and claws working in tandem to destroy the creature.
<<case2>>
The creature lunges forward at incredible speed, slashing out at you with all four of its tentacles. You leap aside, narrowly avoiding being impaled by the thing’s grasping limbs. It has no face, nor does it have any intelligence. Its just a mass of sexual instinct. Still, you wonder how it knew where to attack. Had you not attacked first, it very likely would have been a docile mate.
Finally, an opportunity presents itself. The Squik overextends itself, leaving itself open to attack. You take it, gathering your wind magic and unleashing a devastating gust of wind. The Squik shrieks in pain as the magic engulfs it, its tentacles whipping about wildly in the gale.
You take advantage of the creature's disorientation, leaping forward and striking out with your claws. You tear through the tentacles with ease, your magic and claws working in tandem to destroy the creature.
As the Squik falls to the ground, its tentacles twitching in its death throes, you stand tall and proud, your chest heaving with exertion. You know that you have emerged from this battle stronger than ever before, and you are ready to take on whatever challenges may come your way. The trees rustle overhead, as if in approval of your victory.
<<default>>
You and the Squik are locked in a fierce battle in the midst of the forest, the trees providing a natural arena for your fight. The creature lashes out with its tentacles, trying to ensnare you. You dodge and weave, your claws flashing as you strike out at the tentacles.
The battle is intense and exhausting, but you refuse to give up. You gather your wind magic, focusing all of your energy into one final attack. You unleash a gust of wind, the magic swirling around the Squik and tearing through its tentacles.
The creature howls in pain as you strike out with your claws, tearing through its shredded tentacles with ease. It falls to the ground, its tentacles twitching in its death throes.
You stand victorious, your chest heaving with exertion as you survey the defeated creature. The trees rustle overhead, their leaves rustling in the aftermath of your magic. You know that you have emerged from this battle stronger than ever before, and you are ready to take on whatever challenges may come your way.
<</switch>>
<<elseif $currentatk is "water">>
<<switch random(2)>>
<<case1>>
You stand in a clearing by a river, facing off against the Squik. The creature is a writhing mass of tentacles, its grotesque form pulsing with a sickly green light. It towers over you, its tentacles undulating as it prepares to strike.
You raise your hands, gathering the water magic within you. The Squik charges, its tentacles lashing out towards you. You wait until the last possible moment before releasing the magic, a wave of water that crashes into the creature and sends it stumbling backwards.
The Squik howls in pain as the water magic douses its tentacles, its writhing form beginning to slow as the magic takes hold. You take advantage of its momentary weakness, leaping forward and striking out with your claws. You tear through the tentacles with ease, your magic and claws working in tandem to destroy the creature.
In the end, the Squik lies at your feet, its tentacles still twitching as the last of the water magic works its way through its body. You stand victorious, your chest heaving with exertion as you survey the defeated creature. The river flows peacefully behind you, its gentle flow a soothing counterpoint to the chaos of the battle.
<<case2>>
You and the Squik circle each other by a stream of water. The creature lashes out with its tentacles, trying to ensnare you. You dodge and weave, narrowly avoiding each strike as you wait for the right moment to strike.
Finally, an opportunity presents itself. The Squik overextends itself, leaving itself open to attack. You take it, gathering your water magic and unleashing a devastating wave of water. The Squik shrieks in pain as the magic engulfs it, its tentacles whipping about wildly in the current.
You take advantage of the creature's disorientation, leaping forward and striking out with your claws. You tear through the tentacles with ease, your magic and claws working in tandem to destroy the creature.
As the Squik falls to the ground, its tentacles twitching in its death throes, you stand tall and proud, your chest heaving with exertion. You know that you have emerged from this battle stronger than ever before, and you are ready to take on whatever challenges may come your way. The river flows peacefully behind you, its gentle flow a testament to your victory.
<<default>>
You and the Squik are locked in a fierce battle by the stream. The creature lashes out with its tentacles, trying to ensnare you. You dodge and weave, your claws flashing as you strike out at the tentacles.
The battle is intense and exhausting, but you refuse to give up. You gather your water magic, focusing all of your energy into one final attack. You unleash a torrent of water, the magic swirling around the Squik and tearing through its tentacles.
The creature howls in pain as you strike out with your claws, tearing through its shredded tentacles with ease. It falls to the ground, its tentacles twitching in its death throes.
You stand victorious, your chest heaving with exertion as you survey the defeated creature. The river flows peacefully behind you, its gentle flow a soothing balm to your battered body. You know that you have emerged from this battle stronger than ever before, and you are ready to take on whatever challenges may come your way.
<</switch>>
<<elseif $currentatk is "thunder">>
<<switch random(2)>>
<<case1>>
You stand in a clearing in the midst of a dense forest, facing off against the Squik. The creature is a writhing mass of tentacles, its grotesque form pulsing with a sickly green light. It towers over you, its tentacles undulating as it prepares to strike.
You raise your hands, gathering the thunder magic within you. The Squik charges, its tentacles lashing out towards you. You wait until the last possible moment before releasing the magic, a bolt of lightning that slams into the creature and sends it stumbling backwards.
The Squik howls in pain as the thunder magic sears its tentacles, its writhing form beginning to slow as the magic takes hold. You take advantage of its momentary weakness, leaping forward and striking out with your claws. You tear through the tentacles with ease, your magic and claws working in tandem to destroy the creature.
In the end, the Squik lies at your feet, its tentacles still twitching as the last of the thunder magic works its way through its body. You stand victorious, your chest heaving with exertion as you survey the defeated creature. The trees around you rustle and sway, their leaves trembling in the aftermath of the magical storm.
<<case2>>
You and the Squik circle each other in the midst of the forest, the trees providing a natural barrier between you. The creature lashes out with its tentacles, trying to ensnare you. You dodge and weave, narrowly avoiding each strike as you wait for the right moment to strike.
Finally, an opportunity presents itself. The Squik overextends itself, leaving itself open to attack. You take it, gathering your thunder magic and unleashing a devastating bolt of lightning. The Squik shrieks in pain as the magic engulfs it, its tentacles freezing in place as the electricity courses through its body.
You take advantage of the creature's immobility, leaping forward and striking out with your claws. You tear through the tentacles with ease, your magic and claws working in tandem to destroy the creature.
As the Squik falls to the ground, its tentacles twitching in its death throes, you stand tall and proud, your chest heaving with exertion. You know that you have emerged from this battle stronger than ever before, and you are ready to take on whatever challenges may come your way. The trees around you rustle and sway, their leaves trembling in the aftermath of the magical storm.
<<default>>
You and the Squik are locked in a fierce battle in the midst of the forest, the trees providing a natural arena for your fight. The creature lashes out with its tentacles, trying to ensnare you. You dodge and weave, your claws flashing as you strike out at the tentacles.
The battle is intense and exhausting, but you refuse to give up. You gather your thunder magic, focusing all of your energy into one final attack. You unleash a bolt of lightning, the magic arcing through the air and striking the Squik with devastating force.
The creature howls in pain as you strike out with your claws, tearing through its charred tentacles with ease. It falls to the ground, its tentacles twitching in its death throes.
You stand victorious, your chest heaving with exertion as you survey the defeated creature. The trees around you rustle and sway, their leaves trembling in the aftermath of the magical storm. You know that you have emerged
<</switch>>
<</if>>
<<elseif $e.name is "alraune">>
<<if $currentatk == "melee">>
<<if $wings is true>>
<<switch random(2)>>
<<case1>>
As the alraune lashed out with its vines, you leaped to the side and slashed at them with your claws, cutting into the thick vines. Each vine snapped easily under your powerful strikes, and you felt confident that they wouldn't be able to hurt you much longer. You pressed forward, your claws sweeping through the air as you sought to keep the alraune occupied.
The alraune swiveled on its base, sending out more of its vines to attack you. You jumped over one, and as it snapped at you, you sliced at it with your tail. Your tail slid effortlessly through the air, and you swung it like a flail, cutting through several more of the thick vines.
As the alraune tried to stop your advance, you slashed at it with your claws, cutting through the vines and sending them flying. The alraune took a step back, and its eyes went wide with fear as you walked towards it.
<<case2>>
You prepared your claws for the coming battle, and flexed your wings to make sure they were strong enough for the long flight ahead. You were staring down a beautiful woman with green skin and flowers in her hair, who was surrounded by vines and looking up at you with a confused expression.
You square off with the Alraune, keeping a close eye on its vines. It looks pretty strong, and diving in headfirst doesn't seem like the best idea. You see it has full control over the vines around it. Multiple vines shoot forth towards you, but you're ready for them. With a quick flap of your wings, you take to the air, easily dodging the vines. You can feel the wind rushing past you as you circle the Alraune, looking for an opening.
You take to the air as the alraune sends more vines towards you. As they snap against your wings, you feel the wind rushing past you. You quickly swoop down toward the alraune as it turns towards you, and land just outside of its reach. You turn to face it and watch it hesitate. It seems wary of you. Its eyes look around and dart around in its head as it tries to find an escape. You think for a moment, then dart towards it and slice at one of its vines, cutting it cleanly in half. As you slash, you catch it off guard, and its eyes go wide with fear as you dive in for the kill. You catch its arm and twist around so that its face is right in front of yours.
Finally, the Alraune drops all defenses.
<<default>>
You step into the clearing and see a large, humanoid plant creature standing in front of you. It's an Alraune, a dangerous and powerful monster known for its seductive charm and control over vines. You take a deep breath and prepare yourself for the fight.
The Alraune watches you intently, its vines writhing around it like snakes. You can feel its power emanating from it, but you refuse to back down. You flex your claws and ready your tail, ready to strike at a moment's notice.
The Alraune takes the first move, sending a wave of vines at you. You quickly dodge and counter, slashing at the vines with your claws and tail. The Alraune's vines are tough, but you're able to cut through them with ease.
As the battle rages on, you start to feel the strain on your muscles. The Alraune is a formidable opponent, and you're starting to lose ground. But you refuse to give up. You gatyour all your strength and launch a final attack, using all your skills and strength to strike at the Alraune.
<</switch>>
<<else>>
<<switch random(1)>>
<<case1>>
You square off with the creature, trying to gauge its strength. It looks formidable, but you know you can't back down now. You see that it has full control over the vines around it, and as it attacks with multiple vines, you are quick to dodge and slash at them with your claws.
As you close in on the Alraune, you can see the fear growing in its eyes. It tries to block your path with a wall of vines, but you are able to push through them and keep moving forward.
<<default>>
You step into the clearing and see a large, humanoid plant creature standing in front of you. It's an Alraune, a dangerous and powerful monster known for its seductive charm and control over vines. You take a deep breath and prepare yourself for the fight.
The Alraune watches you intently, its vines writhing around it like snakes. You can feel its power emanating from it, but you refuse to back down. You flex your claws, ready to strike at a moment's notice.
The Alraune takes the first move, sending a wave of vines at you. You quickly dodge and counter, slashing at the vines with your claws. The Alraune's vines are tough, but you're able to cut through them with ease.
As the battle rages on, you start to feel the strain on your muscles. The Alraune is a formidable opponent, and you're starting to lose ground. But you refuse to give up. You gatyour all your strength and launch a final attack, using all your skills and strength to strike at the Alraune.
<</switch>>
<</if>>
<<elseif $currentatk is "fire">>
<<switch random(2)>>
<<case1>>
The alraune's vines shot out at you, but you were quick to dodge, leaping over them and firing a burst of flame from your palm. The alraune screeched as the fire engulfed its flowery form, the beautiful petals wilting and blackening under the heat.
You pressed your advantage, launching wave after wave of fiery magic at the creature as it writhed and thrashed in agony. The forest around you was set ablaze, the dry underbrush and leaves catching fire and spreading quickly. You could feel the heat on your skin and the sweat dripping down your forehead as you battled on, determined to defeat the monster that threatened the peace of the land.
As the alraune lay at your feet, it reached out to you with a tendril of vines
<<case2>>
You struck first, sending a bolt of flame flying towards the alraune. It dodged easily, its vines wrapping around a nearby tree to haul itself out of harm's way. You followed up with a burst of flame, but the alraune was ready for you, its vines forming a shield to block the attack.
The battle raged on, the two of you evenly matched in strength and skill. The forest around you was torn apart as you fought, trees toppled and the ground scorched by your magic. The alraune was taking heavy damage, its flowers withering and blackening under the constant barrage of fire, but it refused to give up.
Just when it seemed like the fight would never end, the alraune suddenly stopped, its vines falling limp at its sides. It looked up at you with pleading eyes
<<default>>
The alraune was a formidable opponent, its vines lashing out with the speed and strength of a whip. You were barely able to keep up, your fire magic barely able to hold it back. The creature was tireless, its never-ending supply of vines allowing it to attack from every angle at once.
You were starting to feel the strain of the battle, your muscles aching and your magic beginning to falter. You knew you couldn't keep this up much longer, but you couldn't give up either. The alraune was a dangerous threat, and if you didn't defeat it now, it would only come back stronger.
You gathered your remaining strength and launched a final, all-out attack. The alraune was caught off guard, its vines unable to defend against the fierce onslaught of flame. It screamed in agony as the fire consumed it, its beautiful petals turning to ash in an instant.
As the flames died down, you saw that the alraune was still alive, its vines writhing weakly on the ground
<</switch>>
<<elseif $currentatk is "ice">>
<<switch random(2)>>
<<case1>>
The alraune was fast, its vines snaking out towards you with lightning speed. You were ready for it though, your ice magic at the ready. You unleashed a blast of frigid air, the temperature dropping dramatically as the magic hit its target. The alraune froze solid, its vines cracking and breaking off as they were encased in ice.
As you unleashed your ice magic at the alraune, it tried to get out of the way, but the blast of cold air caught it before it could escape. As it tried to dodge, its vines shattered as they were frozen by the blast of ice magic. As it fell to the ground, its body shattered as it hit the ice-covered ground, shards of ice scattering across the forest floor.
You approached the creature cautiously, your magic still at the ready in case it broke free. It was a strange sight, the once-beautiful woman now a statue of ice and flowers. You could see your own breath in the freezing air, the forest around you blanketed in a layer of frost.
The alraune began to stir, its vines trembling as they tried to break free of the ice. You were ready for it though, and with a flick of your wrist, you sent another blast of ice magic its way. The alraune froze solid once again, its cries of pain silenced by the icy prison.
As you stood over the defeated creature, it looked up at you with pleading eyes
<<case2>>
You and the alraune faced off, both of you waiting for the other to make the first move. The air around you was icy cold, the magic emanating from both of you causing the temperature to drop to near freezing. The alraune was the first to attack, its vines lashing out towards you with deadly precision.
You countered with a blast of ice magic, the frigid air freezing the vines in place. The alraune let out a howl of pain, its flowers withering and dying under the extreme cold. You followed up with another attack, your magic reaching out towards the creature with deadly intent.
The alraune fought back with all its might, its vines writhing and thrashing as it tried to break free of the icy prison. The forest around you was a frozen wasteland, the trees coated in a layer of frost and the ground hard as stone. The battle raged on, neither of you showing any sign of backing down.
Just when it seemed like the fight would never end, the alraune suddenly stopped, its vines falling limp at its sides. It looked up at you with pleading eyes
<<default>>
The alraune was a formidable opponent, its vines lashing out with the speed and strength of a whip. You were barely able to keep up, your ice magic barely able to hold it back. The creature was tireless, its never-ending supply of vines allowing it to attack from every angle at once.
You were starting to feel the strain of the battle, your muscles aching and your magic beginning to falter. You knew you couldn't keep this up much longer, but you couldn't give up either. The alraune was a dangerous threat, and if you didn't defeat it now, it would only come back stronger.
You gathered your remaining strength and launched a final, all-out attack.
The alraune was caught off guard, its vines unable to defend against the fierce onslaught of ice. It screamed in agony as the frost consumed it, its beautiful petals turning to ice crystals in an instant.
As the cold dissipated, you saw that the alraune was still alive, its vines writhing weakly on the ground. You approached cautiously, your magic at the ready in case it tried to attack again. But as you drew closer, you saw that the creature's eyes were filled with fear and desperation. It looked up at you with pleading eyes
<<elseif $currentatk is "wind">>
<<switch random(2)>>
<<case1>>
The alraune was a formidable opponent, its vines lashing out with the speed and strength of a whip. You were barely able to keep up, your wind magic barely able to hold it back. The creature was tireless, its never-ending supply of vines allowing it to attack from every angle at once.
You were starting to feel the strain of the battle, your muscles aching and your magic beginning to falter. You knew you couldn't keep this up much longer, but you couldn't give up either. The alraune was a dangerous threat, and if you didn't defeat it now, it would only come back stronger.
You gathered your remaining strength and launched a final, all-out attack. The alraune was caught off guard, its vines unable to defend against the fierce onslaught of wind. It screamed in agony as the gale-force winds battered its body, its flowers torn from its vines and scattered across the forest floor.
As the winds died down, you saw that the alraune was still alive, its vines writhing weakly on the ground. You approached cautiously, your magic at the ready in case it tried to attack again. But as you drew closer, you saw that the creature's eyes were filled with fear and desperation. It looked up at you with pleading eyes
<<case2>>
The alraune was fast, its vines snaking out towards you with lightning speed. You were ready for it though, your wind magic at the ready. You unleashed a gust of wind, the air rushing past you with such force that it knocked the alraune off its feet.
The creature let out a screech of pain as it crashed to the ground, its vines writhing and thrashing as it tried to stand up. You followed up with another blast of wind, this one even stronger than the last. The alraune was unable to defend itself, the gusts of wind tearing its vines apart and scattering its flowers across the forest floor.
As the winds died down, you approached the defeated creature, your magic at the ready in case it tried to attack again. But as you drew closer, you saw that the alraune was no longer a threat. Its eyes were closed, its vines limp and lifeless. You could feel a sense of sorrow emanating from the creature, and you knew that it was begging for mercy.
<<default>>
As you jumped over the alraune's attack, it lashed out again with another vine that looked like an angry snake, moving in for the kill. With a flick of your wrist, a gale of wind swept through the clearing as you launched a powerful spell at the alraune. It let out a shrill shriek of agony as it was knocked back by the sudden gust, stumbling and falling to one knee. Its long, spindly arms snapped against the trees as it fought to remain standing, its vines writhing about wildly on its body.
You pressed your advantage, launching wave after wave of wind magic at the creature as it struggled to defend itself. The forest around you was in chaos, the trees swaying and bending under the force of the winds. You could feel the air rushing past you as you fought, the gusts of wind pulling at your clothes and hair.
The alraune was clearly outmatched, its vines barely able to hold up against your magic. It let out a cry of desperation as it fell to its knees, its flowers wilting and dying under the assault. You hesitated for a moment, considering whether to end the fight or to show mercy.
<</switch>>
<<elseif $currentatk is "water">>
<<switch random(2)>>
<<case1>>
The alraune was a formidable opponent, its vines lashing out with the speed and strength of a whip. You were barely able to keep up, your water magic barely able to hold it back. The creature was tireless, its never-ending supply of vines allowing it to attack from every angle at once.
You knew that alraunes were naturally resistant to water magic, but you refused to let that deter you. You summoned a wave of water, the liquid crashing against the creature with enough force to knock it off its feet. The alraune let out a screech of pain as it hit the ground, its vines writhing and thrashing as it tried to stand up.
You followed up with another attack, your magic reaching out towards the creature with deadly intent. The alraune was able to block the attack with its vines, but it was clearly struggling. You could see the sweat on its brow, the strain of the battle etched into its face.
You knew that this was your chance. You gathered your remaining strength and launched a final, all-out attack. The alraune was caught off guard, its vines unable to defend against the fierce onslaught of water. It screamed in agony as the liquid consumed it, its beautiful petals turning to mush under the pressure.
As the water died down, you saw that the alraune was still alive, its vines writhing weakly on the ground. You approached cautiously, your magic at the ready in case it tried to attack again. But as you drew closer, you saw that the creature's eyes were filled with fear and desperation. It looked up at you with pleading eyes,
<<case2>>
The alraune was fast, its vines snaking out towards you with lightning speed. You were ready for it though, your water magic at the ready. You unleashed a jet of water, the liquid arcing through the air towards the creature. The alraune was able to dodge the attack, its vines wrapping around a nearby tree to haul itself out of harm's way.
You followed up with another attack, this one a wave of water that crashed against the alraune with enough force to knock it off its feet. The creature let out a howl of pain as it hit the ground, its vines writhing and thrashing as it tried to stand up.
The battle raged on, the two of you evenly matched in strength and skill. The forest around you was a battlefield, the trees toppled and the ground soaked by your magic. The alraune was taking heavy damage, its flowers withering and dying under the constant barrage of water, but it refused to give up.
Just when it seemed like the fight would never end, the alraune suddenly stopped, its vines falling limp at its sides. It looked up at you with pleading eyes, its voice barely a whisper
<<default>>
The alraune attacked with its vines lashing out with the speed and strength of a whip. You were quick to dodge, leaping over the vines and unleashing a burst of water magic as you landed. The alraune let out a screech of pain as the jet of water hit it, its vines writhing and thrashing as it tried to stand up.
You pressed your advantage, launching wave after wave of water magic at the creature as it struggled to defend itself. The forest around you was a mess, the trees toppled and the ground soaked by your magic. The alraune was taking heavy damage, its flowers withering and dying under the constant barrage of water, but it refused to give up.
Just when it seemed like the fight would never end, the alraune suddenly stopped, its vines falling limp at its sides. It looked up at you with pleading eyes, its voice barely a whisper
<</switch>>
<<elseif $currentatk is "thunder">>
<<switch random(2)>>
<<case1>>
The alraune was fast, its vines snaking out towards you with lightning speed. You were ready for it though, your thunder magic at the ready. You unleashed a bolt of lightning, the electricity crackling through the air as it struck the creature. The alraune let out a screech of pain as it was hit, its vines writhing and thrashing as it tried to stand up.
You followed up with another attack, your magic reaching out towards the creature with deadly intent. The alraune was unable to defend itself, the bolts of lightning tearing its vines apart and scattering its flowers across the forest floor.
As the electricity dissipated, you approached the defeated creature, your magic at the ready in case it tried to attack again. But as you drew closer, you saw that the alraune was no longer a threat. Its eyes were closed, its vines limp and lifeless. You could feel a sense of sorrow emanating from the creature
<<case2>>
The alraune was a formidable opponent, its vines lashing out with the speed and strength of a whip. You were barely able to keep up, your thunder magic barely able to hold it back. The creature was tireless, its never-ending supply of vines allowing it to attack from every angle at once. As the battle raged on, you started to feel the strain of the fight. Your magic was faltering, your muscles aching with fatigue. You knew that you couldn't keep this up much longer, but you couldn't give up either. The alraune was a dangerous threat, and if you didn't defeat it now, it would only come back stronger.
You gathered your remaining strength and launched a final, all-out attack. The alraune was caught off guard, its vines unable to defend against the fierce onslaught of thunder. It screamed in agony as the lightning consumed it, its beautiful petals turning to ashes in an instant.
As the electricity dissipated, you saw that the alraune was still alive, its vines writhing weakly on the ground. You approached cautiously, your magic at the ready in case it tried to attack again. But as you drew closer, you saw that the creature's eyes were filled with fear and desperation. It looked up at you with pleading eyes
<<default>>
The Alraune's vines were lashing out with the speed and strength of a whip. You were quick to dodge, leaping over the vines and unleashing a burst of thunder magic as you landed. The alraune let out a screech of pain as the bolt of lightning hit it, its vines writhing and thrashing as it tried to stand up.
You pressed your advantage, launching wave after wave of thunder magic at the creature as it struggled to defend itself. The forest around you was a mess, the trees toppled and the ground scorched by your magic. The alraune was taking heavy damage, its flowers withering and dying under the constant barrage of lightning, but it refused to give up.
Just when it seemed like the fight would never end, the alraune suddenly stopped, its vines falling limp at its sides. It looked up at you with pleading eyes, its voice barely a whisper as it begged for mercy
<</switch>>
<</if>>
<div class='row left'>
<div class='left-msg'>Please spare me!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<<elseif $e.name is "bandit">>
<<if $currentatk == "melee">>
<<if $wings is true>>
<<switch random(4)>>
<<case1>>
The bandit came at you with a fierce determination, his sword slashing through the air with deadly precision. You were ready for him though, your wings and tail at the ready as you dodged and parried his attacks. The forest around you was a blur of motion, the trees shaking and rustling as you fought.
As the bandits strikes came down around you, you ducked under the first swing and sliced with your claws. As he stepped forward after swinging wide, you whirled past him, slicing deep into the meat of the arm that held the club. He roared in pain, letting go of the club as it clattered loudly on the floor.
You launched a final, all-out attack. The bandit was caught off guard, his club still on the ground unable to defend against the fierce onslaught of your claws and the powerful strikes of your wings and tail. He screamed in agony as you tore through his armor and skin, his blood staining the ground beneath him.
As the bandit fell to his knees, you approached cautiously, your wings and tail at the ready in case he tried to attack again. He made one last ditch effort to attack, but you were ready and your claws tore through the bandits jugular, ending the battle once and for all.
<<case2>>
The bandit came at you with a fierce determination, his sword slashing through the air with deadly precision. You were ready for him though, your claws at the ready as you dodged and parried his attacks. The forest around you was a blur of motion, the trees shaking and rustling as you fought.
You knew that you had the advantage in this fight, your claws faster and more agile than the bandit's sword. You used that to your advantage, darting in and out of range as you struck at him from every angle. The bandit was skilled, but he was no match for your speed and agility.
As the battle raged on, you started to feel the strain of the fight. Your muscles were aching and your reflexes were slowing down. You knew that you couldn't keep this up much longer, but you refused to give up. The bandit was a dangerous opponent, and if you didn't defeat him now, he would only come back stronger.
You gathered your remaining strength and launched a final, all-out attack. The bandit was caught off guard, his sword unable to defend against the fierce onslaught of your claws. He screamed in agony as you tore through his armor and skin, his blood staining the ground beneath him.
As the bandit fell to his knees, you approached cautiously, your claws at the ready in case he tried to attack again.
He made one last ditch effort attack, but you were ready and your claws tore through the bandits jugular.
<<case3>>
The bandit attacked out of nowhere, and immediately hid himself. Suddenly, he burst out of the trees, his sword drawn and a maniacal gleam in his eye.
<div class='row left'>
<div class='left-msg'>Bandit<hr>Come on, slut!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You were ready for him, and you easily dodged his attack, launching yourself at him with a fierce battle cry. The fight was intense and brutal, the sound of your clashing blades echoing through the forest. The bandit wasn't a very skilled fighter, but you were faster and stronger, and you soon had him on the defensive.
You battled back and forth, the forest around us becoming a chaotic mess as you clashed with all our might. Trees were cut down and branches flew everywhere as you fought with all our strength. The bandit was tiring, and you could see the fear in his eyes as he realized that he was no match for you. You launched yourself at him and brought him crashing to the ground.
He lay there, panting and defeated, as you loomed over him, and you took your opportunity and sliced open his abdomen. You turn to walk away as you leave him gasping and choking on his own blood.
<<case4>>
You were running through the forest, your heart pounding in your chest as you tried to outpace the bandit who was hot on your heels. He was a coward, attacking you from behind and then fleeing like a rat when you turned to face him.
But you were not one to be easily defeated. You was fast and agile, and you were determined to bring this bandit to death.
You could hear the sound of his footsteps behind you, and you knew that he was gaining ground. He was armed with a bow and a quiver of arrows, and he was shooting at you with reckless abandon as he ran. Hoever, you were intentionally luring him closer.
You dodged and weaved, trying to evade his attacks while also closing the distance between you. Your claws were extended, ready to strike, and you knew that if you could just get close enough, you could take him down.
Finally, after what seemed like an eternity, you saw your chance. The bandit stumbled and fell, and you were on him in a flash, your claws sinking into his flesh as you brought him crashing to the ground.
He screamed and thrashed, trying to fight you off, but you were too strong. You pinned him down, your claws at his throat as you leaned in close. You growled, your voice dripping with hatred.
<div class='row right'>
<div class='right-msg'>You should have picked a better opponent.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The bandit glared up at you, his eyes filled with fear and hatred. He knew that he was defeated, as he begged for mercy, promising to never trouble you or anyone else again.
But you were not in a merciful mood. You had been chased by this bandit through the forest for what felt like hours, and you was not about to let him escape justice. You looked into his eyes, and with a final snarl, you ended his life, leaving him to choke on his own blood as you walked away, triumphant.
<<default>>
You were running through the forest, your wings and tail at the ready as you tried to outpace the bandit who was hot on your heels. He was a coward, attacking you from behind and then fleeing like a rat when you turned to face him.
But you were not one to be easily defeated. You were fast and agile, and you were determined to bring this bandit to justice.
You could hear the sound of his footsteps behind you, and you knew that he was gaining ground. He was armed with a bow and a quiver of arrows, and he was shooting at you with reckless abandon as he ran. However, you were intentionally luring him closer.
You used your wings and tail to dodge and weave, trying to evade his attacks while also closing the distance between you. Your claws were extended, ready to strike, and you knew that if you could just get close enough, you could take him down.
Finally, after what seemed like an eternity, you saw your chance. The bandit stumbled and fell, and you were on him in a flash, your claws sinking into his flesh as you brought him crashing to the ground.
He screamed and thrashed, trying to fight you off, but you were too strong. You pinned him down, your claws at his throat as you leaned in close. "You should have picked a better opponent," you growled, your voice dripping with hatred.
The bandit glared up at you, his eyes filled with fear and hatred. He knew that he was defeated, and he begged for mercy, promising to never trouble you or anyone else again.
But you were not in a merciful mood. You had been chased by this bandit through the forest for what felt like hours, and you were not about to let him escape justice. You looked into his eyes, and with a final snarl, you ended his life, leaving him to choke on his own blood as you walked away, triumphant.
<</switch>>
<<else>>
<<switch random(2)>>
<<case1>>
The bandit came at you with a fierce determination, his sword slashing through the air with deadly precision. You were ready for him though, your claws at the ready as you dodged and parried his attacks. The forest around you was a blur of motion, the trees shaking and rustling as you fought.
You knew that you had the advantage in this fight, your claws faster and more agile than the bandit's sword. You used that to your advantage, darting in and out of range as you struck at him from every angle. The bandit was skilled, but he was no match for your speed and agility.
As the battle raged on, you started to feel the strain of the fight. Your muscles were aching and your reflexes were slowing down. You knew that you couldn't keep this up much longer, but you refused to give up. The bandit was a dangerous opponent, and if you didn't defeat him now, he would only come back stronger.
You gathered your remaining strength and launched a final, all-out attack. The bandit was caught off guard, his sword unable to defend against the fierce onslaught of your claws. He screamed in agony as you tore through his armor and skin, his blood staining the ground beneath him.
As the bandit fell to his knees, you approached cautiously, your claws at the ready in case he tried to attack again.
He made one last ditch effort attack, but you were ready and your claws tore through the bandits jugular.
<<case2>>
The bandit attacked out of nowhere, and immediately hid himself. Suddenly, he burst out of the trees, his sword drawn and a maniacal gleam in his eye.
<div class='row left'>
<div class='left-msg'>Bandit<hr>Come on, slut!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You were ready for him, and you easily dodged his attack, launching yourself at him with a fierce battle cry. The fight was intense and brutal, the sound of your clashing blades echoing through the forest. The bandit wasn't a very skilled fighter, but you were faster and stronger, and you soon had him on the defensive.
You battled back and forth, the forest around us becoming a chaotic mess as you clashed with all our might. Trees were cut down and branches flew everywhere as you fought with all our strength. The bandit was tiring, and you could see the fear in his eyes as he realized that he was no match for you. You launched yourself at him and brought him crashing to the ground.
He lay there, panting and defeated, as you loomed over him, and you took your opportunity and sliced open his abdomen. You turn to walk away as you leave him gasping and choking on his own blood.
<<default>>
You were running through the forest, your heart pounding in your chest as you tried to outpace the bandit who was hot on your heels. He was a coward, attacking you from behind and then fleeing like a rat when you turned to face him.
But you were not one to be easily defeated. You was fast and agile, and you were determined to bring this bandit to death.
You could hear the sound of his footsteps behind you, and you knew that he was gaining ground. He was armed with a bow and a quiver of arrows, and he was shooting at you with reckless abandon as he ran. Hoever, you were intentionally luring him closer.
You dodged and weaved, trying to evade his attacks while also closing the distance between you. Your claws were extended, ready to strike, and you knew that if you could just get close enough, you could take him down.
Finally, after what seemed like an eternity, you saw your chance. The bandit stumbled and fell, and you were on him in a flash, your claws sinking into his flesh as you brought him crashing to the ground.
He screamed and thrashed, trying to fight you off, but you were too strong. You pinned him down, your claws at his throat as you leaned in close. You growled, your voice dripping with hatred.
<div class='row right'>
<div class='right-msg'>You should have picked a better opponent.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The bandit glared up at you, his eyes filled with fear and hatred. He knew that he was defeated, as he begged for mercy, promising to never trouble you or anyone else again.
But you were not in a merciful mood. You had been chased by this bandit through the forest for what felt like hours, and you was not about to let him escape justice. You looked into his eyes, and with a final snarl, you ended his life, leaving him to choke on his own blood as you walked away, triumphant.
<</switch>>
<</if>>
<<elseif $currentatk is "fire">>
<<switch>>
<<case1>>
You stand face to face with the bandit, your magical flames flickering around your fingertips as you prepare to do battle. The bandit sneers at you, his sword drawn and a wicked glint in his eye.
<div class='row left'>
<div class='left-msg'>Bandit<hr>Think you can beat me, slut!?
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
He lunges at you, but you are ready for him, and you easily dodge his attack, launching yourself at him with a fierce battle cry. The fight is intense and brutal, the sound of clashing blades and searing flames ringing through the forest.
The bandit is a skilled fighter, and he manages to land a few blows, but you are faster and stronger, and you soon have him on the defensive. The forest around you becomes a chaotic mess as you battle, trees getting burned and destroyed as you unleash your full power.
But the bandit is not one to be underestimated. He rallies and fights back with renewed ferocity, and for a moment, it seems as though he might gain the upper hand. You are forced to retreat, your heart pounding in your chest as you try to regroup.
But you are not one to be easily defeated. You draw on all of your magical power and launch yourself at the bandit with a fierce roar, your flames flickering around your fingertips. The bandit is caught off guard, and he goes down with a scream, his armor and sword melting under the intense heat.
You stand over him, panting and triumphant, as the forest around you smolders and burns. The scent of charred wood and burnt flesh hangs heavy in the air, and you know that you have made your mark.
<<case2>>
You stand at the edge of the forest, your magical flames flickering around your fingertips as you watch the bandit notch an arrow to his bow. He sneers at you, a look of cold determination in his eyes. He taunts you, drawing back the string and aiming his arrow at your heart.
<div class='row left'>
<div class='left-msg'>Bandit<hr>You're fast, slut. But not faster than my arrows!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You are not intimidated. You have faced down archers before, and you know that your speed and agility give you the upper hand. You launch yourself at him with a fierce battle cry, your flames flickering around your fingertips.
The bandit is fast, and he manages to get off several shots, but you are faster, and you easily dodge his arrows as you close the distance between you. The forest around you becomes a chaotic mess as you battle, trees getting burned and destroyed as you unleash your full power.
The bandit is a skilled archer, but he is no match for your magical abilities. With a final burst of energy, you launch yourself at him and bring him crashing to the ground. He lies there, panting and defeated, as you loom over him, your flames still flickering around your fingertips. He looks at you with fear in his eyes before your hands cover his face and your burn his skull until flames dance out of his eye sockets.
<<default>>
You stand at the edge of the clearing, your magical flames flickering around your fingertips as you prepare to face off against the bandit. He is armed with a spear, and you know that you will have to be careful if you want to come out of this fight alive.
The bandit sneers at you, a cold, calculating look in his eyes as he twirls his spear in his hand. he taunts you, before lunging at you with a snarl.
<div class='row left'>
<div class='left-msg'>Bandit<hr>How about we end this fight and roll around on the grass?
</div>
<div class="img-box">
<img class='left-img' src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You ignore his vulgar comments, and are ready for him. You are a master of fire magic, and you know that you are more than a match for this bandit. You launch yourself at him with a fierce battle cry, your flames flickering around your fingertips.
The fight is intense and brutal, the sound of clashing blades and searing flames ringing through the forest. The bandit is a skilled fighter, and he manages to land a few blows, but you are faster and stronger, and you soon have him on the defensive.
The forest around you becomes a chaotic mess as you battle, trees getting burned and destroyed as you unleash your full power. The bandit is tiring, and you can see the fear in his eyes as he realizes that he is no match for you. You slowly burn him to death, listening to his screams.
<</switch>>
<<elseif $currentatk is "ice">>
<<switch random(2)>>
<<case1>>
You stand face to face with the bandit, your magical ice swirling around your fingertips as you prepare to do battle. The bandit sneers at you, his sword drawn and a wicked glint in his eye. He taunts you as he lunges at you with a snarl.
<div class='row left'>
<div class='left-msg'>Bandit<hr>We can stop here if you'll suck my cock!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You are ready for him, and you easily dodge his attack, launching yourself at him with a fierce battle cry. The fight is intense and brutal, the sound of clashing blades and searing ice ringing through the forest.
The bandit is a skilled fighter, and he manages to land a few blows, but you are faster and stronger, and you soon have him on the defensive. The forest around you becomes a chaotic mess as you battle, trees getting frozen and shattered as you unleash your full power.
But the bandit is not one to be underestimated. He rallies and fights back with renewed ferocity, and for a moment, it seems as though he might gain the upper hand. You are forced to retreat, your heart pounding in your chest as you try to regroup.
But you are not one to be easily defeated. You draw on all of your magical power and launch yourself at the bandit with a fierce roar, your ice swirling around your fingertips. The bandit is caught off guard, and he goes down with a scream, his armor and sword freezing solid under the intense cold before shattering along with his body and his frozen scream.
<<case2>>
You stand at the edge of the forest, your magical ice swirling around your fingertips as you watch the bandit notch an arrow to his bow. He sneers at you, a look of cold determination in his eyes. He taunts you, drawing back the string and aiming his arrow at your heart with a wicked grin on his face.
<div class='row left'>
<div class='left-msg'>Bandit<hr>You're fast, slut! But not faster than my arrows!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You are not intimidated. You have faced down archers before, and you know that your speed and agility give you the upper hand. You launch yourself at him with a fierce battle cry, your ice swirling around your fingertips.
The bandit is fast, and he manages to get off several shots, but you are faster, and you easily dodge his arrows as you close the distance between you. The forest around you becomes a chaotic mess as you battle, trees getting frozen and shattered as you unleash your full power.
The bandit is a skilled archer, but he is no match for your magical abilities. With a final burst of energy, you launch yourself at him and bring him crashing to the ground. He lies there, panting and defeated, as you loom over him, your ice still swirling around your fingertips. He looks at you with fear in his eyes as you raise your hand and send a blast of icy energy at him, encasing him in a block of solid ice.
<<default>>
You stand at the edge of the clearing, your magical ice swirling around your fingertips as you prepare to face off against the bandit. He is armed with a spear, and you know that you will have to be careful if you want to come out of this fight unharmed.
The bandit sneers at you, a cold, calculating look in his eyes as he twirls his spear in his hand. "You know you can't win!" he taunts, before lunging at you with a snarl.
You are ready for him. You are a master of ice magic, and you know that you are more than a match for this bandit. You launch yourself at him with a fierce battle cry, your ice swirling around your fingertips.
The fight is intense and brutal, the sound of clashing blades and searing ice ringing through the forest. The bandit is a skilled fighter, and he manages to land a few blows, but you are faster and stronger, and you soon have him on the defensive.
The forest around you becomes a chaotic mess as you battle, trees getting frozen and shattered as you unleash your full power. The bandit is tiring, and you can see the fear in his eyes as he realizes that he is no match for you. With a final burst of energy, you conjure an icicle spear and drive it through the bandit's chest, defeating him once and for all.
<</switch>>
<<elseif $currentatk is "wind">>
<<switch random(2)>>
<<case1>>
You stand face to face with the bandit, your magical wind blowing your hair and some leaves around as you prepare to do battle. The bandit sneers at you, his sword drawn and a wicked glint in his eye. He strikes first, swinging his sword at you with a furious battle cry.
<div class='row left'>
<div class='left-msg'>Bandit<hr>You killed my friends you Godsdamned whore!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You are ready for him. Using your wind magic, you narrowly avoid his blade with a forceful wind slowing his sword arm. You launch yourself at him as he comes forward, using his speed and surprise as an advantage, knocking the sword from his hands before stabbing him with your tail. You pull the bandit off balance before throwing him against the tree behind you and pinning him there, using your claws to slice his neck. The bandit thrashes and grunts for a moment before his throat ruptures in a bloody spray, and he falls still, the life slowly bleeding out of him.
<<case2>>
You stood tall, your feet planted firmly on the forest floor as you faced off against the bandit. He held a bow in his hand, nocking an arrow as he aimed at you. You were not afraid. You raised your hand, feeling the magic of the wind swirling within you. It was a wild, untamed power, and you were its mistress.
The bandit let out a scoff, thinking your magic was no match for his weaponry. But as you began to gather the wind to you, he soon realized his mistake. The gust of wind that you released was like a hurricane, smashing into him and sending him flying back. He smashed into a tree, impaled on a tree limb, the bow tumbling from his grasp.
<<default>>
You darted between the trees, your long hair streaming behind you as you moved with the grace of a dancer. The bandit chased after you, his sword ringing against the trunk of a nearby oak as he swung it wildly, leaving a deep gash. But you were too quick for him, using the wind to lift yourself off the ground and allowing you to move more quickly.
The bandit cursed and chased after you, his armor weighing him down and slowing his pursuit. You turned, launching a barrage of small gusts of wind at the bandit. With some concentration you refine your wind into a sharp edge and shoot it at him, slicing his head from the rest of his body.
<</switch>>
<<elseif $currentatk is "water">>
<<switch random(3)>>
<<case1>>
You stand face to face with the bandit, your water magic encircling you. The bandit knocks an arrow in his bow, firing at you from a safe distance, the bandit's arrow grazing your cheek. You wipe the blood from your face and pace sideways, looking for an opening to strike with your magic.
You draw upon the water in the clearing as you hurl a gout of water in the bandit's face, blinding him. He's not expecting such an attack, and he flings the arrow at you uselessly to the side. You take this opportunity to rush him, lunging with your tail in one smooth motion before launching a bolt of water at him. The bandit takes the bolt head-on and stumbles back in the sudden blow. He turns to flee but is grabbed and thrown to the ground as you flash behind him. You pounce on him, making sure he has nowhere to run. As you hold him down pinned under you, you blast his face with water magic until his body stops thrashing, dead as you drowned him under a constant flood.
<<case2>>
You stand facing the bandit, your hands held out in front of you as you gather the water from the nearby stream. He sneers at you, thinking your magic is no match for his sword. But you know better. You focus your power, drawing the water to you until it forms a swirling sphere in front of you.
The bandit charges at you, his sword raised. You release the sphere of water, and it slams into him with the force of a tidal wave. He goes flying back, crashing into a tree and sliding to the ground. You walk over to him, the water from the sphere dripping off your fingers as you stand victorious.
<<case3>>
You take a step back as the bandit advances on you, his sword glinting in the sunlight filtering through the trees. You can feel the water churning within you, waiting to be unleashed. You focus your power, drawing the moisture from the air until it forms a thick fog around you.
The bandit swings his sword, but it only slices through the fog. He stumbles, disoriented by the sudden lack of visibility. You take the opportunity to strike, summoning a jet of water that slams into him and sends him stumbling back. He falls to the ground, his sword clattering beside him as he surrenders.
<<default>>
You and the bandit circle each other, each searching for an opening to attack. You can feel the water flowing through your veins, ready to be called upon at a moment's notice. The bandit lunges at you with his sword, but you dodge to the side and strike out with a burst of water. It slams into him, knocking him off balance.
You take the opportunity to press the attack, summoning a wall of water that rises up between you and the bandit. He curses and backs off, searching for a way around the wall. But you are ready for him, using your control over the water to keep him at bay. Finally, he throws down his sword and surrenders, and you are victorious.
<</switch>>
<<elseif $currentatk is "thunder">>
<<switch random(2)>>
<<case1>>
A bandit armed with a spear stands in a clearing of trees, a perfect arena for a battle. You stand there, readying your magic. Electricity cracking and snapping all around you like you're a tesla coil.
He charges at you, and you unleash an enormous crack of electricity, one powerful enough that it puts a black burn into the trees and brush surrounding the clearing, missing him slightly. He takes the opportunity to stab at you with his spear, but you only barely avoid the attack. The lightning cracks again and again and again as he runs toward you, his armor conducting your thunder working against him, as his muscles tense up from the shock of being electrocuted. Finally he falls down onto his knees screaming in pain. You know you have beaten him now.
With him on his knees, your arm outstretched you cast your thunder magic one last time. His chest lights up with a massive electrical explosion that rips through everything within a few feet. He's burned to ash in moments, his flesh turning to ash with a sizzling sound, leaving nothing behind for even your most persistent scavengers to pick over.
<<case2>>
The bandit sneers at you, his hand already on the hilt of his sword.
<div class='row left'>
<div class='left-msg'>Bandit<hr>You think your little tricks are gonna beat me?
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You just smirk, why bother speaking with the dead? Feeling the power of the thunder coursing through your veins, You strike first, unleashing a bolt of lightning that crackles through the air towards the bandit. He jumps out of the way, but not before the electricity singes the edges of his cloak. He roars in anger and charges at you, his sword drawn.
You dodge to the side, using your control over the thunder to make the ground shake beneath his feet. He stumbles and falls, and you take the opportunity to strike. You unleash another bolt of lightning, this one hitting him square in the chest. He screams as the electricity courses through him, and then he's down for the count.
<<default>>
The bandit circles you, eyeing the crackling energy around you with his sword at the ready.
<div class='row left'>
<div class='left-msg'>Bandit<hr>I ain't afraid of no damn magic
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You just chuckle, feeling the power of the thunder surging within you.
He strikes first, his sword coming at you in a blur. But you're ready for him, using your control over the thunder to make the air around you thick and heavy. His sword slows as it passes through the charged air, and you're able to easily dodge out of the way.
You counter with a bolt of lightning, but the bandit is quicker than you thought. He ducks and rolls, avoiding the attack and coming back up on his feet. He snarls and charges at you again, and this time you're not able to dodge. His sword catches you on the arm, slicing through your armor and drawing blood.
You cry out in pain, but you don't let it stop you. You focus your power, gathering the thunder to you until it's a palpable force. You unleash it in a burst, and the bandit goes flying back. He crashes into a tree and falls to the ground, unconscious. You stumble over to him, your arm throbbing as you check for a pulse. He's alive, but just barely. You gather your things and leave him there, knowing it's only a matter of time before he wakes up and comes after you again.
<</switch>>
<</if>>
<<elseif $e.name is "wolves">>
<<if $currentatk == "melee">>
<<if $wings is true>>
<<switch random(4)>>
<<case 1>>
The howl of the pack fills the night air as they approach. They look hungry, and their eyes glitter in the moonlight. There must be at least ten or more of them approaching you. With nowhere to run, you extend and brandish your claws. You will not go down without a fight. You slash the air with a flourish of claws, hoping to draw attention away from your other weapon: your tail. You hold it tight as the first wolf leaps. You stab it with your right claw.
As another wolf approaches, you bring your tail forward in a stabbing motion. You plunge it deep into its body before flinging it off balance and into the last two remaining wolves. As one flees you use this momentary distraction to spin around, bringing both claws into play against the other. It tumbles to the ground and dies on impact, blood pouring from the wounds left in its chest.
<<case 2>>
You crouch low, your claws extended as you face off against the pack of wolves. They snarl and snap at you, their eyes glowing in the darkness. You know you have to be careful - one mistake, and they'll tear you apart.
You strike first, darting forward and swiping at the closest wolf. It yelps and jumps back, but the others are not so easily deterred. They circle you, their teeth bared as they prepare to attack.
You fight with all your might, using your claws and speed to your advantage. You slash and tear at the wolves, trying to keep them at bay. But they are relentless, and it's only a matter of time before one of them gets through your defenses. You feel a sharp pain as teeth sink into your shoulder, and you cry out in pain.
You redouble your efforts, fighting with a ferocity you didn't know you possessed. You take down one wolf, then another, until finally there's only one left. It snarls at you, its eyes glowing with hatred. But you're not afraid. You strike, your claws sinking into its fur as you bring it down. And then it's over. You stand panting and bleeding, but you're alive.
<<case 3>>
You're outnumbered, three wolves circling you as you back away slowly. They snarl and snap at you, their eyes glowing in the darkness. You know you have to act fast, or you'll be overwhelmed.
You feint to the left, and when the wolves follow your movement, you dart to the right. You launch yourself at the closest wolf, your claws sinking into its fur as you bring it down. The other two wolves hesitate, giving you the opportunity to turn and face them.
You fight with all your might, using your claws and agility to your advantage. You take down one wolf, then another, until finally there's only one left. It snarls at you, its eyes glowing with hatred. But you're not afraid. You strike, your claws sinking into its fur as you bring it down. And then it's over. You stand panting and bleeding, but you're alive.
<<case 4>>
You're surrounded, five wolves closing in on you as you back away slowly. They snarl and snap at you, their eyes glowing in the darkness. You know you're in trouble - you're outnumbered and outmatched.
But you're not about to give up without a fight. You take a deep breath and unleash a fierce roar, letting your claws extend to their full length. The wolves hesitate, and in that moment of hesitation, you strike. You take down one wolf, then another, moving with a speed and agility you didn't know you possessed.
You fight with all your might, using your claws and ferocity to your advantage. You take down one wolf, then another, until finally there's only one left. It snarls at you, its eyes glowing with hatred. But you're not afraid. You strike, your claws sinking into its fur as you bring it down. And then it's over. You stand panting and bleeding, but you're alive. You've survived the fight, and you're stronger because of it.
<<default>>
You prepare your claws and you flex your tail. The moon is full tonight, and the forest glows silver white under its light as the wolves creep up slowly in the darkness. The wolves pace around you, waiting for their alpha to take the lead. Their Alpha stands in front of you, snarling at you. You snarl right back, baring your claws, teeth and horns.
The Alpha barks and one by one the wolves stop circling and pounce.
The largest of them bites at your legs but misses as you step to the side. You catch it the back of its scruff, and grab it's lower jaw, its jaw is torn out of his head, causing him to howl in pain before collapsing onto his side. Another slashes at you with her claws before you have a chance to dodge, drawing light blood on your leg. This gives a third wolf a window to attack, biting hard for your jugular and missing by a long shot. The fourth wolf circles you warily while all of these events are happening. But as you begin your assault on this wolf he tries to retreat but trips over the corpse of another dead wolf laying beside the road. You take this opportunity to end its life.
The few wolves still living whimper around you, staring up at you in fear from the ground they lower their heads and begin to back away. You decide to let them go, maybe it'll teach the wolves of this forest to fear you. You walk away, not looking back
<</switch>>
<<else>>
<<switch random(2)>>
<<case 1>>
You crouch low, your claws extended as you face off against the pack of wolves. They snarl and snap at you, their eyes glowing in the darkness. You know you have to be careful - one mistake, and they'll tear you apart.
You strike first, darting forward and swiping at the closest wolf. It yelps and jumps back, but the others are not so easily deterred. They circle you, their teeth bared as they prepare to attack.
You fight with all your might, using your claws and speed to your advantage. You slash and tear at the wolves, trying to keep them at bay. But they are relentless, and it's only a matter of time before one of them gets through your defenses. You feel a sharp pain as teeth sink into your shoulder, and you cry out in pain.
You redouble your efforts, fighting with a ferocity you didn't know you possessed. You take down one wolf, then another, until finally there's only one left. It snarls at you, its eyes glowing with hatred. But you're not afraid. You strike, your claws sinking into its fur splitting open it's stomach and lettings it's entrails fall out.
<<case 2>>
You're outnumbered, three wolves circling you as you back away slowly. They snarl and snap at you, their eyes glowing in the darkness. You know you have to act fast, or you'll be overwhelmed.
You feint to the left, and when the wolves follow your movement, you dart to the right. You launch yourself at the closest wolf, your claws sinking into its fur as you bring it down. The other two wolves hesitate, giving you the opportunity to turn and face them.
You fight with all your might, using your claws and agility to your advantage. You take down one wolf, then another, until finally there's only one left. It snarls at you, its eyes glowing with hatred. But you're not afraid. You strike, your claws sinking into its fur as you bring it down severing its jugular.
<<default>>
You're surrounded, five wolves closing in on you as you back away slowly. They snarl and snap at you, their eyes glowing in the darkness. You know you're in trouble - you're outnumbered and outmatched.
But you're not about to give up without a fight. You take a deep breath and unleash a fierce roar, letting your claws extend to their full length. The wolves hesitate, and in that moment of hesitation, you strike. You take down one wolf, then another, moving with a speed and agility you didn't know you possessed.
You fight with all your might, using your claws and ferocity to your advantage. You take down one wolf, then another, until finally there's only one left. It snarls at you, its eyes glowing with hatred. But you're not afraid. You strike, your claws sinking into its fur as you bring it down. And then it's over. You clean the blood off your skin and walk away.
<</switch>>
<</if>>
<<elseif $currentatk is "fire">>
<<switch random(2)>>
<<case 1>>
You stand facing the pack of wolves, your hands outstretched as you gather the fire to you. They snarl and snap at you, their eyes glowing in the darkness. You know you have to be careful - one misstep, and they'll be on you in a heartbeat.
You strike first, unleashing a burst of flames that engulfs the closest wolf. It yelps and jumps back, its fur singed and smoking. The other wolves hesitate, eyeing you warily as they circle around you.
You keep your focus, using your control over the fire to keep the wolves at bay. You unleash burst after burst of flames, trying to keep them away from you. But they are relentless, and it's only a matter of time before one of them gets through your defenses. You feel a sharp pain as teeth sink into your leg, and you cry out in pain.
You draw on your inner strength, using the pain to fuel your magic. You unleash a final burst of flames, and the wolves retreat with yelps of pain. Perhaps that'll scare them enough to stop attacking you.
<<case 2>>
You're surrounded, three wolves closing in on you as you back away slowly. They snarl and snap at you, their eyes glowing in the darkness. You know you have to act fast, or you'll be overwhelmed.
You take a deep breath and unleash a burst of flames, trying to keep the wolves at bay. They yelp and jump back, and in that moment of hesitation, you strike. You take down one wolf, then another, using your control over the fire to keep them at bay.
But the third wolf is more cunning than the others. It circles around you, trying to get behind you. You turn, unleashing another burst of flames, but it's not enough. The wolf sinks its teeth into your arm, and you cry out in pain.
You draw on your inner strength, using the pain to fuel your magic. You unleash a final burst of flames, and the wolf burns to a crisp with a yelp of pain.
<<default>>
You're outnumbered, five wolves closing in on you as you back away slowly. They snarl and snap at you, their eyes glowing in the darkness. You know you're in trouble - you're outnumbered and outmatched.
But you're not about to give up without a fight. You take a deep breath and unleash a fierce roar, letting your magic build within you. The wolves hesitate, and in that moment of hesitation, you strike. You take down one wolf, then another, using your control over the fire to keep them at bay.
You fight with all your might, using your magic and agility to your advantage. You take down one wolf, then another, until finally there's only one left. It snarls at you, its eyes glowing with hatred. But you're not afraid. You strike, unleashing a final burst of flames that engulfs the wolf. And then it's over, leaving a bbq for some wild animal.
<</switch>>
<<elseif $currentatk is "ice">>
<<switch random(2)>>
<<case 1>>
You stand facing the pack of wolves, your hands outstretched as you gather the ice to you. They snarl and snap at you, their eyes glowing in the darkness. You know you have to be careful - one misstep, and they'll be on you in a heartbeat.
You strike first, unleashing a burst of frost that envelops the closest wolf. It yelps and jumps back, its fur coated in a layer of ice. The other wolves hesitate, eyeing you warily as they circle around you.
You keep your focus, using your control over the ice to keep the wolves at bay. You unleash burst after burst of frost, trying to keep them away from you. But they are relentless, and it's only a matter of time before one of them gets through your defenses. You feel a sharp pain as teeth sink into your leg, and you cry out in pain.
You draw on your inner strength, using the pain to fuel your magic. You unleash a final burst of frost, encasing the wolves in a layer of ice. They're frozen, mid-howl for no one to hear them.
<<case 2>>
You're surrounded, three wolves closing in on you as you back away slowly. They snarl and snap at you, their eyes glowing in the darkness. You know you have to act fast, or you'll be overwhelmed.
You take a deep breath and unleash a burst of frost, trying to keep the wolves at bay. They yelp and jump back, and in that moment of hesitation, you strike. You take down one wolf, then another, using your control over the ice to keep them at bay.
But the third wolf is more cunning than the others. It circles around you, trying to get behind you. You turn, unleashing another burst of frost, but it's not enough. The wolf sinks its teeth into your arm, and you cry out in pain.
You draw on your inner strength, using the pain to fuel your magic. You unleash a final burst of frost, encasing the wolf in a layer of ice, freezing it solid. After a few moments, the ice bursts, and chunks of frozen wolf litter the forest floor.
<<default>>
You're outnumbered, five wolves closing in on you as you back away slowly. They snarl and snap at you, their eyes glowing in the darkness. You know you're in trouble - you're outnumbered and outmatched.
But you're not about to give up without a fight. You take a deep breath and unleash a fierce roar, letting your magic build within you. The wolves hesitate, and in that moment of hesitation, you strike. You take down one wolf, then another, using your control over the ice to keep them at bay.
You fight with all your might, using your magic and agility to your advantage. You take down one wolf, then another, until finally there's only one left. It snarls at you, its eyes glowing with hatred. But you're not afraid. You strike, unleashing a final burst of frost spikes, impaling the remaining wolves.
<</switch>>
<<elseif $currentatk is "wind">>
<<switch random(2)>>
<<case1>>
You stand facing the pack of wolves, your hands outstretched as you gather the wind to you. They snarl and snap at you, their eyes glowing in the darkness. You know you have to be careful - one misstep, and they'll be on you in a heartbeat.
You strike first, unleashing a gust of wind that knocks the closest wolf off its feet. It yelps and jumps back, its fur ruffled. The other wolves hesitate, eyeing you warily as they circle around you.
You keep your focus, using your control over the wind to keep the wolves at bay. You unleash burst after burst of wind, trying to keep them away from you. But they are relentless, and it's only a matter of time before one of them gets through your defenses. You feel a sharp pain as teeth sink into your leg, and you cry out in pain.
You draw on your inner strength, using the pain to fuel your magic. You unleash a final gust of wind, slicing apart the remaining wolves.
<<case2>>
You're surrounded, three wolves closing in on you as you back away slowly. They snarl and snap at you, their eyes glowing in the darkness. You know you have to act fast, or you'll be overwhelmed.
You take a deep breath and unleash a gust of wind, trying to keep the wolves at bay. They yelp and jump back, and in that moment of hesitation, you strike. You take down one wolf, then another, using your control over the wind to keep them at bay.
But the third wolf is more cunning than the others. It circles around you, trying to get behind you. You turn, unleashing another gust of wind, but it's not enough. The wolf sinks its teeth into your arm, and you cry out in pain.
You draw on your inner strength, using the pain to fuel your magic. You create a vacuum with your magic, suffocating everything in the area to death. You, on the other hand, can draw on your inner strength and hold your breath longer. The wolves gasp and choke, suffering as they die.
<<default>>
You're outnumbered, five wolves closing in on you as you back away slowly. They snarl and snap at you, their eyes glowing in the darkness. You know you're in trouble - you're outnumbered and outmatched.
But you're not about to give up without a fight. You take a deep breath and unleash a fierce roar, letting your magic build within you. The wolves hesitate, and in that moment of hesitation, you strike. You take down one wolf, then another, using your control over the wind to keep them at bay.
You fight with all your might, using your magic and agility to your advantage. You take down one wolf, then another, until finally there's only one left. It snarls at you, its eyes glowing with hatred. But you're not afraid. You strike, unleashing a final gust of wind that severs the head of the final wolf.
<</switch>>
<<elseif $currentatk is "water">>
<<switch random(2)>>
<<case1>>
You stand facing the pack of wolves, your hands outstretched as you gather the water to you. They snarl and snap at you, their eyes glowing in the darkness. You know you have to be careful - one misstep, and they'll be on you in a heartbeat.
You strike first, unleashing a wave of water that douses the closest wolf. It yelps and jumps back, its fur soaked. The other wolves hesitate, eyeing you warily as they circle around you.
You keep your focus, using your control over the water to keep the wolves at bay. You unleash burst after burst of water, trying to keep them away from you. But they are relentless, and it's only a matter of time before one of them gets through your defenses. You feel a sharp pain as teeth sink into your leg, and you cry out in pain.
You draw on your inner strength, using the pain to fuel your magic. You unleash a final wave of water, sweeping the wolves off their feet and crashing them with a sickening sound into a tree.
<<case2>>
You're surrounded, three wolves closing in on you as you back away slowly. They snarl and snap at you, their eyes glowing in the darkness. You know you have to act fast, or you'll be overwhelmed.
You take a deep breath and unleash a wave of water, trying to keep the wolves at bay. They yelp and jump back, and in that moment of hesitation, you strike. You take down one wolf, then another, using your control over the water to keep them at bay.
But the third wolf is more cunning than the others. It circles around you, trying to get behind you. You turn, unleashing another wave of water, but it's not enough. The wolf sinks its teeth into your arm, and you cry out in pain.
You draw on your inner strength, using the pain to fuel your magic. You unleash a final wave of boiling water, scalding and cooking the wolves.
<<default>>
You're outnumbered, five wolves closing in on you as you back away slowly. They snarl and snap at you, their eyes glowing in the darkness. You know you're in trouble - you're outnumbered and outmatched.
But you're not about to give up without a fight. You take a deep breath and unleash a fierce roar, letting your magic build within you. The wolves hesitate, and in that moment of hesitation, you strike. You take down one wolf, then another, using your control over the water to keep them at bay.
You fight with all your might, using your magic and agility to your advantage. You take down one wolf, then another, until finally there's only one left. It snarls at you, its eyes glowing with hatred. But you're not afraid. You strike, unleashing a final wave of water like a pressure wash, tearing the skin from its skull.
<</switch>>
<<elseif $currentatk is "thunder">>
<<switch random(2)>>
<<case1>>
You stand facing the pack of wolves, your hands outstretched as you gather the thunder to you. They snarl and snap at you, their eyes glowing in the darkness. You know you have to be careful - one misstep, and they'll be on you in a heartbeat.
You strike first, unleashing a bolt of lightning that strikes the closest wolf. It yelps and jumps back, its fur singed. The other wolves hesitate, eyeing you warily as they circle around you.
You keep your focus, using your control over the thunder to keep the wolves at bay. You unleash bolt after bolt of lightning, trying to keep them away from you. But they are relentless, and it's only a matter of time before one of them gets through your defenses. You feel a sharp pain as teeth sink into your leg, and you cry out in pain.
You draw on your inner strength, using the pain to fuel your magic. You unleash a final bolt of lightning, striking the wolves and causing them to burn to a crisp.
<<case2>>
You're surrounded, three wolves closing in on you as you back away slowly. They snarl and snap at you, their eyes glowing in the darkness. You know you have to act fast, or you'll be overwhelmed.
You take a deep breath and unleash a bolt of lightning, trying to keep the wolves at bay. They yelp and jump back, and in that moment of hesitation, you strike. You take down one wolf, then another, using your control over the thunder to keep them at bay.
But the third wolf is more cunning than the others. It circles around you, trying to get behind you. You turn, unleashing another bolt of lightning, but it's not enough. The wolf sinks its teeth into your arm, and you cry out in pain.
You draw on your inner strength, using the pain to fuel your magic. As the final wolf leaps at you, you catch it by the nape and unleash your thunder magic directly into its body. You walk away from the charred mess you created.
<<default>>
You're outnumbered, five wolves closing in on you as you back away slowly. They snarl and snap at you, their eyes glowing in the darkness. You know you're in trouble - you're outnumbered and outmatched.
But you're not about to give up without a fight. You take a deep breath and unleash a fierce roar, letting your magic build within you. The wolves hesitate, and in that moment of hesitation, you strike. You take down one wolf, then another, using your control over the thunder to keep them at bay.
You fight with all your might, using your magic and agility to your advantage. You take down one wolf, then another, until finally there's only one left. It snarls at you, its eyes glowing with hatred. But you're not afraid. You strike, unleashing a final bolt of lightning that strikes the wolf and causes it to catch fire. With no way of putting itself out, you leave as it shrieks in pain.
<</switch>>
<</if>>
<<elseif $e.name is "slime">>
<<if $currentatk is "fire">>
<<switch random(2)>>
<<case1>>
You stand facing the slime, your hands outstretched as you gather the fire to you. It quivers and writhes, its translucent body pulsing with an otherworldly glow. You know you have to be careful - one misstep, and it'll engulf you in a heartbeat.
You strike first, unleashing a burst of flames that engulfs the slime. It shrieks and writhes, its body writhing and wriggling as it tries to escape the heat. You keep your focus, using your control over the fire to keep the slime at bay. You unleash burst after burst of flames, trying to burn it away.
But the slime is relentless, and it's only a matter of time before it gets through your defenses. You feel a cold, slimy tendril wrap around your leg, and you cry out in disgust. You draw on your inner strength, using your revulsion to fuel your magic. You unleash a final burst of flames, boiling the slime and turning it into a fine soup.
<<case2>>
You're surrounded, the slime closing in on you from all sides as you back away slowly. It quivers and writhes, its translucent body pulsing with an otherworldly glow. You know you have to act fast, or you'll be engulfed.
You take a deep breath and unleash a burst of flames, trying to keep the slime at bay. It shrieks and writhes, and in that moment of hesitation, you strike. You take down one tendril, then another, using your control over the fire to burn the slime away.
But then the slime was suddenly there, enveloping your leg! You yelped as its cold, slick flesh pressed against you, feeling like a million tiny little mouths trying to eat their way through your skin! Your fingers sparked with fire magic, lighting up the area in a brilliant glow. You unleash a torrent of flame, burning away at the disgusting creature until nothing remained but a sticky residue.
<<default>>
You're outnumbered, the slime closing in on you from all sides as you back away slowly. It quivers and writhes, its translucent body pulsing with an otherworldly glow. You know you're in trouble - you're outnumbered and outmatched.
But you're not about to give up without a fight. You take a deep breath and unleash a fierce roar, letting your magic build within you. The slime hesitates, and in that moment of hesitation, you strike. You take down one tendril, then another, using your control over the fire to burn the slime away. You fight with all your might, using your magic and agility to your advantage. You take down one tendril, then another, until finally there's only one left. It quivers and writhes, its body glowing with an otherworldly hatred. But you're not afraid. You strike, unleashing a final burst of flames that incinerates the slime and reduces it to a puddle of goo.
<</switch>>
<<elseif $currentatk is "ice">>
<<switch random(2)>>
<<case1>>
You stand facing the slime, your hands outstretched as you gather the ice to you. It quivers and writhes, its translucent body pulsing with an otherworldly glow. You know you have to be careful - one misstep, and it'll engulf you in a heartbeat.
You strike first, unleashing a blast of frost that envelops the slime. It shrieks and writhes, its body writhing and wriggling as it tries to escape the cold. You keep your focus, using your control over the ice to keep the slime at bay. You unleash blast after blast of frost, trying to freeze it solid.
But the slime is relentless, and it's only a matter of time before it gets through your defenses. You feel a cold, slimy tendril wrap around your leg, and you cry out in disgust. You draw on your inner strength, using your revulsion to fuel your magic. You unleash a final blast of frost, encasing the slime in a layer of ice and causing it to shatter into a million pieces.
<<case2>>
You're surrounded, the slime closing in on you from all sides as you back away slowly. It quivers and writhes, its translucent body pulsing with an otherworldly glow. You know you have to act fast, or you'll be engulfed.
You take a deep breath and unleash a blast of frost, trying to keep the slime at bay. It shrieks and writhes, and in that moment of hesitation, you strike. You take down one tendril, then another, using your control over the ice to freeze the slime solid.
But the slime is too quick, and it's only a matter of time before it gets through your defenses. You feel a cold, slimy tendril wrap around your arm, and you cry out in disgust. You draw on your inner strength, using your revulsion to fuel your magic. You unleash a final blast of frost, encasing the slime in a layer of ice and leaving.
<<default>>
You're outnumbered, the slime closing in on you from all sides as you back away slowly. It quivers and writhes, its translucent body pulsing with an otherworldly glow. You know you're in trouble - you're outnumbered and outmatched.
But you're not about to give up without a fight. You take a deep breath and unleash a fierce roar, letting your magic build within you. The slime hesitates, and in that moment of hesitation, you strike. You take down one tendril, then another, using your control over the ice to freeze the slime solid.
You fight with all your might, using your magic and agility to your advantage. You take down one tendril, then another, until finally there's only one left. It quivers and writhes, its body glowing with an otherworldly hatred. But you're not afraid. You strike, unleashing a final blast of frost that encases the slime in a layer of ice.
<</switch>>
<<elseif $currentatk is "wind">>
<<switch random(1)>>
<<case1>>
You stand facing the slime, your hands outstretched as you gather the wind to you. It quivers and writhes, its translucent body pulsing with an otherworldly glow. You know you have to be careful - one misstep, and it'll engulf you in a heartbeat.
You strike first, unleashing a gust of wind that knocks the slime back. It shrieks and writhes, its body writhing and wriggling as it tries to escape the wind. You keep your focus, using your control over the wind to keep the slime at bay. You unleash gust after gust of wind, trying to push the slime away from you.
But the slime is relentless, and it's only a matter of time before it gets through your defenses. You feel a cold, slimy tendril wrap around your leg, and you cry out in disgust. You draw on your inner strength, using your revulsion to fuel your magic. You unleash a final gust of wind, powerful enough to slice through the slime and reduce it to a puddle of goo. You stand panting and trembling, your victory hard-won.
<<default>>
You're surrounded, the slime closing in on you from all sides as you back away slowly. It quivers and writhes, its translucent body pulsing with an otherworldly glow. You know you have to act fast, or you'll be engulfed.
You take a deep breath and unleash a gust of wind, trying to keep the slime at bay. It shrieks and writhes, and in that moment of hesitation, you strike. You take down one tendril, then another, using your control over the wind to slice through the slime.
But the slime is too quick, and it's only a matter of time before it gets through your defenses. You feel a cold, slimy tendril wrap around your arm, and you cry out in disgust. You draw on your inner strength, using your revulsion to fuel your magic. You reinforce the wind, turning it into a whirlwind that slices the slime into many pieces so it can't reform.
<</switch>>
<<elseif $currentatk is "water">>
<<switch random(1)>>
<<case1>>
You stand facing the slime, your hands outstretched as you gather the water to you. It quivers and writhes, its translucent body pulsing with an otherworldly glow. You know you have to be careful - one misstep, and it'll engulf you in a heartbeat.
You strike first, unleashing a jet of water that strikes the slime. It shrieks and writhes, its body writhing and wriggling as it tries to escape the water. You keep your focus, using your control over the water to keep the slime at bay. You unleash jet after jet of water, trying to wash the slime away.
But the slime is relentless, and it's only a matter of time before it gets through your defenses. You feel a cold, slimy tendril wrap around your leg, and you cry out in disgust. You draw on your inner strength, using your revulsion to fuel your magic. You unleash a final jet of water, powerful enough to wash the slime away and reduce it to a puddle of goo.
<<default>>
You're surrounded, the slime closing in on you from all sides as you back away slowly. It quivers and writhes, its translucent body pulsing with an otherworldly glow. You know you have to act fast, or you'll be engulfed.
You take a deep breath and unleash a jet of water, trying to keep the slime at bay. It shrieks and writhes, and in that moment of hesitation, you strike. You take down one tendril, then another, using your control over the water to wash the slime away.
But the slime is too quick, and it's only a matter of time before it gets through your defenses. You feel a cold, slimy tendril wrap around your arm, and you cry out in disgust. You draw on your inner strength, using your revulsion to fuel your magic. You unleash a final jet of boiling water, enough to cook the slime. What do slimes taste like?
<</switch>>
<<elseif $currentatk is "thunder">>
You stand facing the slime, your hands outstretched as you gather the electricity to you. It quivers and writhes, its translucent body pulsing with an otherworldly glow. You know you have to be careful - one misstep, and it'll engulf you in a heartbeat.
The forest around you comes alive with the crackle of electricity as you unleash your magic. The slime shrieks and writhes, its body writhing and wriggling as it tries to escape the lightning. You keep your focus, using your control over the electricity to keep the slime at bay. You unleash bolt after bolt of lightning, frying the slime.
<</if>>
<<elseif $e.name is "goblinsct" or $e.name is "goblinarcher">>
<<if $currentatk == "melee">>
<<if $wings is true>>
<<switch random(2)>>
<<case1>>
You stalk the goblin scout through the forest, your wings and tail at the ready. He's a scrawny thing, his rusty swords glinting in the dim light. He's no match for you, but you can't let your guard down.
The goblin snarls and lunges at you, swinging his swords wildly. You use your wings to shield yourself, your tail lashing out to pierce the goblin's armor. The goblin is fast, but you're faster. You strike again and again, your tail and wings working in tandem to keep the goblin at bay.
The goblin falls to the ground, howling in pain. It picks itself back up, a desperate look in its eyes. It finds a stick and swings it wildly at you, you bat it away, laughing at its efforts before piercing its chest with your tail.
<<case2>>
You're surrounded, the goblin scouts closing in on you from all sides as you back away slowly. They snarl and brandish their weapons, their eyes alight with bloodlust. You know you have to act fast, or you'll be overwhelmed.
You take a deep breath and let out a fierce roar, letting your wings and tail extend to their full length. The goblins hesitate, and in that moment of hesitation, you strike. You use your wings to shield yourself, your tail lashing out to pierce the goblins' armor. The goblins fight back with all their might, but you're too fast for them. You dodge and weave, your wings and tail working in tandem to keep the goblins at bay.
One goblin is knocked to the side, its rusty sword clattering to the ground. As it picks itself back up, it picks up a rock and throws it at you. You use your wings to shield yourself, your tail lashing out to pierce the goblin's flesh.
<<default>>
You're outnumbered, the goblin scouts closing in on you from all sides as you back away slowly. They snarl and brandish their weapons, their eyes alight with bloodlust. You know you're in trouble - you're outnumbered and outmatched.
But you're not about to give up without a fight. You take a deep breath and unleash a fierce roar, letting your wings and tail extend to their full length. The goblins hesitate, and in that moment of hesitation, you strike. You use your wings to shield yourself, your tail lashing out to pierce the goblins' armor. The goblins fight back with all their might, but you're too fast for them. You dodge and weave, your wings and tail working in tandem to keep the goblins at bay.
One goblin is knocked to the side, its rusty sword clattering to the ground. As it picks itself back up, it finds a stick and swings it wildly at you. You use your wings to shield yourself, your tail lashing out to pierce the goblin's flesh. Another goblin charges at you with a roar, its fists clenched. You use your wings to lift yourself into the air, carrying the goblin with you and ignoring it's desperate screams. When you decide you're high enough up, you let go and let it drop.
<</switch>>
<<else>>
<<switch random(1)>>
<<case1>>
You stalk the goblin scout through the forest, your claws at the ready. He's a scrawny thing, his rusty swords glinting in the dim light. He's no match for you, but you can't let your guard down.
The goblin snarls and lunges at you, swinging his swords wildly. You dodge and weave, your claws flashing as you attack. The goblin is fast, but you're faster. You strike again and again, your claws slicing through the goblin's armor and into his flesh.
The goblin falls to the ground, howling in pain. It picks itself back up, a desperate look in its eyes. It finds a stick and swings it wildly at you, you bat it away, laughing at its efforts before piercing its chest with your claw.
<<default>>
You're outnumbered, the goblin scouts closing in on you from all sides as you back away slowly. They snarl and brandish their weapons, their eyes alight with bloodlust. You know you're in trouble - you're outnumbered and outmatched.
But you're not about to give up without a fight. You take a deep breath and unleash a fierce roar, letting your claws extend to their full length. The goblins hesitate, and in that moment of hesitation, you strike. You take down one goblin, then another, using your claws to slash and tear at their flesh.
The goblins fight back with all their might, but you're too fast for them. You dodge and weave, your claws flashing as you attack. One goblin is knocked to the side, its rusty sword clattering to the ground. As it picks itself back up, it finds a stick and swings it wildly at you. You duck and dodge, your claws flashing as you attack. One by one, the goblins fall to the ground. The ground a mess with gore and blood.
<</switch>>
<</if>>
<<elseif $currentatk is "fire">>
<<switch random(2)>>
<<case1>>
You stand facing the goblin scout, your hands outstretched as you gather the flames to you. He's a scrawny thing, his rusty swords glinting in the dim light. You know you have to be careful - one misstep, and he'll overpower you.
The forest around you comes alive with the roar of flames as you unleash your magic. The goblin shrieks and falls back, his swords clattering to the ground as he tries to escape the inferno. You keep your focus, using your control over the flames to keep the goblin at bay. You unleash blast after blast of fire, roasting the goblin alive.
<<case2>>
You stand facing the goblin scout, your hands outstretched as you gather the flames to you. He's a scrawny thing, his rusty swords glinting in the dim light. But he's not alone - he's armed himself with a large wooden stick, wielding it like a club. You know you have to be careful - one misstep, and he'll overpower you.
The goblin charges at you with a roar, swinging his club wildly. You use your magic to shield yourself, the flames dancing around you as you unleash burst after burst of fire. The goblin shrieks and falls back, his club smoldering and charred as it burns to ashes in his hands.
You keep your focus, using your control over the flames to keep the goblin at bay. You unleash blast after blast of fire, creating bursting boils all over the goblins body before it falls over dead.
<<default>>
You stand facing the goblin scout, your hands outstretched as you gather the flames to you. He's a scrawny thing, his rusty swords glinting in the dim light. But he's not alone - he's armed himself with a handful of rocks, pelting them at you in a desperate attempt to keep you at bay.
You use your magic to shield yourself, the flames dancing around you as you unleash burst after burst of fire. The goblin shrieks and falls back, the rocks tumbling from his grasp as they heat up and become too hot to hold.
You keep your focus, using your control over the flames to engulf the goblin. It doesn't take long before it either burns or suffocates to death. You don't care which.
<</switch>>
<<elseif $currentatk is "ice">>
<<switch random(1)>>
<<case1>>
You stand facing the goblin scout, your hands outstretched as you gather the ice to you. He's a scrawny thing, his rusty dagger glinting in the dim light.
You use your magic to shield yourself, the ice forming a barrier around you as you unleash blast after blast of frozen water. The goblin shrieks and falls back, his rusty dagger clattering to the ground as it freezes solid in his hands.
You keep your focus, using your control over the ice to keep the goblin at bay. You unleash blast after blast of frozen water, trying to freeze the goblin solid. The goblin falls over and shatters.
<<default>>
You stand facing the goblin scout, your hands outstretched as you gather the ice to you. He's a scrawny thing, holding a wooden mallet.
You use your magic to shield yourself, the ice forming a barrier around you as you unleash blast after blast of frozen water. The goblin shrieks and falls back, his wooden mallet splintering and breaking as it freezes solid in his hands.
You keep your focus, using your control over the ice to keep the goblin at bay. You unleash blast after blast of frozen spikes. The goblin, having taken too much bloodloss from the onslaught, falls.
<</switch>>
<<elseif $currentatk is "wind">>
<<switch random(1)>>
<<case1>>
You stand facing the goblin scout, your hands outstretched as you gather the wind to you. He's a scrawny thing, a handful of rocks clutched in his fists.
The goblin snarls and charges at you, pelting you with a hail of rocks. You use your magic to shield yourself, the wind swirling around you as you unleash gust after gust of powerful wind. The rocks are no match for your magic, and they're blown away by the force of your wind.
You keep your focus, using your control over the wind to keep the goblin at bay. You unleash blast after blast of powerful wind, trying to blow the goblin off balance. The goblin stumbles and falls, his ragged clothes flapping in the wind. He picks himself up, snarling and swinging his fists wildly. You use your magic to shield yourself, the wind swirling around you as you unleash gust after gust of powerful wind. The goblin is torn to shreds before the might of your wind.
<<default>>
You stand facing the goblin scout, your hands outstretched as you gather the wind to you. He's a scrawny thing holding a wooden mallet.
The goblin snarls and charges at you, swinging his mallet wildly. You use your magic to shield yourself, the wind swirling around you as you unleash gust after gust of powerful wind. The mallet is no match for your magic, and it splinters and breaks as it's cut in half by the refined sharp wind.
You keep your focus, using your control over the wind to keep the goblin at bay. You unleash blast after blast of powerful wind, trying to blow the goblin off balance. The goblin stumbles and falls, his ragged clothes flapping in the wind. He picks himself up, snarling and brandishing his broken mallet like a club. You use your magic to shield yourself, the wind swirling around you as you unleash a blade of wind, severing the goblins arm.
It's screams loud, you leave it to bleed to death before it attracts the attention of others.
<</switch>>
<<elseif $currentatk is "water">>
<<switch random(1)>>
<<case1>>
You stand facing the goblin scout, your hands outstretched as you gather the water to you. He's a scrawny thing, a handful of rocks clutched in his fists.
The goblin snarls and charges at you, pelting you with a hail of rocks. You use your magic to shield yourself, the water swirling around you as you unleash torrents of water. The rocks are no match for your magic, and they're blown away by the force of your water.
You keep your focus, using your control over the water to keep the goblin at bay. You unleash wave after wave of powerful water, trying to knock the goblin off balance. The goblin stumbles and falls, his ragged clothes soaked through. He picks himself up, snarling and swinging his fists wildly. You use your magic to send a gushing blast of boiling water, cooking the goblin alive.
<<default>>
You stand facing the goblin scout, your hands outstretched as you gather the water to you. He's a scrawny thing, his wooden mallet glinting in the dim light.
The goblin snarls and charges at you, swinging his mallet wildly. You use your magic to shield yourself, the water swirling around you as you unleash torrents of water. The mallet is no match for your magic, and it splinters and breaks as it's drenched by the powerful water.
You keep your focus, using your control over the water to keep the goblin at bay. You unleash wave after wave of powerful water, trying to knock the goblin off balance. The goblin stumbles and falls, his ragged clothes soaked through. He picks himself up, snarling and brandishing his broken mallet like a club. You use your magic to shield yourself, the water swirling around you as you unleash torrents of water like a pressure wash, tearing the skin from the goblins skull.
<</switch>>
<<elseif $currentatk is "thunder">>
<<switch random(1)>>
<<case1>>
You stand facing the goblin scout, your hands outstretched as you gather the thunder to you. He's a scrawny thing, a handful of rocks clutched in his fists.
The goblin snarls and charges at you, pelting you with a hail of rocks. You use your magic to shield yourself, the thunder swirling around you as you unleash bolts of lightning. The rocks are no match for your magic, and they're turned to glass by the force of your thunder.
You keep your focus, using your control over the thunder to keep the goblin at bay. You unleash blast after blast of powerful thunder, trying to knock the goblin off balance. The goblin stumbles and falls, his ragged clothes smoldering. He picks himself up, snarling and swinging his fists wildly. You use your magic to shield yourself, the thunder swirling around you as you unleash bolts of lightning. The goblin screams as it's muscles tense up and goes into cardiac arrest.
<<default>>
You stand facing the goblin scout, your hands outstretched as you gather the thunder to you. He's a scrawny thing, his wooden mallet glinting in the dim light.
The goblin snarls and charges at you, swinging his mallet wildly. You use your magic to shield yourself, the thunder swirling around you as you unleash bolts of lightning. The mallet is no match for your magic, and it splinters and breaks as it's burned by the powerful thunder.
The battle is won, but the goblin doesn't give up as it charges you. You click your tongue as you step aside and electrocute it by the back of the skull. You don't need to see it's face to see the light caused by the fire in his eyes.
<</switch>>
<</if>>
<<elseif $e.name is "goblinsldr">>
<<if $currentatk == "melee">>
<<if $wings is true>>
<<switch random(2)>>
<<case1>>
You stand facing the goblin soldier, your claws bared and ready for battle. The goblin sneers at you, his heavy armor clanking as he hefts his spear. He spits a glob of phlegm at your feet.
<div class='row left'>
<div class='left-msg'>Goblin Soldier<hr>The boys and I are gonna run a train on your corpse!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You spread your wings and raise your tail, ready to defend against the goblin's attack. The goblin charges at you, his spear held low and steady. You use your wings to block the attack, the spear glancing off the thick leathery surface. The goblin snarls and tries to swipe at you again, but you're too quick for him. You use your tail to strike, the razor sharp tip slicing through the air as you counter.
Despite your best efforts, the goblin's armor proves to be a formidable defense. You can't seem to find a way to get past the thick plates and reach his flesh. The goblin grins, sensing your frustration. He takes the opportunity to strike, his spear ringing against your claws as you struggle to parry the attack.
You're starting to tire, your energy sapped by the constant dodging and parrying. The goblin, on the other hand, seems to be getting more and more frenzied as the battle wears on. He snarls and spits, his spear a blur as he attacks with reckless abandon.
Just when you think all hope is lost, you see an opening. The goblin stumbles, his footing off balance for just a moment. You seize the opportunity and strike, your claws sinking into the goblin's unprotected neck. The goblin gurgles and falls to the ground, his lifeblood spilling out onto the forest floor.
<<case2>>
The goblin grabs his crotch and screams
<div class='row left'>
<div class='left-msg'>Goblin Soldier<hr>You're going to look so much prettier with my cum all over your dead, open eyes
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You spread your wings and raise your tail, ready to defend against the goblin's attack. The goblin charges at you, his short sword held high. You use your wings to block the attack, the sword glancing off the thick leathery surface. The goblin snarls and tries to swipe at you again, but you're too quick for him. You use your tail to strike, the razor sharp tip slicing through the air as you counter.
Despite your best efforts, the goblin's armor proves to be a formidable defense. You can't seem to find a way to get past the thick plates and reach his flesh. The goblin grins, sensing your frustration. He takes the opportunity to strike, his sword ringing against your claws as you struggle to parry the attack.
You're starting to tire, your energy sapped by the constant dodging and parrying. The goblin, on the other hand, seems to be getting more and more frenzied as the battle wears on. He snarls and spits, his sword a blur as he attacks with reckless abandon.
Just when you think all hope is lost, the goblin swings and misses you, his sword getting stuck in a tree. The goblin curses and struggles to free it, giving you the opportunity to strike. You seize the opportunity and strike, your claws sinking into the goblin's unprotected neck. The goblin gurgles and falls to the ground, his lifeblood spilling out onto the forest floor.
<<default>>
You face off against the goblin soldier, your claws bared and ready for battle. The goblin leers at you, his heavy armor clanking as he hefts his spear.
<div class='row left'>
<div class='left-msg'>Goblin Soldier<hr>Before we're finished, that pretty mouth of yours will be wrapped around my cock.
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You stand your ground, your wings spread and your tail raised as you prepare to defend against the goblin's attack. The goblin charges at you, his spear held high. You use your wings to block the attack, the spear glancing off the thick leathery surface. The goblin snarls and tries to swipe at you again, but you're too quick for him. You use your claws to strike, slicing through the air as you counter.
The goblin proves to be a formidable opponent, his armor protecting him from your attacks. You struggle to find a way to get past the thick plates and reach his flesh. The goblin grins, sensing your frustration. He takes the opportunity to strike, his spear ringing against your claws as you struggle to parry the attack.
You keep blocking the goblin's attacks, your wings and claws a blur as you defend against his relentless assault. The goblin becomes more and more frenzied as the battle wears on, his attacks becoming more and more desperate. You can see the sweat pouring down his face, his eyes wild with fear and desperation.The goblin overextends, his spear swinging wide as he misses his attack. You seize the opportunity and strike, your tail darting out to pierce the goblin's chest. The goblin gurgles and falls to the ground, his lifeblood spilling out onto the forest floor.
<</switch>>
<<else>>
<<switch random(2)>>
<<case1>>
You stand facing the goblin soldier, your claws bared and ready for battle. The goblin sneers at you, his heavy armor clanking as he hefts his short sword. He spits a glob of phlegm at your feet.
<div class='row left'>
<div class='left-msg'>Goblin Soldier<hr>The boys and I are gonna run a train on your corpse!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
The goblin charges at you, his short sword held high. You easily dodge the clunky attack, your claws slashing through the air as you counter. The goblin snarls and tries to swipe at you again, but you're too quick for him. You dance around him, your claws a blur as you attack from all angles.
Despite your best efforts, the goblin's armor proves to be a formidable defense. You can't seem to find a way to get past the thick plates and reach his flesh. The goblin grins, sensing your frustration. He takes the opportunity to strike, his sword ringing against your claws as you struggle to parry the attack.
You're starting to tire, your energy sapped by the constant dodging and parrying. The goblin, on the other hand, seems to be getting more and more frenzied as the battle wears on. He snarls and spits, his sword a blur as he attacks with reckless abandon.
Just when you think all hope is lost, you see an opening. The goblin stumbles, his footing off balance for just a moment. You seize the opportunity and strike, your claws sinking into the goblin's unprotected neck. The goblin gurgles and falls to the ground, his lifeblood spilling out onto the forest floor.
You stand panting and trembling, your victory hard-won. As the goblin lies there at your feet, gasping for breath, you can't help but feel a sense of triumph wash over you. You've survived the fight, and you're stronger because of it.
<<case2>>
You stand facing the goblin soldier, your claws bared and ready for battle. The goblin sneers at you, his heavy armor clanking as he hefts his spear.
<div class='row left'>
<div class='left-msg'>Goblin Soldier<hr>Before we're finished, that pretty mouth of yours will be wrapped around my cock.
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
The goblin charges at you, his spear held low and steady. You easily dodge the attack, your claws slashing through the air as you counter. The goblin snarls and tries to swipe at you again, but you're too quick for him. You dance around him, your claws a blur as you attack from all angles.
Despite your best efforts, the goblin's armor proves to be a formidable defense. You can't seem to find a way to get past the thick plates and reach his flesh. The goblin grins, sensing your frustration. He takes the opportunity to strike, his spear ringing against your claws as you struggle to parry the attack.
You're starting to tire, your energy sapped by the constant dodging and parrying. The goblin, on the other hand, seems to be getting more and more frenzied as the battle wears on. He snarls and spits, his spear a blur as he attacks with reckless abandon.
Just when you think all hope is lost, you see an opening. The goblin stumbles, his footing off balance for just a moment. You seize the opportunity and strike, your claws sinking into the goblin's unprotected neck. The goblin gurgles as it chokes on its own blood.
<<default>>
You stand facing the goblin soldier, your claws bared and ready for battle. The goblin sneers at you, his heavy armor clanking as he hefts his spear.
<div class='row left'>
<div class='left-msg'>Goblin Soldier<hr>You're going to look so much prettier with my cum all over your dead, open eyes
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
The goblin charges at you, his spear held low and steady. You easily dodge the attack, your claws slashing through the air as you counter. The goblin snarls and tries to swipe at you again, but you're too quick for him. You dance around him, your claws a blur as you attack from all angles.
Despite your best efforts, the goblin's armor proves to be a formidable defense. You can't seem to find a way to get past the thick plates and reach his flesh. The goblin grins, sensing your frustration. He takes the opportunity to strike, his spear ringing against your claws as you struggle to parry the attack.
You're starting to tire, your energy sapped by the constant dodging and parrying. The goblin, on the other hand, seems to be getting more and more frenzied as the battle wears on. He snarls and spits, his spear a blur as he attacks with reckless abandon.
Just when you think all hope is lost, you see an opening. The goblin stumbles, his footing off balance for just a moment. You seize the opportunity and strike, your claws sinking into the goblin's unprotected neck. The goblin gurgles and falls to the ground, his lifeblood spilling out onto the forest floor.
You stand panting and trembling, your victory hard-won. As the goblin lies there at your feet, gasping for breath, you can't help but feel a sense of triumph wash over you. You've survived the fight, and you're stronger because of it.
<</switch>>
<</if>>
<<elseif $currentatk is "fire">>
<<switch random(2)>>
<<case1>>
You stand facing the goblin soldier, your fists glowing with fire magic. The goblin sneers at you, his heavy armor clanking as he hefts his short sword. He shouts a vulgar insult at you, the gesture meant to intimidate you.
You smirk at the goblin, your confidence growing as you feel the power of your fire magic surging through you. The goblin charges at you, his short sword held high. You dance around him, your flames flickering and teasing as you toy with your enemy. The goblin snarls and tries to swipe at you, but you're too quick for him. You use your fire magic to strike, the flames licking out towards the goblin as you counter.
Despite his best efforts, the goblin is no match for your fire magic. You can see the fear and desperation growing in his eyes as you effortlessly deflect his attacks. You're having fun now, your magic a blur as you keep the goblin on the defensive. The goblin becomes more and more frenzied as the battle wears on, his attacks becoming more and more desperate.
Just when you think the goblin is finished, he manages to land a lucky strike. You feel a searing pain as the sword slices through your skin, drawing a line of blood across your arm. You grit your teeth, determined not to let the goblin get the upper hand. You strike back, your fire magic engulfing the goblin in flames. The goblin screams as the fire consumes him, his life slipping away as he falls to the ground.
<<case2>>
You stand facing the goblin soldier, your fists glowing with fire magic. The goblin sneers at you.
<div class='row left'>
<div class='left-msg'>Goblin Soldier<hr>The boys and I are gonna run a train on your corpse!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You raise your hands, ready to defend against the goblin's attack. The goblin charges at you, his short sword held high. You struggle to keep up with the goblin's quick strikes, the sharp blade slicing through your skin as you take small cuts. The goblin grins, sensing your frustration. He takes the opportunity to strike, his sword ringing against your flames as you struggle to parry the attack.
You're starting to tire, your energy sapped by the constant dodging and parrying. The goblin, on the other hand, seems to be getting more and more frenzied as the battle wears on. He snarls and spits, his sword a blur as he attacks with reckless abandon.
Just when you think all hope is lost, you see an opening. The goblin overextends, his sword swinging wide as he misses his attack. You seize the opportunity and strike, your fire magic engulfing the goblin in flames. The goblin screams as the fire consumes him, his armor melting as he falls to the ground.
<<default>>
You stand facing the goblin soldier, your fists glowing with fire magic. The goblin sneers at you, his heavy armor clanking as he hefts his short sword. He whips out his dick and waves it around in front of you.
You raise your hands, ready to defend against the goblin's attack. The goblin charges at you, his short sword held high. You struggle to keep up with the goblin's quick strikes, the sharp blade ringing against your flames as you parry the attacks. The goblin snarls and spits, his sword a blur as he attacks with reckless abandon.
The battle is evenly matched, both of you equally skilled and determined. You dodge and parry, your flames flickering and teasing as you toy with your enemy. The goblin growls and swings his sword, his frustration growing as he fails to land a single strike.
Just when you think the goblin is getting the upper hand, you see an opening. The goblin overextends, his sword swinging wide as he misses his attack. You seize the opportunity and strike, your fire magic engulfing the goblin in flames. The goblin screams, his vision blinded by the bright light of your flames.
As the goblin stumbles and falls, his sword clattering to the ground he falls on his own sword.
<</switch>>
<<elseif $currentatk is "ice">>
<<switch random(2)>>
<<case1>>
You stand facing the goblin soldier, your fists glowing with ice magic. The goblin sneers at you, his heavy armor clanking as he hefts his short sword. He shouts a vulgar insult at you, the gesture meant to intimidate you.
You raise your hands, ready to defend against the goblin's attack. The goblin charges at you, his short sword held high. You struggle to keep up with the goblin's quick strikes, the sharp blade ringing against your ice as you parry the attacks. The goblin snarls and spits, his sword a blur as he attacks with reckless abandon.
But you have the upper hand. Your ice magic is more powerful, and you easily dodge and parry the goblin's attacks. You toy with the goblin, your ice flickering and teasing as you keep the goblin on the defensive. The goblin growls and swings his sword, his frustration growing as he fails to land a single strike.
Just when you think the goblin is getting the upper hand, you see an opening. The goblin overextends, his sword swinging wide as he misses his attack. You seize the opportunity and strike, your ice magic engulfing the goblin in a frozen shell. The goblin screams, his body stiffening as the ice consumes him.
As the goblin falls to the ground, his body frozen solid, you see your chance. You strike, your ice magic lashing out and encasing the goblin in a thick layer of ice. The goblin shatters into a thousand pieces, his body disintegrating as the ice consumes him. You stand panting and trembling, your victory hard-won. As the shards of ice lie scattered at your feet, you can't help but feel a sense of triumph wash over you.
<<case2>>
You stand facing the goblin soldier, your fists glowing with ice magic. The goblin sneers at you, his heavy armor clanking as he hefts his short sword. You notice however his dick is exposed and unprotected.
You raise your hands, ready to defend against the goblin's attack. The goblin charges at you, his short sword held high. You struggle to keep up with the goblin's quick strikes, forming blades of ice to block the attacks. The goblin snarls and spits, his sword a blur as he attacks with reckless abandon.
The battle is evenly matched, both of you equally skilled and determined. You dodge and parry, forming ice blades to defend against the goblin's sword. The goblin growls and swings his sword, his frustration growing as he fails to land a single strike.
Just when you think the goblin is getting the upper hand, you see an opening. The goblin overextends, his sword swinging wide as he misses his attack. You seize the opportunity and strike, forming a large blade of ice and thrusting it towards the goblin. The goblin screams, his armor no match for the sharp blade of ice.
<<default>>
You stand facing the goblin soldier, your fists glowing with ice magic. The goblin sneers at you, his heavy armor clanking as he hefts his short sword.
<div class='row left'>
<div class='left-msg'>Goblin Soldier<hr>The boys and I are gonna run a train on your corpse!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You raise your hands, ready to defend against the goblin's attack. The goblin charges at you, his short sword held high. You struggle to keep up with the goblin's quick strikes, dodging and weaving as you look for an opportunity to strike.
You see your chance and take it, forming a series of icicles and launching them at the goblin. The goblin's armor blocks most of the icicles, the metal deflecting the sharp shards of ice. But you use the attack as a cover, distracting the goblin as you charge forward.
The goblin doesn't see the large icicle hurtling towards him until it's too late. The icicle pierces his armor, the sharp shard of ice impaling him through the chest. The goblin screams, his body convulsing as he falls to the ground.
<</switch>>
<<elseif $currentatk is "wind">>
<<switch random(2)>>
<<case1>>
You stand facing the goblin soldier, your fists glowing with wind magic. The goblin sneers at you, his heavy armor clanking as he hefts his short sword. He shouts a vulgar insult at you, the gesture meant to intimidate you.
You raise your hands, ready to defend against the goblin's attack. The goblin charges at you, his short sword held high. You struggle to keep up with the goblin's quick strikes, using your wind magic to deflect the sword and create an opening.
But you soon realize that the goblin's armor is too thick for your wind magic to penetrate. You're forced to think on your feet, using your wind magic to knock the goblin off balance and send him crashing to the ground.
The goblin growls and snarls, his frustration growing as he fails to land a single strike. You see an opportunity, and you use your wind magic to slice through a branch overhead. The branch comes crashing down, crushing the goblin beneath its weight.
<<case2>>
You stand facing the goblin soldier, your fists glowing with wind magic. The goblin sneers at you, his heavy armor clanking as he hefts his short sword.
<div class='row left'>
<div class='left-msg'>Goblin Soldier<hr>You're going to look so much prettier with my cum all over your dead, open eyes
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
The goblin charges at you, his short sword held high. You struggle to keep up with the goblin's quick strikes, using your wind magic to deflect the sword and create an opening. But the goblin's armor is thick, and your wind magic struggles to find a way through.
The goblin lands a solid hit, knocking you off your feet. You groan in pain, the impact jarring. The goblin stands over you, his sword raised high, ready to deliver the final blow. But in an act of desperation You summon all of your remaining strength, your fists glowing with wind magic. You unleash a burst of wind, scoring a lucky hit and hitting the tiny gaps in his armor. Blood gushes from multiple wounds the enemy receives from your attack and he falls to his knees gasping for air, before falling over from blood loss.
<<default>>
You stand facing the goblin soldier, your fists glowing with wind magic. The goblin sneers at you, his heavy armor clanking as he hefts his short sword.
<div class='row left'>
<div class='left-msg'>Goblin Soldier<hr>I'll carve my initials into your cunt when I'm done using your dead body, cunt!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You don't let the goblin's words and lack of vocabulary get to you. Instead, you use your wind magic to lift yourself off the ground, hovering just out of reach of the goblin's sword. The goblin swings wildly at you, but you're too quick for him. You dart around the battlefield, using the wind to guide you as you slice at the goblin with your wind magic.
The goblin's armor is thick, but your wind magic is sharp. You focus on the small gaps in the goblin's armor, slicing at the metal piece by piece. The goblin growls in frustration, his attacks becoming more frenzied as he tries to catch you. You see an opportunity and take it. You focus your wind magic, sucking all of the air out of the goblin's lungs. The goblin clutches at his throat, gasping for air as he falls to his knees. You watch as the life drains from the goblin's eyes, his body going limp as he collapses to the ground.
<</switch>>
<<elseif $currentatk is "water">>
<<switch random(1)>>
<<case1>>
You stand facing the goblin soldier, your fists glowing with water magic. The goblin leers at you, his heavy armor clanking as he hefts his spear.
<div class='row left'>
<div class='left-msg'>Goblin Soldier<hr>You're going to look so much prettier with my cum all over your dead, open eyes
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You don't let the goblin's words get to you. Instead, you use your water magic to summon a stream of water, aiming it at the goblin's face. The goblin snarls, trying to block the water with his spear. But you keep the stream going, focusing all your energy on drowning him.
The goblin thrashes and writhes, trying to break free of the water's grip. But you're too powerful. You keep the water flowing, your magic pulsing with each beat of your heart. The goblin's struggles become weaker and weaker, until finally he falls to the ground, his body going limp as he takes his last breath.
<<default>>
You stand facing the goblin soldier, your fists glowing with water magic. The goblin leers at you, his heavy armor clanking as he hefts his spear. He shouts a vulgar insult at you, trying to intimidate you with his size and strength.
You don't let the goblin's words get to you. You dodge the goblins strikes as you prepare your magic. You use your water magic to summon a stream of water, aiming it at the holes in the goblin's armor. The water seeps into the armor, filling it up until the goblin is drenched from head to toe.
Then, you shift your focus to your fire magic, heating up the water inside the armor until it boils. The goblin screams in agony, the hot water scalding his skin. You don't let up, pouring more and more heat into the water until the goblin is nothing more than a pile of steaming flesh wearing armor.
<</switch>>
<<elseif $currentatk is "thunder">>
<<switch random(2)>>
<<case1>>
You stand facing the goblin soldier, your claws crackling with thunder magic. The goblin sneers at you, his heavy armor clanking as he swings his sword.
<div class='row left'>
<div class='left-msg'>Goblin Soldier<hr>The boys and I are gonna run a train on your corpse!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You don't let the goblin's words get to you. Instead, you use your claws to deflect his sword strikes, the thunder magic coursing through your arms and making your movements lightning fast. The goblin grows more and more frustrated as he fails to land a single hit, his sword clanging off your claws with each swing.
Finally, you see an opening. You lash out with your claws, snatching the goblin by the face and holding him tight. Then, you pour all of your thunder magic into his skull, the electricity coursing through his body and frying his brain.
The goblin goes limp in your grip, his body twitching as the last of the electricity leaves his body. You let go, the goblin's corpse crumpling to the ground.
<<case2>>
You face the goblin soldier in the dense forest, your claws crackling with thunder magic. The goblin snarls at you, his heavy armor clanking as he brandishes his spear. You stand ready, eyeing the goblin as he circles you, looking for an opening.
The two of you dance around each other, the goblin's spear flashing in the dim light of the forest. You keep your distance, using your speed and agility to avoid his attacks. The goblin growls in frustration, his face contorted with anger as he struggles to land a hit.
Suddenly, the goblin slips on a wet patch of leaves, his feet flying out from under him. He tumbles into a nearby stream, his armor clanking as he hits the water. You see your opportunity. You send a surge of thunder magic through the stream, frying the goblin's body.
The goblin convulses and screams as the electricity courses through him, his armor and weapons melting under the intense heat. You stand panting and trembling, the goblin's charred corpse floating in the stream.
<<default>>
You and the goblin soldier faced off in the dense forest, both of you ready for battle. The goblin swung his short sword at you, but you easily dodged and countered with a burst of electricity from your fingertips. The goblin let out a loud howl as the electricity coursed through his body, causing his muscles to spasm and convulse.
You could see the confusion and disorientation on the goblin's face as you continued to attack, using your electricity to overload his senses and disrupt his nervous system. He stumbled and swung wildly, but you easily evaded his attacks and toyed with him, enjoying the power you held over him.
Finally, when you grew tired of the game, you finished the goblin off with a powerful surge of electricity, causing his body to convulse one final time before going still.
<</switch>>
<</if>>
<<elseif $e.name is "cringebandit">>
<p>The bandit pauses. During that fight, there were so many flashes of skin that you felt yourself getting aroused.
You may have intended to win this fight without sex, but you're so turned on you don't even care anymore. <<if $outfit.outfit isnot "none">>You strip off your clothes in a hurry.<<else>>You're already naked, so who cares!?<</if>>
The bandit, for his part sees you pause and seems to think this means he's won.
He was annoying, but your lust is starting to fog your mind and as long as he rewards you, you'll let him think that ♡
The bandit doesn't seem to realize he was charmed though, even as he tosses his weapon and light armor aside.
<div class='row left'>
<div class='left-msg'>Cringe Bandit<hr>Spread your legs or die, cunt! Flashing those tits at me while we're fighting, you can't blame me for this! You're going to scream my name, but then I'm going to bring you back to my camp and toss you around my guys!!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oooh, that sounds fun♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The bandit almost pauses, momentarily confused that you're not reacting like his usual targets. But he's no longer in control, you are. He doesn't spend long thinking about it, and he grabs your breast roughly, and shoves his tongue in your mouth. Clearly he's never had a willing woman before.
<div class='row right'>
<div class='right-msg'>Mmmmmm!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You moan as you wrap your arms around his neck and grind your dripping cunt against him. You kiss back passionately, devouring his tongue with yours.
The bandit doesn't know what to make of a willing participant, he has no experience with this. It doesn't take long before his confusion lets you take control. You push him onto the ground and straddle his dick grinding it like a hotdog between your pussy lips. lean forward and lick his nipples while grinding your cunt along his dick.
<div class='row right'>
<div class='right-msg'>Nnngggg, I'm so close...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Within moments, he spurts all over his abdomen and getting your cunt all sticky.
<div class='row right'>
<div class='right-msg'>Oh, but now you'll have to clean it!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You lean over first, taking a quick lick of some of the sticky stuff all over him, savoring the taste.
You decide he needs to know how good he tastes, and you lean over and give him a deep kiss!
<div class='row right'>
<div class='right-msg'>Don't you just taste amazing!? Here, have some more!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You sit on his face, forcing him to eat his own cum while licking you clean. You laugh at how silly he looks, but he's unable to resist you. When he finishes cleaning you, you get off. It's your turn to clean him.
<img class="passage-image" src="demongodsassets/sexscenes/bandit/bandit1.png" >
You kneel on your hands and knees, exposing your tight slit to anyone who could be behind you. He watches you as you lower your head to his abdomen, and you slowly, oh so slowly lap up the cum from his stomach like a hungry kitten. You give him eye contact as his cum is slowly dripping off your tongue, then lean in for another kiss, forcing his own cum down his throat. He looks bothered by this, but doesn't have the will to fight back. You lean back over and finish licking up the cum off his stomach.
"Good boy. Now you may have a reward" You straddle once again, but angle his dick towards your entrance before sliding down, slowly. Eliciting a groan from the man, he grips your hips tightly, trying to prevent you from escaping his clutches. He doesn't have the strength to keep you down though. Within moments you feel his cock entering you, filling you up completely. You rock your hips back and forth, riding him gently until you feel his cock swell inside of you. You tilt your head back and moan loudly, causing him to tense up.
<div class='row right'>
<div class='right-msg'>Ahhhhhh!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You feel his cock about to burst, and when it does you ride his orgasm. Right after you come down from his orgasm, yours starts. And just like before, he fills you full, excess cum leaking out of your twat. You remove yoursel from his body, and lean down to suck it all back up, and let it slide slowly down your throat.
Your pussy throbs as waves of pleasure course through your body, making you squirm uncontrollably. You know he's approaching his end, and you give him one last ride. He spews load after load deep within you, filling you with cum. And just when you think it's all over, he grunts one final time and empties himself into you. Amazing. This man spurted into you 9 or 10 times before collapsing in death.
<<if $p.acceptance gte 50>>
<div class='row right'>
<div class='right-msg'>Well... I was planning to kill you from the start anyways. Though I didn't intend to lose control like this.
Oh well! It was fun! ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<else>>
Suddenly overcome with shame, you realize what you just did. You were fighting this man, fully intending to kill him physically. Instead you just absorbed every last drop of cum he had to offer! What's worse is it was amazing, you loved every second of it, and you hate that you already want more!
What is wrong with you!?
<</if>>
$fullname dropped something! As you get closer you see it's a book.
You've obtained the Ice Tome!
You've obtained 100 cum!
<<set $inv.cum += 100>>
</p>
<<set $tome.ice to true>>
<<set $forest1minialive to false>>
<<elseif $e.name is "dryad">>
<p>
The battle was intense, the Dryad was overcome with grief at the death of her friends, but you fed off them. You understood why the Dryad needed revenge, but you couldn't just sit there and accept it.
You needed to stop the Alraune before they harmed innocents. Even the Dryad knew what you said was true, but you can hardly blame her. You want to stop her from her suicide attack, but it's clear she's beyond reason at this point and she's not giving you an avenue of escape.
As you countered every blow, and burned vines and plants that tried to entangle you, the dryad's attacks began to grow more desperate. You could see fear in the Dryad's eyes, as well as pain and sadness.
Finally with one last blast of magic, the Dryad's charred corpse falls to the floor, still burning red and smoking.
Did you do the right thing? Was there a way to save this creature?
</p>
<div class='row right'>
<div class='right-msg'>I'm sorry, I didn't want to kill you. But you left me no choice.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Your words are interrupted by a flap of wings. You turn and look behind you and spot a raven, staring at you. On one hand you're interested in the fact that birds like Raven's exist in this world. On the other hand, it seems like this raven is staring at you intently. Judging you silently.
</p>
<div class='row right'>
<div class='right-msg'>Quit staring at me, she attacked me first. I had no choice. Leave me alone!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You throw your hands in the air, trying to scare away the bird. It stares at you mockingly as if laughing at your attempts before finally silently flying away.
</p>
<p>
You've obtained 100 cum!
<<set $inv.cum += 100>>
<<set $azraelrel -= 25>>
</p>
<<set $dryadalive to false>>
<</if>>
</p>
<</widget>><div class="conversation">
<p>
<<if $genderstart is "male" or $genderstart is "fem">>
You enter a luxurious looking cavern. Rather than a cavern, it looks like a throne room! You're immediately struck by the opulence of the space. Rich golden tapestries depicting scenes of battles and conquests the adorned with crests of many houses unknown to you adorn the walls, piles of gold, and a large ornate throne sits at the far end of the room atop a raised dais. Upon the throne lounges what could only be described as a demon. His muscular body sprawled out lazily, two demonic women rest upon him, their sharp teeth bared in a sultry smile as they caress his body. Despite their humanoid appearance, their skin is scaly and their eyes are hidden, giving them an otherworldly, almost predatory appearance.
<img class="passage-image" src="demongodsassets/people/fullbody/enemies/boss1/1.png" >
As you approach, the demon notices you and sends the women away with a casual wave of his hand. They scurry off, leaving you and the demon alone in the room. The demon lets out a deep, guttural laugh, his eyes alight with amusement.
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>What have we here? A weak little demon succubus come to play? Did you kill my guard? He was an amusing one.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
His lips curl in disgust.
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>Even back home you weak succubi didn't know your place. Always trying to challenge your greater cousins! Your place is on your knees, and I'll be happy to teach it to you. Of course, you've already absorbed so much corruption that you're already a mindless beast. What chance have you against a God?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
You simply smirk back at the fool, your eyes flickering with amusement. You open your mouth to respond, your voice purrs and drips and seduction.
<div class='row right'>
<div class='right-msg'>Oh? I think I stand a pretty good chance. After all, I am a succubus and we are pretty hard to resist. And look at that, your tiny cock is already interested!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The demon's sneer turns into a scowl, and he yanks his massive sword out of the stone floor, the metal gleaming in the dim light of the throne room.
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>It seems I must teach you your place. I've killed many of your kind back home, and turned even more into my slaves. I think I'll just add you to my collection.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
He grows at you and you prepare yourself.
<<elseif $genderstart is "grill">>
[[continue|grill ending]]
<</if>>
[[continue|battle]]
</p>
</div>
<<nobr>>
<<set $e.type to ["physical_enemy", "magical_enemy", "boss"]>>
<<set $e.name to "boss1">>
<<set $e.lvl to 11>>
<<randomEnemyEncounter>>
<<set $fullname to "Melek Taus">>
<<set $e.weakness to "ice">>
<<set $e.eleresist to "fire">>
<<set $portrait to 1>>
<<set $boss1attempt += 1>>
<</nobr>>
<div class="conversation">
<p><img class="passage-image" src="demongodsassets/img/grill/grill.png" >
Steve stands at the grill, flipping hotdogs with a spatula. The sizzling sound fills the air, mixing with the laughter of his two friends, Emily and James. The three of them are enjoying a summer cookout in Steve's backyard. The sun beats down on them, but a light breeze keeps them comfortable.
</p>
<div class='row left'>
<div class='left-msg'>Emily<hr> Hey Steve, can I eat a hotdog or do you think it'd be too bad for my diet?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Steve<hr> Aw come on, Em. It's not the wurst thing you could eat. In fact, it's the frank-ly best choice!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/you/male.png">
</div>
</div>
<p>Emily rolls her eyes, but can't help but laugh.
</p>
<div class='row left'>
<div class='left-msg'>Steve<hr> Don't be a frank-en-stein. Just enjoy the grill-icious hotdogs!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/you/male.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Emily<hr> Oh God, you're really doing this aren't you?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Steve<hr> These hotdogs are looking mighty fine. They're practically begging to be bun-dled up and devoured!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/you/male.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>James<hr> What's the difference between a hotdog and a roll in the hay?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/james.png">
</div>
</div>
<p>Neither Steve nor Emily have an answer.
</p>
<div class='row left'>
<div class='left-msg'>James<hr> The difference between a hotdog and a roll in the hay is whether or not you're on fire!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/james.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Emily<hr> Umm...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Steve<hr> Uhh..
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/you/male.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>James<hr> I got fired from my job at the hot dog stand because I put my hair in a bun.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/james.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Emily<hr> Oh God...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>James<hr> A guy walks into a butcher shop and says 'can I please get some hotdogs for lunch?' The butcher then says 'I'm sorry sir but we only have hotdog buns for hotdogs, and no one wants to eat the hotdog bun.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/james.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Steve<hr> Dude. I don't think you're very good at these.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/you/male.png">
</div>
</div>
<p>As they continue to grill, make puns, and tease James; you, the sentient grill listen in. Silently amused by their antics. It's just another typical summer day for this trio of friends.
Eventually the laughter dies down and everyone heads home for the night. You're put back into storage, and as the room falls pitch black, you feel your consciousness fading.
</p>
[[wakeup|grill wakeup]]
</div>
<div class="conversation">
<p>Suddenly you're surrounded by darkness. You know it's not the garage you were just in, rather it's like you're floating.
</p>
<div class='row right'>
<div class='right-msg'>Oh no, not again...
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/grill.png'">
</div>
</div>
<p><img class="passage-image" src="demongodsassets/people/fullbody/goddess.png" >
Suddenly a holy light fills your view. It's the only thing visible in this world of darkness.
</p>
<div class='row left'>
<div class='left-msg'>Goddess<hr> You will be reborn
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>But I was never alive...
Well actually, there was that one time I was a Great Irish Elk, but that was thousands of years ago.
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/grill.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Goddess<hr> What?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Yeah, we went exctinct but...
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/grill.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Goddess<hr> Stop.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<p>You've managed to fluster a Goddess. Congratulations!
The Goddess clears its...Throat? And in a dramatic fashion, continues.
</p>
<div class='row left'>
<div class='left-msg'>Goddess<hr> Welcome to your new life. I had this great speech planned but, I just don't think I can do it anymore. Due to a little typo by the games developer, you have been reincarnated as a girl in this new world.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Wait, I'm a girl now? And what's a typo?
...
Also what's a developer?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/grill.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Goddess<hr> *sigh*
Basically you were never supposed to exist. The developer was typing the word girl at the very beginning of the game, and he mis-typed gril. Although he's incorrect, he thinks he's hilarious and decided to keep that in the game. So... You were born.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oh I see...
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/grill.png'">
</div>
</div>
<p>You don't have any idea what she's talking about, but then again you don't understand why someone else is reading your thoughts to you either, so whatever.</p>
<div class='row right'>
<div class='right-msg'>But what am I supposed to do now? I was just a grill before. I don't know how to be a girl.
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/grill.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Goddess<hr> Well, it's not like being a grill was all that difficult.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<p>The Goddess doesn't have any visible features, but somehow you know she's rolling her eyes. Somehow you also know what rolling your eyes is!
</p>
<div class='row left'>
<div class='left-msg'>Goddess<hr> Just use your common sense and try your best. And maybe try to pay a little more attention to your surroundings. You're not in the kitchen anymore. I am giving you a basic understanding of human customs.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<p>Grinning, you respond.
</p>
<div class='row right'>
<div class='right-msg'>I'll try my best to be a well-done girl, I don't want to be a raw deal or a burnt offering.
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/grill.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Goddess<hr> Oh dear... I may have made a mistake.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<p>Once again, you can somehow tell the Goddess is rubbing her temples, despite having no features.
</p>
<div class='row right'>
<div class='right-msg'>I'll do my best to rise to the occasion, I don't want to be a soggy mess or a flop.
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/grill.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Goddess<hr> This is going to be a challenge. Maybe we should have grilled you on proper human etiquette before sending you off on your new adventure.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<p>Achievement unlocked! You made a Goddess tell a pun!
</p>
<div class='row left'>
<div class='left-msg'>Goddess<hr> I hope you're being serious, Grill, This isn't a game. You're going to be living among humans now and you need to learn how to behave appropriately.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I'm just trying to add a little flavor to the conversation.
What am I supposed to do anyways?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/grill.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Goddess<hr> Use your girlish body, have sex with monsters or humans and absorb corruption from them. Kill the Demon Gods of this world. Or do whatever you want, I really don't care anymore.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I promise I'll be a good "gril" and follow the rules.
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/grill.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Goddess<hr> Well, we'll see.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<p>Her light fades as you find yourself drifting off.
</p>
[[wake up|grill new start][$currentlocation to "plains"]]
</div>
<<set $gender to "female">>
<div class="conversation">
<<set $hair to "black">>
<p><img class="passage-image" src="demongodsassets/img/backgrounds/grassyplains.png" >
You woke up to find yourself lying on a grassy plain, surrounded by rolling hills and a clear blue sky. You sat up, rubbing your eyes, and looked around in confusion.
</p>
<div class='row right'>
<div class='right-msg'>Where am I?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You look down.
<img class="passage-image" src="demongodsassets/you/scenes/grassyplain/newbody.png" >
</p>
<div class='row right'>
<div class='right-msg'>I really do have a humans body now. So exciting!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You stood up, stumbling as you try to gain your bearings.
<img class="passage-image" src="demongodsassets/you/scenes/grassyplain/standinggrass.png" >
You've never walked on two legs before. As you walked, you tripped over a rock and fell to the ground with a thud but after rubbing away the pain, you figure it out pretty fast.
</p>
<div class='row right'>
<div class='right-msg'>This is so weird.
I was just a grill, minding my own business in the garage, and now I'm... wherever I am, in a girl's body. This is so exciting!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>Interestingly, human speech seems to come naturally to you. The Goddess did promise to give you a basic understanding of humans.
You look around again, hoping to see some sign of civilization. All you can see are fields and tress as far as the eye can see, though in the other direction you can see some mountains you can probably trek. Though your judgement of human walking speed may be significantly inaccurate.
</p>
<div class='row right'>
<div class='right-msg'>Great, I'm stuck in the middle of nowhere with no idea where to go. This is going to be a long journey.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You sigh, loudly. Once again looking down at your body. You start to get a little curious. You've never had a human body before, what will it be like?
</p>
[[touch it|grill masturbate]]
[[continue|grill plains2]]
</div><div class="conversation">
<<set $p.acceptance += 1>>
<p>Well it's a new body, why not experience it!? After all, according to what that light said earlier, you're going to have to get used to having a lot of sex anyways. Why not start now!?
You're alone, naked and sitting in a grassy field. There's not a single soul in sight.
<img class="passage-image" src="demongodsassets/you/scenes/grassyplain/plainsbate.png" >
You start by grabbing your left breast with your left hand, and moving your right hand to your crotch. Rather than inserting right away, you took time to experience this electrical new feeling simply by caressing around your pussy lips. You then start gently rubbing your new slit. This is something new entirely. You begin to thrust your hips back and forth, moaning and squealing. You've never felt so free, and so happy.
You can feel your clitoris growing wetter, and you begin to touch it with your fingers. You keep playing with your breasts and pussy, but your attention keeps drifting back to your clitoris.
You wonder if it's possible to cum with your hands. Naturally you've never had an opportunity to try this before, but it seems like the logical next step. You move your left hand and place it over your clit. You then move your right hand down and insert two fingers into your pussy.
You thrust, in and out, in and out. You begin to moan louder and louder, until finally you feel yourself reach orgasm. You scream, your whole body shaking, your eyes rolling back in your head. You collapse onto the ground, gasping for breath.
For your first human orgasm, that was amazing. Addicting even!
</p>
[[head towards city in the distance|grill city][$currentlocation to "blackpoolgate"]]
[[head towards mountains|grill mountains][$currentlocation to "mountains_day"]]
</div>
<div class="conversation">
<<set $p.acceptance to 100>>
<div class='row right'>
<div class='right-msg'>Well I guess I better get moving. Hopefully someone will be able to point me in the right direction. At the very least maybe I'll find some food and some clothes. I'm starving. I wonder if they have grills in this world. Then I can be a grill, it's grillception!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You don't have any idea what you're talking about, but then again you don't understand why someone else is reading your thoughts to you either, so whatever. It's like you're a character in some weird story.</p>
<div class='row right'>
<div class='right-msg'>But what am I supposed to do now? I was just a grill before. I don't know how to be a girl.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You set off, determined to find your way in this new world. As you walked, you couldn't help but chuckle at the absurdity of your situation.
</p>
<div class='row right'>
<div class='right-msg'>I still don't know what a typo is, but who would have thought it could lead to such a wild adventure? I guess you never know what's going to happen when you're a reincarnated grill.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>As you prepare to step out into the world, you can't shake the feeling that something isn't quite right. You pause, trying to focus on the source of your discomfort, and that's when you realize it - you have an extra sense, a sixth sense, that wasn't there before. It's almost as if you can feel an invisible appendage emanating from your body, a feeling that becomes even more pronounced as you start to focus on it.
At first, you're not sure what to make of this new sensation. It's not like anything you've ever experienced before, and you don't know how to describe it to anyone else. But as you continue to focus on it, you begin to realize that it feels like a charm spell - something that allows you to imbue objects with magical energy.
And that's not all. As you delve deeper into this strange new power, you realize that you have more magic at your disposal than you ever imagined. It's like a well of power within you, waiting to be tapped and harnessed. You don't know how you know this, or why you're able to use it, but you're certain that it's there, waiting for you to use it to its full potential.
It seems that as long as its sexual, any pain you receive turns into pleasure. Additionally you can't die from it.
You focus a little harder and you feel a burning at your finger tips. You know fire magic 1 and 2!
</p>
<div class='row right'>
<div class='right-msg'>This could be fun! I can't wait to try this body to the fullest!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You should think of a new name while you walk...
</p>
[[head towards city in the distance|grill city][$currentlocation to "blackpoolgate"]]
[[head towards mountains|grill mountains][$currentlocation to "mountains_day"]]
</div>
<<set $randname to random(11)>>
<<if $randname is 0>><<set $defname to "Dhysienne">>
<<elseif $randname is 1>><<set $defname to "Aezsha">>
<<elseif $randname is 2>><<set $defname to "Rhellia">>
<<elseif $randname is 3>><<set $defname to "Qinelin">>
<<elseif $randname is 4>><<set $defname to "Elineli">>
<<elseif $randname is 5>><<set $defname to "Mezaela">>
<<elseif $randname is 6>><<set $defname to "Nessiana">>
<<elseif $randname is 7>><<set $defname to "Nessoris">>
<<elseif $randname is 8>><<set $defname to "Ohirvia">>
<<elseif $randname is 9>><<set $defname to "Fyseraela">>
<<elseif $randname is 10>><<set $defname to "Lynnelin">>
<<elseif $randname is 11>><<set $defname to "Vylarah">>
<</if>>
<div class="conversation">
<p>
The walk is slow it doesn't help that you're barefoot, and your breasts keep bouncing. Thankfully they're pretty small so it's not too much to handle. Though if they were bigger, might help you do your job easier.
The wind keeps annoyingly blowing black strands of hair into your eyes, but before you know it you've arrived at the city gates.
You arrive to see a guard eyeing you suspiciously.
<img class="passage-image" src="demongodsassets/people/fullbody/garret.png" >
<div class='row left'>
<div class='left-msg'>Guard<hr>Who are you<<if $outfit.outfit is "none">> and where are your clothes<</if>>?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oh hello fellow human!<<if $outfit.outfit is "none">> I wasn't born with any. I've never had clothes before, I can't wait to get some though!<</if>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'><<if $outfit.outfit is "none">>You've...never had clothes? What are you a gypsie or something? <</if>> Wait, did you just say "fellow humans?"
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
Why is that weird? Why is it so hard to act like other humans!?
<div class='row right'>
<div class='right-msg'><<if $outfit.outfit is "none">>What's a gypsie? <</if>>Oh sorry, what I meant was Hello guard! I'm a grill! Wait no, I mean girl! <<if $outfit.outfit is "none">>Do you have something to wear and maybe <<else>> Do you have <</if>>a bite to eat? I'm famished...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Guard<hr>Lady you're weird. Why don't you turn the other way and get out of here?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
Oh no! Your deception is failing!
Now seems like the best opportunity to try out your new magic. You cast Charm Level 1 on the guard.
The guard looks at you semi-vacantly. you can feel his eyes travel down to your <<if $outfit.outfit is "none">>naked <</if>>breasts, then continue downwards.
The last time a man had his eyes on you like this, he was talking about food. Speaking of food, man are you starved.
The guard drops his spear and starts walking towards you, while simultaneously dropping his pants.
Your eyes are suddenly drawn to his dick in full view. You can feel a tingle in your lower regions and realize that you might be a little wet. You're not used to having a vagina and it honestly feels like you had an accident. More new sensations!. Honestly, these new experiences are only getting more and more interesting.
He's already begun stroking it by the time he reaches you and forces a kiss on you.
As his tongue is in your mouth, you taste sweat. A bit unpleasant, but hey. New experiences!
<<set $p.acceptance to $p.acceptance + 1>>
<div class='row right'>
<div class='right-msg'>Mmmh! Are you food, cause I need you inside me!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Momentary confusion crosses his eyes, but he immediately goes back to what he was doing. You're moaning as his hands start grasping your breasts and crotch
<div class='row left'>
<div class='left-msg'>Guard<hr>Garret, what the Hell are you doing to the poor woman, what the fuck is wrong with you!?
If you paid for a whore you do that back at the brothel, not here!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<img class="passage-image" src="demongodsassets/people/fullbody/jared.png" >
<div class='row left'>
<div class='left-msg'>Guard<hr>
I'm sorry Miss, my name is Jared and I'm the captain here. Please go back to the brothel for now.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Hello Jared, whats a whore?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Jared<hr>I... apologize if I was mistaken. Well no matter. Could you please tell me who you are and why you're here? <<if $outfit.outfit is "none">>And what happened to your clothes?<</if>>
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<<if $outfit.outfit is "none">>
<div class='row right'>
<div class='right-msg'>I've never had any clothes before. I can't wait though. How do I get some?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Jared<hr>You've never had clothes before? Oh you poor thing. Are you homeless from another city? But your skin is so fair and clean. I can't imagine you struggled too much. Did you perhaps bump your head?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oh I've been plenty dirty, usually when I cook! I did wake up on the grass though, maybe I did bump my head?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Jared<hr>*whispers to Garret* I think Gypsies did something to her mind, or maybe she got an injury.
You're a cook? Well while there's technically no law against it, it's still frowned upon to wander around naked. Come inside, I'll get you a bite to eat and something to wear.
Come along, and welcome to Blackpool.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<<else>>
<div class='row right'>
<div class='right-msg'>Hmm, who I am... You can call me <<textbox "$name" Grill>>
I'm a grill! Wait no, Girl! I have tons of experience taking a lot of meat!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Jared<hr>So you're a whore?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>What is that, is it tasty?
I guess you could say I'm a cook.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Jared shakes his head. This conversation is getting to him.
<div class='row left'>
<div class='left-msg'>Jared<hr>*whispers to Garret* She's obviously not a cook, not with skin that fair. But I don't think she's lying either. She might be some noble's maid, maybe he raped her and dumped her to hide what he did. Or maybe something happened and she got injured. She doesn't seem to be from our town, but I'm going to ask around.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Ooh, are you talking about me?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Jared clears his throat
<div class='row left'>
<div class='left-msg'>Jared<hr>I'm really sorry about that miss. Please come with me, and welcome to Blackpool.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<</if>>
You follow Jared to the Guard Tower. He steps away for a moment.
[[2 hours later|grill city pt2]]
</p>
</div>
<div class="conversation">
<p>You begin your trek towards the mountain in the distance.
It starts to get dark and you realize you should probably find shelter.
You walk around the base of the first mountain you approached until you find a barely worn path. You begin your trek up that path until, in the distance you see a cave. You can't tell how big it is, but it's big enough to at least shelter you for the night. Unfortunately there is no clear path to the cave, so you'll have to climb through the bushes to get there.
You finally make it there, and as you enter the cave you see a door just inside.
<img class="passage-image" src="demongodsassets/img/backgrounds/cavedoor.png" >
Check it out! A door! In a mountain! Nothing weird about that.
<img class="passage-image" src="demongodsassets/img/backgrounds/cavebed.png" >
You enter inside, as soon as your eyes land on the bed you immediately jump on it and just pass out.
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Well, it's not often that people come to my home and offer themselves to me
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
You wake up feeling groggy and look at the source of the voice.
You see a gorgeous winged woman with horns.
<img class="passage-image" src="demongodsassets/people/fullbody/rhelyla.png" >
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>But I'm not really into women, so you need to get up.
And you need to explain to me how you entered.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
Wow! You're a human, and you've already met your first human!
<div class='row right'>
<div class='right-msg'>Hello fellow human!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You look around seeing that you clearly missed how much stuff was here. It's clear this place wasn't abandoned.
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>You... Do you not see the horns, my wings? my tail? Clearly I'm not human.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
She stands and does a spin to show off her "human" body.
You just shrug
<div class='row right'>
<div class='right-msg'>All humans look the same to me. Though you're the first one I've spoken to, with my own voice!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Are you... ok?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
She looks at you quizzically.
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Nevermind, how did you find this place?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I just saw a door. Human customs are new to me, I just learned them. But I did try knocking!
When no one responded, I also tried asking the door but that was unresponsive too. I guess I can't hear it's response with my human ears though.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>...
You say you saw the door?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>Her face softens.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I see. You're one of us.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
You look at her confused.
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Well, I can't have you staying here. This is my territory. Where are you trying to go?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I don't know. Some lady just told me to come here and kill some demons or something. But honestly I'm just happy to be here!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Kill... Demons? But you're a demon. I am too.
Unless you're referring to those things that call themselves Gods? If so, I recommend you stop now. Nothing but your death will come of that. If you were sent to kill me, well I recommend you discover yourself before you try that, then reconsider.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>This lady is pretty. Her words don't make a lot of sense, but she's probably just hungry.
</p>
<<if $outfit.outfit is "none">>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>You need to leave, but here. I've got some clothes you can take with you.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
She hands you some clothes to wear. They look very provocative, so many new things to try and you already get to try being a slut!
You check yourself out in the mirror. You look beautiful.
<img class="passage-image" src="demongodsassets/you/clothes/nohorns/noears/black/revealingdress.png" >
You apologize once more, and thank her for her help, then you head towards the city.
<<set $outfit.outfit to "revealingdress">>
<<set $wardrobe.outfit.push("revealingdress")>>
<<else>>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Most don't believe we exist, but some do and they can be a problem.
By the way, my name is Rhelyla.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
You apologize once more, and thank her for her help, then you head towards the city.
<</if>>
</p>
[[head towards city|grill city][$currentlocation to "blackpoolgate"]]
</div>
<<set $metbeforecity to true>>
<div class="conversation">
<p>After the guard named Jared brings you to the guard tower, he <<if $outfit.outfit is "none">><<set $outfit.outfit to "rags">><<set $wardrobe.outfit.push("rags")>>gives you some rags to wear and <</if>>brings you some bread and heads out promising to return soon after checking missing person logs and reaching out to a couple families.
<<if $outfit.outfit is "rags">><img class="passage-image" src="demongodsassets/you/clothes/nohorns/noears/black/rags.png" >
<<elseif $outfit.outfit is "jeans">><img class="passage-image" src="demongodsassets/img/scenes/breadjeans.png" >
<<else>><img class="passage-image" src="demongodsassets/img/scenes/breaddress.png" >
<</if>>
You chew on the bread as you really were starving. But while there wasn't much to begin with, your hunger isn't even a little bit sated.
<div class='row left'>
<div class='left-msg'>Jared<hr>Well, good news and bad news.
The bad news is we weren't able to find anyone missing matching your description. We checked noble houses, their maids as well as the brothel and tavern. I suppose it's possible you were a peasant's daughter, though that's hard to believe with your unnaturally good skin. But we have no way of reaching out to every peasant family. And... If you want my brutal honesty, lass. If you're from any family, noble or otherwise, and they haven't reported you missing. I'd wager there's a good reason you wouldn't wish to return to them.
I think it's likely you came from another town.
That said, the good news is that I was able to negotiate for you to stay. From now on, unless you do remember anything, your name is $name.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
Well the only person who would report you missing is a whole world away. Then again you didn't come with your body, did you leave a corpse? A grill corpse? But it's good to know that someone else was able to fill in the gaps in your story.
<div class='row left'>
<div class='left-msg'>Jared<hr>Now you clearly haven't got a penny to your name, and we got no place to offer you. My wife would kill me if I brought you home and well...I don't recommend staying with Garret.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
Jared hands you some money. Someone said "People aren't normally that nice", but Jared proved them wrong!
<div class='row left'>
<div class='left-msg'>Jared<hr>
Here, this is some of my own money. 200 copper won't get you far, but you should be able to get a nights stay in an Inn while you figure stuff out. I wouldn't be able to live with myself if I knew you had to sell your body for a bite to eat and a place to sleep.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Wow thanks mister!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Jared<hr>Aye lass. Just keep your head down and stay out of trouble. And I recommend you find a way to earn money fast and hire a guard. A woman with skin as fair as yours is likely to be kidnapped for ransom, or never seen again.
For now, head north and turn right when you see the market. If you keep going straight for a bit, you should run right into the Inn.
Once you've got some money, if you ask me most of our apothacaries are quacks. But maybe one of them can help you recover your memory.
I'm sorry we can't help you more, but if you remember anything else please stop by and we'll do what we can.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Jared<hr>Donut worry! I'll be ok!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You thank him one last time, as you head out and try and find this Inn.
</p>
[[enter the city for the first time|grill enter city][$currentlocation to "blackpool"]]
</div>
<div class="conversation">
<p>This place is huge! You turned right at what appeared to be a market, you went down a road and found a building with lots of people laughing and clinks of glassware bringing you a sense of nostalgia. You asked a man on his way in and he pointed you in another direction. Eventually you come across what could only be described as an Inn.
It even has the cliche grumpy old man sweeping up outside!
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/innkeeper.png" >
You walk up to the building, finally at an end to your long trek and see a man sweeping in front of the entrance. Before you get a chance to say a word he already opens his mouth.
<div class='row left'>
<div class='left-msg'>Innkeeper<hr>We're full.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/innkeeper.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Lucky! I'm starving!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Innkeeper<hr>You daft, lass? I said we're full. Bugger off.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/innkeeper.png">
</div>
</div>
He pauses looking you up, starting at your legs and moving upwards to your face.
<div class='row left'>
<div class='left-msg'>Innkeeper<hr>Hehe. I suppose I can make an exception if you're willing to make a deal.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/innkeeper.png">
</div>
</div>
He starts rubbing his crotch through his robe while looking at you.
<div class='row right'>
<div class='right-msg'>Ok!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Innkeeper<hr>What?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/innkeeper.png">
</div>
</div>
The Innkeeper is taken aback. He's not used to women, especially women as beautiful as you, being so easy!
<div class='row right'>
<div class='right-msg'>What kind of deal do you want? We can deal cards! Oh or drugs! Or wait, do you mean we make a deal? Why does this language have so many uses for the same word!?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The Innkeeper steps away from you
<div class='row left'>
<div class='left-msg'>Innkeeper<hr>I changed my mind. Get lost. You're freaking me out.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/innkeeper.png">
</div>
</div>
What!? You offered me a deal! I want to experience it! No take backsies!
--grumpy face img--
<div class='row left'>
<div class='left-msg'>Stranger<hr>Hey lady!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
You look at the source of the voice and see a somewhat disheveled, dirty man. He's clearly drunk.
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/creep.png" >
<div class='row right'>
<div class='right-msg'>Hello!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Stranger<hr>I got a place you can stay. I got food too! All it'll cost is 20 copper!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Ok! I love food!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Heheh. I'm a cook, you'll love my food.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oh I cook too!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
This guy cooks! There's no way someone who cooks could ever be a bad guy! Unlike that take-backs shitty Innkeeper.
[[Accept his offer|Accept his offer (grill)]]
</p>
</div>
<div class="conversation">
<p>
<<switch random(3)>>
<<case1>>
As the man entered, he found you lying on the couch, your dress having ridden up your thighs. The very edge of your panties visible. You act nonchalant, like it wasn't intentional to tease him from the start, and motion him to sit next to you. He moves his face towards you, and you kiss. Your tongues start to touch and passions begin to rise. You stumble back to the bed and made out like you both just hit puberty. He ran his hand over your clavicle, his skin hot to your touch. You start fidgeting with the buttons on his clothes, before you tug them off. His cock springs to attention.
He pulled a strap of your dress down, and broke away from kissing. He dived into kissing your neck and shoulders, you could sense his cock stiffening in his pants.
You stand up and he follows, but you push him back down on the bed. You wrap your warm soft hand around his dick and gasp at how firm it is.You start kissing around his cock<<if $genderstart == "male">>, remembering how you used to like it when you were a man, though your hunger quickly pushing those thoughts out of your mind.<<elseif $genderstart == "female">>, how you used to do it in your old life.<</if>>
<img class="passage-image" src="demongodsassets/sexscenes/blackpool/brothel/bj/1.png" >
You gave his cock head a few soft kisses while stroking it gently. You can sense his eyes on you as you open your mouth and slowly take his length in past your lips. With your succubi senses, you can feel your own phantom cock being sucked, making it easier to know exactly what feels good. You can feel your own mouth, warm, soft and wet. You bob up and down, slowly while swirling your tongue around it.
He groans as he grabs your hair, you continue working his cock eagerly.
<div class='row left'>
<div class='left-msg'>Man<hr>Oh God
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
your only response is to take more of his cock down into your throat. Your lack of a gag reflex definitely makes things more confvenient.
The man starts to get more aggressive, and he uses your hair as a handhold as he starts pumping in and out of your mouth, fucking your face.
Your hands grip his thighs and the feeling of your lips sliding on your own phantom cock was pure bliss. You both felt your phantom cock cum, and at the same time you felt it spurt into your mouth.
You never stopped sucking and managed to swallow his entire load. You look up at him with lust
<div class='row right'>
<div class='right-msg'>Remove the rest of my clothes
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Sensing the man likes to be ordered around, you command him.
He's already hard again, not that you have any trouble causing that to happen as a succubus. He stands up and removes your clothes, his soldier already back at attention.
<<case2>>
The man enters, and approaches you. You get to your knees, his eyes on you as you start untying his trousers and let them drop to the floor. Then you pull his underwear down. Your eyes beam as you stare at his hard cock, hungry for it. <<if $genderstart == "male">>Your hunger quickly pushes out any thoughts of revulsion you should have felt as a man.<</if>>
<img class="passage-image" src="demongodsassets/sexscenes/blackpool/brothel/bj/2.png" >
You begin to lick his balls. He groans as your tongue travelled the surface of his sac, then you pop one and then both testicals in your mouth.
His cock pulsed and twitched, which you could feel both sympathetically with your powers and as it tapped against your nose.
Looking up at him dead in the eyes, you shove his head into your mouth. He groans as you suck down hard.
You look up at his eyes, looking back at you with his cock in your mouth. Your slurping sounds as you bob your head back and forth just assisting with the erotic nature of the act.
You begin to stroke him slow at first, while you suck. Feeling both the pleasure of lips on your own phantom cock and the pleasure of someone else's cock in your mouth.
Expertly without stopping, you remove the straps of your dress. As your dress falls to the floor, with only one hand you remove your own bra. As your other hand is still focused on stroking his cock along with your mouth. You start to pleasure yourself. It feels amazing feeling a phantom cock down there, along with your own vagina being touched.
Through your phantom cock, you can tell your mouth felt good as his tip explored the cavern of your throat.
With renewed determination, you decide you'll just make him cum again as you don't wish to stop.
You shove his whole cock down your throat, going back and forth with speed. The whole area filled with your own sounds of throat fucking as your head furiously bobs back and forth.
Your tits jiggle, and you can feel his balls wanting to explode and release. You release his cock for just a moment "Ready for your reward?♡" You ask.
Suddenly the cock in your hand jerks at the same time you feel your own phantom orgasm. He sprayed cum out, the first shot hitting you in the face. You immediately adjust his cock, aiming at your tits. Spurts of semen shoot out as his cock pulsed, icing your tits with his seed.
When he was finished, you apply some of your charm making him hard again.
He groaned as you licked the base of his cock, to the tip swallowing what semen is left there.
<<case3>>
The man enters, and you immediately get to work.
You start to kiss him and grind against him, while he gropes and grabs you. You feel his cock start to stiffen. You push him down on the bed, straddling his lap, lips pressed against his. You pull off his shirt and kiss.
His hands are on your ass, as he tentatively reaches under your skirt.
You don't stop him, so he pulls it up , <<if $outfit.outfit == "none">>fingers running over the bare skin of your ass. You didn't wear any underwear this time<<else>>Fingers running over the bare skin of your ass, you lift your butt just a bit, so he can help you remove your underwear.<</if>>His dick only further stiffens.
You climb off of him and guide him to stand. You untie his pants and pull them down with his underwear like an expert. You kneel in front of him, lips parted and glistening, shooting him a smile. His dick hangs in your face, fully erect.
<img class="passage-image" src="demongodsassets/sexscenes/blackpool/brothel/bj/3.png" >
You grab it, pumping the base of his shaft with your hand. You bring the tip of his cock to your mouth and then you're sucking on it.
An onslaught of pleasure on your phantom dick, from your pumping and licking. You can sense his desire for you growing.
You look up, as you see an expression of awe on his face. You giggle around his cock. You grab the base of his cock, swing it back and forth across your lips and outstretched tongue. He moans.
<<default>>
Your hand passes over his crotch, he's soft to your touch at first. But you place your thumb on the topside of his cock and run your finger up and down the bottom of his shaft, using a little bit of your charm power on him.
A drop of precum on the tip of his shaft, you can see the liquid glistening in the dim light as you continued flicking your fingertip over his frenulum. His muscles contracting with every touch.
<img class="passage-image" src="demongodsassets/sexscenes/blackpool/brothel/bj/4.png" >
As his pulsations increase in frequency, you could feel his precum wetting the top half of his shaft. You watched the clear fluid run down until it became a stream forming on a pool on his stomach. You felt his/your cock clench tighter until you knew one more stroke was all it needed.
Your face between his legs, he looked down from your perfect, curvy ass, down your back and back to your eyes. Without breaking your stare, a smile forms across your lips. You could feel a tongue run across your phantom balls, as you run your tongue against his.
You feel a surge of electricity from the phantom limb as you take him into your mouth. You bob up and down over his cock, your eyes still locked until finally you draw him deep into your throat.
You felt him twitch in your mouth, and you could tell from your own feeling that he was about to cum.
Instead of giving him release, you crawled up the bed and turned around so you were lying on your back with your legs spread wide, bent at the knees.
<div class='row right'>
<div class='right-msg'>My turn~♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
He came to you, allowing your lips to touch and tongues to dance. He ran his hands down your body. His fingertip entered inside of you, followed by a second finger, then pushed them deep inside you. You could feel your walls pulsate around his fingers, soaking him. He removed his fingers, leaving a visible trail of wetness until they reached your breasts.
He moved between your legs and took you into his mouth. His lips against your pussy lips. His tongue ran down, drinking you in before finally bringing his lips around to your throbbing clit. You're rocked by orgasmic contractions as he held his mouth against you and drank the flood of your juices.
<</switch>>
<<switch random(2)>>
<<case1>>You have your partner lay back. He rets on his elbows and watches you climb onto the bed.
You grin at him, maneuvering yourself over his hips. You grab his shaft, stroking it, guiding it, before sitting on it and letting it plunge into you.
You experience an explosion of pleasure as you feel your phantom cock enter a pussy so tight, so hot, so wet. While also feeling something so hot and so hard entering you. His eyes are on his dick, watching it slide into your petite frame, watching his cock fill you up, stretch you wide.
You start slowly, rolling your hips, riding him like he's a horse. You take his hands, bring them to your tits, two tight little handfuls. He plays with your nipples while you fuck him and bite your lip in pleasure.
You work up your pace, taking him inside you with an increasingly quick rhythm, sitting down on his cock until his balls are pressed against your ass.
<div class='row right'>
<div class='right-msg'>So deep~♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
He grabs your hips, arms flexing, muscles straining as he drives you harder and faster onto his cock.
You love it, lips parting in pleasure, a happy daze growing on your face.
<div class='row right'>
<div class='right-msg'>Aah, aahh ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
you moan, pinching your own nipples.
<<case2>>You lay on your back, and this strange gentlemen gets on top of you. He teases your entrance with his cock before he can no longer resist and inserts himself. Feeling your phantom cock insert into something so wet, warm and hot at the same time you feel something going into you, You moan "Aaah ♡"
His cock, throbbing so heavy inside of you, you can't help but moan softly. His hot breath lands across the junction between your neck and shoulder, you kiss his mouth.His fingertips dig into your hips, keeping you still on the muscle of his thighs and weight of his length. The heat surging into you at a curling speed, dulling your vision with the distant promise of sheer ecstasy. You're feeling exactly what he's feeling, but more.
He looks at you and you tell him what you sense he wants to hear;
<div class='row right'>
<div class='right-msg'>I feel so full, You're so hot
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
you barely make out before his hands slam you against him.
He groans, and you feel him get harder inside of you. You relax your body, listening to the sound of skin slapping against skin. His hands move from your hips to your thighs, his thumbs squeezing hard into you to hold you in place.
<div class='row left'>
<div class='left-msg'>Man<hr>You're beautiful,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
with so much sincerity you might have fallen for him if you didn't already know this about yourself.
<<default>>
The man was exhausted and ready to stop, but you had other ideas. You applied your charm magic causing his erection to harden.
He stood on the floor at the edge of your bed and pulled at your legs, sliding you down the length of the bed until your knees were at his sides. He took his cock in his hand and ran the head up and down your slit, moistening the crown. He pushed his thumb down at the base giving him the perfect angle, the head of his cock held just inside you. Your clit was gently twitching, calling, begging to be penetrated.
His pelvis slowly pushed forward as his cock slowly disappeared into you, until it sat at its base.
<div class='row right'>
<div class='right-msg'>Fuck me, fuck me fuck me!♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
His hands grasped at your thighs, his cock disappearing and reappearing back into you, slowly at first. Your wetness left a visible coating on his cock. As the volume of your moans increased, so did his thrusts. The room filled with the sound of wet skin on skin contact. Your moans turned into screams as you felt his cock drive hard into you. In and out, in and out, the intensity increased.
<</switch>>
<<switch random(3)>>
<<case1>>
You sit on his cock and look him in the eyes and mutter to him;
<div class='row right'>
<div class='right-msg'>Finish in me, however you want
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<img class="passage-image" src="demongodsassets/sexscenes/blackpool/brothel/top/1.png" >
He maneuvers you to your hands and knees, ass round and glorious in his face. He kneels behind you, hands on your wait for leverage. He fucks you doggy style with fierce, acute thrusts. You moan in pleasure, feeling your tight vagina clamp down on his cock on both the giving and receiving ends.
You both cum. For you, you felt it out of both his cock and your vagina. An intense wave of of pleasure as his cock pumps you full of spunk. He holds you in place until he's done, using your tight pussy to milk his cock dry.
<<case2>>
<div class='row left'>
<div class='left-msg'>Man<hr>Would you like me to cum inside you?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
He bucks up to you, hitting a critical spot inside you that it nearly knocks the breath out of your lungs.
<div class='row left'>
<div class='left-msg'>Man<hr>You're so tight, I wanna fill you up
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Please
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You barely manage to moan out your response, clutching onto his hands. After having the shape of his cock in you for the past several minutes, feeling the same size, shape and heat pushing you over the edge in motion, has your abdomen trembling through sheer white hot buzz.
You're barely moving on your own accord, his hips are doing all the work, fucking into you so smoothly like he knows how much it drive you crazy. You start rolling your hips against his thrusts.
<div class='row right'>
<div class='right-msg'>Cum inside
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You look at him, begging with your eyes.
He gasps into you, hot breath burning where it spreads. Sloppy blazing heat gushes into you as his hips pause. You can feel him cumming with your powers, that explosion of ecstasy, at the same time your orgasm is spreading as his hot cum spreads inside of you.
<<case3>>
<img class="passage-image" src="demongodsassets/sexscenes/blackpool/brothel/top/2.png" >
You took the cock inside you, feeling the man release precum inside you adding to the wetness you already had. A jolt of electricity between your phantom cock and your pussy, you felt the walls of your pussy clinch around his cock, slowly at first, causing him to buck harder into you like a ravenous animal until you could no longer hold back.
Biting your lip, you wrapped your legs around him, pulling him deep and holding him in place. A lingering moan passes your lips as your thighs began shaking at his hips. Your pussy squeezed and milked his cock as you came. In that next moment, he lost control as well.
He grasped your hips, and drove himself deep inside you one last time as the pulsations of his cock became hard contractions. As his cock twitched, you felt his cum flood into you. The contractions of your pussy meeting with the pulsations of his cock, demanding every last drop from him.
<<default>>
His cock is so hard and now very wet from you. You take a couple of breaths before positioning and pulling him down your throat.
<img class="passage-image" src="demongodsassets/sexscenes/blackpool/brothel/top/3.png" >
He thrusts deeply, instead of just holding in in your throat, you have to struggle to keep your hands between your legs so you can continue to pleasure yourself too. You feel your clit swelling intensely.
Time stops as he fucks your face for a while, and you watch as he leans his head back. You feel his tension building and needing release.
You taste him. You begin to moan, but after a few very deep thrusts he pulls out. The head of his cock dripping with saliva that also dripped down your chin.
You stand up, your legs feel weak and pussy throbbing so hard it takes focus to stand. He tells you to bend over the table.
You do as he asks, the table feels cold against your flush skin. You feel him firmly grab the back of your neck before slowly running his hand down your spine and grabbing your ass. He kneads and slaps your ass cheek hard, and you brace yourself for another slap. Instead he reaches down and grabs your pussy so he can feel how nice and wet you are.
You try to turn back and look at him, but he is firmly holding you down by the back of your neck. He lightly pinches your clit making you squirm, before he slides his fingers inside of you and your whole body moves.
<div class='row right'>
<div class='right-msg'>Give me your cock!~♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You feel him slowly start to stretch you out, as you gasp in delight. The pressure is overwhelming.
He's amost ready to slide his cock all the way inside you, he stands up but keeps you forced down against the table with one hand. You can feel yourself edging towards climax, the pressure of his head deep inside you and his thickness stretching you further is what sends you over the edge. You love the deep pleasure mixed with pain that sends electric waves up your spine.
You start breathing harder, your breathing and moans change as you tighten around him and your knees buck with orgasmic contractions as you experience yet another orgasm.
You can tell he's going to cum soon by the way his cock feels, and the way he's pumping into your greedy slit. Your excitement at the meal grows. Just as you start to cum again, he pulls out and tells you to open your mouth.
His hand moves down to his cock as you get on your knees obediently. You moan loudly as you feel him cum hard on your tongue and face, careful to make sure that any missed drops land on your tits. You don't want it to be wasted.
You taste him and watch him continue to stroke as you let out a satisfying moan. You lick the tip of his cock with your tongue.
He gently leans down and wipes cum off your face with his finger, and sticks it in your mouth, you feel more contractions as your body cums one last time.
<</switch>>
<<nobr>>
<<set $cummod to 70 + ($slutfame * 2)>>
<<set $inv.cum += $cummod>>
<<set $coppermod to ($slutfame + 20) * 2>>
<<set $inv.money += $coppermod>>
<<set $arousal to 0>>
You have fed. Your hunger is back to 0.
You gained $coppermod copper in tips!
You gained $cummod in cum!
<</nobr>>
<<if $energy gte 30>>
[[work another shift|Work at the Brothel][$energy -= 30, $slutfame += 1, $p.acceptance += 1]]
<<else>>
You're too tired to work another shift.
<</if>>
Go back to [[town]]
</p>
</div><div class="conversation">
<<switch random(2)>>
<<case 1>>
<<if $horns is true>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/alraune/horns1.png" >
<<else>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/alraune/1.png" >
<</if>>
You step towards the plant woman, carefully stepping your bare feet on her petals as you move closer to her. Any resistance she previously had is gone. She's completely defenseless to your advances, letting out loud moans as you approach. No longer able to hold back, her vines start caressing your body, you smell the scent of musk and flowers. Her long slender fingers wrap themselves around your shoulders as you come in close, pulling you close and pressing her lips against yours. Your heart beats faster and your breath becomes short and shallow as you kiss the Alraune.
One of her vines teases your back entrance as her right hand moves to your cunt and her mouth moves to one of your nipples. You moan softly into the Alraunes' mouth, enjoying the attention she pays to you. After several minutes of kissing and groping eachother, the alraunes vine gently pushes into your ass, it's cock-head already lubed with its own precum. You feel it push into you and begin to thrust, entering you inch by slow inch. The sensation of it sliding into you sends shivers throughout your entire body. You arch your back and moan loudly as it fills you up, and it responds by grabbing your hips tightly and driving even deeper. She removes her hand, and grabs one of her own cock-vines. She sucks on the tip for just a moment, before guiding it to your dripping twat.
Your mouth goes to her sweet nipple tasting of nectar, as she begins to stroke herself as she fucks you, watching intently as her cockvine slides between your slick labia and into your hot cunt, the pressure building steadily inside you. Her hands grip harder as she feels her climax approaching, and you can feel it too. You get on your knees, giving her easier access and giving your mouth access to her cunt as you move some of her larger flower petals away from the entrance. You lick around the outer rim of the swollen clit, teasing it lightly. Then you plunge your tongue inside the moist hole, flicking it around her sensitive flesh as you suckle on it greedily. You feel the tension build in the alraune and she lets out a loud moan, her vines pumping you harder and faster and buckling under the pleasure coursing through her body. You hear a wet slap and feel warm splashes hit your face and hair, followed shortly after by a string of cum shooting. Multiple vines around you have erupted in sticky white cum as they spray the two of you.
You swallow everything, savoring every drop as she pulls out and collapses on the mossy floor.
<<case 2>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/alraune/2.png" >
You step forward towards the Alraune, eager to taste her. You step gently, a little worried you might cause her pain by stepping on her oversized flower petals. She doesn't seem to mind though, and once you've stepped past them, you kneel down beside her and place your hands on either side of her head. Her dark brown eyes meet yours as you bring your face near hers, a sad expression on her face. Not for herself, but for what she worries she's about to do to you. She resigns herself to the lust, she closes her eyes and opens her mouth, her vine-cocks already teasing your slit. She tilts her head back so you can slide your tongue into her mouth, which you gladly accept. Her tongue swirls around yours as her petals rub against your legs and thighs. When you pull away, she follows suit with her own mouth opening wide, pushing her tongue back in your own mouth.
The vine cock at your slit is already lubed up from your own juices as it's rubbing against you. You keep grinding your cunt against it, inviting it inside. Soon enough, it stretches you open and begins sliding into you, filling you with it's thick length. The pleasure shoots through your body causing you to shudder violently as you feel it enter deep inside you. You both moan into eachothers mouths. You reach up and cup your breasts in your hands, squeezing them together as you feel her cock push deeper and deeper into your cunt. You look down and see she's already inserted one of her own vine cocks inside her own dripping pussy, her other one still buried within you. She guides your hands to her tits, encouraging you to fondle them as she keeps fucking you. She takes your left breast into her mouth, sucking on it as she continues to fuck you with her vine. She works your nipple roughly with her teeth and tongue, biting it softly and tugging on it.
Your pleasure has been growing as one of her mild orgasms triggers a sympathetic orgasm in your own body. You feel her cock spurt inside you, at the same time you feel a cock you don't have spurt inside of something warm and wet. It spurts again, and yet again. Your body shakes uncontrollably as you cum hard, shaking your whole body as wave upon wave of intense pleasure courses through you.
Suddenly her body tenses up and she bites hard on your nipple, her cock beginning to pump you and herself full of cum. You let out a muffled scream as you cum again, this time feeling her cock erupt inside you with equal force. You feel the last few drops fill you up before her cock withdraws from your twat. Having sucked enough energy from the Alraune, she passes out.
<<default>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/alraune/3.png" >
You step forward to the alraune, gazing at her beautiful flowery hair, and the flowers that fold around her legs like a beautiful red dress. As you step closer, the flower begins to unfold, giving you a perfect view of her dripping pussy. You press your palms against it's soft petals and run your fingertips along their edges, tracing the curves and lines of the petals. Her pussy looks the same as any other woman, other than the nectar scent surrounding it. Who are you to keep her waiting? You kneel down in front of her, and begin stroking it.
Her pussy folds back further revealing the pinkish flesh underneath, her clit sticking out prominently from it's hood. You touch it, running your fingers across it's smooth hairless surface. You open your mouth and stick out your tongue, licking it slowly as you continue stroking her pussy with your hand. Her clit grows in size beneath your tongue and soon it's poking out above it's hood, begging for more attention. You give it some gentle licks and strokes as she gasps and moans above you, her hands gripping your hair.
Her vines have found your breasts and have begun stroking them, but unable to wait any longer, you grab one of them and shove it inside your own dripping snatch, using your free hand to squeeze your breast. The alraune grunts and cries out as she comes, spraying your into your cunt with her tainted cum, overflowing and pouring out of you. Neither of you are ready to finish yet, and so you keep going, her vines stroking your breasts and playing with your nipples as you play with her pussy. Her cock is coated with your juices and her own cum, making it easy to slide into your hungry cunt without much effort.
Getting an idea, you grab the vine currently playing with your breasts, and you shove it into her own gaping cunt. She screams out in surprise and pleasure as you take control of her own sex toy, fucking her with it until she's moaning and crying out in ecstasy. She pulls your hair, barely able to contain her pleasure as her body violently convulses from an orgasm. A second later, you get to experience her orgasm through your own sympathetic orgasms as your entire body explodes in tiny electric sparks. She explodes again as she floods your womb with seed, as well as her own.
Having worn her out and stolen a good deal of energy, she's spent and passes out.
<</switch>>
You gain 100 exp and 100 copper!
<<set $lust += 100>>
<<set $inv.money += 100>>
The Alraune imparts the Dryad Queen's favor to you!
Your health is partially restored, your energy surges with newfound vigor, and any lingering desires have been quelled!
<<set $energy to Math.min($maxenergy, $energy + Math.round($maxenergy * 0.5))>>
<<set $arousal to Math.max(0, $arousal - Math.round($maxarousal * 0.25))>>
<<set $p.hp to Math.min($p.maxhp, $p.hp + Math.round($p.maxhp * 0.25))>>
<<if $currentlocation is "forest1">>
[[move on|forest1]]
<<elseif $currentlocation is "forest2">>
[[move on|forest2]]
<<elseif $currentlocation is "forest3">>
[[move on|forest3]]
<</if>>
</div>
<<set $arousal to 0>><div class="conversation">
<p>
<img class="passage-image" src="demongodsassets/img/apt/office.jfif">
You're at another work event at your companies office. Usually you guys work from home, but for some reason they force you guys to come into the office for team building events. Sure, you show up to all the invites that involve free food, but that's different. Here you have to pretend to care about all the morale building stuff they do. Team Lead dyed her hair green because your team managed to hit all their goals?
...yaaay. As the team lead started passing out the packets for the colors test, you rolled your eyes. You doubt you'll ever enjoy these cheesy team building exercises, it's like when a company claims "we're all a family here". Yet it's easy for them to say when they're the boss. The company organizes those super-exciting team-building events that everyone just can't wait to attend? Nothing brings us "family" members together more than a day of forced fun and awkward icebreakers. And when they make decisions that directly impact us, they always have our best interests at heart, right? I mean, who needs dental care anyway? American dental procedures are just a few thousand dollars without insurance, so it's not like it's a big deal or anything. After all, we're one big, happy family looking out for each other, aren't we?
You put your thoughts and frustrations aside and listen to the instructions. Across the table, your colleague Sarah was practically jumping for joy about the test. She loved personality quizzes, and it wasn't uncommon she'd tell you what type of hamburger you were based on some stupid unrelated questions.
Whatever, you'll just do your best to rush through the questions like usual. Will you actually read them this time, or will you just pick randomly?
</p>
A surprise attack disrupts your quest. How do you react?
a) I charge into battle, my anger fueling my strikes.
b) I manipulate the enemy into finishing my quest
c) I calmly assess the situation and adapt my strategy.
d) BIG STICK SOLVE PROBLEM
<<listbox "_colors" autoselect>>
<<option 'a'>>
<<option 'b'>>
<<option 'c'>>
<<option 'd'>>
<</listbox>>
You face a mysterious and ancient puzzle to unlock a hidden treasure. How do you approach it?
a) BIG STICK SOLVE PROBLEM
b) You kidding? I'm fantastic at puzzles!
c) I get distracted and give up, who cares about a stupid puzzle
d) I trick a scholar into doing the work for me
<<listbox "_colors2" autoselect>>
<<option 'a'>>
<<option 'b'>>
<<option 'c'>>
<<option 'd'>>
<</listbox>>
You must select an ally to join your party for a perilous quest. How do you choose?
a) WHOEVER HAVE BIG STICK
b) I carefully weigh my options and choose someone who brings balance to the team
c) I manipulate someone into joining
d) Why choose? Bring them all!
<<listbox "_colors3" autoselect>>
<<option 'a'>>
<<option 'b'>>
<<option 'c'>>
<<option 'd'>>
<</listbox>>
Your party faces a dangerous decision that could have dire consequences. How do you proceed?
a) I calculate the best course of action
b) I flirt with someone and use them as my meatshield
c) I convince my team to follow my plan, even if I don't have one
d) BIG RISK; JUST USE BIG STICK
<<listbox "_colors4" autoselect>>
<<option 'a'>>
<<option 'b'>>
<<option 'c'>>
<<option 'd'>>
<</listbox>>
You attend a grand ball in a royal court. How do you behave?
a) Noone will leave without knowing my name
b) I use party tricks
c) I look for the ones in charge and manipulate the conversation in my favor
d) I'm shy and wait for people to come up to me
<<listbox "_colors5" autoselect>>
<<option 'a'>>
<<option 'b'>>
<<option 'c'>>
<<option 'd'>>
<</listbox>>
<<link 'Confirm' 'Madventure start'>>
<<if _colors is "a">>
<<set $p.magic -= 1>>
<<set $p.melee += 1>>
<<elseif _colors is "b">>
<<set $p.charm += 1>>
<<set $p.magic -= 1>>
<<elseif _colors is "c">>
<<set $p.charm -= 1>>
<<set $p.magic += 1>>
<<elseif _colors is "d">>
<<set $p.charm -= 1>>
<<set $p.melee += 1>>
<</if>>
<<if _colors2 is "a">>
<<set $p.melee += 1>>
<<set $p.magic -= 1>>
<<elseif _colors2 is "b">>
<<set $p.magic += 1>>
<<set $p.melee -= 1>>
<<elseif _colors2 is "c">>
<<set $p.melee += 1>>
<<set $p.charm -= 1>>
<<elseif _colors2 is "d">>
<<set $p.charm += 1>>
<<set $p.melee -= 1>>
<</if>>
<<if _colors3 is "a">>
<<set $p.melee += 1>>
<<set $p.mdef -= 1>>
<<elseif _colors3 is "b">>
<<set $p.mdef += 1>>
<<set $p.melee -= 1>>
<<elseif _colors3 is "c">>
<<set $p.charm += 1>>
<<set $p.pdef -= 1>>
<<elseif _colors3 is "d">>
<<set $p.pdef += 1>>
<<set $p.mdef -= 1>>
<</if>>
<<if _colors4 is "a">>
<<set $p.magic += 1>>
<<set $p.melee -= 1>>
<<elseif _colors4 is "b">>
<<set $p.charm += 1>>
<<set $p.magic -= 1>>
<<elseif _colors4 is "c">>
<<set $p.charm += 1>>
<<set $p.melee -= 1>>
<<elseif _colors4 is "d">>
<<set $p.melee += 1>>
<<set $p.charm -= 1>>
<</if>>
<<if _colors5 is "a">>
<<set $p.charm += 1>>
<<set $p.magic -= 1>>
<<elseif _colors5 is "b">>
<<set $p.magic += 1>>
<<set $p.charm -= 1>>
<<elseif _colors5 is "c">>
<<set $p.charm += 1>>
<<set $p.magic -= 1>>
<<elseif _colors5 is "d">>
<<set $p.magic += 1>>
<<set $p.charm -= 1>>
<</if>>
<</link>>
<p>
What's with all the fantasy shit?
</p>
</div>
<<nobr>><<set $gender to "male">>
<<set $genderstart to "male">>
<<set $hair to "male">>
<<set $outfit.outfit to "jeans">>
<</nobr>>
<<widget 'charmscene'>>
<p>
<<if $e.name is "squik">>
<<switch random(2)>>
<<case 1>>
<<if $horns is true>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/tentacle/horns1.png" >
<<else>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/tentacle/1.png" >
<</if>>
<<if $spells.aura gt 0>>Your charming aura makes the Squik even hornier than usual. <</if>>The humanoid mass of tentacles was wriggling in anticipation. It's pulsating thin and thick tendrils dripping slimy precum, seeking a warm body to impregnate and corrupt. The air was saturated with the sweet and salty smell of cum, it numbed your mind with every breath and your nipples were tingling and erect. The smell worked liked an aphrodesiac on you as well; making your pussy moisten like never before. After all, that's how it lures it's victims. You however did not need to be lured. After using your charm skill so many times, and the smell of the creature, your succubi instincts took over and you started preparing yourself. Getting thoroughly pounded is what you're here for, regardless of whether that was your original intention. Your cunt was already dripping.
The Squik smelled your arousal, rather than walking, it slowly slithered in your direction until it was close enough to hug you. It had access to your body now, tendrils caressing your flat belly and round ass. Another pushed up between your tits, leaving trails of sticky white substance on your pale skin. Its hot flesh pressed against yours, sending shivers down your spine. That wasn't all though; its softness felt good too. In fact, it almost tickled as it spread heat throughout your body. You could smell cum mixed in with the corruption. You knew the real fun would begin when that sticky white substance was coating your insides. You moaned softly at the sensation and tried to move closer, but the tentacles kept holding you back. They seemed to want to play with their new toy first. As if they sensed your frustration, one tentacle wrapped around both your hands and pinned them behind you. The tendrils wrapped around the base of your breasts, making sure any attempt to escape would be torture on your sensitive tips.
The Squik reacted as it's tentacles began poking at impossibly tight holes. The tightening coil of the vines on your flesh would have been unbearable to anyone else, but thanks to your skill you just moaned through it. With each touch, the pleasure increased exponentially. A few more strokes from those long and thick fingers and you couldn't help but moan louder, letting out a low growl deep inside your throat. It was only natural.
The head of one of the phallic-like tentacles pressed itself into your mouth while another slid down your stomach, teasingly rubbing along your clit. You arched your hips towards it, moaning loudly again. The tip of the tentacle slipped under your skirt and found your wet folds. One after another, the tentacled monster teased your pussy lips and clit, spreading your juices across your thighs and soaking your panties. The tentacle at your pussy pressed inside, stretching you open with it's bulbous shape. It rubbed against the walls of your tunnel leaving a sticky white trail dripping from your body and out of your pussy. You experienced an orgasm that made any other joy you experienced in your past life feel like a bad memory.
The tentacle in your twat removed itself, leaving you empty and sad, though not for long as yet another took its place immediately; before the first moved upwards and rubbed and slapped its length on your face as if to assert dominance, then plunged into your waiting mouth. You open your mouth, inviting it inside, your tongue poking at the hole at the tip, triggering a floodgate of sperm into your guts while the one in your twat inflated your womb. You greedily sucked on it, feeling the smooth texture sliding down your throat. The taste of your own juice combined with the skidids musky scent filled your senses, making you dizzy. Another tentacle pressed on your ass. You gasp at the new sensation, your throat filled with more spurts of thick seed. You swallow as best you could, but one gulp is never enough. The tentacle at your ass pushed deeper, forcing your cheeks apart. It slid into your anus, causing you to let out a muffled cry. The Squik was fucking you from every orifice now!
As soon as you recovered from this latest assault, the tentacle at your mouth pulled away and two others entered. This time instead of sucking on them, you used your tongue to lick the shafts. Their slick surfaces coated your tongue as you swirled them about, tasting your essence mixed with theirs. Your orgasm came again quickly; the pleasure overwhelming you once more. The tentacle in your twat withdrew and two more replaced it, stretching and filling you up. Sensing the creatures orgasms, you could sense this fun was nearing it's end. The creature too dumb to realize it's life force was fading. You wished you could make it last longer, but unfortunately there was no way to do that, after all it would be dead when you were done. With one final thrust in all your holes, the creature gave one shudder before releasing a torrent of cum into every orifice and on your body. It covered you in thick ropes of white goo, It was such a waste.
With that, the creature fell still. You feel renewed with energy as you watched the creatures body deflate and remove it's tendrils from your holes.
<<case 2>>
In the dim forest light you could see the vaguely humanoid shape of the Squik, with a handful of tendrils moving independently in the air. You suck in a breath as you watch it approach, spreading your legs and motioning with a finger inviting it closer.
<div class='row right'>
<div class='right-msg'>Come here.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The creature didn't seem intelligent, and made no reaction to your words. Yet it moves forward, its tentacles wrapping around you and pulling you onto the ground where it lays on top of you, one tentacle wrapped around your ankle soon joined by 3 more that wrapped around your wrists and other ankle. It's grip was iron and a heat spread through you. It lifted your leg, exposing your pussy. You groan as the tentacle enters your ass from behind, pushing inside.
<img class="passage-image" src="demongodsassets/sexscenes/forest/tentacle/2.png" >
It slides in easily and fills you completely. You writhe beneath it, your toes curling as the tentacle pushes further inside. A tendril curled around your left breast, squeezing it tightly.
Another tentacle went towards your mouth, but when you invited it inside by opening your mouth, it turned and wrapped itself around your throat instead. Your body went slack, giving it strength and control. Another tendril began sucking on one of your nipples as if it were a newborn begging for milk, as the purple head of one of it's phallic tendrils bumps into your lips. You open immediately, granting it access. It sprays a burst inside your filthy twat, catching you by surprise as you open your mouth wider for another orgasm. Once the tip was inside your mouth, it forced its way down your throat and pushed it's entire length deep within you, momentarily stopping at your constricted throat, before loosening its grip and continuing.. You gag and choke, unable to breathe properly as it continues pumping. Soon the whole thing is buried in your throat. If it weren't for your powers, you'd surely be dead by now. It's a good thing you're the target this time.
You prefer being in control, but this treatment gave you a new desire to serve. The large and long cock pounding at your cervix. You know you probably should feel pain, but it's nothing short of bliss, your body momentarily pausing to shudder at another explosive feeling. Soon you feel more, tinier tendrils creeping up your legs to your already stuffed pussy. They tease your entrance with their slippery bodies before entering. Two of them enter your pussy and start working themselves into you, delicately teasing your folds almost as if this creature cared about your pleasure.
You floated in a sea of pleasure, barely able to think straight as the tentacles continued to work on you, one after another. You squirmed and moaned, trying to keep some sort of rhythm going as the beast fucked your pussy and throat relentlessly. The familiar sensation of another orgasm building in your loins made you tremble with anticipation. Just when the wave broke over you, another tentacle entered your asshole. The creature seemed to enjoy this position immensely. Every inch of it's cock was buried inside you, stretching you wide and deep.
The tentacle in your mouth and ass fell into a rhythm with the one in your pussy, overloading your nerves as another orgasm built up inside you. The tentacles at your neck and chest squeezed harder, milking your boobs for all they were worth, though sadly with nothing coming out. You felt something warm splash against your thigh. More followed, covering you entirely.
Your moans turn into gasps as you endure the slow but hard pounding, kept perilously close to bliss. Each time it slams into your cervix, it sends waves of ecstasy shooting through your body. The tentacles continue to squeeze and twist, forcing your breasts together and pinching your nipples. You can hear it getting closer to climax. Without warning it increased it's pace before slamming into your stretched asshole, holding itself deep as it unloaded more hot white liquid in every orifice. Left without strength, the beast withdrew. Lowereed to the ground and withered as you rode out the pleasure.
<<default>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/tentacle/3.png" >
As your charm spell finishes working it's magic on the Squik, you suddenly felt gently restrained around your midsection. Gently pulling you down to laying on your back. The floor below you was soft, and you could feel the cool ground on your back. You reached down to feel what was restraining you, and felt some sort of vine that was viscous and warm to the touch. It was definitely alive and part of the creature in front of you.
Multiple but smaller appendages slithered in and wrapped around your wrists and ankles, further restraining you, despite the fact that you're a willing participant. You felt two new tentacles sliding up the sides of your chest, leaving a sticky residue and massaging your soft flesh, causing you to moan softly. Your breathing became heavy and labored, the tendrils writhe along the underside of your breasts. Cupping them delicately. One of the tendrils slipped in between your breasts, snaking its way to your nipple. It rolled around it slowly, pressing inward and twisting ever so slightly until you whimpered softly. The sensation sent tingles throughout your body, especially between your thighs. Your nipples were already attentive and eager for comfort, on the ends of these tentacles were small suckers. Both lathced onto your nipples as they suckled your milkless breasts. You moaned audibly from the divine feeling.
Two more tentacles joined the first in circling your waist, keeping you pinned down as they slid down your body. The tips brushed against your sensitive pussy lips. Your skin began to get warm as you started to sweat lightly. Small aches ran along your body as you became heated and yearned for more. Almost as if it could sense your desires, a larger tentacle entered the vicinity, snaking under your leg and brushing up against your shapely ass cheek. You didn't have to guess at where it was headed, and your pussy ached in anticipation.
It was a sizeable tentacle, which had ribbed sections along the length of it, and a smooth head resembling a cock. It brushed up against your welcoming vulva, acquainting itself with your now abundant juices, sending jolts of pleasure coursing through you. As it did, the vines that bound you grew tighter around your limbs and torso, ensuring that you couldn't move much. Finding your vagina, it swiftly sank inside you, plunging deeply within. You buckled from the sudden intrusion, but only for a moment before the monster gripped your hips firmly, preventing any movement.
Once fully inside, the creature began moving its cock in and out, rubbing your walls with each stroke. The newfound pressure against your tender walls was blissful. Your body shook all over from the combined sensation of the new penetration combined with the constant stimulation of your delicate nipples. In response to your pleasurable sounds, the tentacle began to pump faster, making sure your clit got hit just right. The pleasure was intense. Your mind was clouded with lust and need, and you could do little else than moan loudly as the creature ravished your body.
Your pussy was accomodating as the tentacle probed further, the ribs along it's length scraping across your labia. Your eyes roll into the back of your head as the creature worked it's way deeper into you, making sure not to leave anything behind. When it finally reached your deepest parts, the creature paused for a second before resuming its steady pumping. Your pussy was drenched, and the appendage filled you up just right as your body quivered. The sensations were maddening. It wasn't enough that the tentacles were playing with your tits, but then they moved lower and began caressing your inner thighs, stroking them gently and arousing you even more. You arched your back off the mossy floor, moaning louder and throwing yourself into the experience.
The tentacle was as deep inside you as it could get, with nowhere else to go it began retracting and surging into your pussy repeatedly. You gasped and screamed incoherently as your body convulses with pleasure. Each thrust caused you to arch your back more violently, screaming out loud as the tentacled creature pumped you full of its seed, turning the mossy floor into a mess of fluids and slime.
Your moans became sharper and louder, drowning out the sounds of birds chirping outside the cave. All you wanted to do was cum again, and the creature obliged by fucking you mercilessly. The vibrations of its movements were strong enough that you thought you might pass out. The tentacles at your waist and limbs did their best to keep you stead as your hot body convulsed wildly and repeatedly, the sweet nectars of your pussy splashed about, soaking your legs.
Finally the tentacle slowed and pulled out, releasing a flood of hot fluid that covered you from head to toe. The tentacles at your feet and hands released you, allowing you to sit upright once more. You laid there for a moment, watching the beast shrivel and die as your body twitched involuntarily in the afterglow. You were exhausted, yet still very aroused. You looked down at your dripping wet crotch, noticing how swollen you were from having multiple orgasms.
<</switch>>
<<elseif $e.name is "alraune">>
<div class='row left'>
<div class='left-msg'>Alraune<hr> Please! You need to leave! I can't hold back anymore!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
The Alraune was barely resisting its sexual urges and was trying desperately not to corrupt you too.
<div class='row right'>
<div class='right-msg'>Sounds fun.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<if $outfit.outfit isnot "none">>
You proceed to remove your clothes. The Alraune's eyes widen in shock.
<</if>>
<div class='row left'>
<div class='left-msg'>Alraune<hr> Are you insane!?
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Nah, just really horny. <<if $genderstart == "male">>And since I used to be a guy, you creatures are much easier on the eyes for me.<</if>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<switch random(2)>>
<<case 1>>
<<if $horns is true>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/alraune/horns1.png" >
<<else>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/alraune/1.png" >
<</if>>
You step towards the plant woman, carefully stepping your bare feet on her petals as you move closer to her. Any resistance she previously had is gone. She's completely defenseless to your advances, letting out loud moans as you approach. No longer able to hold back, her vines start caressing your body, you smell the scent of musk and flowers. Her long slender fingers wrap themselves around your shoulders as you come in close, pulling you close and pressing her lips against yours. Your heart beats faster and your breath becomes short and shallow as you kiss the Alraune.
One of her vines teases your back entrance as her right hand moves to your cunt and her mouth moves to one of your nipples. You moan softly into the Alraunes' mouth, enjoying the attention she pays to you. After several minutes of kissing and groping eachother, the alraunes vine gently pushes into your ass, it's cock-head already lubed with its own precum. You feel it push into you and begin to thrust, entering you inch by slow inch. The sensation of it sliding into you sends shivers throughout your entire body. You arch your back and moan loudly as it fills you up, and it responds by grabbing your hips tightly and driving even deeper. She removes her hand, and grabs one of her own cock-vines. She sucks on the tip for just a moment, before guiding it to your dripping twat.
Your mouth goes to her sweet nipple tasting of nectar, as she begins to stroke herself as she fucks you, watching intently as her cockvine slides between your slick labia and into your hot cunt, the pressure building steadily inside you. Her hands grip harder as she feels her climax approaching, and you can feel it too. You get on your knees, giving her easier access and giving your mouth access to her cunt as you move some of her larger flower petals away from the entrance. You lick around the outer rim of the swollen clit, teasing it lightly. Then you plunge your tongue inside the moist hole, flicking it around her sensitive flesh as you suckle on it greedily. You feel the tension build in the alraune and she lets out a loud moan, her vines pumping you harder and faster and buckling under the pleasure coursing through her body. You hear a wet slap and feel warm splashes hit your face and hair, followed shortly after by a string of cum shooting. Multiple vines around you have erupted in sticky white cum as they spray the two of you.
You swallow everything, savoring every drop as she pulls out and collapses on the mossy floor.
<<case 2>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/alraune/2.png" >
You step forward towards the Alraune, eager to taste her. You step gently, a little worried you might cause her pain by stepping on her oversized flower petals. She doesn't seem to mind though, and once you've stepped past them, you kneel down beside her and place your hands on either side of her head. Her dark brown eyes meet yours as you bring your face near hers, a sad expression on her face. Not for herself, but for what she worries she's about to do to you. She resigns herself to the lust, she closes her eyes and opens her mouth, her vine-cocks already teasing your slit. She tilts her head back so you can slide your tongue into her mouth, which you gladly accept. Her tongue swirls around yours as her petals rub against your legs and thighs. When you pull away, she follows suit with her own mouth opening wide, pushing her tongue back in your own mouth.
The vine cock at your slit is already lubed up from your own juices as it's rubbing against you. You keep grinding your cunt against it, inviting it inside. Soon enough, it stretches you open and begins sliding into you, filling you with it's thick length. The pleasure shoots through your body causing you to shudder violently as you feel it enter deep inside you. You both moan into eachothers mouths. You reach up and cup your breasts in your hands, squeezing them together as you feel her cock push deeper and deeper into your cunt. You look down and see she's already inserted one of her own vine cocks inside her own dripping pussy, her other one still buried within you. She guides your hands to her tits, encouraging you to fondle them as she keeps fucking you. She takes your left breast into her mouth, sucking on it as she continues to fuck you with her vine. She works your nipple roughly with her teeth and tongue, biting it softly and tugging on it.
Your pleasure has been growing as one of her mild orgasms triggers a sympathetic orgasm in your own body. You feel her cock spurt inside you, at the same time you feel a cock you don't have spurt inside of something warm and wet. It spurts again, and yet again. Your body shakes uncontrollably as you cum hard, shaking your whole body as wave upon wave of intense pleasure courses through you.
Suddenly her body tenses up and she bites hard on your nipple, her cock beginning to pump you and herself full of cum. You let out a muffled scream as you cum again, this time feeling her cock erupt inside you with equal force. You feel the last few drops fill you up before her cock withdraws from your twat. Having sucked enough energy from the Alraune, she passes out.
<<default>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/alraune/3.png" >
You step forward to the alraune, gazing at her beautiful flowery hair, and the flowers that fold around her legs like a beautiful red dress. As you step closer, the flower begins to unfold, giving you a perfect view of her dripping pussy. You press your palms against it's soft petals and run your fingertips along their edges, tracing the curves and lines of the petals. Her pussy looks the same as any other woman, other than the nectar scent surrounding it. Who are you to keep her waiting? You kneel down in front of her, and begin stroking it.
Her pussy folds back further revealing the pinkish flesh underneath, her clit sticking out prominently from it's hood. You touch it, running your fingers across it's smooth hairless surface. You open your mouth and stick out your tongue, licking it slowly as you continue stroking her pussy with your hand. Her clit grows in size beneath your tongue and soon it's poking out above it's hood, begging for more attention. You give it some gentle licks and strokes as she gasps and moans above you, her hands gripping your hair.
Her vines have found your breasts and have begun stroking them, but unable to wait any longer, you grab one of them and shove it inside your own dripping snatch, using your free hand to squeeze your breast. The alraune grunts and cries out as she comes, spraying your into your cunt with her tainted cum, overflowing and pouring out of you. Neither of you are ready to finish yet, and so you keep going, her vines stroking your breasts and playing with your nipples as you play with her pussy. Her cock is coated with your juices and her own cum, making it easy to slide into your hungry cunt without much effort.
Getting an idea, you grab the vine currently playing with your breasts, and you shove it into her own gaping cunt. She screams out in surprise and pleasure as you take control of her own sex toy, fucking her with it until she's moaning and crying out in ecstasy. She pulls your hair, barely able to contain her pleasure as her body violently convulses from an orgasm. A second later, you get to experience her orgasm through your own sympathetic orgasms as your entire body explodes in tiny electric sparks. She explodes again as she floods your womb with seed, as well as her own.
Having worn her out and stolen a good deal of energy, she's spent and passes out.
<</switch>>
<<elseif $e.name is "slime">>
<<switch random(2)>>
<<case 1>>
<<if $horns is true>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/slime/horns/1.png" >
<<else>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/slime/1.png" >
<</if>>
Slimes are easy prey with a small life force. But sex with slimes can be incredibly fun. You approach your target, your charm already taking affect. The slime looked like a woman, though with a liquid blue body. You reach for it's face, there's some resistance as your fingers slip inside, almost as if you were pushing them into a thick pudding.
The slimes hands didn't move, instead its own breasts pushed up against yours, fully immersing them with it's own slime body. It was wet, warm and incredibly pleasant. The slime had full control over every squeeze and sucking motion it did within it's body. Within another moment, the slime pulled the rest of your body inside it, fully suffocating you. However, since this was sex your body wasn't suffering without oxygen. Fully immersed your back was arched and you were floating as it poked and prodded you with invisible fingers. Your mouth opened wide and began being fucked. The slime kept doing things to your body that made you shake and squirm, you couldn't help yourself. Every part of your body felt wonderful and pleasurable;
Finally, the slime found it's goal. Your slimy cunt. Its phantom tendrils started to push into your pussy, it took no time for your inner walls to become saturated. The slime was pushing it's essence inside you, seeking your womb. This particular slime seemed to be primarily water, but you know some are made up of various other fluids. It tasted of ocean salt water, though thankfully not as strong.
It's essense found it's target as it kept fucking you. You would be moaning in pleasure, but there's no oxygen inside the thing. Needless to say, you were still moaning in your head, accidentally swallowing large masses of the creatures body in your mouth, while your cunt works it's magic to absorb the creature currently trying to fill your womb.
Suddenly an explosion of pleasure hits you, your body jerks and shudders. There's a sharp intake of breath and then an inaudible cry escapes your lips as you come, the slime flooding you with its own essence. It feels so amazing, and so warm and delicious that you just want more!
Your head was finally released back to the air as the creatures body was losing mass. Whether the slime realized it or not, it was too late. Your body was instantly absorbing everything flooding into your womb and turning it into more power. You could feel it flowing through your veins and into your heart. The slime kept being sucked inside of you, as if your pussy were a straw and you tilted your head back and screamed as another powerful orgasm shot through your body.
As soon as you stopped screaming, the feelings began to fade and the slime was nowhere to be seen. All that was left was a small puddle beneath you that never finished getting absorbed.
<<case 2>>
<<if $horns is true>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/slime/horns/2.png" >
<<else>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/slime/2.png" >
<</if>>
The charmed slime moves towards you in a fast motion, just an amorphous blob slithering towards you at high speed which you make no attempt to doge. Once it's close enough, it wraps itself around you tightly, trapping you in a hug. Your arms wrap around it's waist, pulling it tighter to your chest. A single tendril of slime pops out of the top and wraps itself around your breasts before meeting your lips. Getting the hint, you open your mouth and let it slide in. Like an inexperienced lover, it shoved its tendril down your throat, as it's tendrils start to stroke your breasts. It presses itself against your crotch and slides another tendril into your waiting cunt and pulls you forward to start working yet another into your ass. The way it's making you feel makes you dizzy, your eyes rolling back into your head. Before long you're having multiple simultaneous orgasms, each stronger than the next. Each one sending shocks throughout your body.
You gasp loudly as the slime starts flooding your womb. It's essence is potent and it's already filled you up quite nicely. It's also leaking all over your body, soaking into you like a sponge. You can feel the slime oozing out of your pussy onto your belly and stomach. Sadly for this slime, there will be no birthing of more creatures, or turning you into one like it. If the creature was even intelligent enough to understand your body was converting it's entire being into energy, it would already be too late.
You toss your head back and moan again as another orgasm rips through you, shooting jolts of electricity through your body. It doesn't stop there however, the slime seems to be enjoying it as well as it keeps pumping more and more of it's essence into you. It doesn't take long until your ass and pussy have sucked up the last remaining drops of the slime.
<<default>>
<<if $horns is true>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/slime/horns/2.png" >
<<else>>
<img class="passage-image" src="demongodsassets/sexscenes/forest/slime/2.png" >
<</if>>
This slime had a female shape with a translucent body like you're used to. However this one had a bit of a surprise. It seems like it had learned to mimic the shape of cocks as this slime had a girthy appendage between its feminine legs. Entranced, it approached you and quickly wrapped itself around you, it knew exactly what it was doing.
Once it got close enough, it grabbed both sides of your hips and squeezed tight, holding you in place while it pressed its shaft against your slit. You groaned softly as it slid inside you, pressing deep inside you and stretching your insides. It fucked you very much in the same manner a human might, sitting you down in it's lap while it lifted you and dropped you repeatedly onto it's cock. Due to your sympathetic orgasm, slimes don't really get pleasure the same way a human might, so it was doing this entirely for your benefit.
An unselfish slime was new and interesting. It's body was green and it smelled of plants, so this one likely survived mostly on flora. Or perhaps it recently ate an alraune. Either way, you enjoyed being fucked by such a lovely creature. It laid you back on the mossy forest floor and spread your thighs wide, letting it fuck you harder and faster. It picked up pace and slammed it's cock into you over and over again, filling you with it's essence almost like a cock might. When it came, you could tell because it sprayed your womb with a massive load of slime and it continued pumping after that, making sure none escaped.
Like it watched too much porn, it flipped you onto your knees and took you doggy style, completely unaware of its shrinking body. It held onto your hips tightly as it pumped you hard and fast, slamming into you as if it was trying to milk every drop of cum from it's balls. You were feeling good from the orgasms alone, but the slime was keeping you happy with its constant thrusts and deep pounding. Soon, you felt another orgasm building up inside of you.
It must've known that as well, because it unloaded another torrent of slime straight into your womb. Your pleasure hole clenched shut tightly around it, trying to milk it dry. It kept thrusting and you kept cumming until suddenly you didn't feel full anymore and you no longer felt a force pounding into you. You looked back to see it was gone, and nothing left but a puddle to show it was ever there.
You whimper in disappointment that it's already over, and collect your things before moving on.
<</switch>>
<<elseif $e.name is "goblinsct">>
<<switch random(2)>>
<<case 1>>
The goblin scout completely lost to your charm and was a slave to it's lust. Violently ripping off it's already torn and useless clothing. It's body was small, and it's dick was disappointingly smaller than you expected. That said it was still big enough to fit inside your pussy, which is something you needed right now.
<div class='row right'>
<div class='right-msg'>Lie down.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The goblin complied, your complete slave. His tiny dick standing at a 90 degree angle. You sat your slit down directly on his face before bending over and grabbing his tiny disappointing cock and aiming it towards your mouth. at least this way you don't have to look at it's ugly face.
You started licking it eagerly, slurping it up greedily. He moans loudly into your cunt as he feels your tongue on him. He worked his mouth along your pussy, lapping up any juices that leaked out of your hole. Eventually, he found your clit and started sucking it, teasing it with his teeth gently. After a few minutes of this, you couldn't hold back your climax any longer, nearly causing him to lose consciousness as you blocked the oxygen from his body with your convulsions.
You grew tired of this however, as he was a disappointing lover in every regard, and still not wanting to see his face, moved lower to ride him reverse cowgirl. There was some difficulty aiming his tiny cock towards your tight hole, but once it popped inside you, it wasn't so bad. You've had better, but it's still a cock. It went in nice and slow, stretching you open with ease, making you moan happily as you rode the goblin. You'd bounce up and down slowly, careful not to bounce too high and have it pop out, riding the little creature's cock, squeezing it tight as you bounced.
The goblin said something incoherently while you were bouncing up and down, clearly having trouble breathing. You ignored him, continuing to grind against him, waiting for that sweet splash of cum you needed inside of you. You can feel an orgasm coming on, but you're a little disappointed as you can sense it's his orgasm not your own. That said, even if his orgasm isn't as powerful as your own you still enjoy it. <<if $genderstart == "male">> it's getting harder and harder to miss your dick after experiencing so much with a womans body. <</if>>Pretty soon this is who you'll be. A cum loving whore who lives for her own sexual pleasure. And, well..Delicious cum.
The goblin spurts inside of you, his seed coating your insides. As he finishes, he falls unconscious and collapses on the ground. Annoyed, you continue riding him, milking his cock for every last drop of his semen. Against his will, his cock was unable to soften in the presence of a succubus, even unconscious. You continued riding him until he suddenly gasped in pain, and spurted the last of his life into your greedy cunt.
<<case 2>>
The goblin scout completely lost to your charm and was a slave to you. Ripping off it's already torn and useless clothing. It's body was small, and it's dick was thankfully on the bigger side, for a goblin that is. You get on your hands and knees, no words need to be said when you're exposing your cunt to it like this.
He takes control, pushing himself up and sliding his cock inside of you, taking you roughly. You moan in pleasure as he plows into you, thrusting deeply into you and filling you with his seed, cumming way too quickly. But, no goblin is capable of remaining soft in your presence and it continues thrusting. It's gross moans escaping it's lips behind you. You stop focusing on him and instead focus on your own body as it convulses around his cock. Cum squirts out of your pussy and lands all over the ground beneath you. What a waste.
You turn around and look at the goblin, frowning at the sight of it laying limp. After checking it's pulse you confirm it's already dead. It's dick still standing at attention, you're tempted to finish getting yourself off, but... You don't think Necrophilia is a line you're ready to cross yet.
Instead you wipe some of the cum dripping from your snatch and lick your fingers clean, savoring the taste.
<<default>>
<div class='row left'>
<div class='left-msg'>Bertie<hr> Ay Bert... Look at this slut. She wants us Bert.
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Bert<hr> Aye, she can't resist our huge cocks, Bertie!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You look down at their disappointingly small and average sized cocks.
<div class='row right'>
<div class='right-msg'>I'm not sure the two of you are even enough to satisfy me. But I'm willing to let you try.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Bertie<hr> Ay you fuckin' whore, we're gonna pound you so hard your babies will be having babies!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Bert<hr> Yeah! Babies!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
Goblin Scouts were terrible lovers, but maybe two of them can do a better job satisfying you! Completely naked, you prepare yourself by getting on your hands and knees.
<div class='row right'>
<div class='right-msg'>I hope you do.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Though really if you think about it, even if they can't get you pregnant that really does sound pretty gross. Fucking goblins always gotta spoil the mood.
<img class="passage-image" src="demongodsassets/sexscenes/forest/goblins/bert.png" >
One of them grabs onto your waist, while the other grabs you by the hair and pulls your face towards his bumpy cock, eliciting a complaint from his friend as your ass moved away from the others tiny cock. If it weren't for your ability that turns any pain into pleasure you'd have been pretty pissed right now. But luckily for you, getting your hair pulled so roughly only makes your cunt drip more and draw a moan from within your throat. The goblin who had grabbed your hair takes advantage of your open moaning mouth to shove his cock down your throat. Or at least that's what he tried to do, but he was only able to make it to the back of your tongue.
You suckle on his cock eagerly, eager to please him as best as possible while his friend fingers your asshole and finally inserts his cock in your waiting snatch. They start fucking you simultaneously, each man taking one of your holes, their rhythm completely off from eachother and trying to pull you in the opposite directions at the same time. You feel an orgasm building near your face and experience a tiny burst of pleasure as the one in your mouth twitches and spurts right away, and you swallow it down eager for more.
The one in your cunt is panting hard, but with your sympathetic orgasm you sense he's not even close. Good. Maybe he'll actually last longer than those other shitty goblins. His thrusts grow stronger and harder and you squeeze him tighter, encouraging him to keep going. You feel an orgasm rising inside of you as he picks up speed, thrusting into you with more vigor.
The one in your mouth keeps thrusting, grunting louder and louder. Then suddenly, without warning he releases a loud grunt followed by a large amount of spit drooling out of his mouth. His cock jerks and sputters out cum into your mouth, covering most of it, leaving just enough to coat the rest of your tongue with. You manage to swallow it all down enjoying it when you know you should be repulsed by it, cleaning up whatever you missed with your hand. You look back to take his cock back in your mouth again but he's laying on the ground out of reach. Shriveled up. Seriously? That's all he had?
Your pussy starts throbbing uncontrollably and you cry out loudly as you cum squeezing down on the other goblins cock. Was this one bert? bertie? In fact, it seems like a lot of goblins are named either bert or bertie. What's with that?
However even your cunt squeezing down on the goblin isn't enough to make him cum. You don't sense any approaching orgasm from him at all! What the fuck is his problem?
Suddenly he slams into you hard, and his body jerks irregularly.
<div class='row right'>
<div class='right-msg'>Finally
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
though you still don't sense anything from him.
But instead of the pleasure of that hot white liquid you crave, your cunt is left empty and waiting. That fucker pulled out!?
You wait for the cum to land on your ass, but nothing warm or wet touches you. Instead you hear a thump.
You look back at Bert or Bertie and his face is twisted in pain and he's clutching his chest.
<div class='row right'>
<div class='right-msg'>Dude really fucked himself to death? Are you kidding me? What about me!?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<</switch>>
<<elseif $e.name is "goblinarcher">>
<<switch random(1)>>
<<case 1>>
You successfully seduced the goblin archer with your charm magic. But a number of goblin scouts come out of the bushes.
You prepare to run or fight, but the goblin archer speaks up.
<div class='row left'>
<div class='left-msg'>Goblin Archer<hr> Her cunt is mine first, you boys cna have whatever else.
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You smile. Looks like you were gonna have a feast! <<if $outfit.outfit isnot "none">>You remove your clothes in a hurry, and <<else>>You <</if>>lay your back on a soft patch of grass, spreading your legs wide inviting anyone who wants inside.
One of the scouts gets a little over eager and positions himself in front of your cunt, but sadly the archer shoves an arrow in the scouts eye socket, killing him instantly.
<div class='row right'>
<div class='right-msg'>HEY! HIS CUM WAS MINE!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You're surprised at how pissed you are. Never would you imagine you were capable of being upset about missing out on cum.
The goblins just laugh.
<div class='row left'>
<div class='left-msg'>Goblin Archer<hr> don't worry bitch, we got plenty more for you.
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
The archer and his 4 scouts surround you.
The archer attempts to insert his bumpy cock inside your twat, but you're too tight! He forces another goblin to spread your lips while he finally inserts himself inside of you.
Another goblin sits on your stomach and sticks his dick between your breasts. While 1 straddles your face and sticks its cock down your throat. At this point you can't see but you feel two other dicks place themselves in eacho of your hands. You now have a dick in your pussy, mouth, breasts and both hands! You're excited!
The one in your mouth begins to buck his hips, thrusting deep inside you while you moan into it's shaft. The one between your tits rubs his cockhead along your nipples causing you to groan in ecstasy. Another goblin thrusts into your hand grip. As they all cum at almost they same time you're overwhelmed. Not from your own orgasm, but you just experienced 5 male orgasms at once! Your mouth, hands, breasts and vaginal walls all coated with semen.
They switch positions, this time one of the bigger ones gets under you, inserting his cock in your ass, while one of the others takes a turn at your cunt. You can practically feel the dicks rubbing eachother! It feels amazing, and you get your coveted burst of pleasure.
They keep taking turns coming in you, on you, and around you until you yelled at them that all cum either goes in or on you. They seemed to understand because soon after that, you felt someone ejaculating directly on your forehead. And then it started raining sperm.
Fucking stupidass goblins.
Finally, after your cunt is dripping with a years supply of baby batter, you look around at all the dead and shriveled goblins around you. Their life force was delicious, you just wish they weren't so stupid.
<<default>>
After charming the archer, it doesn't take long before you're surrounded on your knees and nude by several cocks.
<div class='row right'>
<div class='right-msg'>Record scratch, freeze frame. Yep, that's me. You're probably wondering how I got into this situation.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The goblins just look confused.
<div class='row left'>
<div class='left-msg'>Goblin Scout<hr> We haven't even started and she's already broken
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You chuckle to yourself as you open your mouth and pop one of their dicks inside. Using your two hands you start rubbing off two more. The two behind you just start stroking themselves.
Another cock attempts to insert itself in your mouth with the first one, and you do your best but they're not really angled appropriately. Before long, the first one in your mouth is already coating your teeth in sticky white goo. You feel an incoming orgasm in your left hand and you pull the cock towards your face aiming at your open mouth, though plenty ends up on your lips and breasts. The sensation of being covered in cum sends waves of pleasure through your body and you find yourself shaking as the first wave hits you. You swallow the cock in your mouth as it throbs and shoots load after load down your throat, making you convulse with your own pleasure as well as theirs.
The cocks behind you have alread begun painting your backside in thick ropes of cum. Soon you're gonna look like a slime made of pure cum, and you wonder why you ever thought it would be disgusting. When the last of them finishes filling your mouth and keels over, you lay there in the bodily fluids allowing your body to soak up whatever it can before you move on.
<</switch>>
<<elseif $e.name is "goblinsldr">>
<<switch random(1)>>
<<case 1>>
Goblin Soldiers are tough enemies, but they're easy lays. So...Why bother fighting them at all!?
You beckon the soldier closer, his eyes slightly glazed over by your spell. The soldier is rather muscle bound and when he removes his armor he has a surprisingly large cock, even for a human!
You present your ass, waiting for him to insert into your hungry slit. Instead however he rather forcefully inserts himself into your ass!
<img class="passage-image" src="demongodsassets/sexscenes/forest/goblins/soldier.png" >
<div class='row right'>
<div class='right-msg'>Ahh!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You're caught off guard, but still you moan like the slut <<if $p.acceptance lte 50>>you're becoming<<else>>you are<</if>>.
No lube or anything. Damn you're so happy you have that pain into pleasure ability.
He begins thrusting hard and fast, slamming against you repeatedly, hitting every sensitive spot. He's not gentle at all and you can feel his balls slapping your clit with each thrust, sending electric shocks throughout your entire body.
It's such a rush! This guy could have been rough or slow, but instead he's pounding away like he's possessed! You arch your back, letting him hit you deep as he pounds into you, feeling his cock growing larger and thicker with each thrust. Suddenly you mentally feel a pressure for him and you know he's gonna blow his load into your waiting asshole. Then, without warning you feel your cock, wait no. His cock bursting into something extremely tight and warm.
You push back, demanding more.
And more he gives you.
His cum splashes out as he pumps shot after shot into you. Once you feel a sudden absence in your ass, you look back and see he's done. He tried so hard and was able to temporarily satisfy you, but now he's dead.
You smile.
<<default>>
The goblin soldier is leering at you with a creepy smile. But as he removes his heavy armor, he reveals a very muslce bound chest and incredibly large cock. You immediately drop to your knees and begin sucking on it eagerly, relishing the taste of salty sweat mixed with a hint of saltiness. This goblin was not only well groomed, but he even smelled good. You're happy to find prey that cared so much about hygiene, that was rare in a goblin.
Once you've cleaned the head and shaft off thoroughly, you continue licking his balls. You love how plump and round they are, and how smooth they are. Each time he moans, you press further down on his sack, giving his nuts a nice squeeze. After you give each nut a few squeezes, you lick up and down his shaft, savoring the flavor of his pre-cum. You feel his first orgasm coming and you lean back on your butt and let him spray your face.
<div class='row left'>
<div class='left-msg'>Goblin Soldier<hr> You look even prettier than before.
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
Cum dribbling down your lips, and nearly blocking your vision in one eye<<if $genderstart == "male">>. No doubt, if you were still a guy you probably would have agreed with him<</if>>, you sit back up and raise your leg high in the air, presenting your pussy to him. You wiggle your hips side to side, teasing him with your movements. You want him to enter you, you want more pleasure and you need more cum. You're hungry.
He positions himself, your leg over his shoulder, and quickly enters you.
Ohhh, no foreplay to prepare and yet that oh god does it feel good! His big cock stretching you wide.
He starts to pound you, slowly at first but gradually increasing speed and intensity. Every time he slams into you, you can feel your insides getting stretched wider and thinner. You feel like you'll split apart if he keeps fucking you this way. But that doesn't stop you from moaning and screaming with delight. He grabs hold of your waist and pulls you onto his lap, grinding himself into you. Your cunt is soaking wet with your juices, but you don't care, you're having fun and that's all that matters.
You wonder what would happen, if a cock really did split you apart. Your power keeps you from suffering any damage or pain, but are there limits? What if there was a cock made of pure lava, how would your body heal from that? Or perhaps it would still somehow take it as if it was a regular cock.
Another hard thrust, and your body explodes with an orgasm, knocking you out of your thoughts. His orgasm? Yours? You don't know. Right now you're experiencing both.
<div class='row left'>
<div class='left-msg'>Goblin Soldier<hr> Ahh...why...can't I...stop?...
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You squeeze down with your pussy
<div class='row right'>
<div class='right-msg'>Because I won't let you. I'll be snacking on your life! ♡~
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
He looks at you in fear, but he's unable to stop pumping you, coating your tunnel with another coat of paint. With a final thrust, he releases a massive amount of cum deep inside of you, filling you completely. As the last bit of cum oozes out and drips down your thighs, he finally removes himself, groans, and falls over dead.
<</switch>>
<<elseif $e.name is "bandit">>
<<set $sexcount += 1>>
<<if $forest1minialive is true>>
<<switch random(1)>>
<<case 1>>
The bandit you charmed already has his cock out and is drooling like a 3 year old.
Well, if he's gonna be stuck there staring, you can make use of his mouth. You walk up to him, plant a kiss on his chest and push him backwards. He stumbles over the pants around his ankles and falls on his back, the wind knocked out of him. You don't even give him a chance to catch his breath as you sit on his face, and take his cock in your mouth. You bob up and down on his cock, taking every inch of him into your mouth. The taste of him mixes with the smell of his sweat and you moan happily.
As you go faster, he starts panting heavily. Soon enough he cums down your throat. You pull away and let it drip down your chin, then swallow it whole. As his cum drips down and lands on your $breasts breasts, you use a finger to scoop whats left on your chin and stick it in your mouth. Swirling the tangy yet sweet milky texture around your tongue. This man tastes good! You must have more!
You go down lower, your head between his legs, and your hair blocking his view of what you're doing to him. But you can feel the wet mouth around a phantom cock, and you know exactly how he feels. It's not as good as having a real cock inside your pussy, but you need more of that flavor. You start fondling his balls, coaxing more of that delicious cum out of him and into your awaiting maw. You hold back on drinking him dry, so he can experience the feeling of pleasure as well. He gasps out loud when his cock erupts and you only swallow what you must to avoid it spilling out. You lean back, your hand still on his cock and savor the cum in your mouth. Your mouth is full, he came so much and you intend to take your time with it. You move your tongue along your teeth, the milky sweet taste, and smooth texture of his cum swirling around your mouth. Normally cum is lumpy and stringy, but something was different about this one. Since becoming a Succubus, you've discovered so many different flavors of semen. Is it because you're a Succubus<<if $genderstart isnot "fem">>, or do other women also feel this way<</if>>?
Unfortunately, you're unable to resist. Like chewing on a tootsie roll pop, you can't just lick it til it's gone. Eventually you have to chew it. Or in your case, eventually you can't resist swallowing his load.
But that's ok, there's more where it came from. White cum leaking out of your mouth and flowing down your breasts, you lean your head back down for another meal.
<div class='row right'>
<div class='right-msg'>Hehehe~ ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Thankfully no one is around to hear you giggle to yourself, well no one who will be alive for much longer.
You continue to suck on the remaining cum, savoring the sweet taste as it slides down your throat. After you're satisfied, you slowly lick up any stray cum that's still on his cock before sticking it back in your mouth.
The bandit was not experience discomfort and pleasure at the same time. This next spurt will probably be his last.
<div class='row left'>
<div class='left-msg'>Bandit<hr> N-nnnnnnnggggggg!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You feel his cock twitching in your mouth and suck every last drop you can out of him. You feel him go limp in your mouth before you open your eyes and confirm he's dead.
You lean back, and with your hands to your face, you smile to yourself and take in the pleasure of his taste and texture. Swirling it around one last time before finally gulping down the last of his life.
<<default>>
The bandit was no match for your charms. Why did he even bother?
You offered yourself up to him, but he was so resistant. He couldn't understand why a woman was willingly offering herself to him, instead of having to rape her like usual!
But fine, you could play along. You'll let him have his fun and pretend to be raped.
<<if $outfit.outfit isnot "none">>You remove your dress, giving<<else>>You give<</if>> him a little show as you speak
<div class='row right'>
<div class='right-msg'>Oh no, I'm so scared! This bandit is mugging me! ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Bandit<hr> What? Wait that's not what I said, I... I... What did I say..?
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Will someone please help? He's going to viciously attack me and force his dick inside, before sharing me with his buddies and impregnating me!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Bandit<hr> I..Yeah..Yeah I think that's right! That's exactly what I said! You fucking bitch, you're going to salivate at the sight of my cock as I choke the life out of you!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oh no, whatever shall I do ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
He's confused, but your charm has placed his brain in a bit of a fog and he can't quite place what's wrong here.
He violently grabs you by the throat and shoves you hard against a tree.
<div class='row right'>
<div class='right-msg'>Aaah ~♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
He holds you to the tree by the throat as he starts sucking and biting at your breast in a way that would have been painful. But because he is under your control, he can only give attempt to fuck you like a rabid dog.
<div class='row left'>
<div class='left-msg'>Bandit<hr> On the floor slut!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
He throws you on the ground. Your hair a mess, yet your scrapes instantly healing and never causing you any pain.
He pulls out his cock and stands menacingly over your naked body. His cock is dripping with precum as he stares down at you with wild eyes.
He gets atop you, missionary style and violently shoves his dick in your waiting cunt.
<div class='row left'>
<div class='left-msg'>Bandit<hr> Bitches always get wet when I do this, no matter how much they complain!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
Idiot. You'll enjoy snacking on his life.
You let him continue having his fun, moaning at his cock forcing it's way through your vaginal walls. You watch as his chest heaves and his eyes roll back into his head in ecstasy and you feel his orgasm at the same time you feel hot seed pumping inside of you, desperately trying to find an egg to fertilize. You feel your own pussy getting drenched in a pool of his cum and you moan as the sensation overwhelms you and your body is racked with pleasure.
His cum pulses into you over and over again as he continues to orgasm, and when he finally finishes, the sheer amount of cum inside of you makes you feel giddy.
<div class='row right'>
<div class='right-msg'>Aaah ~♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
He collapses on top of you panting
<div class='row left'>
<div class='left-msg'>Bandit<hr> Gotta...Bring you back to the guys...
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I don't think you're done yet, you were going to fuck me until I salivate at your cock, right?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Bandit<hr> But I can't go...anymore...
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oh but I think you can
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Bandit<hr> You...You're wrong! You stupid bitch! I'm not done! And I'm not stopping until I decide I'm done. I don't care how much you beg me to stop!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
He flips you over on your stomach and enters your pussy from behind. And despite your fake struggles and moans, you find yourself feeling extremely turned on by the thought of being raped. It's a strange turn on, but it's something about having a man dominate you that makes your pussy tingle in delight. As if he's giving you an orgasm.
You whine loudly
<div class='row right'>
<div class='right-msg'>Aaaaaaah ~♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You feel him grab your ass as he forces himself into you. He roughly slams your body into the dirt and rubs your shoulders with the dirt and rocks as he fucks you from behind, your wounds causing you more pleasure as your body contracts from another orgasm, squeezing his dick tightly.
<div class='row left'>
<div class='left-msg'>Bandit<hr> This is what you get for acting like such a prude!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
He's growling at you, barely coherent and more beast like than man.
<div class='row right'>
<div class='right-msg'>That's me! Such a prude!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
He grabs you by the hair, pulling your head up so you're looking at him while he continues fucking you from behind. He pumps you vigorously. His previous exhaustion forgotten.
He yells, rubbing the head of his cock against your cervix.
<div class='row left'>
<div class='left-msg'>Bandit<hr> Aaah! I'm close!
Here it comes! I'm cumming! I'm cumming inside you! Here it comes!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Mngh! Aahh! ~♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You gasp as you feel his cock throb and blast it's hot semen inside of you, filling your womb and causing you to explode with pleasure.
His cock throbs with each squirt of cum, firing it's seed deep into you. His hot cum filling every crevice of your pussy. You're panting, exhausted and in sheer bliss as you feel him finish and collapse atop of you. You bask in that pleasure for a moment. His dick still inside you, but him no longer moving. You roll him to the side so you're on top of him, before pulling yourself off his dick with an audible plop.
Cum spills out of you and splashes his dead eyes as you stand up.
<</switch>>
<<else>>
<<switch random(2)>>
<<case 1>>
The bandit was no match for your charms. Why did he even bother?
You offered yourself up to him, but he was so resistant. He couldn't understand why a woman was willingly offering herself to him, instead of having to rape her like usual!
But fine, you could play along. You'll let him have his fun and pretend to be raped.
<<if $outfit.outfit isnot "none">>You remove your dress, giving<<else>>You give<</if>> him a little show as you speak
<div class='row right'>
<div class='right-msg'>Oh no, I'm so scared! This bandit is mugging me! ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Bandit<hr> What? Wait that's not what I said, I... I... What did I say..?
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Will someone please help? He's going to viciously attack me and force his dick inside, before sharing me with his buddies and impregnating me!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Bandit<hr> I..Yeah..Yeah I think that's right! That's exactly what I said! You fucking bitch, you're going to salivate at the sight of my cock as I choke the life out of you!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oh no, whatever shall I do ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<img class="passage-image" src="demongodsassets/sexscenes/bandit/3.png" >
He's confused, but your charm has placed his brain in a bit of a fog and he can't quite place what's wrong here.
He violently grabs you by the throat and shoves you hard against a tree.
<div class='row right'>
<div class='right-msg'>Aaah ~♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
He holds you to the tree by the throat as he starts sucking and biting at your breast in a way that would have been painful. But because he is under your control, he can only give attempt to fuck you like a rabid dog.
<div class='row left'>
<div class='left-msg'>Bandit<hr> On the floor slut!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
He throws you on the ground. Your hair a mess, yet your scrapes instantly healing and never causing you any pain.
He pulls out his cock and stands menacingly over your naked body. His cock is dripping with precum as he stares down at you with wild eyes.
He gets atop you, missionary style and violently shoves his dick in your waiting cunt.
<div class='row left'>
<div class='left-msg'>Bandit<hr> Bitches always get wet when I do this, no matter how much they complain!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
Idiot. You'll enjoy snacking on his life.
You let him continue having his fun, moaning at his cock forcing it's way through your vaginal walls. You watch as his chest heaves and his eyes roll back into his head in ecstasy and you feel his orgasm at the same time you feel hot seed pumping inside of you, desperately trying to find an egg to fertilize. You feel your own pussy getting drenched in a pool of his cum and you moan as the sensation overwhelms you and your body is racked with pleasure.
His cum pulses into you over and over again as he continues to orgasm, and when he finally finishes, the sheer amount of cum inside of you makes you feel giddy.
<div class='row right'>
<div class='right-msg'>Aaah ~♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
He collapses on top of you panting
<div class='row left'>
<div class='left-msg'>Bandit<hr> Gotta...Bring you back to the guys...
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I don't think you're done yet, you were going to fuck me until I salivate at your cock, right?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Bandit<hr> But I can't go...anymore...
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oh but I think you can
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Bandit<hr> You...You're wrong! You stupid bitch! I'm not done! And I'm not stopping until I decide I'm done. I don't care how much you beg me to stop!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<img class="passage-image" src="demongodsassets/sexscenes/bandit/2.png" >
He flips you over on your stomach and enters your pussy from behind. And despite your fake struggles and moans, you find yourself feeling extremely turned on by the thought of being raped. It's a strange turn on, but it's something about having a man dominate you that makes your pussy tingle in delight. As if he's giving you an orgasm.
You whine loudly
<div class='row right'>
<div class='right-msg'>Aaaaaaah ~♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You feel him grab your ass as he forces himself into you. He roughly slams your body into the dirt and rubs your shoulders with the dirt and rocks as he fucks you from behind, your wounds causing you more pleasure as your body contracts from another orgasm, squeezing his dick tightly.
<div class='row left'>
<div class='left-msg'>Bandit<hr> This is what you get for acting like such a prude!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
He's growling at you, barely coherent and more beast like than man.
<div class='row right'>
<div class='right-msg'>That's me! Such a prude!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
He grabs you by the hair, pulling your head up so you're looking at him while he continues fucking you from behind. He pumps you vigorously. His previous exhaustion forgotten.
He yells, rubbing the head of his cock against your cervix.
<div class='row left'>
<div class='left-msg'>Bandit<hr> Aaah! I'm close!
Here it comes! I'm cumming! I'm cumming inside you! Here it cums!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Mngh! Aahh! ~♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You gasp as you feel his cock throb and blast it's hot semen inside of you, filling your womb and causing you to explode with pleasure.
His cock throbs with each squirt of cum, firing it's seed deep into you. His hot cum filling every crevice of your pussy. You're panting, exhausted and in sheer bliss as you feel him finish and collapse atop of you. You bask in that pleasure for a moment. His dick still inside you, but him no longer moving. You roll him to the side so you're on top of him, before pulling yourself off his dick with an audible plop.
Cum spills out of you and splashes his dead eyes as you stand up. Now lets go find his friends.
<<case 2>>
The bandit you charmed already has his cock out and is drooling like a 3 year old.
Well, if he's gonna be stuck there staring, you can make use of his mouth. You walk up to him, plant a kiss on his chest and push him backwards. He stumbles over the pants around his ankles and falls on his back, the wind knocked out of him. You don't even give him a chance to catch his breath as you sit on his face, and take his cock in your mouth. You bob up and down on his cock, taking every inch of him into your mouth. The taste of him mixes with the smell of his sweat and you moan happily.
As you go faster, he starts panting heavily. Soon enough he cums down your throat. You pull away and let it drip down your chin, then swallow it whole. As his cum drips down and lands on your $breasts breasts, you use a finger to scoop whats left on your chin and stick it in your mouth. Swirling the tangy yet sweet milky texture around your tongue. This man tastes good! You must have more!
You go down lower, your head between his legs, and your hair blocking his view of what you're doing to him. But you can feel the wet mouth around a phantom cock, and you know exactly how he feels. It's not as good as having a real cock inside your pussy, but you need more of that flavor. You start fondling his balls, coaxing more of that delicious cum out of him and into your awaiting maw. You hold back on drinking him dry, so he can experience the feeling of pleasure as well. He gasps out loud when his cock erupts and you only swallow what you must to avoid it spilling out. You lean back, your hand still on his cock and savor the cum in your mouth. Your mouth is full, he came so much and you intend to take your time with it. You move your tongue along your teeth, the milky sweet taste, and smooth texture of his cum swirling around your mouth. Normally cum is lumpy and stringy, but something was different about this one. Since becoming a Succubus, you've discovered so many different flavors of semen. Is it because you're a Succubus<<if $p.acceptance lt 75>>, or do other women also feel this way<</if>>?
Unfortunately, you're unable to resist. Like chewing on a tootsie roll pop, you can't just lick it til it's gone. Eventually you have to chew it. Or in your case, eventually you can't resist swallowing his load.
But that's ok, there's more where it came from. White cum leaking out of your mouth and flowing down your breasts, you lean your head back down for another meal.
<div class='row right'>
<div class='right-msg'>Hehehe~ ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Thankfully no one is around to hear you giggle to yourself, well no one who will be alive for much longer.
You continue to suck on the remaining cum, savoring the sweet taste as it slides down your throat. After you're satisfied, you slowly lick up any stray cum that's still on his cock before sticking it back in your mouth.
The bandit was not experience discomfort and pleasure at the same time. This next spurt will probably be his last.
<div class='row left'>
<div class='left-msg'>Bandit<hr> N-nnnnnnnggggggg!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You feel his cock twitching in your mouth and suck every last drop you can out of him. You feel him go limp in your mouth before you open your eyes and confirm he's dead.
You lean back, and with your hands to your face, you smile to yourself and take in the pleasure of his taste and texture. Swirling it around one last time before finally gulping down the last of his life.
<<default>>
You charmed the bandit. He was annoying, but as long as he rewards you, it's ok ♡
The bandit doesn't seem to realize he was charmed though, even as he tosses his weapon and light armor aside.
<div class='row left'>
<div class='left-msg'>Bandit<hr> Spread your legs or die cunt. Flashing those tits at me while we're fighting, I can't be blamed for changing my mind! You're going to scream my name, but then I'm going to bring you back to my camp and toss you around my guys!!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oooh, that sounds fun~♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The bandit almost pauses, momentarily confused that you're not reacting like his usual targets. But he's no longer in control, you are. He doesn't spend long thinking about it, and he grabs your breast roughly, and shoves his tongue in your mouth. Clearly he's never had a willing woman before.
You moan as you wrap your arms around his neck and grind your dripping cunt against him. You kiss back passionately, devouring his tongue with yours.
The bandit doesn't know what to make of a willing participant, he has no experience with this. It doesn't take long before his confusion lets you take control. You push him onto the ground and straddle his dick grinding it like a hotdog between your pussy lips. lean forward and lick his nipples while grinding your cunt along his dick.
<div class='row left'>
<div class='left-msg'>Bandit<hr> Nghhh! I'm close!!!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
Within moments, he spurts all over his abdomen and getting your cunt all sticky.
<div class='row right'>
<div class='right-msg'>Oh, but now you'll have to clean it!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You sit on his face, forcing him to eat his own cum while licking you clean. You laugh at how silly he looks, but he seems to enjoy being humiliated, since he lost any power he had to resist. When he finishes cleaning you, you get off. It's your turn to clean him.
You kneel on your hands and knees, exposing your tight slit to anyone who could be behind you. He watches you as you lower your head to his abdomen, and you slowly, oh so slowly lap up the cum from his stomach like a hungry kitten. You give him eye contact as his cum is slowly dripping off your tongue, then lean in for another kiss, forcing his own cum down his throat. He looks bothered by this, but doesn't have the will to fight back. You lean back over and finish licking up the cum off his stomach.
<div class='row right'>
<div class='right-msg'>Good boy. Now you may have a reward
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You straddle once again, but angle his dick towards your entrance before sliding down, slowly. Eliciting a groan from the man, he grips your hips tightly, trying to prevent you from escaping his clutches. He doesn't have the strength to keep you down though. Within moments you feel his cock entering you, filling you up completely. You rock your hips back and forth, riding him gently until you feel his cock swell inside of you. You tilt your head back and moan loudly, causing him to tense up.
<div class='row left'>
<div class='left-msg'>Bandit<hr> Ahhhhhh!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
You feel his cock about to burst, and when it does you ride his orgasm. Right after you come down from his, yours starts. And just like before, he fills you full, excess cum leaking out of your twat. You remove yoursel from his body, and lean down to suck it all back up, and let it slide slowly down your throat.
Your pussy throbs as waves of pleasure course through your body, making you squirm uncontrollably. You know he's approaching his end, and you give him one last ride. He spews load after load deep within you, filling you with cum. And just when you think it's all over, he grunts one final time and empties himself into you. Amazing. This man spurted into you 9 or 10 times before collapsing in death.
<div class='row right'>
<div class='right-msg'>It's really a shame... I Would have liked to ride you again.
Oh well! I'll just have to find more of your friends!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<</switch>>
<</if>>
<<elseif $e.name is "cringebandit">>
<<set $sexcount += 1>>
<p>You charmed the cringe bandit. He was annoying, but as long as he rewards you, it's ok ♡
The bandit doesn't seem to realize he was charmed though, even as he tosses his weapon and light armor aside.
<div class='row left'>
<div class='left-msg'>Cringe Bandit<hr>Spread your legs or die, cunt! Flashing those tits at me while we're fighting, you can't blame me for this! You're going to scream my name, but then I'm going to bring you back to my camp and toss you around my guys!!
</div>
<div class="img-box">
<img class='left-img' @src="'demongodsassets/people/headshots/enemies/'+$e.name+'/'+$portrait+'.png'">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oooh, that sounds fun♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The bandit almost pauses, momentarily confused that you're not reacting like his usual targets. But he's no longer in control, you are. He doesn't spend long thinking about it, and he grabs your breast roughly, and shoves his tongue in your mouth. Clearly he's never had a willing woman before.
<div class='row right'>
<div class='right-msg'>Mmmmmm!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You moan as you wrap your arms around his neck and grind your dripping cunt against him. You kiss back passionately, devouring his tongue with yours.
The bandit doesn't know what to make of a willing participant, he has no experience with this. It doesn't take long before his confusion lets you take control. You push him onto the ground and straddle his dick grinding it like a hotdog between your pussy lips. lean forward and lick his nipples while grinding your cunt along his dick.
<div class='row right'>
<div class='right-msg'>Nnngggg, I'm so close...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Within moments, he spurts all over his abdomen and getting your cunt all sticky.
<div class='row right'>
<div class='right-msg'>Oh, but now you'll have to clean it!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You lean over first, taking a quick lick of some of the sticky stuff all over him, savoring the taste.
You decide he needs to know how good he tastes, and you lean over and give him a deep kiss!
<div class='row right'>
<div class='right-msg'>Don't you just taste amazing!? Here, have some more!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You sit on his face, forcing him to eat his own cum while licking you clean. You laugh at how silly he looks, but he's unable to resist you. When he finishes cleaning you, you get off. It's your turn to clean him.
<img class="passage-image" src="demongodsassets/sexscenes/bandit/bandit1.png" >
You kneel on your hands and knees, exposing your tight slit to anyone who could be behind you. He watches you as you lower your head to his abdomen, and you slowly, oh so slowly lap up the cum from his stomach like a hungry kitten. You give him eye contact as his cum is slowly dripping off your tongue, then lean in for another kiss, forcing his own cum down his throat. He looks bothered by this, but doesn't have the will to fight back. You lean back over and finish licking up the cum off his stomach.
"Good boy. Now you may have a reward" You straddle once again, but angle his dick towards your entrance before sliding down, slowly. Eliciting a groan from the man, he grips your hips tightly, trying to prevent you from escaping his clutches. He doesn't have the strength to keep you down though. Within moments you feel his cock entering you, filling you up completely. You rock your hips back and forth, riding him gently until you feel his cock swell inside of you. You tilt your head back and moan loudly, causing him to tense up.
<div class='row right'>
<div class='right-msg'>Ahhhhhh!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You feel his cock about to burst, and when it does you ride his orgasm. Right after you come down from his orgasm, yours starts. And just like before, he fills you full, excess cum leaking out of your twat. You remove yoursel from his body, and lean down to suck it all back up, and let it slide slowly down your throat.
Your pussy throbs as waves of pleasure course through your body, making you squirm uncontrollably. You know he's approaching his end, and you give him one last ride. He spews load after load deep within you, filling you with cum. And just when you think it's all over, he grunts one final time and empties himself into you. Amazing. This man spurted into you 9 or 10 times before collapsing in death.
<<if $p.acceptance gte 50>>
<div class='row right'>
<div class='right-msg'>Well... I was planning to kill you from the start anyways. Though I didn't intend to lose control like this.
Oh well! It was fun! ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<else>>
Suddenly overcome with shame, you realize what you just did. You were fighting this man, fully intending to kill him physically. Instead you just absorbed every last drop of cum he had to offer! What's worse is it was amazing, you loved every second of it, and you hate that you already want more!
What is wrong with you!?
<</if>>
$e.name dropped something! As you get closer you see it's a book.
You've obtained the Ice Tome!
You've obtained 100 cum!
<<set $inv.cum += 100>>
</p>
<<set $tome.ice to true>>
<<set $forest1minialive to false>>
<</if>>
</p>
<<set $p.acceptance += 1>>
<</widget>><<widget 'forestevents2'>>
<<set $randomeventcomplete to false>>
<<switch random(10)>>
<<case 1>>
<p>You wander through a part of the forest where ancient trees reach towards the sky, their branches twisted and gnarled with age. Their roots break through the forest floor, creating a labyrinthine path that you must navigate. The air is cool and damp, carrying the scent of moss and the whispers of the past. A gentle breeze rustles the leaves overhead, casting a mesmerizing dance of shadows on the ground below. In the distance, you can hear the soft hooting of something that sounds like an Earth owl. You catch a glimpse of a small rabbit darting between the bushes, its white tail flickering in the sunlight.
</p>
<<case 2>>
<p>The forest is alive with the sound of chirping birds and rustling leaves. As you walk through the dense undergrowth, you can hear the occasional tweet of something that sounds like a sparrow or the distant call of a predator. The leaves of the trees rustle softly in the gentle breeze, creating a soothing cacophony of sound. Sunlight filters through the branches overhead, casting dappled shadows on the forest floor. The patches of sunlight dance and shift with the movement of the leaves, creating a constantly changing tapestry of light and shadow. The air is fresh and clean, filled with the earthy scent of pine and the sweet aroma of blooming wildflowers. The forest is a peaceful, serene place, a natural haven from the stresses of the outside world.
</p>
<<case 3>>
<p>As you journey deeper into the forest, you notice the trees' bark becoming more gnarled, adorned with intricate patterns of moss and lichen. The air feels heavier here, laden with the earthy scent of decay and new life. A gentle stream meanders through the landscape, its crystal-clear waters reflecting the dappled sunlight filtering through the canopy. As you follow the path along the water's edge, you spot a family of deer-like fauna cautiously drinking from the stream, their ears twitching at the slightest noise.
</p>
<<case 4>>
<p><img class="passage-image" src="demongodsassets/img/scenes/forest/kirin/kirin.png" >
In the heart of the forest, where the trees form a verdant canopy and sunlight filters through in golden beams, you find yourself in the midst of a scene as if taken from the pages of an ancient myth. A herd of kirins gracefully prance through the underbrush, their lithe bodies adorned with shimmering scales that reflect the sunlight, casting iridescent patterns on the surrounding flora.
Each creature is a breathtaking sight to behold, with a slender equine body that seems to hold an inherent grace and elegance. Their manes, flowing and ethereal, appear to be spun from the finest silk and trail behind them like a dancer's veil. Upon their noble heads, they each bear a single, spiraled horn, shimmering with an opalescent sheen, a testament to the magical essence they embody.
As you watch in awe, the delicate creatures seem to pay you no heed, their large, doe-like eyes betraying a serene calm and an innate wisdom. They appear to be in a world of their own, their every movement imbued with an ethereal elegance that speaks of a connection to the unseen forces of nature. The soft, muffled thuds of their hooves seem to resonate with the earth itself, as if their dance weaves an intricate spell that permeates the very air around them.
The air, now filled with the sound of their happy whinnies, seems to take on a palpable quality, as if the fabric of reality has been momentarily altered by the presence of these mystical creatures. The faint, sweet scent of magic lingers, mingling with the earthy aroma of the forest floor and the fragrance of blooming flowers.
</p>
<<case 5>>
<p>The rustling in the bushes grows louder and a group of mischievous pixies dart out, their tiny wings a blur as they playfully chase each other through the trees. Their high-pitched laughter echoes through the forest, causing a flock of birds to take flight in alarm. As they pass by, one of the pixies pauses to steal a shiny trinket from a nearby mushroom before disappearing back into the underbrush.
</p>
<<case 6>>
<p>The forest is teeming with life, the vibrant green leaves of the trees seeming to glow in the dappled sunlight filtering through the canopy. The air is thick with the sweet scent of flowers and the earthy aroma of moss and fallen leaves. The sound of chirping birds and the rustling of small creatures in the underbrush fills the air. The ground is soft beneath your feet, a thick layer of moss and ferns cushioned by a bed of decomposing leaves. The towering trees loom above, their branches reaching out like gnarled fingers towards the sky. As you make your way deeper into the forest, the canopy grows denser, blocking out more of the sunlight and casting the forest floor in a cool, shadowy light. The distant sound of the waterfall grows louder, the mist of the falling water beckoning you closer.
</p>
<<case 7>>
<p>A tree trunk lays on the ground, its roots exposed to the air. A swarm of glowing, iridescent beetles can be seen carrying bits of twigs and leaves back to their underground nest. The beetles are about the size of a thumbnail and their hard, shimmering shells seem to change color with the shifting light. As you watch in wonder, one of the beetles pauses and gives a tiny, high-pitched chirp before scurrying off to join its kin.
</p>
<<case 8>>
<p>As you traverse the forest, you stumble upon a hidden glade bathed in golden sunlight. The clearing is carpeted with a soft bed of vibrant wildflowers, their colors a stark contrast against the backdrop of lush green foliage. The air is filled with the hum of bees busily collecting nectar and the melodious songs of birds perched in the surrounding trees.</p>
<<case 9>>
<p>As you venture further, the forest floor gives way to an expansive grove of towering mushrooms. The otherworldly fungi stand like sentinels, their caps displaying a brilliant array of colors and textures. The air is filled with the gentle sound of spores drifting through the air, creating an ethereal atmosphere. Amongst the mushrooms, you catch sight of bioluminescent insects flitting between the shadows, casting a mesmerizing, faint glow across the grove.</p>
<<case 10>>
<p>Wandering along a narrow path, you come across a tranquil forest pond. The still water creates a mirror-like surface, reflecting the trees and the sky above. Colorful fish dart through the water, their scales shimmering in the sunlight that penetrates the canopy. At the edge of the pond, a family of frogs croak in unison, their voices harmonizing with the symphony of the forest.</p>
<<default>>
<p>As you step into the meadow, you can't help but feel like you're being watched. The air feels electric and alive, and you can almost sense the presence of hidden eyes. You can see the occasional flicker of movement out of the corner of your eye, and you wonder if it might be the mischievous fairies rumored to inhabit these parts. You catch a glimpse of a tiny figure darting behind a flower, and you can't help but smile at the thought of the playful creatures hiding just out of sight.
</p>
<</switch>>
<</widget>><div class="conversation">
<p>You are out of energy! You went home in a hurry and passed out</p>
</div>
[[sleep][$currentlocation to "shack"]]<div class="conversation">
<p>
You're walking in a dim forest, the sun had already gone down. The air is crisp and fresh, with the smell of pine trees filling your nostrils. You've been wandering aimlessly since noon. As you're walking, the forest floor littered with fallen leaves and branches, you step on a patch of leaves that were covering a hole. You fall in!
You land on your butt, but instead of being impaled or in any pain like you'd expect from a hunters trap, your butt landed on something soft and warm. Your eyes quickly adjust and you inspect your surroundings, to see the walls are alive and wriggling with cock-like tendrils! A tentacle comes out of the wall and wraps around your wrist, squeezing tight and pulling you closer in the already cramped space.
[[accept it|tentacle trap 2][$p.acceptance += 3]]
<<if $arousal lt $maxarousal * 0.75>>
<<if $energy gte 10>>
<<set _escape to random(99)>>
<<if _escape lte 30>>
[[attempt to escape|tentacle escape][$energy -= 10]]
<<else>>
[[attempt to escape|tentacle trap fail][$energy -= 10]]
<</if>>
<<else>>
Not enough energy!
<</if>>
<<else>>
You're too aroused to resist!
<</if>>
</p>
</div><div class="conversation">
<p>
<<switch random(1)>>
<<case 1>>
You decide to have fun with Pat.
<div class='row right'>
<div class='right-msg'>pat, come here please
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Pat<hr>Yes?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I want you to ravage my vagina, and I want to make you cum on my face.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Pat doesn't have a face but you can tell he's smirking.
<div class='row left'>
<div class='left-msg'>Pat<hr>cheating again, Mistress?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>fuck off
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You remove clothes and lingerie to prevent them from getting damaged, or dirty.
Pat's tentacles grow until they fill the whole room, his veiny tendrils expanding and contracting, pulsing. They push your legs apart and lift your body into the air, leaving you suspended. Pat's cock pushes into your wet hole, and he begins thrusting into you. You scream and gasp as you feel him inside you.
<<if $horns is true>>
<img class="passage-image" src="demongodsassets/sexscenes/pat/horns/pat1.png" >
<<else>>
<img class="passage-image" src="demongodsassets/sexscenes/pat/pat1.png" >
<</if>>
<div class='row right'>
<div class='right-msg'>Ooooh, fuck yes! *moan* Fuck me Pat! Fuck me!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Pat's cock pumps into you, and you feel your pussy being stretched wider and wider. He's already pumping you full of cum, and you're moaning and gasping as he pounds you. You can feel his tentacles wrapping around you, holding you tight and pulling you close to his cock. You reach out and grab one of his tentacles, stroking it and feeling it twitch. Another tendril squeezes your breasts and strokes your clit as you're being fucked.
<div class='row right'>
<div class='right-msg'>Oh god, oh goddess, I'm cumming!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Pat<hr>whatever, it's not like you'll let me stop with just one
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
You ignore Pat's grumbles and enjoy your euphoria
His cum explodes out of his cock and splatters your face, your tits, your belly, even your hair. You can feel his cum dribbling out of your cunt and dripping down your thighs. You moan and pant, arching your back as his cock keeps pumping you. Your body has already begun absorbing the cum drenching you, and you feel your pussy growing tighter and tighter.
<div class='row right'>
<div class='right-msg'>fuck, I'm cumming again!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Pat just rolls his eyes as he keeps squeezing, stroking and pumping you.
He decides to shut you up and violently shoves a tendril down your throat, knowing full well that your abilities only make it feel better for you. You choke and gag, your body convulsing and shaking as Pat forces you to take his cum. It spills down your throat and down your chest, and you gulp it down, choking and sputtering.
As he let's you down, the room is a mess, cum everywhere. You bask in the after glow, waiting for your body to absorb it all since stepping outside like this might cause trouble.
<div class='row left'>
<div class='left-msg'>Pat<hr>guess I'll start cleaning up. You really don't pay me enough...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
Granted, you don't pay him anything.
<<default>>
<div class='row right'>
<div class='right-msg'>Pat
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Pat<hr>Oh? Does the princess want more cheats?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
<<if $genderstart isnot "grill">>
You ignore his strange comment
<<else>>
<div class='row right'>
<div class='right-msg'>What's wrong with cheating!?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Yeah!
<</if>>
<div class='row right'>
<div class='right-msg'>Just feed me, you ass
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Pat<hr>even a cheap hooker gets paid, will I get anything this time?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>You're the one who asked to live with me
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Pat just sighs and says something about running away. His tendrils begin to enlarge and he wraps his tentacles around your skinny waist. Pat's tendrils begin to slither all along your body, some ribs rubbing right up against your clit, others stretching out to massage your breasts and nipples. You moan and pant as he hangs you in the middle of the room spread eagled. A tendril approaches your mouth and presses your tongue against it.
<<if $horns is true>>
<img class="passage-image" src="demongodsassets/sexscenes/pat/horns/pat2.png" >
<<else>>
<img class="passage-image" src="demongodsassets/sexscenes/pat/pat2.png" >
<</if>>
<div class='row right'>
<div class='right-msg'>aahh..ahhh..ahhhh...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Pat's tendril slips into your mouth and down your throat. You moan and suck on it, feeling it slide its gooey cum down your throat.
you moan again.
Pat's cock rubs against your wet cunt and you gasp. You're still suspended in the air and be begins to fuck you, humping your cunt and rubbing your clit. It only takes a moment before your whole body starts feeling warm and tingly.
Pat's cock throbs inside you, and you can feel his cum leaking out of your pussy and down your thighs. The tendril in your mouth withdraws, and you look up to see Pat's cock twitching and spurting. You're cumming too, your body wracked with pleasure.
You cry, still choking on a tendril, your pussy tightening around one of Pat's cocks.
<<if $horns is true>>
<img class="passage-image" src="demongodsassets/sexscenes/pat/horns/cumming2.png" >
<<else>>
<img class="passage-image" src="demongodsassets/sexscenes/pat/cumming2.png" >
<</if>>
Pat chuckles and lets you down. You fall to the ground, barely conscious and breathing heavily.
<div class='row right'>
<div class='right-msg'>you know, I gotta ask
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Pat<hr>Yes Mistress?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>You and those other tentacle monsters are basically spraying cum constantly, and you're.. Well, tentacles. Why do you need to thrust? Can't you just insert yourself in a vagina and shoot it out? Maybe you do, but the other ones don't really care about our pleasure.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Pat<hr>Oh for once a good question.
I dunno, it's just the way things are.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/pat.png">
</div>
</div>
You chuckle, and Pat's cock slides out of you. You are no longer aroused.
<</switch>>
<<set $arousal to 0>>
[[Money!|home][$inv.money += 1000]]
[[Gimme more cum!|home][$inv.cum += 1000]]
[[Gimme exp!|home][$lust += 1000]]
</p>
</div><div class="conversation">
<p>
<<switch random(1)>>
<<case 1>>
You decide it's time to enjoy your body.
You're home alone, so there's no one to interrupt. You lay in your bed, toss off your clothes and climb into bed. You stretch out, laying on your back, your legs spread and your arms behind your head. You feel your pussy begin to throb and you moan softly. You reach between your legs and rub your clit. Your left hand goes to your breast and you pinch your nipple. You pull on it, twisting and tugging it lightly.
Your moan louder and you feel your pussy tighten. You squeeze your fingers together, digging them into your pussy and you feel your juices flood out. You moan loudly, your voice echoing through your bedroom. You grip your breast tightly, your nails biting into your flesh. You roll over onto your knees, propped up with one hand while your other reaches down and spreads your pussy open.
You moan as you watch your fingers slip into your dripping hole. You stroke your clit more roughly now, rubbing in rough and hard circular motions. You gasp and moan, the sound echoing in the room. You feel your body tense and you begin to shake. You moan and shudder, your breath coming in short gasps. You cry out, a loud and guttural scream.
You feel your pussy explode, your muscles clenching and your pussy squeezing around your fingers. You wail, clutching at your breasts and pinching your own nipples as you cum. You're still trembling, and you feel your pussy flutter and contract, milking your fingers.
You decreased your arousal!
<<set $arousal to $arousal - 20>>
<<default>>
You decide to have some fun with your body.
You strip off your clothes and lay on your bed, spreading your legs open for anyone to see. You're already so aroused you waste no time pushing your fingers into your dripping snatch. Once all the way inserted, you pull your fingers out and slam them into your cunt. You moan and grunt, your body quivering and shaking as you finger fuck yourself. You grab your breast with your non-dominant hand and start squeezing. You're panting and moaning, feeling your body tremble and twitch.
Your body is starting to convulse and your fluids are leaking into the bed, leaving a sweet aroma in the air. You're sweating and shaking, your body covered in a sheen of sweat. You whimper and moan, and you feel your pussy start to tighten. You're exploring every inch of your folds, getting to know them intimately. You're sure your body is going to explode soon. You remove your fingers and switch hands, your mouth sucking on the fingers that just left your pussy.
You're moaning and grunting, and you can feel your pussy spasm. You whimper and moan, your body shivering and your juices leaking out. You lick your fingers, tasting your own arousal and moaning loudly. You moan and gasp, your body spasming and you feel your cum leak from your pussy.
You collapse onto the bed, your body heaving and convulsing. You're exhausted, and your mind is hazy and fuzzy.
You decreased your arousal!
<<set $arousal to $arousal - 20>>
<</switch>>
<<set $p.acceptance += 1>>
You've become a little bit more comfortable in your body,
Acceptance + 1
[[home][$currentlocation to "shack"]]
</p>
</div><<widget 'bodypart'>>
<<if $p.lvl is 5>>
<<set $horns to true>>
You wake up to the sensation of an intense itch on your forehead. You reach up to scratch it, but your hand freezes mid-air as you feel something hard and pointed. Confused, you sit up in bed and fumble around for a mirror, but you realize you don't have one in your room. You run your fingers over the strange protrusions on your head, trying to figure out what they are. They feel like small horns, but you can't be sure without seeing them. You get out of bed and make your way to the bathroom, still in shock about this new development. As you splash water on your face, you catch a glimpse of yourself in the bathroom mirror. Your eyes widen in shock as you see two small horns protruding from your head. You can't believe what you're seeing, and you wonder how this could have happened. You run your fingers over the horns, feeling their rough texture. They are real, and they are definitely on your head. You begin to wonder what this means for you and your life. You try to remember if there was anything unusual about your dreams last night, but all you can recall is the feeling of the itch. You decide to keep this development to yourself for now, you're worried how villagers might react if they see them.
You have horns!
<<elseif $p.lvl is 9>>
<<set $tail to true>>
You wake up, groggy and disoriented. As you stretch your legs, you feel a strange sensation at the base of your spine. With a sudden realization, you reach behind you and your fingers brush against a thin, scaly appendage. You freeze in shock as you realize that you've grown a devil tail.
<img class="passage-image" @src="'demongodsassets/you/scenes/home/tail/'+$hair+'.png'" >
You tentatively flex it, feeling the muscles move beneath the skin. To your surprise, you find that you can make the spade-shaped tip razor sharp. As you experiment with your new appendage, you accidentally prick your finger. A bead of blood wells up from the small wound, and you quickly suck on it to stop the bleeding.
As the shock wears off, your mind turns to the villagers. How will they react when they see your tail? Will they be frightened? Outraged?
You grew a tail!
<<elseif $p.lvl is 12>>
<<set $wings to true>>
You wake up to a strange sensation on your back. As you stretch, you feel a tugging sensation, as if something is trying to pull you upwards. Confused, you reach behind you and your fingers brush against something smooth and leathery. Your heart races as you realize that small devil wings have grown on your back.
<img class="passage-image" @src="'demongodsassets/you/scenes/home/wings/'+$hair+'.png'" >
You can't help but test them out. You take a deep breath and flap your wings, lifting yourself a few inches off the ground. You're surprised that despite their small size, it's nearly effortless to keep yourself afloat. The sensation is exhilarating and you can't help but let out a small laugh. You spend the next few minutes hovering around your room, getting a feel for the wings before getting tired relatively quickly.
But as the excitement fades, reality sets in. These wings, though small, are too large to hide from the villagers. You'll need to use illusion magic to conceal them. You can't help but worry about how the villagers will react to seeing a devil among them. This is going to change everything.
You have wings! Now you can take shortcuts to revisit certain previous locations.
<</if>>
<</widget>>
<div class="conversation">
<p>
You awaken to a knock on your door
<div class='row left'>
<div class='left-msg'>Unknown<hr>We know you're in there you evil demon bitch! Come out!By order of the Holy Church!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/paladin.png">
</div>
</div>
<<if $townkillcount gte 5>>
You panic. You hide the body in your closet, make sure your illusion is in order and open the door.
<<else>>
Fuck, was it the villagers? You've seen them whispering a lot and pointing at you. Maybe you should have done a better job of hiding your horns and other assets!? You move to open the door. Maybe you can charm your way out of this.
<</if>>
3 armed guards wearing extremely fancy armor you've never seen before are standing at your door Very handsome looking too, but this isn't the time to consider that.
<img class="passage-image" src="demongodsassets/img/scenes/blackpool/inspection.png">
<<if $spells.illusion is false>>
We got the Bitch. Horns<<if $tail is true>>, tail<</if>><<if $wings is true>>, wings<</if>>. Exactly as described.
<div class='row right'>
<div class='right-msg'>Please! I haven't done anything and I haven't hurt anyone!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<if $townkillcount gte 1>>
They start laughing.
<div class='row left'>
<div class='left-msg'>Paladin's<hr>$townkillcount dead bodies. All of them reeked of succubi magic, specifically your magic.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/paladin.png">
</div>
</div>
<<else>>
They start laughing.
<div class='row left'>
<div class='left-msg'>Paladin's<hr>Our duty is to kill all Demons and capture all magic users. That includes you, Demon scum.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/paladin.png">
</div>
</div>
<</if>>
<<else>>
<div class='row left'>
<div class='left-msg'>Paladin's<hr>Looks like her. I don't see any horns<<if $tail is true>>, tail<</if>><<if $wings is true>> or wings<</if>>.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/paladin.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Can I help you Gentlemen? I'm all paid up on my taxes.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
They ignore you and hold up a golden lamp with an aura that makes you feel naeseous.
<<if $horns is true>>
<div class='row left'>
<div class='left-msg'>Paladin's<hr>Just as we thought, Demon Bitch!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/paladin.png">
</div>
</div>
You see your reflection in their armor and realize your illusion has come undone! They can see your true appearance!
<<else>>
You turn your head and vomit to the side.
<div class='row left'>
<div class='left-msg'>Paladin's<hr>A weak one, but she's a demon alright.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/paladin.png">
</div>
</div>
<</if>>
<div class='row right'>
<div class='right-msg'>Please! I haven't done anything and I haven't hurt anyone! I'll even leave if I must! I'm just trying to survive!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<if $townkillcount gte 1>>
They start laughing.
<div class='row left'>
<div class='left-msg'>Paladin's<hr>$townkillcount dead bodies. All of them reeked of succubi magic. Specifically your magic.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/paladin.png">
</div>
</div>
<<else>>
They start laughing.
<div class='row left'>
<div class='left-msg'>Paladin's<hr>Our duty is to kill all Demons, and capture all magic users. That includes you, Demon scum.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/paladin.png">
</div>
</div>
<</if>>
<</if>>
<div class='row right'>
<div class='right-msg'>I...I don't know what you're talking about. I'm here alone, I'm just an adventurer!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Paladin's<hr>We're not interested in your mindgames bitch, anything using magic defies the church and it is our duty to save all magical humans or creatures by putting them to death!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/paladin.png">
</div>
</div>
Fuck, you're doomed! You still have a chance though, you cast Charm on all 3.
Left with no other options you cast your Charm spell on all 3 of them.
<div class='row left'>
<div class='left-msg'>Paladin's<hr>Oi, the rotten bitch think's she can use mind control magic on us!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/paladin.png">
</div>
</div>
Their armor seems to ward them against mental magic, or at the very least yours isn't strong enough. You back up into a corner as they walk towards you. <<if $tail is true>>Your tail drooping between your legs. <</if>>There's nowhere to run, your magic doesn't work... Looks like you have one last option. You retract your claws and attack.
Faster than your eye can follow, they're suddenly standing on either side of you. <<if $wings is true>>Suddenly a burning sensation on your back as you drop to your knees, screaming. Your wings lay broken and bleeding on the wooden floor.<<else>>A burning sensation spreads from your legs and abdomen as you drop to your knee's screaming in pain. Blood erupts from your wounds, coating the wood floor<</if>>
<div class='row right'>
<div class='right-msg'>Please...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You try to beg, but the men are laughing, drunk off their violence.
<div class='row left'>
<div class='left-msg'>Paladin's<hr>I'll shut you up, demon cunt!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/paladin.png">
</div>
</div>
You see your reflection in the chest of the one who shouted, as he plunges his sword through your neck, severing your spine.
You have died.
</p>
</div><div class="conversation">
<p>
You try to pull away but you're held fast by the tentacle, and another one grabs your ankle, splitting your legs apart. Another tentacle reaches your breast and begins massaging it roughly, while another starts pushing its way towards your pussy. You feel the tip push into you and begin to rub against your opening. You notice something different about the tentacles, it looks like there are two types that line your tiny cage. Some of them look like cocks like you're used to, while others have bigger openings.
Restrained, you watch as one of the bigger tendrils with a large opening on it's head, inserts itself into your pussy. You groan and grunt, feeling it slide inside you with ease. As it spreads your lips apart and stretches out your tunnel with its girth, you feel the next tentacle enter your anus. This one has a similar size to the first, but with a narrower entrance. You feel both of them spread your insides wide, stretching your pussy beyond belief. Thanks to your Succubi powers, you feel no pain. But it makes no effort in making you feel comfortable like the phallic ones located in your prison.
You can feel it reach deep inside you, you wonder how deep it's going. It's so deep it might have reached your womb!
You watch with wonder, feeling pleasure at what should be causing you pain. Most other tendrils aren't moving, they're merely holding you, restraining you for what happens next. However it seems one didn't get the message and starts wrapping around your breasts and heading towards you mouth. You open your mouth, inviting it in while your eyes remain transfixed on the one currently in your vagina. It slips easily into your throat, and soon you start sucking on it hungrily. You can taste its salty flavor, mixed with the sliminess of your own saliva. The tentacles in your womb twitch as you watch a large lump travel from it's base towards your vagina. Once it reaches your cunt, it pushes forward, penetrating your tight folds and burying itself deep within you.
You would have cried out in pleasure if you weren't currently choking on a tendril coating your throat in sticky semen.
It continued to push the lump into you, spreading your lips wider apart. It continues and you feel it squeeze You feel the tip press against your cervix and spread it open, and you let out a gasp when it goes past. It continues to push inwards, until eventually the whole lump enters your womb. Then you see another lump traveling up the ovipositor, You feel it swell and grow, expanding your internal cavity to fit it comfortably. It slides inside you, this time without resistance, and deposits yet another lump in your uterus.
The pleasure increases tenfold as you feel the new additions fill you up, making room for the last few. You feel your insides stretch, almost painfully, or it would if you were human.
As the final lump is deposited, you feel an orgasmic rush run through your body, making every nerve ending tingle and scream. You cum hard, squirting forth a clear liquid. The ovipositor removes itself, but it looks like it's not done. Next one of the patiently waiting cock-like tentacles approaches your now gaping vagina, and you eagerly welcome it inside.
It penetrates you rapidly, hitting your G-spot and sending waves of ecstasy through your body. The tentacle moves in and out of you with such vigor that you don't know whether to cry out or moan. You feel it burst as it cums inside your twat. But as if it only did that for your pleasure, it continues along it's predetermined path, pushing past your cervix like the earlier ovipositor. Now your pussy is flooded with thick white fluid, spilling out onto the ground below. Finding your womb, it's target, it begins rubbing again. All you can do is moan as your vision turns white, Your thoughts turn to mush as the pleasure overwhelms you and all you can think about is cock.
The tentacle inside you, starts flooding your womb, coating the lumps with more of it's sticky white fluid. You feel it pulsate and throb, as it pumps you full of cum. You can feel the heat radiating from your belly as it fills you up with seed, your womb becoming bloated with sperm, though you already had a number of lumps inside you making you look pretty pregnant.
Your moaning and groaning, panting hard when finally the tendril in your cunt and the one in your mouth retreat. They push you back up and out of the hole, and gently lay you on the mossy floor. As your body slowly absorbs the semen coating you from head to toe, the sexual fog on your brain starts to lift and you start to panic about the very pregnant looking stomach and the things inside you.
You try to stand up, but you don't make it very far as you wobble to a tree. You grab hold of it and use it to support yourself and lay your naked ass at it's base to lean against it.
You take some time to rest wondering what to do, before you feel a dull ache in your lower abdomen instead of the usual pleasure. As you focus on the ache, you're suddenly overcome with an uncontrollable urge to flex your lower abdomen. You bend over slightly, and you feel something move inside your tummy. As you continue to push, you look down and see something slimy and black halfway sticking out of your vagina. Your contractions continue and you keep pushing until it's falls on the moss floor with a *plop*.
It's an egg. A jet black egg, covered in sticky white goo. But you're not done, you're already pushing out the next egg, and then the next after that. One after another they come plopping out of your pussy and landing on the mossy ground beside you while you experience orgasm after orgasm. You're pretty sure that's not how it's supposed to work, but you're not complaining.
After you finish, you wipe off your pussy and sit there, staring blankly at the pile of eggs on the floor. There's at least 10 there. With a little bit of luck though, according to Rhelyla you're incapable of bearing children with anything non-incubi. So these shouldn't be able to hatch.
Your skin recovers and after absorbing all the semen on your skin you look like you never went through any kind of harsh ordeal. You decide to leave the eggs behind.
<<set $energy to $energy - 30>>
<<set $inv.cum to $inv.cum + 75>>
<<if $currentlocation is "forest1">>
[[back|forest1]]
<<elseif $currentlocation is "forest2">>
[[back|forest2]]
<<elseif $currentlocation is "forest3">>
[[back|forest3]]
<</if>>
</p>
</div>
<div class="conversation">
<p>
You managed to escape! Your dignity intact!
<<if $currentlocation is "forest1">>
[[back|forest1]]
<<elseif $currentlocation is "forest2">>
[[back|forest2]]
<<elseif $currentlocation is "forest3">>
[[back|forest3]]
<</if>>
</p>
</div><div class="conversation">
<p>
You failed to escape! Oh no!
[[continue|tentacle trap 2]]
</p>
</div><<set $currentlocation to "forestdungeon">>
<div class="conversation">
<p>
You hesitate, wondering if this is some kind of trap. But as you scan the clearing, you realize that there doesn't seem to be any other way to continue. Is this the entrance to the boss's lair? You can't be sure, but you know that you have to find out. You take a deep breath and steel yourself for whatever lies ahead. <<if $outfit.outfit isnot "none">>Not wanting to damage your clothes, you remove them and set them aside, making a note to yourself to come collect them later.<</if>>With a sense of trepidation, you begin to make your way down into the hole.
You land on your butt, the tentacles gracefully slowing your fall. Like before, you see the walls are alive and wriggling with cock-like tendrils! A tentacle comes out of the wall and wraps around your wrist, squeezing tight and pulling you closer in the already cramped space. Having experienced this once before you already know what to expect, <<if $p.acceptance lt 50>>except this time you don't resist.<</if>>
A tentacle wraps around your ankles, splitting your legs apart, while another reaches your breast and begins to massage it roughly. In no time at all, a 3rd tendril starts making its way to your pussy. Another, larger one pushes the first out of it's way. You recognize this as one of the egg laying ones from before. <<if $p.acceptance lt 50>>Oh no....<</if>> You watch as the large tendril pushes itself inside your pussy, and you groan and grunt. The tentacle was already slimy, so thankfully it was able to slide inside of you with ease, though you already feel your first orgasm starting as it spreads your lips apart and stretches out your tunnel with its massive girth. You can feel it's reached so deep inside of you, it's probably already made it to your womb!
You watch it, reveling in the pleasure it's causing. Other tendrils have begun moving, invading your mouth and ass. At this point your bodies instincts have taken over <<if $p.acceptance lt 75>>against your will, <</if>>and all you can think of is the pleasure they bring you. You hungrily suck on the one in your mouth, tasting its salty flavor mixed with something that tastes sweet. Likely an aphrodesiac, completely unnecessary given that your body acts like one anytime you're turned on. You could no longer resist even if you wanted to.
You see the one between your legs expand, somewhat reminding you of a snake that had swallowed a large egg. Only this lump was moving, slowly towards your already stretched cavern. Once the lump reaches your pussy, you would have cried out if you weren't already choking on a tentacock. The massive lump pushes against all of your individual folds, your eyes roll back in your head and your legs start to tremble as you experience just one of a number of orgasms.
Your lips continue spreading wider, until it's fully inside of you and you can feel your cervix expanding to invite this new guest inside. What should cause you pain is only causing more pleasure. <<if $p.acceptance>>You're not sure whether to be grateful that it doesn't cause what would likely be excruciating pain, or mad that your body is forcing you to enjoy such things you never would have accepted. <</if>> Your mouth moans around the tentacock, causing it to spray more of it's seed in your throat. You feel your womb swell and expand, accepting the egg that has no doubt been delivered to your internal cavity. Another lump starts rising to your lips, and this time with no resistance your body accepts this intruder and another lump is deposited into your uterus. As each invader fills you up, your pleasure increases and your belly expands making room for more.
A final lump is deposited, and the large tentacle in your vagina retracts. Now leaving a smaller but ribbed tentacle to take it's place. This one was obviously designed for more pleasure as it slowly inserts, every single rib rubbing against your individual folds and making your entire body convulse. It penetrates you rapidly, hitting your G-Spot and sending waves of ecstasy through your body, making every nerve ending tingle and scream. You cum hard, squirting out some of the semen that has already been deposited. You look at the cum that's escaped your body longingly, wishing it was back inside of you. If your arms were free, you'd have scooped it back up and swallowed it.
The ribbed tentacle keeps thrusting, rubbing against every sensitive fold and spraying an impossible amount of semen into you. Even as a succubus you're starting to wonder if there's a limit to how much you can take! Your womb, already bloated with eggs, is starting to become more round in shape as it becomes bloated with sperm. You can feel the heat radiating from your belly as it fills you with it's seed.
You're moaning and groaning, panting hard. The tentacocks satisfied, believing that they've impregnated you with some manner of creature, retract. Your mouth, ass and vagina suddenly feeling empty and alone, the tentacle lined floor begins to open up as well. Instead of lifting you out of the hole, the tentacles gently lower you further into the hole. As the floor below you opens, you're gently lowered into a cavern. You're placed on the stone floor, and the tentacles retract. Gone back to the black ceiling where you can no longer see them.
As the sexual fog begins to retreat from your brain<<if $p.acceptance lt 75>> and the knowledge of the depravity you just committed hits your brain, you're so embarassed <<else>> and the knowledge of the pleasure you just experienced makes you look up wanting to go back and continue for more, as the arousal starts to fade you realize that <</if>> you almost completely missed the large creature standing at the only opening in your room. Clearly the way forward. It looks very ogre-like.
The ogre is standing there, rubbing it's crotch while it smirks at you. You're not even given a chance to <<if $p.acceptance gt 50>>flirt <<else>>be offended and say something sarcastic<</if>> before you feel a dull aching pleasure in your lower abdomen.
<img class="passage-image" src="demongodsassets/sexscenes/forest/eggs/1.png" >
As you focus on the pleasure, you're overcome with an uncontrollable urge to flex your lower abdomen. You get on your hands and knees and push, and you feel something move inside your tummy. As you continue to push, you hear a "plop" as a shiny black egg lands between your legs. Your contractions continue and you continue pushing out more eggs, the eggs rubbing against your folds causing you yet even more orgasms. Tentacles, the gift that keeps giving! <<set $inv.cum to $inv.cum + 50>>You gain 50 cum!
After you finish, you look up to see the ogre blow his load on the cavern floor. <<if $p.acceptance gte 75>>Despite what just happened, you're already aroused again from the egg laying. You crawl over to the ogre, bend your head down, and start licking the cum off the stone floor. Some part of you is grateful that the stone is relatively clean looking, while another part of you quite frankly doesn't care. The ogre laughs as it watches you lick up it's spooge. <<set $inv.cum to $inv.cum + 100>> You gained 100 cum! <<else>>Momentarily you consider licking it up, but you're not quite that depraved...yet<</if>>
[[talk to the ogre]]
</p>
</div>
<div class="conversation">
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/enemies/ogre/ogre.png" >
<<if $ogreriddle is 0>>
The Ogre just keeps grinning at you with it's big stupid grind on it's face. Staring at your nude body, despite having already came, it's already hard again and rubbing it's impressively large yet vulgar cock.
<div class='row right'>
<div class='right-msg'>Uhhh... Hi?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Ogre<hr>Hello pretty lady.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>My name is $name.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Ogre<hr>And I'm Nar the Riddler!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I ...see. Nar, it looks like-
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Ogre<hr>Nar the RIDDLER!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
It looks like he takes great pride in that name...
<div class='row right'>
<div class='right-msg'>I'm sorry Nar the Riddler. How did you even get that name?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>By being the smartest Ogre alive! no one has ever been able to answer my riddles!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Right, well... It looks like the only path through is behind you. May I please pass?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>No can do, pretty lady. I gotta keep it safe.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Safe from what?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>Safe from Demons like you, of course!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I'm not...Ugh fine. What if I suck your cock?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You catch yourself gazing at his impressive member, almost daydreaming.
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>No thanks. You're attractive, but not as attractive as Ogre women.
Besides I'm not allowed to have sex with the merchandise.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Wait, who the fuck says I'm merchandise?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>Bossman. Something about becoming tainted or whatever.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
Nar the Riddler just shrugs.
<div class='row right'>
<div class='right-msg'>So if I'm already tainted and I'm merchandise. That means I belong to your boss, right? So can I pass then?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>Well that does make sense...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>So can I pass?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>Hmm... I don't know... Oh I know! I get so much time to practice my riddles but boss man refuses to hear them! If you can answer 3 riddles I'll let you pass!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
Ugh, one of these fantasy gimmicks...
<div class='row right'>
<div class='right-msg'>Fiiine...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>I start with a "P" and end with "o-r-n". I'm a major player in the film industry. What am I?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Wait, you guys have a film industry? But you don't even have electricity, how can you even make movies?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>What are moooveees and electricky?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
You look at the Ogre, dumbfounded. But he just keeps grinning his big stupid grin.
You think for a minute. (enter your answer in all lowercase.)
<div class='row right'>
<div class='right-msg'>The answer is <<textbox "$riddle" guess>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
[[continue|riddle answer]]
<<elseif $ogreriddle is 1>>
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>Next question. when I go in, I can cause some pain. I'll fill your holes when you ask me to. I also ask that you spit and not swallow. What am I?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>The answer is <<textbox "$riddle" guess>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
[[continue|riddle answer]]
<<elseif $ogreriddle is 2>>
The Ogre looks excited about this last question.
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>What does a woman have 2 of that a cow has 4 of?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
Wow! A question that's actually pretty straight forward!
<div class='row right'>
<div class='right-msg'>The answer is <<textbox "$riddle" guess>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
[[continue|riddle answer]]
<<elseif $boss1alive is true>>
The cavern is empty and the Ogre is nowhere to be seen. You wonder what happened to him. He didn't seem like a bad guy, you hope he's ok. But you need to focus on ending Melek Taus existence.
[[forest boss]]
<<else>>
The cavern is empty and the Ogre is nowhere to be seen. You wonder what happened to him. He didn't seem like a bad guy, you hope he's ok.
[[exit the dungeon|forest3][$currentlocation to "forest3"]]
<</if>>
</p>
</div>
<div class="conversation">
<p>
<<if $ogreriddle is 0>>
<<if $riddle is "popcorn">>
<<set $ogreriddle += 1>>
Nar the Riddler opens his eyes in shock.
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>Wow, no one has ever gotten that right before!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
Maybe because it's an impossible question to anyone but you?
[[continue|talk to the ogre]]
<<else>>
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>Incorrect!
But I really like riddles, so I'll let you try again as many times as you like! Here's a hint! p _ _ _ o r n.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>The answer is <<textbox "$riddle" guess>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
[[continue|riddle answer]]
<details>
<summary style="color:#8282f3;">click here to cheat</summary>
popcorn
</details>
<</if>>
<<elseif $ogreriddle is 1>>
<<if $riddle is "dentist">>
The surprise is written on Nar the Riddlers big dumb face.
<<set $ogreriddle += 1>>
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>Another!? How are you getting these?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Do you even know what a Dentist is?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Nar the Riddler shakes his head with that stupid shiteating grin on his face.
[[continue|talk to the ogre]]
<<else>>
Nar the Riddler begins to laugh
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>Nice try, but incorrect. Try again! _ _ _ _ _ _ _
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>The answer is <<textbox "$riddle" guess>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
[[continue|riddle answer]]
<details>
<summary style="color:#8282f3;">click here to cheat</summary>
dentist
</details>
<</if>>
<<elseif $ogreriddle is 2>>
<<if $riddle is "legs">>
Nar the Riddler is shocked!
<<set $ogreriddle += 1>>
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>You actually did it! You must be the smartest demon alive!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>How did you even come up with these riddles?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Nar the Riddler looks extremely proud.
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>Some humans taught me to read! I'm the smartest ogre alive! I also found a book.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
You have no doubt he's the smartest ogre alive just for being able to read, but he might be cheating by asking questions that no one in this world could possibly know the answer to. How did a book from your world even get here anyways?
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>As promised I'll let you pass, but I just have one final question for you.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
You groan. Not more dumb riddles!
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>You gonna eat those?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
He points at your eggs.
<<if $genderstart is "grill">>
As you used to be a grill, you'd never normally give up food willingly. But something about eating your own eggs still doesn't sit well with you.
<div class='row right'>
<div class='right-msg'>Ehhh, those aren't my jam. All yours.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<else>>
<div class='row right'>
<div class='right-msg'>Wow, gross. No way!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>May I?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
You just want to be done with this conversation.
<div class='row right'>
<div class='right-msg'>Ew, fine whatever. Just not in front of me!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<</if>>
[[continue|forest boss]]
<<else>>
<div class='row left'>
<div class='left-msg'>Nar the Riddler<hr>Nice try, but incorrect. Try again! _ _ _ _
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/ogre/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>The answer is <<textbox "$riddle" guess>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
[[continue|riddle answer]]
<details>
<summary style="color:#8282f3;">click here to cheat</summary>
legs
</details>
<</if>>
<</if>>
</p>
</div><div class="conversation">
<<if $e.hp lte 0>>
<<set $expmod to 500>>
<<set $coppermod to 1000>>
<<set $cummod to 500>>
<p>
The Demon who called himself a God, Melek Taus, stood tall with a large sword in hand. You focused your energy, channeling it into your claws as you prepared to attack. The demon laughed, his deep voice echoing off the stone walls. You ignored his taunts and leapt forward, <<if $spells.ice is true>>your claws glowing with ice magic<<else>>your claws extended.<</if>> Melek Taus swung his sword, flames licking the blade as he tried to counter your attack.
The two of you clashed, your weapons and magic colliding in a dazzling display of power. You were quick an dagile, dodging the demon's strikes and landing blows of your own, but the demon was strong and his fire magic proved to be formidable.
As the battle raged on, the sound of clashing metal and magical energy filling the throne room. You were tiring, your energy beginning to wane. Melek Taus was surprised you had lasted this long. This had never happened before! Sensing his opportunity, he launched a powerful fire blast at you.
You barely managed to avoid the attack, feeling the heat of the flames as they narrowly missed you, singing your hair. You knew you had to end this fight soon, or you wouldn't have the strength to continue.
Gathering all of your remaining energy, you launched a final attack. <<if $spells.ice is true>>You summoned a gigantic icicle, using all of your magic to imbue it with as much power as possible. The demon, caught off guard, was struck by the icicle, impaling it to the stone wall. The ice crumbles and he falls to the ground, bleeding from a rapidly healing hole in his chest. The room is heavy with his scent as his body drips in sweat and blood. You find yourself getting distracted, eyes wandering to his crotch. You shake your head ready to deliver the final blow.<<else>>You slashed and sliced with your claws and tail, using every option available to you, every tactic no matter how dirty or low it could be seen. You sliced his eyes, blinding him, his tendons crippling him. Finally you had the upper hand and he kneeled on the floor, his back to the stone wall. Bleeding from a multitude of wounds that are rapidly healing. The room is heavy with his scent as his body drips in sweat and blood. You find yourself getting distracted, eyes wandering to his crotch. You shake your head ready to deliver the final blow.<</if>>
The demon, wheezing, spoke in a raspy voice.
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>Wait... I can offer you more than a simple victory.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<p>
You're ready to strike the final blow, but you can't help be curious as to what he has to say.
</p>
<div class='row right'>
<div class='right-msg'>What do you mean?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The demon chuckled, a sly smile spreading across it's face.
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>You're a Succubus aren't you? I have exactly what you want right here...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<p>
He spreads his legs, revealing a massive member from beneath his torn loincloth. You hesitate for a moment. Not even sure you understand why you're hesitating. The demon was probably buying time to heal it's wounds, but <<if $p.acceptance lt 75>>your instincts were blocking your better judgement and the temptation of power was too great for you. <<else>>you didn't care. Now that it's been presented in front of you, you lick your lips. You can't resist!<</if>>You moved closer to the demon, allowing it to wrap it's massive arms around you. As your lips met, the demon's eyes flickered with a sinister light. It had no intention of keeping it's promise. However you were a Succubus, a seductive and powerful demon. You sat in the lap of the self-proclaimed god, your claws extended and a sly smile on your lips.
The throne room was dark and forboding, stone walls and tapestries flickering in the only light provided by torches. The air was thick with the smell of sweat and magic, and the tension between you two was palpable. The demon reached for his sword one last time, but you're faster. Before he could fully grip his sword, your claws slashed through the tendons in his bicep, rendering his arm useless until they healed.
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>But how... How... can you... resist?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I'm immune to your corruption.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>That shouldn't be-
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<p>
Suddenly his head rolled back as a moan escaped his mouth. While he was distracted you already forced his massive member inside of yourself.<<if $p.acceptance lt 75>> You didn't even notice it yourself, it's like your body acted without your thoughts. You were so focused on killing him, that before you knew it you were already forcing his massive cock into your tiny pussy.<</if>> Throwing your head back, you mimic his groans and begin to pump yourself. His chest wound had already healed and his tendons were already healing, but once you had him inside of you he was already unable to resist your control.
<img class="passage-image" src="demongodsassets/sexscenes/forest/melek/riding.png" >
He bucks his hips into you, sliding out and forcefully jamming his cock back into your cute and tight little pussy. Instead of feeling any pain, you just feel small orgasmic pulses emanating from your crotch and outwards to the tips of your fingers and toes.
His face shows only ecstasy as you slowly pump yourself up and down on his shaft. His hands are roaming across your body as if he can't believe what he's touching, your skin is so hot and smooth it feels amazing against his massive hands. He's leaning down to kiss you, his large tongue swirling around yours as his hands explore your body. You feel his cock twitch inside of you and suddenly you feel a geyser of cum erupt inside of you, covering your womb in thick ropes of gooey cum that drip down the inside of your legs and onto the his legs below you. What's more, the cum that leaks out of you is bubbling, literally boiling hot. What if you didn't have your powers!?. You moan as you feel your pussy clench around his cock as it tries to milk his seed out of him.
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>You're a fool... Even if you hadn't been corrupted until now, there's no way the cum from a Demon God won't corrupt you!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<p>
He says with glee as you feel power in that semen like you've never felt before, but he just keeps pumping it into you. You feel his orgasm as you're assaulted by your own. But he still has more life and you're not done enjoying this sensation. To prevent him from going soft, you cast Charm on him again. His deflating member suddenly expands at attention and pushes you into another orgasm from the quick and sharp sensation. The cum within your womb throbs as his cum swirls inside of you and his seed becomes one with your body. He groans and pants in pleasure as you bounce on his cock, milking as much of his cum out of him as you can.
By this point he must have cum several times, the semen drooling out of your pussy and completely covering both of your legs as you ride him. His face begins to contort with pain, his skin beginning to look dry.
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>What...? You're taking everything from me...my power... Why aren't you ...corrupted yet?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<p>
You slap him hard
</p>
<div class='row right'>
<div class='right-msg'>Hey! You focus on me while I finish eating you!
Besides, I'm immune sweetie~ ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Despite the lack of eyes, his face contorted with pain and pleasure suddenly looked shocked
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>That ... traitorous ... ssss...ssssuuuu...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<p>
His head slumps foward as he breathes his last.
</p>
<div class='row right'>
<div class='right-msg'>What? No you can't end this with foreshadowing like that? What the fuck, finish your sentence!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Traitorous who? What was that?
</p>
<<elseif $e.reshp lte 0>>
<<set $expmod to 1000>>
<<set $coppermod to 500>>
<<set $cummod to 500>>
<<set $p.acceptance to $p.acceptance + 3>>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>What have we here? A weak little demon succubus come out to play? Did you kill my guard? He was an amusing one. Even back home you weak succubi didn't know your place. Always trying to challenge your greater cousins! Your place is on your knees, and I'll be happy to teach it to you. Of course, you've already absorbed so much corruption that you're likely already a mindless beast. What chance have you against a God?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<p>
You simply smirk back at the fool, your eyes flickering with amusement. You open your mouth to respond, your voice purrs and drips and seduction.
</p>
<div class='row right'>
<div class='right-msg'>Oh? I think I stand a pretty good chance. After all, I am a succubus and we are pretty hard to resist. And look at that, your tiny cock is already interested!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
His cock was anything but tiny. It looked like it might kill you! But it looks like you struck a soft spot all the same. The demon's sneer turns into a scowl, and he yanks his massive sword out of the stone floor, the metal gleaming in the dim light of the throne room.
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>It seems I must teach you your place. I've killed many of your kind back home, and turned even more into my slaves. I think I'll just add you to my collection.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<p>
He growls at you and you prepare yourself for battle.
You have no intention of fighting this demon fair. No, you have every intention of charming this bastard and taking his demon cock.
He casts fire magic, and swings his massive sword, but you're too fast for him. Constantly exuding an aura of charm, and frequently taking opportunities to "accidentally" see your best features as you dodge. He continues to cast magic, each time he does it seems weaker and more desperate than the last.
As his spell fades away, he gasps, his eyes glowing red as you slap his hand away and close the distance between you. He looks up at you, a mixture of desire and hatred in his eyes.
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>Impossible! I can't be bested by some lowly whore Demon!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>That name isn't bad, but you can also call me Master. ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You ignore him, putting your hands on either side of his eye-less head and open your mouth, kissing him deeply. Any resistance he had is gone, he is yours. You push him onto his back and straddle his face. His head is so huge your knees barely touch the ground, and you grip his horns with your hands to hold yourself in position as he begins to lick you. His tongue is rough and jagged, but incredibly hot and strong. His tongue is so hot you're pretty certain you should be getting 3rd degree burns! But your power prevents you from taking damage from anything sexual. His hands are so big he wraps his arms around you as he devours you with his tongue. You moan loudly as you take his tongue into your pussy, your hands gripping his horns hard for stability.
Another groan escapes your lips and you take the opportunity to stand up and lead him by his cock, like a puppy on his leash, back to his throne. Your tits are bouncing with every step as you walk back to his throne, he moans as you continue to tease him with your body.
<img class="passage-image" src="demongodsassets/sexscenes/forest/melek/riding.png" >
The throne is right in front of the dais, and as you sit down on his lap, you reach up to stroke him, his chest is so large you're unable to reach his neck while sitting on his lap. You look at his defenseless throat, out of reach from your current seat in his lap. But it's too late as your instincts have taken over and you're already resigned to killing him in a different way.
You grind your pussy along the length of his cock, you may have called it small before but it was anything but that. This might be the largest cock you'll ever take. You should be scared, but instead you feel exhilarated, and you have never been so turned on in your life. You wrap your arms around his hips and continue grinding your pussy along his length. He groans and leans forward, shoving his massive tongue down your throat. <<if $genderstart is "male">> You've heard women complain about men who do this in your past life, but as his tongue is literally down your throat and you're quite literally a creature of sex, all you can feel is your cunt dripping as you feel so incredibly turned on<<else>> This was certainly a new experience, one that should be unwelcomed but you're enjoying it. When you were a woman you gossipped with your friends about bad kissers. But now you're a creature of sex, and your body is designed to satisfy the lust of anyone. All you can feel is your cunt dripping and your entire body getting warm. <</if>>
You practically have to stand on him, while he angles his cock at your slit in order to get it inside. He starts bucking his hips, trying desperately to enter you, your giant slave God is a child begging for sweets. He's so big he takes a little work to keep your balance, but it's worth it. You feel him inside of you, spreading you open, filling you up. As you slowly sink down on his cock, you're mildly confused by the science of it all. The length of his cock should have him somewhere in your throat by now based on his length, but somehow your body still accomodates his massive member. You briefly wonder if there's any natural magic that rearranges your body while you fuck. You don't get long to consider these thoughts as he bucks his hips into you, sliding out and forcefully jamming his cock back into your cute and tight little pussy. Instead of feeling any pain, you just feel small orgasmic pulses emanating from your crotch and outwards to the tips of your fingers and toes.
His face shows only ecstasy as you slowly pump yourself up and down on his shaft. His hands are roaming across your body as if he can't believe what he's touching, your skin is so hot and smooth it feels amazing against his massive hands. He's leaning down to kiss you, his large tongue swirling around yours as his hands explore your body. You feel his cock twitch inside of you and suddenly you feel a geyser of cum erupt inside of you, covering your womb in thick ropes of gooey cum that drip down the inside of your legs and onto the his legs below you. What's more, the cum that leaks out of you is bubbling, literally boiling hot. What if you didn't have your powers!?. You moan as you feel your pussy clench around his cock as it tries to milk his seed out of him.
You feel power in that semen like you've never felt before, but he just keeps pumping it into you. You feel his orgasm as you're assaulted by your own. But he still has more life and you're not done enjoying this sensation. To prevent him from going soft, you cast Charm on him again. His deflating member suddenly expands at attention and pushes you into another orgasm from the quick and sharp sensation. The cum within your womb throbs as his cum swirls inside of you and his seed becomes one with your body. He groans and pants in pleasure as you bounce on his cock, milking as much of his cum out of him as you can.
By this point he must have cum several times, the semen drooling out of your pussy and completely covering both of your legs as you ride him. His face begins to contort with pain, his skin beginning to look dry.
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>Please... Stop. It hurts...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Why would we stop? I'm hungry!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You grab your breasts, squeezing and pulling your nipples as you continue to ride him.
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>How... Is this possible?
How have... You not succumbed?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>What can I say? The more you give me, the more powerful I become...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You pause considering your next words.
</p>
<div class='row right'>
<div class='right-msg'>But since you're about to die, I suppose I can tell you. I was sent here. Against my will to be honest. I was forced to become this... Thing
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
His featureless face still looks pained, but you can see realization dawn on his face.
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>That Bitch... She must have had... Something to do with ... This
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<p>
He cums again, flooding your womb with hot seed. His cock swells and he bucks into you, forcing more of his boiling hot cum deep into your womb.
</p>
<div class='row right'>
<div class='right-msg'>Aaahhhh...
You seem to ~Aah♡~ be aware of who sent me.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>Release me and I'll *grunt* tell you everything
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<p>
You consider his words for a moment, when he cums again, making you shake and explode. Your pussy squeezing the last drop of cum out of his cock.
</p>
<div class='row right'>
<div class='right-msg'>re·ject·ed ♡
I couldn't stop if I wanted to!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You reach as high as you can and kiss him on his chest.
He laughs a raspy sounding laugh.
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>You don't know what... That bitch ....ssssuhhh....
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<p>
His cock spurts out the last of his essence inside of you, his cum no longer boiling but just hot, you have stolen everything he had to give and he is finally dead.
You begin to climb off of him, carefully ungluing the semen from his cock and your legs.
</p>
<div class='row right'>
<div class='right-msg'>What was he saying?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Well whatever, you're one Demon down. A few more to go. Maybe this won't be so hard? Instead of feeling exhausted you feel powerful. Maybe even a little drunk. You begin walking away trying to find your way out, but your vision is blurred and your sense of balance is off. You recognize this feeling pretty well. You're definitely drunk. Off cum? Is it because of how much he gave you? Or is it because you're taking tainted semen directly from the source? Either way, this buzz feels pretty good.
You manage to find an exit and step outside. It's dark. Good. You need to go home before you end up fucking every single one of his subordinates, as tempting as that would be. You could let your body finish absorbing the cum stuck to your thighs, but you really just want a bath. You stop by a stream and wash yourself off, then head home to sleep off your buzz.
</p>
<</if>>
<<set $boss1alive to false>>
<<set $lust += 1000>>
You have gained $expmod exp, $coppermod Copper and $cummod Cum!
With the Demon's life absorbed, it feels like something dormant within you has been stirred. You can't shake the feeling that your magic has been affected somehow.
You look around ready to collect your things and head out. You notice a book near his throne and for some reason you're compelled to grab it.
You're tired, it's time to go [[home][$currentlocation to "shack"]]
</div>
<<set $lust to $lust + $expmod>>
<<set $inv.money to $inv.money + $coppermod>>
<<set $inv.cum to $inv.cum + $cummod>>
<div class="conversation">
<div class='row right'>
<div class='right-msg'>It's actually unfair how fucking sexy you are
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>$friend2<hr> Oh stop, take off that shirt and show me your beautiful tits!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/emily.png">
</div>
</div>
<p>Girls say these things to each other all the time, right? Right!?
The playful banter goes on, full of sarcasm until your other friend finally shows up.</p>
[[friend arrives|friend arrives (girl)]]
</div><div class="conversation">
<div class='row left'>
<div class='left-msg'>$friend1<hr> I come baring gifts!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/james.png">
</div>
</div>
<p>James arrives, holding a pizza and already eating a slice
<img class="passage-image" src="demongodsassets/people/fullbody/james.png" >
</p>
<div class='row right'>
<div class='right-msg'>Finally, I'm starving!
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
<p><img class="passage-image" src="demongodsassets/img/games/games.png" >
You guys continue playing until pretty late at night, making dumb bets.
Sadly, all things must end and you bid your friends good night.
[[strip naked and sleep|strip naked and sleep (girl)]]
[[just sleep|just sleep (girl)]]
</p>
</div>
<<nobr>><<set $arousal to $arousal + 5>>
<<set $outfit.outfit to "none">>
<<set $outfit.accessory to "none">>
<<set $wardrobe.outfit.delete("jeans")>>
<</nobr>>
<div class="conversation">
<p><img class="passage-image" src="demongodsassets/img/games/fire.png" >
As you awake to the blaring sound of the fire alarm, you immediately sense something is off. You can smell smoke and feel a growing sense of panic wash over you. You rush out of your bedroom and into the hallway, only to see thick smoke filling the air. Your heart races as you realize that your kitchen is engulfed in flames. You know it's too late to put out the fire, so you sprint out of your apartment, your bare feet pounding against the pavement.
But as you make your way to the stairs, you see that they are already engulfed in flames. You're trapped on the seventh floor, with no way down. The heat is intense, and you feel your skin beginning to burn as the fire rages around you. You're completely naked, having fallen asleep without getting dressed, and you regret not grabbing clothes as you fled your apartment.
With no other options, you stand there helplessly as the flames continue to consume everything around you. Your last thoughts are of regret and despair as the pain becomes too much to bear. You know you're going to die, and all you can do is hope that it will be quick.
</p>
<div class='row right'>
<div class='right-msg'>Damn, I always knew I'd one day die with my tits hanging out...
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
[[you wake up|you wake up(girl)][$currentlocation to "none"]]
</div>
<div class="conversation">
<p><img class="passage-image" src="demongodsassets/img/games/fire.png" >
As you awake to the blaring sound of the fire alarm, you immediately sense something is off. You can smell smoke and feel a growing sense of panic wash over you. You rush out of your bedroom and into the hallway, only to see thick smoke filling the air. Your heart races as you realize that your kitchen is engulfed in flames. You know it's too late to put out the fire, so you sprint out of your apartment, your bare feet pounding against the pavement.
But as you make your way to the stairs, you see that they are already engulfed in flames. You're trapped on the seventh floor, with no way down. The heat is intense, and you feel your skin beginning to burn as the fire rages around you.
With no other options, you stand there helplessly as the flames continue to consume everything around you. Your last thoughts are of regret and despair as the pain becomes too much to bear. You know you're going to die, and all you can do is hope that it will be quick.
</p>
<div class='row right'>
<div class='right-msg'>Damn, I'm gonna die.
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
[[you wake up|you wake up(girl)][$currentlocation to "none"]]
</div><div class="conversation">
<p>As you open your eyes, you realize you're surrounded by darkness.
</p>
<div class='row right'>
<div class='right-msg'>Is this Heaven? Hell? Purgatory?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
<p>You attempt to reach out your arm grasping at nothing. You're not even sure you have an arm, or if it's a phantom limb. Heh. Phantom. Cause you're dead.
</p>
<div class='row right'>
<div class='right-msg'>There's nothing here...
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
<p>Suddenly a bright light appears before your eyes.
<img class="passage-image" src="demongodsassets/people/fullbody/goddess.png" >
</p>
<div class='row left'>
<div class='left-msg'>Goddess<hr>You are in the realm of the gods, You have died, and I have brought you here to offer you a chance at rebirth.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<p>The voice is feminine but overpowering</p>
<div class='row right'>
<div class='right-msg'>A chance at rebirth?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Goddess<hr>You will be reborn in a world of corruption, You are immune to this corruption, and it is your task to absorb it from the Tainted, or destroy it with your own power. In return, you will be granted the opportunity to continue living.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>...What?
...
...
Do I get a choice?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Goddess<hr>No.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<p>This is sounding strangely like one of those isekai anime...
</p>
<div class='row right'>
<div class='right-msg'>But if I complete this task, what's in it for me?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
<p>Although the chance to live again doesn't sound too unpleasant, there's just something about it that seems..fishy.
</p>
<div class='row left'>
<div class='left-msg'>Goddess<hr>The chance at another life.
The chance to avoid the infinite abyss of death
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Hold up. Are you a God?
If you're a God, are you seriously telling me there's no afterlife? What the shit!?
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
<p>Blatantly ignoring your query, it continues</p>
<div class='row left'>
<div class='left-msg'>Goddess<hr>I am a Goddess
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<p>Is it you, or did the unfeeling cold voice just sound offended?
</p>
<div class='row left'>
<div class='left-msg'>Goddess<hr>You are a means to an end, Your existence serves a purpose of creating balance. Whether you fulfill that purpose or not is of no concern to me.
You are here now, and you must fulfill your task. Go to the forest. Find the source of the corruption and destroy it. Your body will be adjusted to handle this.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<p>Your body will be adjusted? You sure hope you don't end up as some hairy dude...
A literal Goddess is telling you that you don't even matter. What a Bitch.
</p>
<div class='row right'>
<div class='right-msg'>Wow. Rude.
Ok, well how do I even-
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
<p>Suddenly you feel your consciousness slipping, but you always need the last word
</p>
<div class='row right'>
<div class='right-msg'>I was an Atheist!
</div>
<div class="img-box">
<img class='right-img' @src="'demongodsassets/people/headshots/you/black.png'">
</div>
</div>
[[Awaken in a brand new world|Awaken in a brand new world(girl)][$currentlocation to "plains"]]
</div>
<div class="conversation">
<<nobr>><<set $gender to "female">>
<<set $hair to "black">>
<<set $breasts to "small">>
<<set $race to "human?">><</nobr>>
<p>
<<if $outfit.outfit is "none">>
<img class="passage-image" src="demongodsassets/img/plains/plains.png" >
As you wake up, you feel a cool breeze against your skin. You try to sit up, but something feels off. Your body feels different, more sensitive and excitable. You look down and see that you're completely naked, your body looks mostly the same, but somehow different. Your breasts are more perky and firm, you weren't in bad shape to begin with but what little fat you did have is all gone and your complexion is clear. You're in incredible shape! What's more, you feel horny. You literally just died and woke up horny.
You look around and realize that you're on a grassy plain, surrounded by rolling hills and a clear blue sky. You have no idea how you got here or where you are, but you know that you have to find a way back home.
You stand up and start to explore your surroundings, taking in the strange new sensations of your altered body. As you walk, you can feel the grass beneath your feet and the wind in your hair, and your senses seem heightened. You can hear the rustling of leaves and the chirping of birds, and you can feel every blade of grass and every pebble on the ground. Your vision, hearing and even your sense of smell seem to have improved drastically.
Despite your confusion and fear, you can't help but feel a sense of excitement and curiosity about this new world and your new body. You know that you have to find a way back home, but for now, you can't resist the urge to explore and see what this strange new place has to offer.
<<else>>
<img class="passage-image" src="demongodsassets/you/clothes/jeans.png" >
As you wake up, you feel a cool breeze against your skin. You try to sit up, but something feels off. Your body feels different, more sensitive and excitable. You look down and see that you're still wearing your jeans and shirt, your body looks mostly the same, but somehow different. Your breasts are more perky and firm, you weren't in bad shape to begin with but what little fat you did have is all gone and your complexion is clear. You're in incredible shape! What's more, you feel horny. You literally just died and woke up horny.
You look around and realize that you're on a grassy plain, surrounded by rolling hills and a clear blue sky. You have no idea how you got here or where you are, but you know that you have to find a way back home.
You stand up and start to explore your surroundings, taking in the strange new sensations of your altered body. As you walk, you can feel the grass beneath your feet and the wind in your hair, and your senses seem heightened. You can hear the rustling of leaves and the chirping of birds, and you can feel every blade of grass and every pebble on the ground. Your vision, hearing and even your sense of smell seem to have improved drastically.
Despite your confusion and fear, you can't help but feel a sense of excitement and curiosity about this new world and your new body. You know that you have to find a way back home, but for now, you can't resist the urge to explore and see what this strange new place has to offer.
<</if>>
Take care of this itch?
[[take in your surroundings|take in your surroundings (girl)]]
[[take care of this itch|touch it some more (girl)][$p.acceptance += 1]]
</p>
</div><div class="conversation">
<<set $p.acceptance += 1>>
<p>You're no stranger to masturbation, but doing it outside <<if $p.acceptance lt 25>>for the first time<</if>> kinda gives you a thrill. Of course you wouldn't be doing this if anyone was around but your body comes with these new powerful sensations that are difficult to resist.
You're alone, <<if $outfit.outfit is "none">>naked <</if>>and sitting in a grassy field. There's not a single soul in sight.
<<if $outfit.outfit is "jeans">>You start by removing your clothes in a hurry and then<<else>>You<</if>> start by grabbing your left breast with your left hand, and moving your right hand to your crotch. Rather than inserting right away, you took time to experience this electrical feeling which was more powerful than you've experienced in the past, simply by caressing around your pussy lips. You then start gently rubbing your new slit. This sensation is way more powerful than it was back when you were in your old life. You begin to thrust your hips back and forth, moaning and squealing. You've never felt so free, and so happy.
<img class="passage-image" src="demongodsassets/you/scenes/grassyplain/plainsbate.png" >
You can feel your clitoris swell as you grow wetter, and you begin to touch it with your fingers. You keep playing with your breasts and pussy, but your attention keeps drifting back to your clitoris.
You've probably cum thousands of times before, but you never felt this sensitive! You move your left hand and place it over your clit. You then move your right hand down and start rubbing.
You begin to moan louder and louder, until finally you feel yourself reach orgasm. You scream, your whole body shaking, your eyes rolling back in your head. You collapse onto the ground, gasping for breath.
For your first orgasm in a new world, it felt more powerful than you were used to, came to you more easily, and you can see this getting addicting.
<<if $p.acceptance lt 25>>It momentarily crosses your mind that you were far too easily accepting of all these actions. You've never masturbated outside the privacy of your own home before! It's almost like you had no control and just HAD to do it. Despite being a virgin, if another man was here you're pretty sure you would have given in easily. New body jitters?<<else>>It momentarily crosses your mind that you didn't even stop to think about what you were doing. Not that it's the first tiem you've masturbated in public, but it's still weird you did it so easily after literally dying!<</if>> You don't even feel traumatized over your death. You don't think you were that mentally strong but for some reason sexual emotions come a lot easier instead.
[[take in your surroundings|take in your surroundings (girl)]]
</p>
</div>
<div class="conversation">
<p>
<<if $outfit.outfit is "none">><img class="passage-image" src="demongodsassets/img/plains/surveynaked.png" >
<<else>><img class="passage-image" src="demongodsassets/img/plains/plainsjeans.png" >
<</if>>
You begin to consider your surroundings. You're in a pretty empty plain. You see some mountains in the distance in one direction, and in the distance you see a great wall circling what looks to be a town in the other direction.
<div class='row right'>
<div class='right-msg'>Based on what the white light said, it sounds like this isn't Earth.
...
And I'm supposed to absorb corruption here or something?
Absorb...what exactly does that mean?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<if $outfit.outfit is "none">>
<div class='row right'>
<div class='right-msg'>Sure wish I had some clothes. What if I run into other humans, they'll think I'm some sort of deviant...
God this is embarrassing.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<</if>>
As you prepare to step out into the world, you can't shake the feeling that something isn't quite right. You pause, trying to focus on the source of your discomfort, and that's when you realize it - you have an extra sense, a sixth sense, that wasn't there before. It's almost as if you can feel an invisible appendage emanating from your body, a feeling that becomes even more pronounced as you start to focus on it.
At first, you're not sure what to make of this new sensation. It's not like anything you've ever experienced before, and you don't know how to describe it to anyone else. But as you continue to focus on it, you begin to realize that it feels like magic. Specifically a spell charged with arousal - something that allows you to imbue opeople with your magical energy. A charm spell?
And that's not all. As you delve deeper into this strange new power, you realize that you have more magic at your disposal than you ever imagined. It's like a well of power within you, waiting to be tapped and harnessed. You don't know how you know this, or why you're able to use it, but you're certain that it's there, waiting for you to use it to its full potential.
Information about the power floods your mind, it seems that as long as its sexual, any pain you receive turns into pleasure. Additionally you can't die from it. Is this your cheat skill? <<if $p.acceptance lt 25>>It seems like a pretty shitty cheat spell, how will this help you destroy demons? Are you supposed to seduce them then kill them while you bang? Wait, this can't be what the Goddess meant by absorb...can it!?
...
...
...So why does that feel like it might turn you on?<<else>>You've never tried BDSM and you're not sure if you're particularly interested in kinky violent sex. Is this how you're expected to absorb corruption? No way, that's ridiculous. Kinda hot though.<</if>>
No matter what your thoughts were, you need to continue. It's probably a good idea to start thinking up new names, or perhaps keep your old one.
[[head towards city|head towards city (girl)][$currentlocation to "blackpoolgate"]]
[[head towards mountains|head towards mountains (girl)][$currentlocation to "mountains_day"]]
</p>
</div>
<<set $randname to random(11)>>
<<if $randname is 0>><<set $defname to "Dhysienne">>
<<elseif $randname is 1>><<set $defname to "Aezsha">>
<<elseif $randname is 2>><<set $defname to "Rhellia">>
<<elseif $randname is 3>><<set $defname to "Qinelin">>
<<elseif $randname is 4>><<set $defname to "Elineli">>
<<elseif $randname is 5>><<set $defname to "Mezaela">>
<<elseif $randname is 6>><<set $defname to "Nessiana">>
<<elseif $randname is 7>><<set $defname to "Nessoris">>
<<elseif $randname is 8>><<set $defname to "Ohirvia">>
<<elseif $randname is 9>><<set $defname to "Fyseraela">>
<<elseif $randname is 10>><<set $defname to "Lynnelin">>
<<elseif $randname is 11>><<set $defname to "Vylarah">>
<</if>><div class="conversation">
<p> The walk is slow it doesn't help that you're barefoot, and your breasts keep bouncing making you aroused again. Thankfully though your body did change a little bit, they're still small so it's not too much to handle. You might have wished for biggers ones every once in a while but you were grateful you didn't experience your friend $friend2's back problems.
The wind keeps annoyingly blowing black strands of hair into your eyes, but before you know it you've arrived at the city gates.
You arrive to see a guard eyeing you suspiciously.
<img class="passage-image" src="demongodsassets/people/fullbody/garret.png" >
<div class='row left'>
<div class='left-msg'>Garret<hr>Who are you<<if $outfit.outfit is "none">> and where are your clothes<</if>>?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
You realize the truth sounds insane, and you didn't have time to think of a good lie. This does look like a fantasy world, why not go with the cliche?
<div class='row right'>
<div class='right-msg'>I don't know, I think I was attacked by bandits on the way here<<if $outfit.outfit is "none">> they took them<</if>>.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Garret<hr><<if $outfit.outfit is "none">>They took them? <</if>>And left you alive? And you're coming from the South, I don't know of any bandit camps out that way.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/garret.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Look, I'm not asking you to let me in, could I just please have <<if $outfit.outfit is "none">>something to wear and maybe <</if>>a bite to eat? I'm famished...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
This isn't working.
But looking at the guards eyes and how he's leering at you <<if $p.acceptance gt 25>>like so many men in your past life.<<else>>which admittedly is kind of a new experience. You always thought it'd offend you if it happened back when you were a plain girl, but you feel kind of ashamed that it's turning you on...<</if>> Now seems like the best opportunity to try out your new magic. You cast Charm Level 1 on the guard.
The guard looks at you semi-vacantly. you can feel his eyes travel down to your <<if $outfit.outfit is "none">>naked <</if>>breasts, then continue downwards.
Suddenly you realize this might not have been a great idea. The guard drops his spear and starts walking towards you, while simultaneously dropping his pants.
Slightly impressed he didn't trip over his pants, your eyes are suddenly drawn to his dick in full view. You can feel a tingle in your lower regions and realize that you might be a little wet. You're not used to being this easily aroused. <<if $p.acceptance lt 50>>You'd love to spend more time convincing yourself that you're not turned on, but t<<else>>T<</if>>he current scene demands your attention.
But shit! You were only expecting your charm to help you convince him. You weren't expecting it to be THIS powerful! <<if $p.acceptance lt 50>>This isn't what you wanted at all!<<else>>If you're being honest, it's not like you haven't used your body to get what you want in the past and he isn't bad looking for an older gentleman. But you've never been into public sex before!<</if>>
He's already begun stroking it by the time he reaches you and forces a kiss on you.
As his tongue is in your mouth, you taste sweat. You desperately try to push him away
<<set $p.acceptance += 1>>
<div class='row right'>
<div class='right-msg'>Please stop!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You're screaming for help and cursing your weak body when suddenly you hear someone shouting.
<div class='row left'>
<div class='left-msg'>Jared<hr>Garret, what the Hell are you doing to the poor woman, what the fuck is wrong with you!?
<<if $outfit.outfit is "none">>What's she going to do naked and weaponless?<<else>>Even if she's a bandit do you really think she could do much damage with that tiny body of hers?<</if>>
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
Another man, dressed in armor a little fancier looking than the first arrives and yanks the guard named Garret off of you.
<div class='row left'>
<div class='left-msg'>Jared<hr>I'm sorry Miss, my name is Jared and I'm the captain here
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<img class="passage-image" src="demongodsassets/people/fullbody/jared.png" >
<div class='row right'>
<div class='right-msg'>Thank you for your help!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Jared<hr>I will deal with him soon, you have my word.
Could you please tell me who you are and why you're here?<<if $outfit.outfit is "none">> And what happened to your clothes?<</if>>
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
You try to improve your story at least a little bit, but it's hard when you're thinking on your feet and your head is full of images of cock.
<div class='row right'>
<div class='right-msg'>I'm really sorry, I seem to have lost my memory. All I remember is being attacked over there, then waking up <<if $outfit.outfit is "none">>naked <</if>>in that field south of us.
I don't even remember my name...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Jared<hr>Sounds like the work of Gypsies if you ask me. Rotten Mystics.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
He turns his head and spits.
<div class='row left'>
<div class='left-msg'>Jared<hr>It's odd for a girl as pretty as you to be wandering around with no guard. Judging from your skin, you don't look like a farmers daughter. I'd wager you were a nobles daughter, or maybe you belong to one of the pleasure houses. Lets get you inside and we'll check missing person reports. Though it's not uncommon for nobles to sell their daughters to pay debts, so we might have nothing. <<if $outfit.outfit is "none">>I'll also get you something to wear while we're at it. <</if>>For now, what should I call you?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'><<textbox "$name" $defname>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Jared<hr>Aye then, Come along.
And welcome to Blackpool.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
You follow Jared to the Guard Tower. He steps away for a moment.
[[2 hours later|2 hours later (girl)]]
</p>
</div><div class="conversation">
<p>You begin your trek towards the mountain in the distance.
It starts to get dark and you realize you should probably find shelter.
You walk around the base of the first mountain you approached until you find a barely worn path. You begin your trek up that path until, in the distance you see a cave. You can't tell how big it is, but it's big enough to at least shelter you for the night. Unfortunately there is no clear path to the cave, so you'll have to climb through the bushes to get there.
You finally make it there, and as you enter the cave you see a door just inside.
<img class="passage-image" src="demongodsassets/img/backgrounds/cavedoor.png" >
That's certainly weird, but you aren't complaining. So you knock.
No response. Maybe it's abandoned?
<img class="passage-image" src="demongodsassets/img/backgrounds/cavebed.png" >
You enter inside, as soon as your eyes land on the bed you immediately jump on it and just pass out.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Well, it's not often that people come to my home and offer themselves to me
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>You wake up feeling groggy and look at the source of the voice.
You see a gorgeous winged woman with horns.
<img class="passage-image" src="demongodsassets/people/fullbody/rhelyla.png" >
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>But I'm not really into women, so you need to get up.
And before I let you leave, you need to explain to me how you entered.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>Fuck! She must be the one who lives here!
</p>
<div class='row right'>
<div class='right-msg'>I...
I...
I'm sorry! I just came up here in search of shelter. I saw a cave, and then I saw a door! I knocked but no one answered so I thought maybe it was abandoned so as soon as I saw the bed I was so tired I just passed out!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You look around seeing that you clearly missed how much stuff was here. It's clear this place wasn't abandoned.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>You say you saw the door?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>Her face softens.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I see. You're one of us.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>You look at her confused.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Well, I can't have you staying here. This is my territory. Where are you trying to go?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I don't know.
I don't really remember anything, I don't even know where I am.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Well, I'd recommend you head towards the city north of here as a start.
However it's not a good idea to reveal what we are to humans. I'd recommend caution.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>That comment again...
</p>
<<if $outfit.outfit is "none">>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Most don't believe we exist, but some do and they can be a problem. Here, I've got some old clothes you can have.
By the way, my name is Rhelyla.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>She hands you some clothes to wear. They look very provocative, but...when the alternative is being completely nude...well they're better than nothing. You put them on.
You check yourself out in the mirror. You look beautiful.
<img class="passage-image" src="demongodsassets/you/clothes/nohorns/noears/black/revealingdress.png" >
You apologize once more, and thank her for her help, then you head towards the city.
</p>
<<set $outfit.outfit to "revealingdress">>
<<set $wardrobe.outfit.push("revealingdress")>>
<<else>>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Most don't believe we exist, but some do and they can be a problem.
By the way, my name is Rhelyla.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>You apologize once more, and thank her for her help, then you head towards the city. </p>
<</if>>
[[head towards city|head towards city (girl)][$currentlocation to "blackpoolgate"]]
</div>
<<set $metbeforecity to true>>
<<set $metrhe to true>>
<div class="conversation">
<p>After the guard named Jared brings you to the guard tower, he <<if $outfit.outfit is "none">><<set $outfit.outfit to "rags">><<set $wardrobe.outfit.push("rags")>>gives you some rags to wear and <</if>>brings you some bread and heads out promising to return soon after checking missing person logs and reaching out to a couple families.
<<if $outfit.outfit is "rags">><img class="passage-image" src="demongodsassets/you/clothes/nohorns/noears/black/rags.png" >
<<elseif $outfit.outfit is "jeans">><img class="passage-image" src="demongodsassets/img/scenes/breadjeans.png" >
<<else>><img class="passage-image" src="demongodsassets/img/scenes/breaddress.png" >
<</if>>
You chew on the bread as you really were starving. But while there wasn't much to begin with, your hunger isn't even a little bit sated.
</p>
<div class='row left'>
<div class='left-msg'>Jared<hr> Well, good news and bad news.
The bad news is we weren't able to find anyone missing matching your description. We checked noble houses as well as the pleasure women working in the tavern. I suppose it's possible you were a peasants daughter, though that's hard to believe with your unnaturally good skin. But we have no way of reaching out to every peasant family. And... If you want my brutal honesty, lass. If you're from any family, noble or otherwise, and they haven't reported you missing. I'd wager there's a good reason you wouldn't wish to return to them.
That said, the good news is that I was able to negotiate for you to stay.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<p>Well you knew no one would report you missing since you made that story up in a hurry, but it's good to know that someone else was able to fill in the gaps in your story.
</p>
<div class='row left'>
<div class='left-msg'>Jared<hr> Now you clearly haven't got a penny to your name, and we got no place to offer you. My wife would kill me if I brought you home and well...I don't recommend staying with Garret after what just happened.
Here, this is some of my own money. 200 copper won't get you far, but you should be able to get a couple nights stay in an Inn while you figure stuff out. This should at least help prevent you from having to sell your body for a bite to eat and a place to sleep.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Wow, I don't know what to say. You've saved me in more ways than one. Thank you. Thank you so much. I promise I will pay you back one day!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<if $p.acceptance gte 50>>
<p>You bite your lip and your eyes travel down his body</p>
<div class='row right'>
<div class='right-msg'>Or...you know I could just pay you back right here?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>Jared looks like he's struggling with some internal turmoil</p>
<div class='row left'>
<div class='left-msg'>Jared<hr> You are... Surprisingly forward. Perhaps Garret wasn't the one coming on to you?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<p>He pauses for a moment considering</p>
<div class='row left'>
<div class='left-msg'>Jared<hr> No, I really can't. I didn't think I'd ever have such a hard time saying no, but I really do love my wife and she'd never allow a mistress.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Aww... Suit yourself. I'm never heard of someone giving away money for free so I thought I'd take care of it right away.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<</if>>
<p>Jared smiles gently</p>
<div class='row left'>
<div class='left-msg'>Jared<hr> Aye lass. Just keep your head down and stay out of trouble. And I recommend you find a way to earn money fast and hire a guard. A woman with skin as fair as yours is likely to be kidnapped for ransom, or never seen again.
For now, head north and turn left when you see the market. If you keep going straight for a bit, you should run right into the Inn.
Once you've got some money, if you ask me most of our apothacaries are quacks. But maybe one of them can help you recover your memory.
I'm sorry we can't help you more, but if you remember anything else please stop by and we'll do what we can.
If you're looking for work, the owner of the brothel is said to be very kind. But you very well may be someone's daughter so I'm not sure that's the best idea. You could see if the tavern needs another waitress I suppose.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/jared.png">
</div>
</div>
<p>You thank him one last time, as you head out and try and find this Inn.
</p>
[[enter the city for the first time|enter the city for the first time (girl)][$currentlocation to "blackpool"]]
</div>
<div class="conversation">
<p>You enter the city for the first time, and it doesn't take you long before you're worried you're already lost. This place is huge! You turned left at what appeared to be a market, but you've been walking for a long time and you haven't run into anything that looked like an Inn.
Before you start second guessing yourself and turning back the way you came, you see your road coming to an end and the building at the end of the street does look large enough to have some rooms.
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/innkeeper.png" >
You walk up to the building, finally at an end to your long trek and see a man sweeping in front of the entrance. Before you get a chance to say a word he already opens his mouth.
<div class='row left'>
<div class='left-msg'>Innkeeper<hr>We're full.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/innkeeper.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oh... Um, I'm sorry. The guards directed me here and said I could find a safe place to sleep. Do you have anything to spare? I'll even take a closet!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Innkeeper<hr>You daft, lass? I said we're full. Bugger off.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/innkeeper.png">
</div>
</div>
He pauses looking you up, starting at your legs and moving upwards to your face.
<div class='row left'>
<div class='left-msg'>Innkeeper<hr>Hehe. I suppose I can make an exception if you're willing to make a deal.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/innkeeper.png">
</div>
</div>
He starts rubbing his crotch through his robe while looking at you.
<<if $p.acceptance lte 50>>
Even without his rude hand motions, a monkey would understand the meaning behind those eyes.
You haven't even been a woman for a full day and you're already getting a good idea of what the rest of your life will be like.
Fuck this world.
<div class='row right'>
<div class='right-msg'>Ew, what the Fuck is wrong with you!? Fucking pervert! Asshole!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Innkeeper<hr>Oi this lass got the mouth of a sailor! Hahaha.
That's only making me harder.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/innkeeper.png">
</div>
</div>
You turn to leave, absolutely pissed. The fuck are you supposed to do now?
<div class='row left'>
<div class='left-msg'>Stranger<hr>Hey lady!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
You look at the source of the voice and see a somewhat disheveled, dirty man. He smells like booze.
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/creep.png" >
<div class='row right'>
<div class='right-msg'>Yes?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Stranger<hr>I got a place you can stay. I got food too! All it'll cost is 20 copper!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>How do I know you won't do anything shady?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Heheh. Lady I'm after your money, not your body. Though...
I'd be willing to make you the same offer as the owner of that Inn, heh.
But I'll warn you, I've only got 1 bed and I'm not giving you a discount for sleeping on the floor. So 20 copper, and you get a meal, a floor and I'll even throw in a blanket.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
He probably has ulterior motives, but at this point you'll cross that bridge when you come to it. Can you fight him off in this body? More to the point, you're starving and he's offering you food. It's like this body has never eaten a single bite of anything before! Well, in all fairness it probably hasn't other than what that guard gave you.
Well, the hunger is clouding your judgement. It's probably a bad idea, but you NEED food.
<<else>>
He's basically eye fucking you, but you don't mind. Men here are no different than your homeworld, if maybe a bit more openly vulgar. You consider his words for a moment...
<div class='row right'>
<div class='right-msg'>I'm pretty sure I'm worth more than just a single bed. I want food and money.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Innkeeper<hr>We're in the slums lass, ain't got no money. no one does. Take it or leave it.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/innkeeper.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Hey lady!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
You look at the source of the voice and see a somewhat disheveled, dirty man. He's clearly drunk.
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/creep.png" >
<div class='row right'>
<div class='right-msg'>Yes?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Stranger<hr>I got a place you can stay. I got food too! All it'll cost is 20 copper! Or I'm willing to make the same deal as that guy, but I'll let you stay for more than 1 night. How about it?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
You consider it. This is an opportunity to start fresh in a new world. Do you really want to start by whoring yourself out?
<div class='row left'>
<div class='left-msg'>Stranger<hr>Heheh. Lady I'm after your money, not your body. But I'm more than happy to take either.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I'll consider both options, but I will agree to one of them. Lead the way.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<</if>>
</p>
[[Accept his offer|Accept his offer (girl)]]
</div>
<div class="conversation">
<p>Despite your misgivings, you followed the man. He had trouble walking in a straight line, and you started to worry if he even knew where he was going, or based on how your surroundings got increasingly seedy looking, he might be leading you into a trap.
<div class='row right'>
<div class='right-msg'>Are you sure we're going the right way?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
well if that was ever a classic line... <<if $p.acceptance lt 50>>You're definitely getting raped. <</if>>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Calm yourself lass, I know these streets better than anyone.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
Ready to run in an instant, you continue following. You even lend him a shoulder to lean on and stay balanced after you get tired of picking him up off the ground too many times. <<if $p.acceptance gte 50>>You're suspicious that some of his stumbles are attempts to grope you, but for whatever reason you don't mind. If anything you're feeling more turned on by his clumsy attempts. Not that handsome, but maybe you'll take him up on his offer.<</if>>
After some time passes and you're beginning to wonder just how massive this town is, he finally announces you've arrived. It's a shack. If it can even be called that. It's a run-down wooden shed with gaps in the wood. Definitely no protection from the elements.
After he leads you inside, he puts on a fire and begins cooking something in a pot. Surprisingly, while he has looked at you more than once, and he's made embarrassing attempts to flirt with you. He's been a perfect gentleman.
<div class='row right'>
<div class='right-msg'>Just how big is this town anyways?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
He grabs something off one his table and hands it to you. It's a map!
<div class='row left'>
<div class='left-msg'>Stranger<hr>Here you go. This'll help you-
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
He sets to work immediately, using a flint and steel to light a small fire in the corner of the hovel. The pot he sets upon it, is dented and blackened from frequent use. The smell emanating from it is not particularly enticing, mostly just the smell of boiling water and maybe some root vegetables.
<img class="passage-image" src="demongodsassets/img/scenes/blackpool/creepcook.png" >
You take in your surroundings, the hovel is a far cry from the apartment walls you were accustomed to. The wooden walls are rotting and the air thick with the stench of decay. The table is cluttered with remnants of past meals, the utensils caked with food residue. You can't help but wonder how the man manages to keep his tools clean in this primitive age, but your hunger overrides your concerns as your stomach growls in protest.
<div class='row left'>
<div class='left-msg'>Stranger<hr>Hungry, eh? Haha.
I'm pretty proud of this recipe, I'm a cook at one of the local taverns. Don't got no spices here at home, but can still make a damn good stew. Here, it's ready.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
You've had better, but given your expectations of medieval food it isn't bad. You hear him talking, but you can't make out the words. It's not that you're drugged, it's that you're STILL starving. It's to the point where you can't focus on anything around you, and you continue absolutely devouring the food.
The more you eat, the hungrier you are. What is going on?
<div class='row left'>
<div class='left-msg'>Stranger<hr>Damn, lass. I didn't expect you to eat the entire thing. I should have charged you more.
Ah well, it's nice to have some company for once.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
Your eyes are unfocused and you barely comprehend someone is talking. Everything around you seems blurry and your hunger is overpowering.
<div class='row left'>
<div class='left-msg' style="color: transparent; text-shadow: 0 0 5px rgba(0,0,0,0.2);">Stranger<hr>Listen, I know I said you have to take the floor. But your skin looks like it'll scar if I let you sleep on the floor. You can take my bed until morning. Might be some fleas, but it's probably safer than the floor. And I...
Wait, what are you doing?
...
You keep taking your clothes off, so that means you agreed to my offer. Right?
...
Lass?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
You begin feeling dizzy, and pass out
</p>
[[lewd dream|lewd dream (girl)][$currentlocation to "earth"]]
</div>
<div class="conversation">
<<set $arousal to 0>>
<<set $inv.cum to $inv.cum + 25>>
<<set $lust += 500>>
<p>You're in your room again sitting on the edge of your bed, back in your house. You're naked.
Your ex-boyfriend was there. You try to remember why you broke up, but everything just feels kinda foggy. You guys must have drank a lot last night, it almost feels like you're swimming when you try to get out of bed.
He's standing in front of your bed, his clothes are already off. You don't remember agreeing to any of this, and your mind briefly sounds off alarm bells as you worry that he might have drugged you. But it's so hard to think as you can feel yourself dripping in arousal.
As he inserts his cock in your mouth, he throws his head back and lets out a light moan. you continue working on him until he cums he cums. You gulp it down greedily like a good girl, before looking at him and pushing him onto his back. You're eager to have your way with him. You're not usually a dominant woman something you can't explain is driving you.
<img class="passage-image" src="demongodsassets/sexscenes/dreams/lewd2.png" >
You position yourself above him, spread yourself open giving him a good look at your gaping vagina.
Then you slowly lower yourself onto his cock, impaling yourself with a gutteral moan.
You continue pumping yourself up and down on him, he's looking up at you with glowing red eyes. His horns are on the sides of his head and curled backwards along his scalp, you didn't notice them previously, but for some reason it doesn't seem odd. You almost remember your ex-boyf- wait no, that's not right. Ex-girlfriend, what were you thinking? Anyways you almost remember her having horns, and you can't really seem to care about them at the moment.
<img class="passage-image" src="demongodsassets/sexscenes/dreams/lewd1.png" >
You feel yourself burst, and weirdly feel two orgasms at the same time. One major one that runs through your entire body and one large explosion but centered around your crotch only and exploding down the length of..something? Like a phantom limb above your vagina. This is amazing, no one has ever fucked you like her(him?)! <<if $p.acceptance lt 25>>Wait a minute, weren't you a virgin? Everything except that cock is so hazy...<</if>>Even though you both just came, for some reason (s)he's already hard and you're already back to pleasuring them.
She pumps you, in and out, in and out and you have to reach up and grab your chest as it's bouncing around too much.
You start squeezing the mounds on your chest without realizing, reveling in the pleasure.
You feel yourself below squeezing and gripping something long and hard. As you feel an explosion of pleasure from another orgasm, you feel yourself fill something tight and warm and yourself filled and leaking with liquids dripping out of you.
You look down, and she is pounding your vagina with her cock. You grab her by the hair and pull her towards your nipples which she starts sucking on, eliciting yet another moan from you as you involuntarily squeeze your vagina around her cock.
She pulls out of you and commands you to get on your knees, you comply and she sprays your face with cum.
This time you push her onto her back, lining her member up with your slit, and penetrate yourself.
You guys continue fucking until you're completely drenched in semen, with it practically flowing out of your cunt.
500 lust gained!
[[next morning|next morning(girl)][$currentlocation to "shack"]]
</p>
</div>
<<set $ears to true>><div class="conversation">
<p>You wake up.
The first thing you notice is that you feel amazing. The second is that you're not hungry anymore.
You think back on that dream you just had, it's memory already fading. You remember you were back home, then the dream went weird.
Even weirder, as you recall his face, you realize you don't recognize him at all among any of your ex's. Especially when he turned into a girl.
You touch your chest and notice it feels sticky. Suddenly you remember the previous night. You're now naked, sticky and you don't know where that man is.
<<if $p.acceptance lt 50>>
<img class="passage-image" src="demongodsassets/you/scenes/home/wakeupcovered.png" >
Tears begin to flood your eyes.
<div class='row right'>
<div class='right-msg'>That fucking asshole raped me!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You start gagging and can feel yourself ready to vomit, repulsed by what happened to you. You turn to vomit over the side of the bed when you see the man looking up at you with his wide open eyes.
Shrieking, you jump out of bed and run to the door, briefly stopping to realize you're still naked. You pause only for a second debating on what to do before you realize he's not chasing after you. You look back. The light is dim, but he's still laying there. Maybe he's asleep? Maybe he has nocturnal lagophthalmos, and sleeps with his eyes open.
<<else>>
<img class="passage-image" src="demongodsassets/you/scenes/home/hwakeupcovered.png" >
<div class='row right'>
<div class='right-msg'>I don't really remember, but I guess I accepted his offer?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Or perhaps he took advantage of you. You do remember being incredibly horny though. You look around the room for him and can't see him anywhere. You turn your body and try to roll out of bed, but stop as you see you almost step on someone.
Even after fucking you, he was still a gentleman and slept on the floor? and judging from how sticky your body feels, you guys had a long night. It's a shame you can't remember it. Maybe he's not such a bad guy.
You move to step over him, not wishing to wake him, but as your eyes adjust you get a better glimpse of him.
You shriek and run for the door. His eyes were open and his pupils dead. He looked like a zombie!
You slowly creep back up to him to make sure your eyes weren't playing tricks on you.
<</if>>
You're shaking, but you slowly creep back over to him. The light is dim, so you move closer to get a better look...
<img class="passage-image" src="demongodsassets/you/scenes/home/corpse.png" >
</p>
<p>You panic and fall flat on your ass. Laying on the floor is a husk of a man. His face contorted in eternal pleasure, his eyes white and unseeing. His cock stands at attention, but his body is cold and stiff.
</p>
<<if $p.acceptance lt 50>>
<div class='row right'>
<div class='right-msg'>What the fuck? He died of a heart attack while raping me? Serves you right, asshole.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<else>>
<div class='row right'>
<div class='right-msg'>Did we fuck so hard he had a heart attack and died?...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<</if>>
<p>Doubt creeps in your mind as you remember that dream and how real it felt. But you push it away.
However you're a new face in a medieval town where no one knows you with a dead body. Would anyone believe you if you said you had nothing to do with this? Do you have nothing to do with this? At least that look on his face makes it seem like he died happy.
It's not worth the risk. You need to dump the body somewhere. A quick glance outside and it's still dark. You could drag him to an ally somewhere and pretend you never met him.
Still shaking, you slip your clothes on your sticky body. You grab him and pull as hard as you can before realizing he's surprisingly light. Maybe this won't be so hard.
You open the door and look both ways, before continuing your dragging. Not quite sure yet where you're taking him, anywhere is better than next to you.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>You must have been hungry! Do you not know how to pace yourself, or did he deserve it?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I swear! I don't know what happened! He was like this when I woke up! <<if $p.acceptance lt 50>>I think he knocked me out and raped me! I swear I never touched him!<<else>>I think he had a heart attack while we were together or something!<</if>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
<img class="passage-image" src="demongodsassets/people/rhelyla/town.png" >
You look towards the source of the voice and you spot <<if $metrhe is true>>Rhelyla, completely naked.<<else>>a completely naked woman.<</if>> What's more, she has wings and horns. She's definitely not human. Your eyes are drawn to something white dripping from her crotch. You can smell it. Sweet, salty, savory. You don't even notice as you start to drool.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Shh, shh. Calm yourself sweetie. I can smell him on you. You sucked all of his vitality away. <<if $p.acceptance gte 50>>I don't know what a heart attack is but <</if>>It looks like you lost control. Briefly describe what you remember.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>You explain how he offered you a place to stay, and you followed him back where he gave you food. You explain that you passed out while eating and the food may have been drugged.
She sighs.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>You really are new at this aren't you. I don't understand how you've fed until now and remained oblivious, or if you have a mountain of corpses you keep waking up to.
The reason the food didn't sate your hunger is because human food does nothing for creatures like us. In fact eat too much of it and you may start vomiting.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>What do you mean creatures like us? I don't have wings and horns like you do. I don't know what you are, but I'm human!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Check your ears sweetie,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You reach up and touch your ears, and pull them back in a hurry. What the fuck? They're long and pointy! Like an elf!
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Do you know a lot of humans with pointed ears like that? You may need to come visit me at my home for a longer explanation. But you are a succubus. Does that corpse not feel incredibly light to you? Do you not feel like you can run a marathon right now without breaking a sweat? You just sucked up every ounce of energy that man had and made it yours. You are much stronger than any mere human.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>She isn't making sense, but you also can't deny what she's saying. Despite your emotional state, physically you feel amazing.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>We cannot survive without the sustenance humans provide us with. If we go too long without it, we lose control and our instincts took over. This man never drugged you, you just weren't eating and when you failed to feed yourself, your body took action for you.
Before anyone comes by, we need to do something about this body. I will take care of it for you, but before I go. I recommend you come find me. For now, just tuck your ears in your hair so no one sees them. <<if $metrhe is true>>Come back to my place at the mountain south of this city.<<else>>Come to the mountains south of this city. Search the base for a cave, within that cave you'll find a door. Only Succubi can see it, you'll know it when you do.<</if>> Until then, I'll leave you with one last tip. Never wait until you're starving, or else you'll lose control and this will happen again. As you grow more powerful you can stave the hunger off longer, but for now you'll likely need to eat as often as a human. When feeding, never drink to the last drop.
Oh and, I can smell corruption on him. He was tainted. It shouldn't be enough to harm you since we have a natural resistance to it. But you need to learn to smell it ahead of time to prevent consuming too much and becoming another one of those mindless monsters.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>You're still processing everything she's said when she grabs the corpse from you, flaps her wings and begins flying away. Just in time too, as you hear some noises nearby.
<<if $p.acceptance lt 50>>
But a Succubus? Did that shitty Goddess really turn you into a creature that literally requires sex with men to survive!?
<<else>>
But a Succubus? You used to fantasize about being a Succubus and slutting yourself out with every man in town sometimes when you masturbated. Did that Goddess read your mind and turn you into something you would never have admitted to another person? You didn't want people to know how big of a slut you were, though it's not like you hid it very well.
Also none of those fantasies involved killing the men. You'll need to learn to pace yourself like Rhelyla said.
<</if>>
You need time to consider and process this and what this means for your future. Shivering, you return to the home of the man you accidentally killed.
</p>
[[taxman first|taxman first(girl)]]
<<set $race to "Succubus">>
</div>
<div class="conversation">
<p>You awaken to an assertive pounding on your door. At first groggy, you open your eyes wide after remembering the events that happened earlier.
</p>
<div class='row right'>
<div class='right-msg'>No no no... Did I get caught? what should I do? I can cast Charm, but that will just make another man try and rape me. What should I do...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>As you're panicking, the pounding happens again.
</p>
<div class='row left'>
<div class='left-msg'>Taxman<hr>Come on Mirko, I know you're in there. Open up!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/tax.png" >
You crack open the door
</p>
<div class='row right'>
<div class='right-msg'>I'm sorry, it's just me here...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Taxman<hr>Who are you? Did Mirko buy a whore? If he can afford a whore, he can afford to pay his taxes and back taxes. I don't care who, but someone needs to pay.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I'm not a whore...<<if $p.acceptance gte 50>> Well maybe I am, but<</if>> Taxes? I was just offered somewhere to sleep. When I woke up, he was already gone.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Taxman<hr>Ha. He knew I was coming. Look you need to go home, I'll have the guards come and confiscate what little property he has.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I don't have anywhere to go...I just arrived in this city.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Taxman<hr>Well you can't stay here, unless you can pay his taxes then I can transfer the ownership of this property to you.
...*sigh* I'll bet he set you up. Listen, I don't care if you're his whore, some poor women he tricked into marrying, or a thief. He owes quite a sum. Today was the deadline, if I don't have the money I have to drag someone off for forced labor. If you want to stay here it's either you or him. It doesn't matter who, but it's my job. Sorry lady.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>How much does he owe?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Taxman<hr>500 copper.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Fuck.. I... I have 200 copper? But I can work! What kind of forced labor?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<if $p.acceptance lt 50>>
<p>You could cast charm. But it hasn't even been a day since the previous events, you're not ready for another man to attack you.
The Taxman sighs.
</p>
<<else>>
<p>You could cast charm. But it hasn't even been a day since the previous events, you're not sure if you can control it.
The Taxman sighs.
</p>
<</if>>
<div class='row left'>
<div class='left-msg'>Taxman<hr>Sorry lady. He really pulled a fast one on you. He knew what was coming, so I doubt he'll be returning to this place. Probably found some other hole to crawl in.
Unless you're a whore, you wouldn't like the kind of work they'd put you to. You're locked in a stall for a week forced to service men.
Give me the 200 copper you have now, and I'll go back and tell them he was gone. Probably ran. They'll put out a search for him and his punishment will be worse. As for you, if you plan on staying here, then I recommend you find a way to earn money, fast. I return every 7 days to collect. The amount due is 200 copper.
...
I'd also recommend you find yourself a good husband who lives somewhere safer than this. A girl as pretty as you won't survive long in this part of town.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<p>You pay the man and thank him for his generosity as he turns and leaves.
<<if $p.acceptance lt 50>>It just keeps getting worse. First you were possibly raped,<<else>>Well it's not all bad. But things are weird. You wake up to a dead guy,<</if>> then you find out you're not even human, and you're required to continue surviving off men. Even the smell of the man who just left was making you wet. You could SMELL his arousal as he kept staring at your body, and you kept feeling a tingling sensation in your crotch. You reach down and touch yourself. Your fingers come back wet.
</p>
<div class='row right'>
<div class='right-msg'>What is wrong with me!? It must be because of what Rhelyla said. I might really be a Succubus!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You lay back down for a quick nap before you figure out the rest of your day.</p>
[[Dream|dream1sttime]]
</div>
<div class="conversation">
<p>Excited to meet another cook, you bounce along next to the man.
<div class='row right'>
<div class='right-msg'>I can't wait!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Calm yourself lass, we'll be there soon.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
The stranger has started to feel a little bad. He had planned to take advantage of your money and charge you more than his food is worth and maybe sleeping with you. But with you trusting him so much he's starting to rethink it. This doesn't stop him however, Mirko never thought of himself as a good man, and even if he does feel a little guilty, he needs the money more than some airhead who will probably be selling her body soon anyways does.
Bouncing along side him, your stomach growls loudly, he chuckles and announces you've finally arrived. It's a shack. If it can even be called that. It's a run-down wooden shed with gaps in the wood and growing mold. Definitely no protection from the elements.
After he leads you inside, he puts on a fire and begins cooking something in a pot.
<div class='row left'>
<div class='left-msg'>Stranger<hr>You must be pretty fast to outrun all the guys that must be chasing you.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Oh! I've never tried running on two legs before. I need to try that soon!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Err...Did you get dressed up for me or do you always look this good?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
<<if $outfit.outfit is "rags">>You're literally wearing rags<</if>>
<div class='row right'>
<div class='right-msg'>Nope! Someone just gave me these clothes! Was super nice of them, I've never worn clothes before!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The stranger's brow crumples. In all his years, Mirko has never met such an airhead that was this difficult to pick up on.
<div class='row left'>
<div class='left-msg'>Stranger<hr>You uhh...Have a beautiful smile?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
Suddenly you realize something and you're so happy you could squeal!
<div class='row right'>
<div class='right-msg'>You're flirting with me aren't you! I've never been flirted with before. This is so fun! Do it again!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The wind blown out of his sails, his shoulders slump.
<div class='row left'>
<div class='left-msg'>Stranger<hr>I'm sorry...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Is this the part where we do the sex!?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You're oblivious to his demeanor, just excited at everything going on.
His eyes perk up.
<div class='row left'>
<div class='left-msg'>Stranger<hr>You're..Serious? Even with someone like me?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Sure! I've never tried Sex before! It sounds fun! Oh but first lets eat!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Your stomach growls again. He sets to work immediately, a grin never leaving his face, using a flint and steel to light a small fire in the corner of the hovel. The pot he sets upon it, is dented and blackened from frequent use. The smell emanating from it is not particularly enticing, mostly just the smell of boiling water and maybe some root vegetables.
<img class="passage-image" src="demongodsassets/img/scenes/blackpool/creepcook.png" >
You take in your surroundings, the hovel is a far cry from the apartment walls you were accustomed to. The wooden walls are rotting and the air thick with the stench of decay. The table is cluttered with remnants of past meals, the utensils caked with food residue. You can't help but think how wonderful everything is, but your hunger overrides your thoughts as your stomach growls in protest.
<div class='row left'>
<div class='left-msg'>Stranger<hr>I'm hurrying, I'm hurrying.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
The man carries a pot over to the dirty table and sets it down.
<div class='row left'>
<div class='left-msg'>Stranger<hr>Dinner is ready!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
You dig in, other than the bread you were given you've never eaten with a human mouth before. It tastes awful, but even something awful is new and exciting! You hear him talking, but you can't make out the words. It's not that you're drugged, it's that you're STILL starving. It's to the point where you can't focus on anything around you, and you continue absolutely devouring the food.
The more you eat, the more your pussy tingles, and the hungrier you are. What is going on?
<div class='row left'>
<div class='left-msg'>Stranger<hr>Damn, lass. I didn't expect you to eat the entire thing. I should have charged you more.
Ah well, it's nice to have some company for once.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
Your eyes are unfocused and you barely comprehend someone is talking. Everything around you seems blurry and your hunger is overpowering.
The man is fidgeting, wondering how to move to the next step.
<div class='row left'>
<div class='left-msg' style="color: transparent; text-shadow: 0 0 5px rgba(0,0,0,0.2);">Stranger<hr>So, uhh.. I know you said you were interested but are you sure? I don't have anything to offer, I have no money to pay you. You're so incredibly beautiful it wouldn't be hard for you to find someone rich and become his mistress. They'd take much better care of you. Are you sure you wish to offer your first time to me? You might find it hard to get married if you do...
...
Lass?
Are you ok?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/creep.png">
</div>
</div>
You begin feeling dizzy, and pass out
</p>
[[lewd dream|lewd dream (grill)][$currentlocation to "earth"]]
</div>
<div class="conversation">
<<set $arousal to 0>>
<<set $inv.cum to $inv.cum + 25>>
<<set $lust += 500>>
<p>You're in a room. A human room, not the garage you're used to. Picture frames of hamburgers, hotdogs, steaks, ribs and more line your walls.
You're naked and in a human body.
A human boy was there. You try to remember how you got here, but everything just feels kinda foggy. It almost feels like you're swimming when you try to get out of bed.
He's standing in front of your bed, his clothes are already off. He's so hard and you're dripping in arousal.
As he inserts his cock in your mouth, he throws his head back and lets out a light moan. you continue working on him until he cums. You gulp it down greedily like a good girl, before looking at him and pushing him onto his back. You're eager to have your way with him. You're not usually a dominant woman something you can't explain is driving you.
<img class="passage-image" src="demongodsassets/sexscenes/dreams/lewd2.png" >
You position yourself above him, spread yourself open giving him a good look at your gaping vagina.
Then you slowly lower yourself onto his cock, impaling yourself with a gutteral moan.
You continue pumping yourself up and down on him, he's looking up at you with glowing red eyes. His horns are on the sides of his head and curled backwards along his scalp, you didn't notice them previously, but for some reason it doesn't seem odd. His form has begun to change, and other than the red eyes and horns he looks a lot like your female body. Is this what dreaming is like, you never had any dreams as a grill. The garage was pretty lonely.
<img class="passage-image" src="demongodsassets/sexscenes/dreams/lewd1.png" >
You feel yourself burst, and weirdly feel two orgasms at the same time. One major one that runs through your entire body and one large explosion but centered around your crotch only. This is amazing, no one has ever fucked you like her! Well, no one has ever fucked you! Even though you both just came, for some reason she's already hard and you're already back to pleasuring them.
She pumps you, in and out, in and out and you have to reach up and grab your chest as it's bouncing around too much.
You start squeezing the mounds on your chest without realizing, reveling in the pleasure.
You feel yourself below squeezing and gripping something long and hard. As you feel an explosion of pleasure from another orgasm, you feel yourself filled and leaking with liquids dripping out of you.
You look down, and she is pounding your vagina with her cock. You grab her by the hair and pull her towards your nipples which she starts sucking on, eliciting yet another moan from you as you involuntarily squeeze your vagina around her cock.
She pulls out of you and commands you to get on your knees, you comply and she sprays your face with cum.
This time you push her onto her back, lining her member up with your slit, and penetrate yourself.
You guys continue fucking until you're completely drenched in semen, with it practically flowing out of your cunt.
500 exp gained!
[[next morning|next morning(grill)][$currentlocation to "shack"]]
</p>
</div>
<<set $ears to true>><div class="conversation">
<p>You wake up.
The first thing you notice is that you feel amazing. The second is that you're not hungry anymore.
You think back on that dream you just had, it's memory already fading. You remember having an awesome human room with pictures of your favorite things.
You touch your chest and notice it feels sticky. Suddenly you remember the previous night. You're now naked, sticky and you don't know where that man is.
<img class="passage-image" src="demongodsassets/you/scenes/home/hwakeupcovered.png" >
<div class='row right'>
<div class='right-msg'>Oh! Did we do the sex!? But I don't remember it. I wanted to at least enjoy it!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You pout. Looks like you're gonna have to try again.
Or perhaps he took advantage of you. You do remember being incredibly horny though. You look around the room for him and can't see him anywhere. You turn your body and try to roll out of bed, but stop as you see you almost step on something.
It's a burnt shriveled up hotdog wearing clothes!
<img class="passage-image" src="demongodsassets/img/scenes/blackpool/foodguy.png" >
Wait a minute, on closer inspection it's a human. He just LOOKS like an overcooked hotdog.
You're not completely unfamiliar with death. Naturally you've never killed anything, but you did have a lot of experience cooking dead things. But the information the goddess flooded your new brain with does tell you this is bad. You need to do something about this before you get caught!
<img class="passage-image" src="demongodsassets/you/scenes/home/corpse.png" >
You panic and fall flat on your ass. Laying on the floor is a husk of a man. His face contorted in eternal pleasure, his eyes white and unseeing. His cock stands at attention, but his body is cold and stiff.
<div class='row right'>
<div class='right-msg'>I wonder what happened to him...
Hmm, what to do.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
Well, if you're caught in a home with a dead body you'll definitely get caught. Even if he's uncooked, meat does start to smell after a while.
It's not worth the risk. You need to dump the body somewhere. A quick glance outside and it's still dark. You could drag him to an ally somewhere and pretend you never met him.
Still shaking, you slip your clothes on your sticky body. You grab him and pull as hard as you can before realizing he's surprisingly light. Maybe this won't be so hard.
You open the door and look both ways, before continuing your dragging. Not quite sure yet where you're taking him, anywhere is better than next to you.
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>You must have been hungry! Do you not know how to pace yourself, or did he deserve it?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<img class="passage-image" src="demongodsassets/people/rhelyla/town.png" >
You look towards the source of the voice and you spot <<if $metrhe is true>>Rhelyla, completely naked.<<else>>a completely naked woman.<</if>> What's more, she has wings and horns. She's definitely not human. Your eyes are drawn to something white dripping from her crotch. You can smell it. Sweet, salty, savory.
<div class='row right'>
<div class='right-msg'><<if $metbeforecity is true>>Oh Hello Rhelyla!<<else>>Oh Hello pretty lady!<</if>>
I'm not really sure what happened, I agreed to be his oreo if he'd be my cream filling. But I fell asleep during dinner and missed out!
When I woke up, he was an overcooked hotdog.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>There are so many things I did not understand, but It looks like you lost control. Briefly describe what you remember.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
You explain how he offered you a place to stay, and you followed him back where he gave you food. You explain that you passed out while eating and the food may have been drugged.
She sighs.
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>You really are new at this aren't you. I don't understand how you've never needed to feed until now, or if you have a mountain of corpses you keep waking up to.
The reason the food didn't sate your hunger is because human food does nothing for creatures like us. In fact eat too much of it and you may start vomiting.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
You feel like Rhelyla just said something incredibly important.
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Check your ears sweetie, do humans usually have pointed ears like that? You may need to come visit me at my home for a longer explanation. But you are a succubus. Does that corpse not feel incredibly light to you? Do you not feel like you can run a marathon right now without breaking a sweat? You just sucked up every ounce of energy that man had and made it yours. You are much stronger than any mere human.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Salami get this straight, did you just say we get sick if we eat normal food!?
Does that mean I can't eat steaks? Burgers? Hotdogs! Filet Mignon, Escargot, Caviar, swordfish, lobster, prime rib, cornish game hen, lobster bisque, beef wellington, duck al'orange, beef carpaccio, wagyu, veal marsala, ortolan, foie gras, Beluga Caviar, Fugu-
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Stop stop stop!
I don't even know what any of that stuff is, or how you even know what it is. You can't eat more than a taste!
If you need to blend in with humans, it's fine if you have a something small, but our bodies aren't equipped to digest much more than cum.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>What if I drizzle this "cum" over a steak like a marinade? Or if I use it as an Ajus!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
She sighs,
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I'm not convinced those words you're using are even real things. But you should know we cannot survive without the sustenance humans provide us with. Specifically their cum. If we go too long without it, we lose control and our instincts took over. This man never drugged you, you just weren't eating and when you failed to feed yourself, your body took action for you. And no, I've never tried mixing it with human food, but it doesn't change the fact that our bodies aren't equipped to digest something heavy like meat. Just water and semen.
Before anyone comes by, we need to do something about this body. I will take care of it for you, but before I go. I recommend you come find me. For now, just tuck your ears in your hair so no one sees them. <<if $metrhe is true>>Come back to my place at the mountain.<<else>>Come to the mountains south of this city. Search the base for a cave, within that cave you'll find a door. Only Succubi can see it, you'll know it when you do.<</if>> Until then, I'll leave you with one last tip. Never wait until you're starving, or else you'll lose control and this will happen again. As you grow more powerful you can stave the hunger off longer, but for now you'll likely need to eat as often as a human. When feeding, never drink to the last drop.
Oh and, I can smell corruption on him. He was tainted. It shouldn't be enough to harm you since we have a natural resistance to it. But you need to learn to smell it ahead of time to prevent consuming too much and becoming another one of those mindless monsters.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
You're about to break down crying. You finally gained a human body and you can't even enjoy the things you loved most!
You're still processing everything she's said when she grabs the corpse from you, flaps her wings and begins flying away.
You drop to your knees, tears dripping from your eyes.
<div class='row right'>
<div class='right-msg'>I'm a weird-dough!!!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You sob there for a while, before finally going inside and going back to sleep. Tears staining your pillow.
[[taxman first|taxman first(grill)]]
</p>
</div><div class="conversation">
<p>You awaken to an assertive pounding on your door. At first groggy, you open your eyes wide after remembering the events that happened earlier.
<div class='row right'>
<div class='right-msg'>They found the hotdog man!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
As you're panicking, the pounding happens again.
<div class='row left'>
<div class='left-msg'>Taxman<hr>Come on Mirko, I know you're in there. Open up!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<img class="passage-image" src="demongodsassets/people/fullbody/tax.png" >
You crack open the door
<div class='row right'>
<div class='right-msg'>Romaine calm, it's just me here.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Taxman<hr>Who are you? Did Mirko buy a whore? If he can afford a whore, he can afford to pay his taxes and back taxes. I don't care who, but someone needs to pay.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I'm not a whore, I think? Well maybe.
What are taxes, can I eat them?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Taxman<hr>Well, with brains like those it's no wonder you became a whore.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I'm not a whore, you're a whore!
Udon know me!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
------img cute grumpy ------
<div class='row left'>
<div class='left-msg'>Taxman<hr>Lady, I don't have all day. Where is he?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Berried alive.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Taxman<hr>Great. So he skipped town and left me with an idiot. He better hope I find him before those loan-sharks do.
Listen lady, if you live here you need to pay taxes.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>How much?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Taxman<hr>500 copper.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I have 200 copper. Is there another way I can make ends meat?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The Taxman sighs.
<div class='row left'>
<div class='left-msg'>Taxman<hr>Sorry lady. He really pulled a fast one on you, especially when you're not all there. He knew what was coming, so I doubt he'll be returning to this place. Probably found some other hole to crawl in.
Give me the 200 copper you have now, and I'll go back and tell them he was gone. Probably ran. They'll put out a search for him and his punishment will be worse. As for you, if you plan on staying here, then I recommend you find a way to earn money, fast. With brains like those, I recommend the brothel. I return every 7 days to collect. The amount due is 200 copper.
...
Also, this isn't exactly a safe part of town. Try and get out of here as soon as you can.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tax.png">
</div>
</div>
You pay the man and thank him for his generosity as he turns and leaves.
Everything is so weird! The entire time that tax guy was looking at you, you could smell something delicious coming from him. Instinctively you know it was his arousal, but even though it didn't smell like meat, or any kind of grilled bites it smelled better than anything you've smelled with your new nose so far. Maybe this won't be so hard! Your crotch tingles, and you rub a finger down there. It comes back wet.
[[Dream|dream1sttime]]
</p>
</div><div class="conversation">
<<if $taverndecision is false>>
<<set $taverndecision to true>>
<p>You walk in and look around. There are some strong looking men that you might be able to hire as a guard. But with $inv.money copper you doubt you'd get very far. Then there's the problem of needing to hide your claws and uhh...assets from them so they don't find out what you are. It wouldn't hurt having a guard if you could just trust someone...
How does Rhelyla get out? Wait, she has wings. She probably just flies in and out. Damn, that would be nice.<br>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/tavernwoman.png" >
</p>
<div class='row left'>
<div class='left-msg'>Waitress<hr> Can I get you something to drink?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Ah, not yet. Sorry I'm just doing some thinking.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Waitress<hr> Well make sure you decide or get out, the boss gets real angry when people loiter.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
Sighing, you rest your head and think to yourself
</p>
<<if $p.acceptance lt 50>>
<div class='row right'>
<div class='right-msg'>Ok lets think. Despite my own wishes, my body demands male cum. And whether I like it or not, I am completely unable to resist when something is in front of me.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>A man passes by and nearly runs into a table as he keeps his eyes focused on you.
Your eyes linger on his ass as he walks away.</p>
<div class='row right'>
<div class='right-msg'>Since I have no control over these feelings, and if I resist them I'll apparently murder someone... Ugh. How will I convince that guard to let me leave?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You stretch your claws. Then suddenly remembering where you are, you hide them immediately.
You spend more time thinking, doing your best to delay the inevitable.
You're starting to feel a little hungry. It's obvious what you must do, you're just trying hard to avoid it. </p>
<div class='row right'>
<div class='right-msg'>Sneaking out isn't an option...Oh God I'm really going to have to charm that guard again, aren't I?
Fuck me... Well no, please no.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>Yet this body is messing with your head and you can't help but think about how nice that would be.</p>
<<else>>
<div class='row right'>
<div class='right-msg'>Ok lets think. I need sex or I go on a rampage and start fucking/killing everything.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>A man passes by and nearly runs into a table as he keeps his eyes focused on you.
You realize you're feeling a little hungry.
</p>
<div class='row right'>
<div class='right-msg'>Honestly, is it really that bad? Fuck it. May as well just accept it. Let's just go back to that guard, suck his cock and leave this town. I'll figure out what to do next once I'm out of here.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<</if>>
<<else>>
<p>
You enter the bustling tavern, the aroma of hearty stew filling your nostrils. As you take a seat at a wooden table, you glance around the crowded room. A bard strums his lute in the corner, but his melody is lost in the cacophony of voices and laughter that fill the air.
</p>
[[sit at the bar]] - 5 energy
[[listen to the bard]] - 5 energy
[[sit at a table]] - 5 energy
<p>The food here does you no good, but it might be good to keep up appearances</p>
<<if $charmtraining gte 4>>
<<if $eiracharm lt 6>>
<<if $energy gt 25>>
[[order food]] - 25 energy
<<else>>
You don't have enough energy!
<</if>>
<<else>>
<<if $energy gt 10>>
[[spend time with Eira|eira sex]] - 10 energy
<<else>>
You'd like to spend time with Eira, but you're too tired!
<</if>>
<</if>>
<</if>>
<</if>>
[[back to town|town][$currentlocation to "blackpool"]]
</div>
<div class="conversation">
<p>
You failed to pay your taxes and now you must pay the price. You enter the stall that you'll be spending the next 7 days inside. The stalls are owned and operated by the brothel. The brothel pays women's debts in exchange for them anonymously servicing men. Unfortunately the women are locked in a small room and food is delivered via a slot. Some women find it exciting, as do the men who like to imagine their neighbors wife is on the other side.
<img class="passage-image" src="demongodsassets/sexscenes/blackpool/gloryhole2.png" >
You make it to your stall and within minutes a large hole opens and a veiny cock and two large testicals attached to some hairy legs stick through. You don't even turn around you just open your mouth and latch on to that cock. The man inside is hung like a horse! You prepare yourself, open your mouth and <<if $p.acceptance lt 75>>hesitantly<<else>>eagerly<</if>> lick the tip of his cock. He moans as your tongue flicks along the tip of his cock. He suddenly thrusts against the stall and into your mouth, his cock stretching your mouth and throat as you gag. You hear the man groaning on the other side, and you feel your pussy getting wet. You moan softly in the darkness, feeling so turned on by the dirty talk from the man in front of you. You begin to suck him deeper as you moan louder, feeling his balls as he slaps them against your chin.
You feel something wet dripping down your leg. Using your free hand, you reach down and realize you're not just wet. You're drenched! You were too turned on by the cock in your mouth from the man fucking you to even notice. As you start rubbing yourself, you're more turned on as his cock slides deeper into your throat, your body going limp as you feel him bury his cock deep inside of your throat. You moan and whimper softly into the cock in your mouth as it continues to thrust into your throat.
He briefly pulls out suddenly and you gasp for air, realizing what just happened before he reinserts. You had swallowed all of his cock, every last inch of it! <<if $p.acceptance lt 75>>You're disgusted<<else>>You're so happy<</if>> with yourself at how easily he dominated your body and your mind! Your body convulses as you're stroking yourself in shame. He moans,
<div class='row left'>
<div class='left-msg'>Glory Hole Stranger<hr>take it slut, take my load!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
You suck harder and deeper on him, spurred on by his grunts and growls. His hips begin bucking faster, pushing his cock deeper and deeper into your throat until you feel his thick cock throb in your mouth and then you feel cum shooting down your throat. You gag on it and he pulls out with a wet plop as he continues to cum and cum! It was like he had balls the size of a softball and he just kept shooting it out for what felt like forever! You're covered in semen when he finally pulls out of the hole, and within moments another one takes it's place.
<img class="passage-image" src="demongodsassets/sexscenes/blackpool/gloryhole.png" >
<<set $days += 7>>
<<set $daycounter += 7>>
<<set $p.acceptance += 4>>
<<set $slutfame += 1>>
<<set $arousal to 0>>
<<set $inv.cum += (2 * $slutfame)>>
<<set _cumgained += (2 * $slutfame)>>
Finally, after what felt like an eternity, 7 days have passed and you are back home.
<<if $p.acceptance lt 75>>You hate to admit it, but your body loved every minute of it, as you sucked off and were showered in cum.<</if>>
You receive _cumgained cum, You're also a little bit more comfortable in your body!
Your fame in blackpool has risen! You have fed.
</p>
[[home][$currentlocation to "shack"]]
</div><div class="conversation">
<p>
You relax at a table and flag down the waitress for a drink.
You sit and people watch, sipping on your ale.
</p>
<<switch random(8)>>
<<case 1>>
<p>
You're sitting at the bar in the tavern, sipping your ale and listening to the conversations of the patrons sitting around you. Suddenly, a man bursts in, telling tall tales of the monsters he's killed.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>Did you hear about the time I took down that giant ogre single-handedly?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>Single-handedly? Last time you told this story, it was a team effort.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
<p>The man falters for a moment before continuing, </p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>Well, I may have had a little help from my trusty sword, but it was still all me.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>Everyone at the bar chuckles and exchanges skeptical looks.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>And what about the time you took down that giant dragon?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc2.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>Oh, that was a piece of cake, I just climbed on its back, slit its throat, and rode it down to the ground.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>You can't help but laugh as the other patrons exchange incredulous looks.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>And I suppose you tamed a dragon too?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>Well, um, actually, that's a story for another time.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
The patrons burst out laughing as the man slinks back to his seat, defeated. You can't help but smile, amused by the exaggerated tales of bravery in the face of danger.
</p>
<<case 2>>
<p>Two patrons, a burly man with a bushy beard and a skinny man with a large nose, sat at the bar, their glasses clinking as they drank their ale.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>I tell you, I've defeated more elves than any man in this tavern,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
<p>the burly man boasted, slapping the bar with a meaty hand.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>I imagine that's not a hard feat, considering no man here has ever killed an elf. After all, they exist only in fairy tales.
You're just making that up to impress the ladies.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>The skinny man that replied winked at you</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>Making it up? I've seen them with my own two eyes! Fearsome creatures, they were,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
<p>the burly man replied, his chest puffed out with pride.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>Please, everyone knows that the only things in the forest are corrupted monsters and beast people. No one's ever seen an elf,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>the skinny man said, rolling his eyes.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>I have!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/fnpc.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>And I've had sex on top of a Unicorn!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc2.png">
</div>
</div>
<p>Other patrons were joining in, eliciting laughter from the rest.
The burly man and the skinny man continued to argue back and forth, each trying to prove the existence of their chosen mythical creature. As the argument became more heated, the patrons around them began to place bets on who would win.
You're sitting at the bar and couldn't help but smile as you listened to the two men bicker. You took another sip of their ale, enjoying the lightheartedness of the conversation.</p>
<<case 3>>
<p>Two mercenaries sit at a table in the tavern, exchanging stories of their adventures. One of them, a burly man with a deep voice, begins to tell a tale of the time he faced off against a horde of goblins.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>I was in the middle of a contract to escort a wealthy merchant across the kingdom, when we were ambushed by a pack of goblins,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc2.png">
</div>
</div>
<p>The burly man takes a sip of his ale. </p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>There must have been at least twenty of them, all snarling and brandishing their weapons.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc2.png">
</div>
</div>
<p>The second mercenary, a smaller man with a scar across his cheek, chuckled.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>Twenty goblins? That's nothing. I once fought off fifty ogres by myself!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>The burly man raised an eyebrow. </p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>Fifty ogres, you say? I don't believe it. A single ogre takes a detachment of at least 5 men.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc2.png">
</div>
</div>
<p>Or one Succubus.
The smaller mercenary leaned forward, a glint in his eye.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>It's true. I was on a mission to retrieve a lost artifact from an ancient temple, when I was ambushed by the ogres. They were everywhere, but I didn't back down. I fought them with everything I had, using my wits and my sword.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>*laughter* Sounds like you were lucky to get out of there alive.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc2.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>Luck had nothing to do with it. I'm just that good.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>I heard that goblins smear their weapons in feces to poison their enemies
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/fnpc2.png">
</div>
</div>
<p>As they continued to argue back and forth, boasting about their battles and daring feats, you can't help but smile at the spectacle. These two mercenaries may not have the most accurate stories, but they sure know how to entertain.</p>
<<case 4>>
<p>The mercenary took a swig of his ale before beginning his story. He gestured wildly as he spoke, drawing the attention of the other patrons in the tavern.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>So there I was, camped out for the night with my partner. We were exhausted from a long day of travel and were dead to the world. But then I woke up to find an ogre sitting next to our fire. I damn near had a heart attack, I tell you what. But then I noticed it was just sitting there, flipping through a book that my partner dropped when he passed out.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>The patrons chuckled, their attention fully on the mercenary's tale.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>So I crept up to the ogre, ready to fight if I needed to. But then I saw what it was doing. It was trying to read the book, clumsily turning the pages and muttering to itself. It was the most ridiculous thing I'd ever seen. The thing wasn't even remotely hostile, something I've never seen in an ogre. So, I decided to have a little fun. I grabbed the book from the ogre and started to teach it how to read.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>The mercenary paused for a moment, taking another sip of his ale before continuing.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>It was slow going at first, but eventually, the ogre caught on. We brought it with us on our journey to another city and it was a sight to see. This big, burly ogre with a book in its hand, trying to sound out words. It was a hoot, I tell you.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>The patrons laughed, imagining the scene the mercenary was describing. The mercenary grinned, pleased with the reaction he was getting.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>And let me tell you, that ogre wasn't the brightest bulb in the box. But its responses were always good for a laugh. We'd ask it a question, and it would give the most absurd answer. It was the best time I ever had on the road. And who knows, maybe someday that ogre will be a scholar, all thanks to us.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>The mercenary finished his story with a chuckle, taking another sip of his ale and settling back in his seat. The other patrons murmured in amusement, impressed by the mercenary's tale.</p>
<<case 5>>
<p>A man walked into the tavern, his head down and his eyes filled with sadness. He approached the bar and ordered a drink, before slumping down on a stool. The other patrons barely paid him any attention, as they were all lost in their own conversations.
However, you, sitting nearby, couldn't help but overhear the man's muttered words. You leaned closer, trying to make out what he was saying.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>Lost several men... In the forest... several miles north of the city. Attacked by... by...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>His words trailed off and he took a sip from his drink. You were intrigued and decided to start a conversation with him.</p>
<div class='row right'>
<div class='right-msg'>Excuse me, sir, What happened in the forest?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>The man looked up at you, his eyes still filled with sadness. He hesitated for a moment, but then he started to speak.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>We were on a mission, A small group of men, hired to escort a caravan through the forest. But then, we were attacked. Out of nowhere, creatures appeared, surrounding us. They were... they were elves.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>The other patrons snickered and rolled their eyes at the mention of elves. The man didn't seem to notice and continued with his story.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>We fought them off, but everyone died. Everyone. Why was I the only one to survive?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>Probably just some bandits guy. You've been reading too many fairy tales.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
<p>The other patrons dismissed the man's story as the ravings of a madman. They teased him for being afraid of imaginary creatures and told him to get a grip. The man hung his head and finished his drink in silence, not bothering to respond to their taunts.</p>
<<case 6>>
<p>You sit at the bar in the tavern, nursing your drink as you listen to the conversations of the patrons around you. Suddenly, one mercenary catches your attention. He's a big man, with a rough and weathered face, and his voice is thick with emotion as he speaks.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>I was levied to the battles in the far north, fighting in the skirmishes against the beasts and demons for money for my family, I didn't want to be there, I just wanted to be home. But I thought I was doing what was right, protecting others from the horrors that roam the land. But when I came back home, I found my wife and daughter dead.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
<p>Tears stream down the man's face as he continues,</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>No one had bothered to check on them the entire time I was gone, their bodies still in bed. They were left alone, and I'll never know what happened to them. No man should ever have to see the people they love rotting.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
The other patrons in the tavern are silent, some looking away while others offer comforting words. But the man's pain is palpable, and it's clear that the loss of his family has left him devastated.
You feel a heavy weight in your chest as you listen to his story. The man raises his head, his eyes full of sadness, and the room is filled with a mournful silence.
<<case 7>>
<p>The man at the bar was telling his tale with a cruel smirk on his face. He spoke of how he had seen a woman being taken away by the church guards. She had been arrested for harboring a monster, an injured demon. The man took delight in telling how the woman had begged for mercy and how the church guards had been relentless in their pursuit of justice.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>She got what she deserved, if you ask me,Demons are creatures of evil, the church says so. They must be brought to justice, no matter what.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
<p>As he spoke, the other patrons nodded along, murmuring their agreement. But you couldn't help but feel a pang of sadness in your chest. You couldn't believe that these people could be so heartless, so willing to condemn someone without even bothering to find out the truth. It's clear what would happen if any of them realized what you are.
You took another sip of your ale, trying to shake off the feeling of despair that was settling over you. But the man's words echoed in your mind, reminding you of the cruelty and injustice that exists in the world.</p>
<<case 8>>
<p>In the dimly lit tavern, the air was filled with the clinking of mugs and the low murmur of patrons conversing. A man sat at the bar, his eyes alight with a fierce passion as he spoke to anyone who would listen.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>I'm telling you, something ain't right about what happened in that village. They say it was a demon infestation, but I heard from a reliable source that it was just a group of innocent folks minding their own business.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc2.png">
</div>
</div>
<p>The patrons around him hushed him, casting worried glances towards the door. </p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>You best keep your mouth shut, friend. Some might see you as a heretic for talk like that.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>I ain't no friend of yours if you believe what they're saying. Those people in that village were just like us, and now they're gone. Burned to ashes because the church says they were housing a demon. I ain't buying it.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc2.png">
</div>
</div>
<p>As the man continued to question the motives of the church, he was met with resistance and disbelief from everyone around him. The patrons at the tavern hushed him, warning him against speaking against the holy institution. Despite their efforts to silence him, he was too passionate and refused to be silenced.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>Heretic!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
<p>Someone throws a mug
The man stood his ground, trying to argue his point, but the more he spoke, the more agitated the patrons became. The argument became heated and voices were raised. Just as the man thought he was making some headway, someone in the crowd announced they were going to fetch the guards.
Panic set in and the man quickly realized he was the odd man out. He didn't want to get in trouble for speaking out against the church, so he decided it was best for him to leave before any more trouble arose. He made his way out of the tavern, head held low, and disappeared into the night.
You sat back, listening to the heated exchange, feeling a heavy sadness in your chest. It was clear that the man was fighting a losing battle, and that the truth about the village would likely never be known. The thought of innocent people being destroyed, simply because of fear and prejudice, made your heart ache.</p>
<<default>>
<p>In the corner of the room, you noticed a sharp dressed nobleman. He was impeccably dressed, with pale skin and piercing eyes. A noble you've seen on a few occasions before.
You were sitting at the bar of the dimly lit tavern, sipping on your ale when the door burst open. A man, dressed in worn leather armor, strode in, a broad smile on his face. He strode over to the bar and leaned on it, looking around the room.</p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>Friends!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
<p>The mans voice carrying over the din of the tavern. </p>
<div class='row left'>
<div class='left-msg'>Tavern Patron<hr>I bring good news! The holy kingdom has done it again! This month alone, they've brought to justice more witches, creatures of magic, and monsters than ever before!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
<p>The patrons erupted in cheers, clapping and hooting in approval. You found yourself feeling a sense of unease as you watched the celebration unfold around you. You couldn't help but think about the stories you'd heard about the horrors of the holy kingdom's purges and trials.
The noble sat in a corner, away from the noise and excitement of the room. He was eyeing the scene carefully, and you caught his eye a few times, but he never acknowledged your gaze.
As everyone else in the tavern cheered, you and the nobleman were the only two people who remained silent. You sense him watching your lack of reaction when everyone else cheered, and you couldn't shake the feeling that he was sizing you up.
Despite your reservations, you continued to sit quietly, sipping your ale, and trying to keep a low profile. The man at the bar finished his speech, and the patrons began to settle back into their conversations. But you couldn't shake the feeling that you were being watched, and you couldn't help but wonder what the mysterious nobleman was up to.</p>
<</switch>>
[[back|Tavern]]
</div>
<<set $energy -= 5>><div class="conversation">
<p>
You relax, and watch the bard who's working today.
</p>
<<switch random(8)>>
<<case 1>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/bard2.png" >
♪
In a world of troubles and strife,
You can turn to someone who's always in life.
She's always there with a gentle hand,
A guiding light in this crazy land.
So toss a coin to your mother, oh,
She'll always be there to help you grow.
With wisdom, love, and care so true,
Toss a coin to your mother, she'll always pull you through.
She'll be your rock, your shelter from the storm,
With a smile that'll keep you warm.
She'll fix your problems, big and small,
And she'll never let you fall.
So toss a coin to your mother, oh,
She'll always be there to help you grow.
With wisdom, love, and care so true,
Toss a coin to your mother, she'll always pull you through.
So don't forget, when you're feeling low,
Your mother's love will always glow.
She'll wipe away your every tear,
And make all your worries disappear.
So toss a coin to your mother, oh,
She'll always be there to help you grow.
With wisdom, love, and care so true,
Toss a coin to your mother, she'll always pull you through.
She's your guiding light, in day or night,
And she'll always be there, just in sight.
So toss a coin to your mother, with all your might,
And she'll be there for you, day and night! ♪
</p>
<<case 2>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/bard2.png" >
Once upon a time, in a land of magic and might,
There lived an ogre, with a curious delight.
He'd stumbled upon a book from another place,
And learned to read, with a smile on his face.
But the humans who met him, were often afraid,
For ogres had a reputation, of being quite brayed.
But this ogre was different, he never would fight,
Instead he'd ask them riddles, all day and all night.
Oh, the ogre who learned to read,
Loved to tell his riddles indeed.
But the humans, they didn't get his jokes,
For they thought he was too smart, and that was no folks.
He'd ask about creatures, that didn't exist,
And humans would scratch their heads, with a twist.
He'd speak of machines, and cars on the street,
And they'd just look at him, with their eyes wide and neat.
But still they ran, with a scream and a shout,
For they didn't understand what this ogre was about.
But the ogre just laughed, and asked them once more,
For he loved to tell his riddles, and that was what he was for.
Oh, the ogre who learned to read,
Loved to tell his riddles indeed.
But the humans, they didn't get his jokes,
For they thought he was too smart, and that was no folks.
So, if you ever come across this ogre so bold,
Don't be afraid, for he's not like the stories you've been told.
He'll ask you a riddle, and you might just find,
That it's just a joke, and there's nothing to mind.
Oh, the ogre who learned to read,
Loved to tell his riddles indeed.
But the humans, they didn't get his jokes,
For they thought he was too smart, and that was no folks.
And so the bard would sing, of this strange ogre so bright,
Who loved to tell his riddles, day and night.
And though the humans ran, with fear in their hearts,
The ogre just laughed, and kept on with his arts. ♪
<<if $ogreriddle3 is true>>You smirk, realizing who this ballad is about. You wonder if Nar the Riddler is doing ok.
<</if>>
</p>
<<case 3>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/bard2.png" >
In a land of fire and fear,
Lived a dragon with a roar so clear.
He lived alone with nary a friend,
Until a mouse came around the bend.
Oh, the dragon and the mouse,
What a funny couple, that's for sure.
They fell in love at first sight,
And their journey took flight.
The mouse, a warrior small and bold,
Challenged the dragon with a tale untold.
He fought with all his might and might,
And captured the dragon's heart that night.
Oh, the dragon and the mouse,
What a funny couple, that's for sure.
They fell in love at first sight,
And their journey took flight.
They settled down in a cozy lair,
And shared a bed without a care.
But try as they might, they could not sleep,
For their bodies were not made to fit so deep.
Oh, the dragon and the mouse,
What a funny couple, that's for sure.
They fell in love at first sight,
And their journey took flight.
One day the dragon woke with a start,
And found the mouse crushed under his heart.
He wept and wailed with sorrow and pain,
For his love had been squished and never to reign.
Oh, the dragon and the mouse,
What a funny couple, that's for sure.
They fell in love at first sight,
And their journey took flight.
So the dragon now lives all alone,
With the memory of his love grown.
He never forgot the mouse so small,
And the love they shared, standing tall.
</p>
<<case 4>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/bard.png" >
Once upon a time, in a small village, there lived an evil witch named Morgatha. She was known to all as a wicked and cunning woman who was feared by all. The villagers would often whisper of her dark powers and the wicked things she did in secret.
One day, the villagers were struck with a terrible sickness that claimed many lives. The town healer tried everything he could but nothing seemed to work. It was then that Morgatha came forward, offering her help. To everyone's surprise, she provided them with a cure for the illness that had plagued the village for weeks.
Despite the villagers' initial skepticism, Morgatha's cure worked wonders and soon enough, the village was free of sickness. Yet, the villagers remained wary of her and her magic. They whispered amongst themselves that she had only helped them to cast a spell on the town and take control.
So, despite the witch's efforts to heal the village, the rumors and whispers of her dark magic only grew. The villagers became increasingly suspicious of Morgatha and the power she held. They believed she was only biding her time, waiting for the perfect moment to unleash her evil upon them.
As the fear of Morgatha's magic spread, the local church took notice. They sent their most trusted holy knights to bring the witch to justice. The knights entered the village and captured the evil witch who misled the villagers. Upon a great pyre, they tied the witch up. As she cried and begged, the church knew better than to be misled. They burned the witch at the stake, the villagers cheered and celebrated as the witch was taken away, convinced that they were finally safe from her evil grasp.
Take heed dear listener, not to be misled by the slaves of evil. Magic will lead you to corruption and you will become a monster.
<p>
<div class='row right'>
<div class='right-msg'>What the Hell, that was horrible!?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Someone glances at you suspiciously, but you look around acting like you're looking for the person who made that comment.
</p>
<<case 5>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/bard.png" >
An evil succubus, dark of heart and soul,
With beauty unmatched, a sight to behold.
She lured men with her charms, to feed on their life,
Her thirst for power, an endless strife.
But then, one day, she met a man,
Who caught her eye, and made her stand.
He was different, unlike the rest,
And soon, her heart, he had possessed.
The succubus, now torn apart,
With love for him, beating in her heart.
She struggled with the life she led,
Her wicked ways, she longed to shed.
But the man, he saw her true form,
Her evil deeds, he could not ignore.
Though his heart ached, he did what's right,
And turned her in, to the holy light.
The church, they took her, in chains they bound,
Her love for the man, was never found.
For he did what was just and true,
His love for her, he had to eschew.
So let this tale, be a warning fair,
To all who would, succubi ensnare.
For love and good, can oft collide,
And doing right, can leave a wound, inside.
</p>
<div class='row right'>
<div class='right-msg'>...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You frantically try to dry the tears from your eyes. Was she even really evil, or is this just another misleading story?
The bard notices you.
</p>
<div class='row left'>
<div class='left-msg'>Bard<hr>Don't worry lass, Succubi aren't real. They're just stories. No evil Succubi will ever steal your man!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
You put on a sheepish smile, pretending that's what you were concerned over.
</p>
<<case 6>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/bard.png" >
Oh the demons, dark and evil,
Came from their world of destruction,
Bringing with them chaos and sin,
A world that was once full of life, now filled with corruption.
With forbidden magic they opened a portal,
To the world of man, a place they sought to conquer,
With intent to steal the life force,
And corrupt all that they encountered.
But fear not, dear friends,
For the church is here to defend,
With holy power and divine might,
The demons' reign of terror shall come to an end.
For the church always triumphs over evil,
And will defeat the demons, that much we do know,
So let us stand strong, hand in hand,
For a brighter tomorrow, a world free from woe.
</p>
<<case 7>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/bard2.png" >
♪ In the forest deep and dark
Where the creatures roam and bark
There lived a beast so wild and free
With horns and hooves, he roamed so carelessly
Oh, the beast on the leash, he was so bold
With fur of black, and eyes of gold
He danced and sung, in the moonlit night
And with his might, he took the fight
He met a maid, so fair and true
With hair of gold, and eyes of blue
She tamed the beast, with her gentle hand
And with her love, she took a stand
Oh, the beast on the leash, he was so bold
With fur of black, and eyes of gold
He danced and sung, in the moonlit night
And with his might, he took the fight
But alas, the maid was taken away
Leaving the beast to roam and play
He howled and moaned, in the dark of night
And with his might, he took the fight
Oh, the beast on the leash, he was so bold
With fur of black, and eyes of gold
He danced and sung, in the moonlit night
And with his might, he took the fight
And so the beast, roamed the land
With his horns and hooves, so grand
He sang and danced, till the end of time
And with his might, he took the fight.
</p>
<<case 8>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/bard2.png" >
I've been spendin' too much time with goblins
I hear them whispering to me
Every time I try to solve a problem, oh-oh
There's just another goblin, alright!
Just another goblin in my life!
It's a new day
A time for reconstruction
And time to gain a function
But here comes a goblin!
Everywhere I look
There's just another one
Looking at me!
Nowhere to hide, nowhere to run
They're laughing at me!
I spend my life surrounded by goblins
I may seem surreal, but it's real to me
It's all so real to me
And every time I've got a problem
There's only goblins there for me
The goblins came
They came from space
But they were looking for another place
But now they're here-
And they want to destroy the humans!
But I guess that's fine with me...
I spend my life surrounded by goblins
I may seem surreal, but it's real to me
It's all so real to me
And every time I've got a problem
There's always goblins there for me
They're always watching me
....
Wait a second, this song sounds familiar!
</p>
<<default>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/bard2.png" >
In the land of the forgotten, where the shadows do dwell
Lies a place of oppression, where the people can't tell
Of the fear that consumes them, and the pain that they bear
For the ones in control, are the ones who don't care
And they say it's for our own good, this life that we lead
But the chains that they've put on us, are the chains that we need
To break free from this prison, and to see the truth clear
For in this land of the forgotten, our freedom is so near
A whisper on the wind, tells the story of pain
Of a kingdom where the darkness, rules the light in vain
And the people are praying, for a brighter tomorrow
But their voices are silenced, by the ones who follow
And they say it's for our own good, this life that we lead
But the chains that they've put on us, are the chains that we need
To break free from this prison, and to see the truth clear
For in this land of the forgotten, our freedom is so near
We're trapped in this world, where the truth is so blurred
And our minds are consumed, by the lies that we've heard
But we'll find our way out, and we'll stand up for what's right
For the power of the people, will conquer the night
And they say it's for our own good, this life that we lead
But the chains that they've put on us, are the chains that we need
To break free from this prison, and to see the truth clear
For in this land of the forgotten, our freedom is so near
And in this land of the forgotten, where the shadows do dwell
We'll fight for what's right, and we'll break the chains of hell
For our spirits are strong, and our hearts are pure
And we'll find our way out, of this evil allure.
... You're starting to think this bard is trying to send a message about something.
</p>
<</switch>>
[[back|Tavern]]
</div>
<<set $energy -= 5>><div class="conversation">
<p>
You relax at a table and flag down the waitress for a drink.
You sit and people watch, sipping on your ale.
</p>
<<switch random(3)>>
<<case 1>>
<p>
In the crowded tavern, the clanking of mugs and the sounds of laughter filled the air. At a table in the corner sat you, the player, sipping on your ale and taking in the bustling atmosphere. Suddenly, a vulgar man approached the waitress, who was trying her best to serve the rowdy patrons.
With a sly grin, the man reached out and pinched the waitress's backside, causing her to jump and spill the ale she was carrying all over herself. The other patrons erupted in laughter.
</p>
<div class='row left'>
<div class='left-msg'>Rude Man<hr> Oi, check out those tits! You can see right through her shirt! How about I take you out back and clean that off for ya?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
You felt a pang of sadness for the poor waitress, but knew that you couldn't risk exposing yourself by intervening.
Despite the laughter and rude comments, the waitress tried her best to compose herself and continue her work. You couldn't help but admire her resilience in the face of such cruelty, and you made a mental note to try and help her in any way you could, even if it meant keeping your distance and staying hidden.
You gave the waitress an extra tip, hoping to make her day a little better.
</p>
<<case 2>>
<p>
The tavern was bustling with activity, with laughter and conversation filling the air. Suddenly, the door to the tavern bursts open and a young man stumbles in, his eyes wild and his words slurred. He stumbles up to the bar and starts ranting about the church and their hidden motives.
</p>
<div class='row left'>
<div class='left-msg'>Drunk man<hr>You fools, you don't know what's going on!
The church, they're up to something! Something big, everything you thought you knew is wrong!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc2.png">
</div>
</div>
<p>
The other patrons looked at him with fear, their faces betraying the unease they felt at hearing his words. They were raised with the churches teachings, and were taught that speaking out against their authority was a sin. They started murmuring amongst themselves, their whispers growing louder with each passing moment. Suddenly, one of the patrons stood up and ran towards the door, his fear overriding any sense of compassion towards the drunken man.
As the young man continued to shout and rail against the church, the sound of footsteps could be heard outside the tavern. The door burst open, and several guards dressed in the colors of the church stepped inside, their faces set in determination. The young man's eyes widened, and he turned and ran, darting past the guards and out the door.
The patrons in the tavern shivered in fear, knowing the consequences of speaking out against the church. They watched as the guards disappeared out the door, giving chase to the young man. The tavern fell silent, the only sound the gentle trickle of ale from the spout of a nearby keg.
You sat in your seat, listening intently. The man was gone, and the consequences of his actions would have to be faced by him alone.
</p>
<<case 3>>
<p>
The tavern was filled with the usual hum of conversation and laughter, but all of that faded away as the door opened and a new patron entered. He was tall and imposing, with a scowl on his face and a rope in his hand. He yanked on the rope, stumbling behind him was a Beast woman, the first one you'd ever seen. Her hair matted and her clothes torn. She had the unmistakable traits of a fox, with a dirty matted tail and two pointed ears atop her head.
She walked with her head down, eyes fixed on the ground, and your heart sank as you saw the sadness etched in her every move. The man approached a table in the corner and she followed him, pulling out his chair for him before sitting down on the floor next to him. The man was gruff and mean, barking orders at her and making her jump at the sound of his voice.
The other patrons paid no mind to the man's mistreatment of the Beast woman, seeing it as normal. They carried on with their conversations and drinks, ignoring the girl's misery. You felt your heart ache as you watched the scene unfold, feeling powerless to help the girl. The reality of your own situation hit you like a ton of bricks, realizing that if anyone ever found out that you were secretly a succubus, it would be much worse for them. You sat quietly, nursing your drink, as the bar patron continued to mistreat the poor Beast woman.
Sadly, it didn't end there. The bard took notice. With a gleam in his eye, he began to strum.
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/bard.png" >
Oh, these beasts, with their animal ways,
Their tails and ears, a true disgrace.
They're strong, they're fast, but they're not too bright,
And in the end, they'll lose the fight.
For the church has power, and the church has might,
And the beasts will fall, a sorry sight.
So bow down low, and pay your due,
Or be cast out, like the beasts who slew.
The beasts may run, but they cannot hide,
For the church will find them, and by their side,
They'll be tamed and trained, like loyal hounds,
And serve their masters, on holy ground.
As the bard strummed his lute, the tavern grew quiet with anticipation. He began to sing a tune about the folly of beast people, making jests about their supposed ignorance and lack of wit. The man with the beast woman slave laughed and cheered along with the crowd, making crude remarks about the slave girl next to him.
You felt your heart sink even further as you watched the scene unfold. You couldn't believe that such cruelty was being accepted and even celebrated by other patrons. The slave girl looked downcast, her matted tail drooping and her fox ears flat against her head. You felt a wave of anger and frustration, wishing you could do something to help her.
As the bard finished his song, you silently ground their teeth in frustration. You realized that you were just as powerless as the slave girl. This church seems to be anything but Holy. You couldn't help but feel hopeless and sad, knowing that you were living in a world where kindness and compassion were in short supply.
</p>
<<default>>
<p>
The tavern was filled with the sounds of clinking glasses, raucous laughter, and the bard's tuneful melodies. But amidst all the noise, one stranger stood out. He was seated in a corner, draped in fine velvet robes and adorned with glittering jewels. His skin was pale and his eyes were piercing, and his gaze swept the room with a calculating air.
The other patrons of the tavern kept a wary eye on the stranger, avoiding his gaze and keeping a safe distance. They whispered among themselves, wondering who he was and why he was here. Despite his obvious wealth and elegance, there was something off-putting about him, as if he were a predator waiting to pounce.
You couldn't help but feel drawn to the stranger, caught by his mysterious aura. You caught his eye a few times, and each time he looked back at you with an unreadable expression. You felt a chill run down your spine, but you couldn't quite put your finger on why. Despite the strange feeling, you didn't dare approach the stranger, instead wondering what his presence in a tavern in the slums meant.
The stranger sat there for hours, nursing a glass of wine and observing the scene. But as the night went on and the tavern began to empty out, he stood up, unfolding his tall frame from his seat. He cast one final, enigmatic glance at you before striding out of the tavern and disappearing into the night.
You sat there for a moment, trying to shake the feeling that you had just encountered something sinister. But then you shrugged it off, chalking it up to too much ale and an overactive imagination. Nevertheless, you couldn't shake the feeling that you had just crossed paths with something dangerous.
</p>
<</switch>>
[[back|Tavern]]
</div>
<<set $energy -= 5>><div class="conversation">
<<if $alraunespared gte 5>>
<<set $alrauneevent to true>>
<<set $alrauneally to true>>
<img class="passage-image" src="demongodsassets/people/fullbody/forest/dryad.png" >
<p>You step into the clearing, your eyes scanning the area for any sign of danger. Suddenly, you hear a beautiful voice singing a soft melody. You follow the sound and find yourself standing in front of a Dryad. She stands tall and proud, her long hair as green as the leaves on the trees around her. Her skin is a warm, earthy brown and her eyes sparkle like emeralds in the sunlight. She is surrounded by flowers and plants, swaying to the rhythm of her song.
The Dryad notices you and her singing stops abruptly. She turns to face you, her eyes studying you intently.
</p>
<div class='row left'>
<div class='left-msg'>Dryad<hr>What brings you to my forest?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/dryadhappy.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I'm just a traveler.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Dryad<hr>No. You're more than that. The girls tell me of your bravery, and that you've spared their lives. You have my thanks.
Most humans attack anything on sight. I have never heard of one saving one of my kind... But you're not human are you?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/dryadhappy.png">
</div>
</div>
<<if $horns is true>>
<p>She eyes the horns on your head</p>
<</if>>
<div class='row right'>
<div class='right-msg'>I'm afraid not, but I promise I mean no harm
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Niamh<hr>Not to worry. Us Dryad's have a friendly relation with Demons. Well, most of them. Of course the ones that seek to corrupt all living things are another matter...
My name is Niamh. I am just a worthless protector of this forest. I am on a quest to reverse the corruption that has befallen my kin.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/dryadhappy.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>How come you're not tainted like the others?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>Her face looks sad</p>
<div class='row left'>
<div class='left-msg'>Niamh<hr>We hold some magic for purification. Usually used to purify plants of disease.
However, my kin have sacrificed themselves for me. They use themselves to block the corruption from reaching my tree. Their purification magic keeps their minds sane, but they're still a slave to the lust.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/dryadhappy.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I am so sorry. I will do what I can to help ease their burdens.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>Niamh comes closer to you, and stretches her arms. She hugs you with strength you would not have expected from her small body.</p>
<div class='row left'>
<div class='left-msg'>Niamh<hr>Thank you, that means a lot. The girls tell me that you are immune. For now, even if it's only a little. If you can ease their suffering, they will use some of their magic to help you recover a bit. You have my thanks.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/dryadhappy.png">
</div>
</div>
<<set $lust += 500>>
<<set $inv.money += 250>>
You gained 500 lust and 250 copper!
You have been blessed! Your energy and health have both been fully restored!
<<set $energy to $maxenergy>>
<<set $arousal to 0>>
<<set $p.hp to $p.maxhp>>
<<if $currentlocation is "forest1">>
[[Return|forest1]]
<<elseif $currentlocation is "forest2">>
[[Return|forest2]]
<<elseif $currentlocation is "forest3">>
[[Return|forest3]]
<</if>>
<<set $dryadalive to true>>
<<elseif $alraunespared lte -5>>
<<set $alrauneevent to true>>
<img class="passage-image" src="demongodsassets/people/fullbody/enemies/dryad/1.png" >
<p>
You stood in the center of the clearing, standing before the lifeless body of the Alraune you just defeated. The thrill of the fight was echoing in your mind, but then you sensed a presence approaching.
You turned to see a green, plant-like woman standing before you. Her eyes sad and mournful.
You step forward, hand on your weapon, ready for a fight. The Dryad, a being of nature, stands her ground, her eyes fixed on you. You can see the sadness and determination in her eyes.</p>
<div class='row right'>
<div class='right-msg'>You don't seem corrupted...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>The Dryad nearly cuts you off</p>
<div class='row left'>
<div class='left-msg'>Dryad<hr>Why?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/dryad1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Why..what?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Dryad<hr>Why did you kill my friends?
They were corrupted, yes. But they had enough control to let you flee. You chose to kill them anyways.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/dryad1.png">
</div>
</div>
<p>Realizing she's talking about the Alraune, you take a deep breath and respond</p>
<div class='row right'>
<div class='right-msg'>I had no choice. They were a threat. They could spread their corruption and hurt others.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>The Dryad shakes her head and raises her voice</p>
<div class='row left'>
<div class='left-msg'>Dryad<hr>I understand your intentions but that doesn't excuse what you did. I have been searching for a way to reverse the corruption that took hold of my friends, I will succeed.
And now, in order to save them... I must stop you.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/dryad1.png">
</div>
</div>
<p>She raises her hands, vines twirling around them. You ready your claws for the fight. Before the first blow is struck the Dryad speaks again</p>
<div class='row left'>
<div class='left-msg'>Dryad<hr>I do not wish to fight, but I cannot let you continue on your path. I'm sorry.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/dryad1.png">
</div>
</div>
<p>The tension between the two of you is palpable as you stand there, ready for what may come.
</p>
[[Dryad Battle]]
<</if>>
</div><<set $energy -= 10>>
<div class="conversation">
<<if $cleanstatue is 0>>
<p>
<img class="passage-image" src="demongodsassets/img/scenes/forest/statue/0.png" >
You approach the statue, surveying the thick vines and overgrown brush that obscures her form. You take a deep breath and ready yourself for the task ahead. You begin to pull the weeds, carefully removing them from around the base of the statue.
</p>
<<set $cleanstatue += 1>>
<<elseif $cleanstatue is 1>>
<p>
<img class="passage-image" src="demongodsassets/img/scenes/forest/statue/1.png" >
You continue to work, your movements becoming more fluid and efficient as you gain momentum. The vines begin to loosen, and you use your claws to carefully cut them away. The statue begins to reveal itself, the curves of the succubus's form becoming more pronounced.
</p>
<<set $cleanstatue += 1>>
<<else>>
<p>
<img class="passage-image" src="demongodsassets/img/scenes/forest/statue/2.png" >
After clearing away the vines, you notice that the statue pedestal holds a dress at the base of the Succubi's feet. It is a dark, flowing gown that shimmers in the dappled light of the forest. You pick it up, feeling its luxurious fabric slip through your fingers.
You can't help but think that this dress must have belonged to the succubus herself. It must have been left here as some kind of bait to draw in unsuspecting travelers. But as you look at the dress, you realize that it could be a valuable prize for someone brave enough to claim it.
You pack the dress away, deciding you'll try it on at home. You feel it's seductive power as you touch it wrap around you like a cloak. You feel the eyes of the statue watching your every move. Is it angry at you for taking the dress? Happy you cleaned it? You feel a shiver run down your spine, hoping the dress isn't cursed.
Alluring Dress obtained!
<<set $wardrobe.outfit.push("alluringdress")>>
<<set $cleanstatue to 3>>
</p>
<</if>>
[[return|forest2]]
</div><div class="conversation">
<p>
You decided to spare the Alraune this time. You're not sure if this is the right choice, but you can't help yourself. It feels too cruel.
</p>
<<set $alraunespared += 1>>
<<if $currentlocation is "forest1">>
[[Return|forest1]]
<<elseif $currentlocation is "forest2">>
[[Return|forest2]]
<<elseif $currentlocation is "forest3">>
[[Return|forest3]]
<<elseif $currentlocation is "forestdungeon">>
[[Return|forestdungeon]]
<</if>>
<<if $alraunespared gte 5 and $dryadalive and not $alrauneally>>
<<goto "alraune talk">>
<</if>>
</div><div class="conversation">
<p>Unfortunately you can't take any risks with corrupted creatures. It saddens you, but you decide to end her life. You do it as quickly as possible, hoping to avoid any suffering.</p>
<<set $alraunespared -= 1>>
<<if $currentlocation is "forest1">>
[[Return|forest1]]
<<elseif $currentlocation is "forest2">>
[[Return|forest2]]
<<elseif $currentlocation is "forest3">>
[[Return|forest3]]
<<elseif $currentlocation is "forestdungeon">>
[[Return|forestdungeon]]
<</if>>
<<if $alraunespared lte 5 and $dryadalive and not $alrauneally>>
<<goto "alraune talk">>
<</if>>
</div><div class="conversation">
<<switch random(5)>>
<<case 1>>
<<set $locationmarker to "c2">>
<<case 2>>
<<set $locationmarker to "a1">>
<<case 3>>
<<set $locationmarker to "c4">>
<<case 4>>
<<set $locationmarker to "g3">>
<<case 5>>
<<set $locationmarker to "g1">>
<<default>>
<<set $locationmarker to "b1">>
<</switch>>
<p>As you make your way through the dense forest, you are suddenly caught off guard by a faint, glowing light that appears to be hovering just ahead. Intrigued, you cautiously follow it, watching as it dances and flits through the trees. The light seems to be leading you deeper into the woods, and you can't help but feel a sense of unease as you continue to follow. The trees grow taller and the air grows colder, but the light remains just out of reach, tempting you forward. Eventually, you find yourself standing at the edge of a dark, murky pond, the glowing light nowhere to be found. You are left feeling lost and confused, unsure of whether you were being led astray or if you were simply imagining things.<<set $randomeventcomplete to true>>
Your location has changed.
</p>
<<if $currentlocation is "forest1">>
[[continue|forest1]]
<<elseif $currentlocation is "forest2">>
[[continue|forest2]]
<<elseif $currentlocation is "forest3">>
[[continue|forest3]]
<</if>>
</div><<nobr>>
<<widget 'headshot'>>
<<if $currentlocation !== "blackpool" and $currentlocation !== "tavern">>
<<if $horns is true>>
<img @src="'demongodsassets/people/headshots/you/horns/'+$hair+'.png'" style="max-width:90%;" >
<<elseif $ears is true>>
<img @src="'demongodsassets/people/headshots/you/ears/'+$hair+'.png'" style="max-width:90%;" >
<<else>>
<img @src="'demongodsassets/people/headshots/you/'+$hair+'.png'" style="max-width:90%;" >
<</if>>
<<else>>
<<if $spells.illusion is true>>
<img @src="'demongodsassets/people/headshots/you/'+$hair+'.png'" style="max-width:90%;" >
<<elseif $horns is true>>
<img @src="'demongodsassets/people/headshots/you/horns/'+$hair+'.png'" style="max-width:90%;" >
<<elseif $ears is true>>
<img @src="'demongodsassets/people/headshots/you/ears/'+$hair+'.png'" style="max-width:90%;" >
<<else>>
<img @src="'demongodsassets/people/headshots/you/'+$hair+'.png'" style="max-width:90%;" >
<</if>>
<</if>>
<</widget>>
<</nobr>>
<<nobr>>
<<widget 'clothes'>>
<<if $horns is true>>
<img class="passage-image" @src="'demongodsassets/you/clothes/'+$hair+'/'+$outfit.outfit+'.png'" >
<<elseif $ears is true>>
<img class="passage-image" @src="'demongodsassets/you/clothes/nohorns/'+$hair+'/'+$outfit.outfit+'.png'" >
<<else>>
<img class="passage-image" @src="'demongodsassets/you/clothes/nohorns/noears/'+$hair+'/'+$outfit.outfit+'.png'" >
<</if>>
<</widget>>
<</nobr>><div class="conversation">
<<switch random(2)>>
<<case 1>>
<p>
You're walking down the street, lost in thought, when you hear a voice behind you.
</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr> Excuse me, miss!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
You turn around to see a handsome young man looking at you with lust.
</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr> I just had to say, I love your dress. It's so elegant and stylish. Would you like to go for a walk together and show me more of your impeccable taste?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
You look at him, the way he's leering at your body he's clearly not interested in your outfit.
</p>
<div class='row right'>
<div class='right-msg'>Elaborate
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Stranger<hr>I've got some copper if you show me what's underneath?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<<if $p.acceptance lt 75>>
<p>Well at least he isn't asking for anything more vulgar. You might be willing to just show off your boobs for some easy money.
</p>
<</if>>
<<if $energy gte 10>>
<<if $p.acceptance gt 30>>
Costs 10 energy
[[agree|flash him][$slutfame += 1, $p.acceptance += 1]]
[[decline]]
<<elseif $arousal gte ($maxarousal * 0.75)>>
<p>You're starving. Due to your hunger, your mind is being influenced by your bodys instincts.</p>
[[agree|flash him][$slutfame += 1, $p.acceptance += 1]]
<<else>>
<p>Despite your instincts trying to get you to accept this offer, you're not that desperate or willing to do something so depraved.</p>
[[decline]]
<</if>>
<<else>>
Unfortunately you're too tired for this right now.
[[decline]]
<</if>>
<<case 2>>
<p>
You're browsing the shops in the town market, suddenly, you feel a tap on your shoulder. You turn around to see a charming stranger staring at your chest.
</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr>How would you like to make some copper?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>What do I have to do?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Me. Right here.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
You look around at the people walking by. Technically there is no law against public indecency, but it's still frowned upon. Do you really want people to look at you that way?
</p>
<<if $energy gte 10>>
<<if $p.acceptance gt 75>>
[[agree|public sex][$slutfame += 1, $p.acceptance += 1]]
[[decline]]
<<elseif $arousal gte ($maxarousal * 0.75)>>
<p>You're starving. Due to your hunger, your mind is being influenced by your bodys instincts. While normally you'd be grossed out, this is really hard to resist.</p>
[[agree|public sex][$slutfame += 1, $p.acceptance += 1]]
<<else>>
<p>Despite your instincts trying to get you to accept this offer, you're not that desperate or willing to do something so depraved.</p>
[[decline]]
<</if>>
<<else>>
Unfortunately you're too tired for this right now.
[[decline]]
<</if>>
<<default>>
<p>
You're walking through the park, enjoying the warm sun on your skin and the sound of birds singing. As you stroll, you hear someone whistle inappropriately at you. As you turn around you see the source of the whistles - a young man with a smattering of beard on his face and a swagger in his walk. He smiles at you, his eyes darting down to your breasts and back up to your face.
</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Looking for a good time?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<<if $energy gte 10>>
<<if $p.acceptance gt 75>>
[[I'd say|flash him][$slutfame += 1, $p.acceptance += 1]]
[[decline]]
<<elseif $arousal gte ($maxarousal * 0.75)>>
<p>You're starving. Due to your hunger, your mind is being influenced by your bodys instincts. While normally you'd be grossed out, this is really hard to resist.</p>
[[agree|public sex][$slutfame += 1, $p.acceptance += 1]]
<<else>>
<p>Despite your instincts trying to get you to accept this offer, you're not that desperate or willing to do something so depraved.</p>
[[decline]]
<</if>>
<<else>>
Unfortunately you're too tired for this right now.
[[decline]]
<</if>>
<</switch>>
</div><div class="conversation">
<<if $boss1alive is false and $azraelmet is 0>>
<p>As the night grows late and the town begins to quiet down, your attention is drawn to the illuminated window of the bookstore. A sense of curiosity washes over you - surely they should have closed their doors by now?</p>
<<else>>
<p>You enter a crowded market district. Various venders call out to you, selling their wares. You're almost overwhelmed but one of them catches your eye.</p>
<</if>>
[[book store]]
[[hair potion]] You see a dusty looking shop advertising hair potions.
[[Tailor]] You see a shop with various interesting outfits on models, on display.
[[walk away|town]]
</div><div class="conversation">
<p>You enter the cramped and dusty little shop, the tinkling of a bell announcing your arrival. The walls are lined with shelves filled with all manner of potions and tinctures, each with a label that promises miraculous transformations. The smell of herbs and spices fills your nostrils as you make your way towards the counter, where a man with greasy hair and an ingratiating smile greets you with an overly enthusiastic voice.
<div class='row left'>
<div class='left-msg'><hr>Ah, welcome, welcome! My name is Finnegan. I can see that you are a person of discerning taste and style - someone who knows the power of a good hair color.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
You eye the man warily, not entirely sure what he's getting at. But before you can say anything, he thrusts a small bottle towards you, the liquid inside swirling with a rainbow of colors.
<div class='row left'>
<div class='left-msg'><hr>This is my finest invention, a hair color-changing potion, I call it 'PhotoHairShop!'
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'><hr>With just a few drops, you can transform your locks into any hue you desire - from deep sable to fiery red to ocean blue.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
The developer really wishes it was this easy...
You hesitate, unsure whether you want to mess with your hair color. But before you can voice your doubts, the man is already pouring a few drops onto his own hair, which instantly transforms from greasy brown to a shocking shade of electric blue.
<div class='row left'>
<div class='left-msg'><hr>See? It's perfectly safe, and look at the results! Imagine what it could do for you! We've got a huge discount right now, only 800 copper!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
Changing your hair color costs 800 copper. This guy is a scam artist!
He offers to use the potion on you right away if you purchase. It's even permanent! What do you do?
You look in a mirror and consider your options.
<<clothes>> </p>
<<if $inv.money gte 800>>
[[black|hair potion2][$hair to "black", $inv.money -= 800]]
[[blonde|hair potion2][$hair to "blonde", $inv.money -= 800]]
[[blue|hair potion2][$hair to "blue", $inv.money -= 800]]
[[brown|hair potion2][$hair to "brown", $inv.money -= 800]]
[[purple|hair potion2][$hair to "purple", $inv.money -= 800]]
[[red|hair potion2][$hair to "red", $inv.money -= 800]]
[[white|hair potion2][$hair to "white", $inv.money -= 800]]
<<else>>
<p>You should come back when you have more money. </p>
<</if>>
[[walk away|town]]
</div><div class="conversation">
<p>
<<clothes>>
After checking out your new hair color in a nearby mirror, you thank the shopkeeper and leave.
[[back|town]]
</p>
</div><<widget 'brothelclient'>>
<<set $sexcount += 1>>
<<switch random(6)>>
<<case 1>>
<p>
You start your shift. The brothel was alive with the sound of boisterous laughter and animated conversation as patrons drank and feasted on hearty fare. The air was thick with the aroma of roasting meat and the heat from the roaring fireplace, which cast a warm glow over the room. Across the room, 2 men are sitting at a table and beckon you closer. As you approach they put two coins on the table.
<div class='row left'>
<div class='left-msg'>Brothel Patron<hr> Upstairs
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Two of you?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
The men look at each other and smile,
<div class='row right'>
<div class='right-msg'>Follow me then, dear customers
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You pocket the coin as you lead them upstairs.
</p>
<<set $sexcount += 1>>
[[get to work|brothel3some]]
<<case 2>>
<p>
You start your shift. The brothel was quiet and subdued, with only a few patrons scattered about the room nursing their drinks. The only sounds were the soft crackling of the fireplace and the muffled clatter of dishes being washed in the kitchen and muffled moans heard from upstairs.
A patron eyes you and beckons you closer. As you approach he puts coins on his table.
<div class='row left'>
<div class='left-msg'>Brothel Patron<hr>You ever been with a soldier?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Would you prefer to be my first?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Brothel Patron<hr>A girl who knows what I like!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
He grins and follows you upstairs.
</p>
[[get to work|brothel normal scene]]
<<case 3>>
<p>
You start your shift. The Brothel was a hub of activity, with patrons darting in and out, the sound of chatter and laughter a constant buzz in the air. As you cleared tables and washed dishes, You couldn't help but feel a sense of pride in your work - despite the long hours and meager wages, there was something satisfying about being able to provide for yourself. A rude man gestures to you, snapping for your attention like a dog. You approach him.
<div class='row left'>
<div class='left-msg'>Brothel Patron<hr>You're a fine looking girl,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
He puts a coin on the table.
You pocket the coin and lead him upstairs.
</p>
[[get to work|brothel normal scene]]
<<case 4>>
<p>
You start your shift. The Brothel was packed to the brim with patrons, all jostling for space at the crowded tables. As you weaved your way through the throngs of people, you breathed a sigh of relief when you spotted a coin placed neatly on the edge of a table, the universal sign that someone was requesting your services. You made your way over to the table with a smile, ready to do what you must to make a living. As you approach, however, you're startled to find a muscular man glaring at you with a menacing look on his face. He grabs your arm and drags you towards him, putting a coin on the table.
<div class='row left'>
<div class='left-msg'>Brothel Patron<hr>I want to fuck you like the whore you are, but first I want to teach you a lesson,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
Turned off by his rude behavior, before you can react, he grabs your jaw and forces you into a kiss. He's far more forceful than any of your previous partners, kissing you hard and unapologetically. He pushes your down onto the table and holds your arms down. He buries his face in your chest, making a show of inhaling deeply.
<div class='row right'>
<div class='right-msg'>Sir, I apologize for my rudeness, but company policy says that we must be upstairs to avoid disturbing other patrons!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
He then lifts you and a forceful palm on your back pushes you forward, signifying it's time to go upstairs. You barely manage to grab the coin before he pushes you again.
</p>
[[get to work|brothel normal scene]]
<<case 5>>
<p>
You start your shift. The Brothel was filled with the sound of raucous laughter and off-key singing, the air thick with the smell of sweat and ale. As you hurried from table to table, serving food and drink to the patrons, you couldn't help but feel a sense of <<if $p.acceptance lt 60>>resignation - for all your dreams and aspirations, you were nothing more than a whore<<elseif $p.acceptance lt 75>>complacancy. The job isn't bad, it can be fun. But it's not what you expected<<else>>joy. You loved being a whore and a succubus. You were extremely proud of your accomplishments<</if>>. You felt a <<if $p.acceptance lt 50>>jolt of anger<<else>>smirk rise to your face<</if>> when you saw a group of men toss a coin onto the table with a lewd grin, signaling that they wanted your attention. You <<if $p.acceptance lt 50>>forced a smile<<else>>smiled<</if>> and made your way over to them, determined to take control of the situation.
<div class='row left'>
<div class='left-msg'>Brothel Patron<hr>Jareth here is a virgin, we need you to fix this.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
The guys laugh and tease the poor man. Jareth looks pretty upset at this comment as he slugs his friends.
<div class='row left'>
<div class='left-msg'>Jareth<hr>Stop it, assholes!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc3.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Of course! Follow me upstairs, <<if $p.acceptance lt 50>>Jareth<<else>>handsome<</if>>.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
You pocket the coin, Jareth blushes as he follows you.
</p>
[[get to work|brothel normal scene]]
<<case 6>>
<p>
You start your shift. The Brothel was dimly lit and smoky, with patrons huddled together in small groups, sharing stories and gossip. You make your way around the room, collecting empty glasses and refilling tankards before you spot a coin on the table. Unfortunately one of the other girls beat you to it, but luckily the man specifically requested you. The girl huffs, but gets your attention, and you head upstairs with the man.
</p>
[[get to work|brothel normal scene]]
<<default>>
<p>
You start your shift. You feel a little flustered to be working the same day as another woman who stole one of your clients on a previous shift, but as long as you get a good tip you'll be alright. You were busy serving food and drinks to several groups of men when a patron waved you over. The man's clothes were dirty, his hands stained with grease. He had the look of a dockworker, and when he looked at you, the look in his eyes made you question whether this wasn't just some sort of elaborate joke.
<div class='row left'>
<div class='left-msg'>Brothel Patron<hr>I want to fuck your brains out
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
He tosses a coin on the table.
You furrow your brow at him, but the money was there so you pocketed it, leading him upstairs.
You lead the man to the baths and instruct him which room you'll be waiting in.
[[get to work|brothel normal scene]]
</p>
<</switch>>
<</widget>><div class="conversation">
<p>
<img class="passage-image" src="demongodsassets/sexscenes/blackpool/brothel/spitroast/1.png" >
They're handsome men, with deep voices and muscular bodies. Judging from their muscles, they look to be soldiers. You lead them to the baths after showing them which room is yours, then you enter your room and wait for them to arrive. Putting on something sexy while you wait.
A few minutes later the door opens and both men enter the room. They stand in the doorway, eyeing you up and down. It's clear they like what they see. You motion them closer. As they approach the bed, you crawl forward and pull the string on the first mans pants, dropping them to reveal his impressive length. You grab ahold of his shaft and begin to lick the tip, keeping the other man in the corner of your eye as he moves behind you. You feel him reveal your perfect pink pussy, and begin to slide his fingers into your hot wet cunt. You moan softly around the other mans dick as his fingers begin to work his fingers inside your tight wetness.
He begins to work his fingers in and out, pumping them deeper and faster while your tongue laps up and down the tip of his friends precum. The man you're working on is groaning when the man behind you decided he had enough. You suddenly feel hot breath on your pussy as his face dips down to get a good lick. He licks up all of your juices from the inside out, making you moan. You feel his tongue press against your clit, making you buck and shiver. The two men move at the same time and you feel the heat of their tongues licking all around your wetness. You cry out around the cock as the friend laps up all of your sweet nectar.
The men trade, and as you reciprocate on the friend who was eating you, the one that was in your mouth gets behind you and pushes his cock inside. He starts slow, but slams into you hard. The feeling is incredible and you cry out. The cock in your mouth must have enjoyed the vibrations in your throat as you feel him tense up and nearly blow his load already. Though it seems he was able to resist. His friends hips pound against yours and his cock moves so fast it feels like a hammer pounding into your body. The one in your mouth reaches down to grab one of your breasts, gently squeezing your sensitive nipple, making you moan around the cock in your pussy. His hips pound against you even harder and you feel your body begin to tense up as you feel yourself cumming on his cock. As he continues to pound into you you feel his cock spasm and he erupts inside of you.
As you experience his orgasm, you both grunt and you accidentally take the cock in your mouth as deep as possible. In addition to your own orgasm, and the other mans, you don't even get a chance to recover before you experience another as the man in your mouth pulls out as quickly as he can so he can cum all over your face. He sprays his load all over your face and tits and you taste it as the cock in your pussy continues to spasm inside of you. You hungrily wipe the cum off your face and lick it up, as the men cheer.
</p>
<<set $cummod to 70 + ($slutfame * 2)>>
<<set $inv.cum += $cummod>>
<<set $coppermod to ($slutfame + 20) * 2>>
<<set $inv.money += $coppermod>>
<<set $arousal to 0>>
You have fed. Your hunger is back to 0.
You gained $coppermod copper in tips!
You gained $cummod in cum!
<<if $energy gte 30>>
[[work another shift|Work at the Brothel][$energy -= 30, $slutfame += 1, $p.acceptance += 1]]
<<else>>
You're too tired to work another shift.
<</if>>
Go back to [[town]]
</div><div class="conversation">
<<set _size to random(99)>>
<<if _size lte 33>>
<<set _preference to "small">>
<<elseif _size lte 66>>
<<set _preference to "medium">>
<<else>>
<<set _preference to "large">>
<</if>>
<p>
You decide to agree
</p>
<div class='row right'>
<div class='right-msg'>Are you sure? You might never want to see any other pair of boobs again.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>He nods enthusiastically</p>
<div class='row right'>
<div class='right-msg'>Don't say I didn't warn you, mine are beyond compare!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p><img class="passage-image" @src="'demongodsassets/sexscenes/blackpool/flash/'+$breasts+'/'+$hair+'.png'" ></p>
<<if $breasts == _preference>>
<div class='row left'>
<div class='left-msg'>Stranger<hr>You weren't kidding, those are amazing...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<<set $coppermod to ($slutfame * 1.5)>>
<<set $inv.money += $coppermod>>
<p>He pays you $coppermod and goes on his way, no doubt planning to dream of you for the next several nights to come.</p>
<<else>>
<p>This is weird, he looks disappointed. You have the body of a sex demon, who the Hell could possibly be disappointed!?</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr>They're not bad, but I prefer _preference breasts...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<<set $coppermod to ($slutfame)>>
<<set $inv.money += $coppermod>>
<p>You click your tongue in disappointment as he hands you $coppermod copper.</p>
<</if>>
[[back|town]]
</div>
<<set $slutfame += 1>>
<div class="conversation">
<p>You shake your head</p>
<div class='row right'>
<div class='right-msg'>Gross, no way!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>He shrugs his shoulders </p>
<div class='row left'>
<div class='left-msg'>Stranger<hr> Suit yourself
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
[[back|town]]
</div><div class="conversation">
<p>
He doesn't even look around at the people moving about, he just drops his pants. You drop to your knees and immediately take hold of his cock. His hands immediately grab ahold of your head, guiding your mouth over his cock. He groans loudly as he feels you slobbering all over him.
</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Such a good little whore,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
Strangers are walking by, some are pretending not to see what's going on, while some men are stopping to watch, rubbing their growing hard-on's through their pants. Wives are noticing their husbands stopping, and grabbing them and forcing them along. You didn't realize being watched could be so exciting!
You take him deep down your throat and begin to bob, taking all of him into your mouth and down your throat. It doesn't take long before he erupts into your mouth. You swallow eagerly, wanting more of his warm seed. Luckily you don't have to wait long as another man walks up. He strips off his pants and grunts as he presents his cock to you. The first man is finished but he stays to watch the show. Good thing too, you don't want to chase him down for your copper.
Another man gently guides you onto your hands so your ass is presented, and he lifts your skirt so you are bare from the waist down. He wastes no time as he lines his cock up with your slit, sliding easily inside of you. He is clearly much more experienced, as he starts off slow but quickly gains speed. You moan as he fills you up and begins to move more rapidly. The cock in your mouth erupts getting plenty on your face. The man fucking you slams himself into you hard, his cock stuffing you up to the hilt. Your wet pussy clenches everytime you experience one of the men orgasming, sending the man behind you into overdrive as slams into you harder and harder eliciting micro-moans from you, until finally he slams into you harder than before, his cock shoots load after load inside of your pussy. You moan with semen dripping down your face, loving the feeling of cum inside of you as the man reaches his climax. You are still quivering, even as they slowly pull out and help you to your feet. The men hand you some copper and the villagers that stopped start moving along again, as if there isn't a nearly naked girl covered in cum in the middle of town.
</p>
<<set $coppermod to ($slutfame * 2) + 20>>
<<set $inv.money += $coppermod>>
<<set $arousal to 0>>
<<set $inv.cum += $coppermod>>
<<set $sexcount += 2>>
<p>
You earned $coppermod copper and cum!
</p>
[[back|town]]
</div>
<<set $slutfame += 2>><div class="conversation">
<<if $bookladymet is false>>
<p><img class="passage-image" src="demongodsassets/people/fullbody/blackpool/booklady.png" >
You enter a book store and look around. It's clear that this shop doesn't have a lot of visitors, but then again you do live in the slums.
<<if $bookladymet is false>>An<<else>>The<</if>> old woman eyes you warily.</p>
<<set $bookladymet to true>>
<div class='row left'>
<div class='left-msg'>Old Woman<hr>You look like a whore. Do you even know how to read? If you steal anything I'll have the guards arrest you immediately.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/booklady.png">
</div>
</div>
<p>You roll your eyes at this insufferable old woman, then start browsing her inventory. Truthfully you weren't sure you'd be able to read any of them, but while the letters are unfamiliar they somehow make sense and you can read them as if it was your first language. <<if $genderstart is "grill">>You've never learned to read, considering all you cared about doing in your past life was cooking.<</if>> Most of the books seem to be romance novels intended for noble women. You do wonder how many nobles actually come to the slums to buy a book, but then something catches your eye. In the corner you see large worn tomes that seem to be calling to you. You approach them.</p>
<div class='row left'>
<div class='left-msg'>Old Woman<hr>Don't bother, noone can read that rubbish. They're just collector items for people who wish they could read the language of the old word. A whore like you has no use for it.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/booklady.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'><<if $p.acceptance lt 50>>Why do you keep calling me a whore!?<<else>>Lady, I am genuinely interested in these books. Can you please lay-off?<</if>>
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>The old woman just cackles.
You glance around and see some dusty old tomes that you feel drawn to. You pull one out and look at the cover, reading something about wind.</p>
<div class='row right'>
<div class='right-msg'>How much for these books over here that "noone can read"?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You roll your eyes on the last part.
The old woman cackles again, she's really going for the wicked witch of the west vibe, eh?</p>
<div class='row left'>
<div class='left-msg'>Old Woman<hr>See! I knew you were just a whore! Can't read so you grab ancient books that aren't even in our language!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/booklady.png">
</div>
</div>
<p>She can't read these?
You do glance around and realize the writing is different on most of the other books, but you can't explain how you can read both.</p>
<div class='row right'>
<div class='right-msg'>I can. This one mentions wind on the cover.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Old Woman<hr>10,000 copper!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/booklady.png">
</div>
</div>
<p>The Hell does this old lady think you did to her?</p>
<div class='row right'>
<div class='right-msg'>What!? But you said noone can even read it? Why?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Old Woman<hr>Cause I don't like you.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/booklady.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>500 copper.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Old Woman<hr>5,000 copper.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/booklady.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>1,000, that's as high as I'll go.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>The woman grins</p>
<div class='row left'>
<div class='left-msg'>Old Woman<hr>Don't know what you want with a book you can't read, but fine. They've been in my shop for over a year anyways. Hardly anyone in this part of the city even knows how to read.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/booklady.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I JUST said I can read it!
How do you stay open?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Old Woman<hr>This very handsome nobleman comes to my shop once a week. He pays me enough to keep my shop open, even when he doesn't buy anything.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/booklady.png">
</div>
</div>
<p>Interesting. Why would he do that?</p>
<<elseif $bookladymet is true and $azraelmet is 0 and $boss1alive is false>>
<p>
As you step inside the bookstore, the floorboards creak under your weight, filling the silent room with a hollow echo. The dim glow of a lantern casts a soft light over the faces of two figures sitting near the counter. One is the cranky old woman you're used to, the other catches your attention - a nobleman, his tall frame enveloped in a finely tailored suit. His features are chiseled and well-defined, his jawline exuding an air of confidence and authority. His piercing blue eyes meet yours as he turns to greet you, hiw glowing white hair, and his charming smile sends a shiver down your spine.
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/azrael.png" >
The old woman behind the counter looks up at you and smiles warmly, a twinkle in her eye. You can't help but notice that she seems much happier than when you usually deal with her.
The noblemans gaze locks onto yours.
</p>
<div class='row left'>
<div class='left-msg'>Handsome Man<hr>Good evening,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
The mans tone is refined and mellifluous
</p>
<div class='row left'>
<div class='left-msg'>Handsome Man<hr>Forgive me, but I don't recall having the pleasure of making your acquaintance. Might you be the individual acquiring these antiquated tomes that are beyond the comprehension of most?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You hesitate for a moment, caught off guard by his question. You wonder if he knows the books are magic and you're the one who's been purchasing them. It could be dangerous if he were to report you.
</p>
[[lie|azraellie]]
[[truth|azraeltruth]]
<<elseif $azraelmet gt 0 and $azraelmet lte 3>>
<<if $days gte $bookstoretimer>>
<<if $azraelmet is 1>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/azrael.png" >
To your surprise, Azrael is already here. Speak to him again?
</p>
[[speak to azrael|azrael2]]
<<elseif $azraelmet is 3 and $azraelquest is 1>>
<p>
Azrael isn't here yet, wait for him?
</p>
[[wait for Azrael]]
<<else>>
<p>
<p><img class="passage-image" src="demongodsassets/people/fullbody/blackpool/booklady.png" ></p>
Seems like Azrael isn't here.
</p>
<</if>>
<<else>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/booklady.png" >
Seems like Azrael isn't here.
</p>
<</if>>
<<else>>
<p><img class="passage-image" src="demongodsassets/people/fullbody/blackpool/booklady.png" ></p>
<</if>>
<p>Purchase a book?</p>
<<if $inv.money gte 1000>>
<<if $tome.wind is false>>
[[wind 1000 copper|book store][$tome.wind to true, $inv.money -= 1000]]
<</if>>
<<if $tome.thunder is false>>
[[thunder 1000 copper|book store][$tome.thunder to true, $inv.money -= 1000]]
<</if>>
<<else>>
Hmm, looks like you don't have enough money for a tome right now.
<</if>>
[[leave|market]]
</div>
<<set $rhelylanote to false>>
<<set $charmtraining to 0>>
<<set $rhelylarel to 30>>
<<set $azraelrel to 0>>
<<set $azraelmet to 0>>
<<set $bookladymet to false>>
<<set $spidersilk to false>>
<<set $eiracharm to 0>>
<<set $outfitStats to {
none: {melee: 0, magic: 0, pdef: 0, mdef: 0, charm: 3, critrt: 0},
revealingdress: {melee: 0, magic: 1, pdef: 1, mdef: 2, charm: 2, critrt: 0},
jeans: {melee: 1, magic: 0, pdef: 1, mdef: 0, charm: 0, critrt: 0},
alluringdress: {melee: 0, magic: 2, pdef: 1, mdef: 3, charm: 4, critrt: 0},
rags: {melee: 0, magic: 0, pdef: 1, mdef: 1, charm: -2, critrt: 0},
goldenware: {melee: 3, magic: 3, pdef: 6, mdef: 6, charm: 0, critrt: 0},
adventurerdress: {melee: 2, magic: 2, pdef: 3, mdef: 3, charm: 0, critrt: 1}
}>>
You should now be able to continue without restarting.
Note: I can't promise this will work, this may still cause issues as opposed to starting over. I will do my best to avoid any issues.
[[home][$currentlocation to "shack"]]<div class="conversation">
<<if $charmtraining is 0>>
<p>
You enter Rhelyla's room at the brothel and see her without her illusion reading something, Rhelyla sees you and motions for you to sit down.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Sit.
I've been watching you, and I think it's time we have a chat.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You sit down nervously, wondering what Rhelyla wants to talk about. She walks around the room, her tail swishing behind her, and then turns to face you.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>As a Succubus, your greatest weapon is your charm. However I've seen the guard at the front, he wouldn't even look at me at first. You went overboard. However you did mention before that you never met your mother, so I suppose it's understandable you wouldn't know how to properly use your powers without being taught.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
She pauses and looks at you
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr> If you'll allow it, I'd like to teach you.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You blink at this. Surprised. Since you've come to this world, Rhelyla has always been kind to you. Why?
</p>
<div class='row right'>
<div class='right-msg'>Why are you always so nice to me?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She sees the confusion on your face and smiles at you kindly
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I've been alive for a little over a thousand years, and I've never met another Succubus. I told you we were rare, but I only told you half the reason why.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Because Incubi are rare and chances of pregnancy are even lower?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She nods
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>There was a time when I was obsessed with learning about our original world. Yet this is all that I have learned from the demons I have charmed. In our original world, a certain event caused demonkind to harbor a deep-seated hatred towards our race, particularly towards our female counterparts. During that time, inter-race wars were a common occurrence. It was in one of these wars that a member of our race emerged with unprecedented power, causing the annihilation of multiple races. Before this event, her identity was unknown. From what I'm told it's almost as if she appeared out of nowhere, she was so unknown.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
you lean forward, captivated by the story. Appeared out of nowhere? Was she similar to you?
</p>
<div class='row right'>
<div class='right-msg'>Who is she?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>That's the irony of it, For some inexplicable reason, her name has been lost to the annals of history. One would think that such a powerful being would be impossible to forget, yet when I questioned several demons, they only knew fragments of her tale. Anyone who lived in that era however, they remember how wars between multiple races came to an abrupt halt ended by a single Succubi, with the deaths of millions all over the world. But none of them remember her name.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>If noone remembers her, surely she's dead then. Right?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Rhelyla shrugs
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>As long as we're fed, our race doesn't have a lifespan. But noone has heard from her since. Most likely she was killed.
This is probably why many from our world fled to this one.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
After a pause
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>We've gotten off topic. I would have your answer, will you allow me to teach you?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
[[agree|charm training2]]
[[no thanks|decline training]]
<<elseif $charmtraining is 1>>
<<if $days gte $traintimer>>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Ready for another session?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
[[agree|charm training3]]
[[no thanks|decline training]]
<<else>>
<<set _daysleft to ($traintimer - $days)>>
<p>
It's too early to train. Rhelyla told you to return in a week. There are still _daysleft days remaining.
[[town]]
</p>
<</if>>
<<elseif $charmtraining is 2>>
<<if $days gte $traintimer>>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Ready for another session?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
[[agree|charm training4]]
[[no thanks|decline training]]
<<else>>
<<set _daysleft to ($traintimer - $days)>>
<p>
It's too early to train. Rhelyla told you to return in a week. There are still _daysleft days remaining.
[[town]]
</p>
<</if>>
<<elseif $charmtraining is 3>>
<<if $days gte $traintimer>>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Ready for another session?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
[[agree|charm training5]]
[[no thanks|decline training]]
<<else>>
<<set _daysleft to ($traintimer - $days)>>
<p>
It's too early to train. Rhelyla told you to return in a week. There are still _daysleft days remaining.
[[town]]
</p>
<</if>>
<<else>>
<p>
Rhelyla doesn't seem to be here right now
</p>
[[town]]
<</if>>
</div><div class="conversation">
<p>
You agree to let Rhelyla teach you.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>As a succubus, your greatest weapon is your charm, you can use it to control others. But be careful not to overuse it. Otherwise, those under your influence may become blinded by lust and lose all control. It's better to suggest and influence than to directly control them.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/brothelbossbust.png" >
She demonstrates by charming a man you recognize as the one who gave you your interview. He smiles and nods along with Rhelyla's words, completely under her influence.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I believe you two have met.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You groan at the memory, she had you entirely fooled.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I realize you two have never formally been introduced. Meet Arcturus Slimwood.
Now, it's your turn. Try to charm him, but remember what I said about not overusing your magic.
Don't worry, if you go overboard my magic will keep him in check
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
[[try to hold back|training choice]]
[[go all out|training choice]]
</div><div class="conversation">
<p>
You're not interested in being trained, at least not right now.
</p>
<div class='row right'>
<div class='right-msg'>I appreciate the offer, but not right now. Maybe some other time.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Rhelyla smiles and nods
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Of course, my dear.
I'll be waiting for you.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
As you leave, you can still smell Rhelyla's perfume on your skin, the scent lingering and reminding you of her. You're not sure if you can trust her, but you can't help but feel drawn to her. Maybe someday, you'll let her teach you the ways of charm magic. But for now, you need to focus on other things.
</p>
[[town]]
</div>
<div class="conversation">
<<if $rhelylarel gt 30>>
<p>
As you enter Rhelyla's chamber, you find her sitting calmly. She nods at you, indicating for you to take a seat.
Rhelyla begins the training session by providing some basic instructions. You feel like you make good progress as the brothel boss is no longer tearing off your clothes. She seems pleased with your advancements but quickly shifts the conversation towards the events of your previous meeting.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I believe you.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
Rhelyla's voice is low, like she's ashamed of something.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I flew to the forest.
<<if $dryadalive is true>> The forest is healing, the corruption is pulling back, and even the Alraune are starting to recover.<<else>> The corruption has has started pulling back. Though the forest is dying, which is weird, the Dryad should be able to heal it now that Melek Taus is dead. I hope she didn't meet a terrible fate... However,<</if>> I believe that you really did kill the Melek Taus, and that you're from another world. You absorbed his power, and there's no way you'd have been able to do so unless you were immune to the corruption. That's the only explanation.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
Her words are a relief, and you can't help but feel grateful that she's willing to believe you. You sit quietly, waiting for her to continue.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I'd like to help you rid this world of corruption and those demons. Well, the Demon Gods, that is. Despite my personal feelings towards other demons, I don't hate them.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
Rhelyla pauses, her expression thoughtful.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>The Demon Gods' objectives are unknown.
They seem to corrupt anything they come in contact with, but there has been no evidence that they push for more land, and they only corrupt those that approach them. Some of their corruptions might stray from their domain, but I don't believe that's intentional. They stay put, only destroying challengers that approach them.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>They're not necessarily contained within their borders as I've seen the one on the mountain leave before. What's more, it's said that there are 6 of them. This is mentioned repeatedly, so I don't think it's a mistake. However there are no details of a 6th anywhere I look.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
She stops and takes a sip from a cup.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>As your senior, I hate to admit it. But compared to you I am weak. Despite that, I want to help you take them down. I may not be able to take them on myself like you. What I can offer you though is my experience. You're new to life as a Succubus, and you're young but you're likely already more powerful than anyone else in our race. You may not know what to do with all that power.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
As she speaks, you realize that Rhelyla knows more about the Demon Gods than she initially let on. She seems to have done her research and has put a lot of thought into the situation. It couldn't have been easy for her to admit that the equivalent to a child to her is more powerful. But you'll welcome her assistance.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I've decided that since you've already killed Melek Taus, only you are capable enough to completely destroy the demons once and for all,
I have no desire to protect 'most' humans, but there are some that I would never want to see harmed, especially the girls under my employ. I protect them, but there are limits to what I can do. And considering you used to be human... Perhaps they're not all bad.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>So I'd like to ask you to head to the mountains and slay Pseudinferis. The Demon God who resides near my home, on the mountain range south of here.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>As for our training, give me a weeks time before we continue, I'd like to look into some things. Our next training session will be in a week, and we'll discuss this further.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<<else>>
<p>
As you enter Rhelyla's chamber, you find her sitting calmly. She nods at you, indicating for you to take a seat.
Rhelyla begins the training session by providing some basic instructions. You feel like you make good progress as Arcturus is no longer tearing off your clothes. She seems pleased with your advancements but just when you thought she was going to forget the conversation last week ever happened, she quickly shifts the conversation towards the events of your previous meeting.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I flew to the forest. <<if $dryadalive is true>>The forest is healing, the corruption is pulling back, and even the Alraune are starting to recover.<<else>>The corruption has has started pulling back. Though the forest is dying, which is weird, the Dryad should be able to heal it now that Melek Taus is dead. I hope she didn't meet a terrible fate... However,<</if>> I believe that you really did kill Melek Taus. You absorbed his power, that's the only explanation. There's still so much that doesn't explain. Your body for example.
Also, I suppose you have your reasons. But there's one thing you left out.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
Her words are a relief, and you can't help but feel grateful that she's willing to believe you, you feel a bit guilty knowing you lied to her. You sit quietly, waiting for her to continue.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I don't know how, but you're immune aren't you.
To the taint? This isn't simply a resistance Succubi have. Like a plague, it simply doesn't affect you at all, does it?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You hesitate to come up with a response to that, but you decide on an excuse
</p>
<div class='row right'>
<div class='right-msg'>I tried telling the guard. He laughed at me. I didn't think you'd believe me either.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She looks at you, like she's inspecting your face.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I'd like to help you rid this world of corruption and those demons. Well, the Demon Gods, that is. Despite my personal feelings towards other demons, I don't hate them.
...
I don't know much about the Demon Gods.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>What I do know is Pseudinferis lives on the mountains, and given the proximity he is your next target.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
She stops and takes a sip from a cup.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>And compared to you I am weak. Despite that, I want to help you take them down. I may not be able to take them on myself like you. What I can offer you though is my experience. However old you are, you're at least less than 100 based on when we first met. You're young but you're likely already more powerful than anyone else in our race. You may not know what to do with all that power.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Since you killed Melek Taus, you're probably the only one in this world powerful enough to completely destroy the demons once and for all. I have no desire to protect 'most' humans, but there are some that I would never want to see harmed, especially the girls under my employ. I protect them, but there are limits to what I can do.
...
Give me a weeks time before we continue, I'd like to look into some things. Our next training session will be in a week, and we'll discuss this further.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<</if>>
[[town]]
<<set $traintimer to ($days + 7)>>
<<set $charmtraining += 1>>
</div>
<div class="conversation">
<h3>Content warning</h3>
highlight text to read content warning: <span style="color: transparent; text-shadow: 0 0 8px rgba(152,29,29,0.2);">discussion about violent rape, the story may have more dark scenes going forward.</span>
<p>
Rhelyla compliments your progress as you train with her. But you can't help but notice her sad expression.
She comments that perhaps the reason you struggled with control is because you gained too much power too quickly. Your conversation never turns to the demons, and you wonder if Rhelyla has found anything.
Your training is completed for the day, but she never says goodbye.
</p>
<div class='row right'>
<div class='right-msg'>Are you ok?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I need your help.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
Worry is etched across her face, but you're intrigued that she would actually ask for your help
</p>
<div class='row right'>
<div class='right-msg'>With what?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She hesitates before speaking again, her voice low.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I know this is a lot to ask after I asked you to never reveal yourself to anyone. I need you to kill someone.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You're taken aback. Rhelyla has never asked you for something like this before. You both may be Succubi, but she's always been very strict about hiding your true nature from others. What's more, what could it possibly be that she couldn't do it without your help? It's not that you're surprised Rhelyla would have no problem killing someone, the way she disposed of your first victim for you showed it wasn't her first time. But she's always been so careful.
Seeing your confusion Rhelyla continues
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I always protect the women under my employ. They're safe, they're paid well, they eat well. It doesn't matter if they're human, they trust me to look out for them and I do exactly that.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
Her expression turns to one of despair.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>However, I failed. A noble requested one of my girls at his home. Normally something we would never accept. However, he kept pushing, and as a woman and a brothel owner, my social status is not high enough to turn someone like him down. Even if you master your charm, with all your power, it doesn't mean you'll be free to do as you please.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You can see where this is going, and Rhelyla confirms your fears.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>People like him think just because we're whores we're not people. I've requested her return for seven days now. Today, she was finally returned to me. Every bone in her body was broken. Her mind was gone, and she died within moments of arriving on my doorstep.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
Rhelyla starts sobbing, and your heart aches for her.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>These men viciously raped and abused someone I swore to protect.
A human! But one who was not insignficant like most.
I have the power to destroy these men, and yet... there was nothing I could do.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
She looks at you with tears and desperation in her eyes.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>There's still nothing I can do. My face is known. I can't get him alone, and I can't kill him in public without exposing Succubi to the public. I need you to find a way to get to Viscount Ironwood and destroy him. Will you do it?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>What about going to the city guards? I've only met a couple but they seem to be good people
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She shakes her head
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Most of the guards come from the slums, or from poorer noble families. They wouldn't have the power to touch a Viscount no matter what he did.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
[[agree to help|rhelylarevenge]]
[[decline|rhelylanorevenge]]
</div><div class="conversation">
<p>
Rhelyla begins the training session, her instructions on charm magic ringing in your ears as you focus intently. With her guidance, you begin to feel the power within you shift and bend to your will. The session is long and intense, but you feel as if you've made a breakthrough in your control over this particular aspect of your powers.
After what feels like an eternity, Rhelyla nods in satisfaction, a small smile playing on her lips.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Well done, you've come a long way since we've first met.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You beam with pride listening to her soft voice compliment you.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Remember, you can't force someone to go against their nature completely. But you can make suggestions to guide them into getting what you want. Sometimes it might take a bit more.. Physical motivation.
And with this your training is complete, at least for controlling charm.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I had the best teacher!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<if $rhelylarevenge is true>>
<p>
But the moment is short-lived as Rhelyla's expression turns serious and her voice takes a low tone.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Now, as for the Viscount,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
She pauses for a moment...
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I'm sorry,
I was unable to even get close to him. He doesn't really associate with anyone other than nobles and his own personal guard. I know I'm the one who asked this of you and I can't even help you do it. Just forget I asked. I'll find another way to get to him.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You feel a twinge of disappointment. You had been hoping for a more positive outcome to this conversation.
</p>
<div class='row right'>
<div class='right-msg'>Is there anything I can do?
I owe you so much, Rhelyla. There's got to be a way I can get to him.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Rhelyla looks at you, a mix of gratitude and concern on her face.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I appreciate your offer, but it was wrong of me to ask in the first place. I can't risk putting you in danger,
For now, let's just focus on our training. I'll find another way to deal with the Viscount later on my own.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You don't know what to say. There's got to be a way you can get to him, you owe her so much. You should try and look around to see if there's anything you can do.
</p>
<<else>>
<p>
Rhelyla's expression shifts to a faraway look, and you can sense something is amiss. You prompt her to share her troubles, and she reluctantly agrees to confide in you.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>As you're probably aware, my girls come from various backgrounds. Some were nobles who were sold to pay their families' debts, while others grew up in the slums and were just trying to survive. I pay them well, and most of them live in the upper district. I understand, it's safer there than it is in the slums. But they're surrounded by people who think they're superior to normal men. They stay strong, but I know they're constantly bullied and treated as less than human.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
She takes a deep breath, steeling herself for what's to come.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>One of my girls went missing. She missed 3 shifts at work. I visited her home...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You gasp, knowing the implications
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>She's alive.
But she's badly injured. Her face is bruised, and both of her legs are broken. Whoever brought her home didn't even have the decency to lift her into her own bed. She was on the floor, unable to move or even fetch herself water.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You can feel the anger and sorrow radiating from her words. You can see the pain etched on her face as she struggles to contain her emotions.
</p>
<div class='row right'>
<div class='right-msg'>Was it-
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She cuts you off with a nod
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Yes, it was him and his men. She confirmed it after she had some food and rest.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You feel a lump form in your throat, your mind racing with anger and sadness. You know that she's seeking revenge, but you can't help but wonder if things would have turned out differently if you had agreed to her request.
Your voice barely a whisper, you ask her
</p>
<div class='row right'>
<div class='right-msg'>What will you do?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>For now I've paid some mercenaries to watch the women. I hope you don't mind, I didn't get one for you since you can take care of yourself and we don't want to accidentally expose our secret by having you watched.
But for now, I'm waiting. He'll let his guard down eventually. And when he does, I will destroy him and all of his guards. I'll make sure his entire house falls.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You can sense the determination in her voice, the sheer force of will that propels her forward. But you can also see the pain and sadness that she's trying to hide.
</p>
<div class='row right'>
<div class='right-msg'>I'm sorry, I wish there was something more I could do to help...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She gives you a small, sad smile.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Thank you, but for now lets call it a night.
I need some time to rest.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<</if>>
<p>
Your training has been successfully completed! You've now acquired the power to wield charm magic, enabling you to skillfully influence situations and conversations. However, be mindful that resistance to your charm may vary depending on the context and the individual.
Furthermore, your newfound abilities extend beyond charming people in town. You can also harness the power of Seduction magic during battles! This potent spell can weaken your enemies by reducing their stats by 20% and can be used once per battle. Unleash your enchanting abilities to turn the tide in your favor!
</p>
[[town]]
<<set $charmtraining += 1>>
<<set $spells.seduction to true>>
</div>
<div class="conversation">
<p>
You can feel the power of your charm magic pulsing through your veins, filling them with a potent energy that makes them feel both invincible and out of control. Rhelyla looks on with a critical eye, carefully watching the player's every move as they try to charm Arcturus. Rhelyla speaks up in a firm but patient voice.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>You need to focus specifically on what you want from them. Think of a specific directive, and use their lust against them. But remember, don't overuse your magic, or you'll lose control over them. Ask him for a shoulder massage, and focus your power specifically on receiving a massage.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You take a deep breath and try again, channeling all your energy towards the man in front of you. This time, you manage to charm him successfully, but the effects are stronger than you intended.
The man dashes at you, and starts tearing at your clothes. You're stronger than him, but the man is so determined you're having difficulty keeping him off of you. Out of the corner of your eye, you glimpse Rhelyla who is sitting there with her mouth hanging open.
</p>
<div class='row right'>
<div class='right-msg'>Rhelyla!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
A moment passes, and then she jumps into action instructing you firmly.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Cast it again, focus and command him to stop.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You focus, while doing your best to keep the man off you as he tries to tear off your clothes.
Finally it seems like you succeeded, as the man has come to a complete stop. He didn't even back off, it's like he's frozen in place by your command.
You peel your dress out of his hands, and remove yourself from his grasp. He's so perfectly still, you check to make sure he's breathing and back away.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Drop your illusion.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
Rhelyla commands you so forcefully, you comply nearly entirely out of surprise.
Your illusion removed, your horns and tail are exposed.
Rhelyla's eyes widen in shock after seeing your new assets.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>How is this possible?
You're still a newborn Succubus!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>What do you mean? Didn't you say I'd grow these anyways?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She looks at you warily, but drops her guard.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I didn't mean so soon.
It should have taken at least a hundred years to grow your tail, and a few hundred more for those horns. Not to mention you over-powered my charm spell.
Even if you consumed every man in this city, it still should have taken you centuries. How could you have become so powerful in such a short amount of time? You're already powerful enough to completely undo my own charm magic!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You don't know how to answer her, but the confusion on her face mirrors your own.
Perhaps its time to tell her the truth. Rhelyla doesn't think highly of most humans, but there are some she clearly likes. You consider your options.
You look at the man still frozen in place.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>He's unnder your control now, I can't stop him. Ask him to leave and he should follow your command. Once completing the task you gave him, he should go back to normal soon.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Leave, go get some rest.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
As Rhelyla said, the man follows your commands and leaves the room with a huge smile on his face.
Rhelyla seems angry for some reason. What should you tell her?
</p>
[[tell the truth|training truth]]
[[tell a half truth|training lie]]
</div><div class="conversation">
<p>
She's been so nice to you, you can't help but be honest with her.
</p>
<div class='row right'>
<div class='right-msg'>Are you sure? It may sound unbelievable.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Just do it.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You take a deep breath and begin your story. You tell her everything about your past life as a <<if $genderstart is "male" or $genderstart is "fem">>human, and how you were brought to this world after your death in a fire<<else>>grill, an inanimate object. And how you were brought to this world all of a sudden<</if>>. You tell her of your meeting with a Goddess and how she commanded you to purify this world of corruption or die trying.
As you finish your story, Rhelyla sits there for a minute. You give her time to compose herself.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>The church worships a Goddess, Is she perhaps one in the same?
... And you used to be a<<if $genderstart is "male">> Man!?<<elseif $genderstart is "grill">> creature called a grill?<<else>>human?<</if>> You claim you even killed Melek Taus yourself?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<<if $genderstart is "grill">>
<div class='row right'>
<div class='right-msg'>No, not a creature. At least not in that life!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<else>>
<p>
You hesitate, wanting to say something but not sure what to say.
</p>
<</if>>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I'm sorry, this is a lot to take in. Let's end here for today. I'll see you for our next session in a week.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<<if $genderstart is "male">>
<p>
As you turn to leave, you hear her mumbling and chuckling, you didn't quite catch her words but you did hear "male" and "succubus"...
You're gonna die of embarrassment...
</p>
<</if>>
<<set $traintimer to ($days + 7)>>
<<set $rhelylarel += 5>>
<<set $charmtraining += 1>>
[[town]]
</div><div class="conversation">
<p>
You hesitate for a moment, considering how much to reveal to Rhelyla. You know that divulging too much information could be dangerous, but you decide to take the risk and tell her your story, albeit with some key omissions. You leave out the fact that you were once human, and you don't mention the mysterious Goddess who sent you to this world.
Rhelyla listens attentively as you recount your tale, her expression inscrutable. When you finish, she sits in silence for a few moments, seemingly lost in thought.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Melek Taus is dead?
And you claim you're the one who killed him?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You confirm your story, trying your best to sound confident.
</p>
<div class='row right'>
<div class='right-msg'>Yes, I killed him. But I don't know how I gained so much power so quickly.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Rhelyla keeps her tone neutral and asks another question.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Did you kill him through sex?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You nod <<if $p.acceptance lt 50>>feeling a twinge of embarrassment at the memory<</if>>
Rhelyla softens her expression just a bit
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I'm not saying I believe you, but if what you're saying is true, it's possible you absorbed his power. It's hard to believe, but for the moment, it's the only thing that makes sense. The problem is, is that we shouldn't be capabale of surviving that much corruption. It's unnatural.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
Although Rhelyla nods in apparent acceptance, you sense a lingering skepticism in her eyes. You can tell that she's not entirely convinced by your story, but she doesn't press the issue further.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I'm sorry, this is a lot to take in, let's end here for today. We can continue your training tomorrow.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You nod, feeling relieved that the conversation is over. As you leave, you can't help but wonder what Rhelyla truly thinks of you and your story.
</p>
<<set $traintimer to ($days + 7)>>
<<set $rhelylarel -= 5>>
<<set $charmtraining += 1>>
[[town]]
</div><div class="conversation">
<p>
Rhelyla's request lingers in the air, and you can feel the weight of it pressing down on you. As much as you owe Rhelyla and feel for her, the thought of killing another human is something you cannot reconcile with your conscience.
Your voice cracks as you speak
</p>
<div class='row right'>
<div class='right-msg'>I'm sorry, Rhelyla.
I can't do this for you.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She looks at you, her face a mask of disappointment and sadness.
Finally, her voice barely above a whisper, she speaks
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I understand.
No, in the first place it was wrong of me to even ask.
I shouldn't have asked you to do something like this. It's just that...I was so helpless. I couldn't do anything to protect her.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You can see the pain etched on her face, and it breaks your heart. You reach out to take her hand, but she pulls away, her eyes filled with tears.
</p>
<div class='row right'>
<div class='right-msg'>I'm sorry
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You feel completely useless. You want to say more, but you can't find the words...
</p>
<div class='row right'>
<div class='right-msg'>I'm sorry...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You're not sure what to do, if staying is more rude than leaving. You want to help in any way you can, but there are just some things you can't turn back from. Sure you did kill an innocent (debatable) man, but that wasn't intentional. If anything it's the Goddesses fault for not explaining your body to you and forcing you into this situation.
Rhelyla takes a few deep breaths, and composes herself, wiping away her tears with the back of her hand.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>Let's continue with our training in a week, I can figure out another way to deal with the Viscount.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<p>
You nod, grateful for the reprieve. As you leave, your thoughts keep returning to Rhelyla and the poor girl who lost her life. You wish there was something you could do to ease her pain, but not matter how hard you think you can't come up with anything.
</p>
[[town]]
<<set $traintimer to ($days + 7)>>
<<set $charmtraining += 1>>
<<set $rhelylarel -= 10>>
<<set $rhelylarevenge to false>>
</div>
<div class="conversation">
<p>
You're furious. You haven't taken much time to get to know the other girls you work with, and you're not sure which one she was. But noone deserves that. He won't get away with this.
</p>
<div class='row right'>
<div class='right-msg'>I'll do it.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She looks at you, her look of surprise obscured by her tears. Almost as if she knew she was requesting something unreasonable<<if $rhelylarel gt 30>> especially given that she knows you used to be a human<</if>>.
</p>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>you will?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I promise he won't get away with this.
How do I reach him?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Rhelyla<hr>I'm sorry, I don't know. I'll try to think of a way by our next training session. Return to me in a week and I promise I'll have something by then.
Make him and his men suffer.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/rhelyla.png">
</div>
</div>
[[town]]
<<set $traintimer to ($days + 7)>>
<<set $charmtraining += 1>>
<<set $rhelylarel += 10>>
<<set $rhelylarevenge to true>>
</div>
<div class="conversation">
<<set $azraelrel -= 3>>
<<set $azraelmet += 1>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/azrael.png" >
You take a deep breath and try to feign nonchalance.
</p>
<div class='row right'>
<div class='right-msg'>Actually, I'm just looking around. I enjoy collecting old books
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The nobleman raises an eyebrow, seemingly unconvinced by your answer. You feel your heart racing in your chest, wondering if he knows what the books are.
The man looks at the woman, you feel odd for a brief second, then she suddenly stands up
</p>
<div class='row left'>
<div class='left-msg'>Old Woman<hr>Well I'm going to bed, Go ahead and lock up for me!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/booklady.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Wait! But I came here to buy...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She's already gone.
The man laughs and his gaze is unwavering
</p>
<div class='row left'>
<div class='left-msg'>Handsome Man<hr>you're interesting, I have a passion for old books as well, especially those related to the arcane. I heard a rumor that these books might contain secrets of magic. Is that what you're interested in?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You swallow nervously, trying to keep your composure as you lie to him again.
</p>
<div class='row right'>
<div class='right-msg'>Arcane? I thought the church said magic was evil?
I'm just a curious collector
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The nobleman inclines his head in agreement, though his expression betrays a hint of skepticism.
</p>
<div class='row left'>
<div class='left-msg'>Handsome Man<hr>These books you have amassed are quite intriguing. Have you, by any chance, heard of Succubi or Incubi? It seems that they have gathered their spells within tomes such as these.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You gulp anxiously
</p>
<div class='row right'>
<div class='right-msg'>Oh is that right? ...Do you believe that is what these books contain? But if the Church views magic as an abomination and eradicates anything remotely associated with it, is that really safe? Moreover, beings like Succubi are mere works of fiction, aren't they?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The nobleman nods, his countenance turning pensive.
</p>
<div class='row left'>
<div class='left-msg'>Handsome Man<hr>Indeed, the Church's association with magic is quite intricate. However, simply labeling something as 'evil' does not necessarily make it so. Sometimes, the veracity lies concealed in the shadows, awaiting someone to unearth it.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You nod slowly, uncertain of how to respond. On one hand, the nobleman's words pique your curiosity, but on the other hand, you dread the potential consequences if the Church were to discover your fascination with magic or, even worse, your ability to harness spells from these ancient tomes.
</p>
<div class='row left'>
<div class='left-msg'>Handsome Man<hr>May I ask if you hold an affinity for magic?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
This discussion is getting dangerous.
</p>
[[lie|azraellie2]]
<<set $azraelbookhonest to false>>
</div>
<div class="conversation">
<<set $azraelrel += 5>>
<<set $azraelmet += 1>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/azrael.png" >
You hesitate for a moment, unsure if you should tell him the truth. However, you decide to take a risk and be honest.
This man looks like someone important, a noble perhaps? You try to remember appropriate customs of the medieval era from TV shows you used to watch, while still concealing your unease. If he is a noble, he's the first one you've met. You're not sure what to expect.
</p>
<div class='row right'>
<div class='right-msg'>Yes, my lord, I am the one who has been purchasing these tomes.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
It looks like giving him the title of "lord" was the correct one as he smiles at you.
The man looks at the woman, you feel odd for a brief second, then she suddenly stands up
</p>
<div class='row left'>
<div class='left-msg'>Old Woman<hr>well I'm going to bed. Go ahead and lock up for me!
I'll be waiting for you.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/booklady.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Handsome Man<hr>Of course, my dear.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You watch her leave.
</p>
<div class='row right'>
<div class='right-msg'>But wait! I wanted to buy something!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
As if she didn't hear you, she continues walking and the man laughs.
He approaches you, his gaze unwavering.
</p>
<div class='row left'>
<div class='left-msg'>Handsome Man<hr>You're interesting. I have a passion for old books as well, especially those related to the arcane. I heard a rumor that these books might contain secrets of magic. Is that what you're interested in?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
Trying to keep your composure, you swallow nervously
If this man is associated with the church, this could be dangerous...
</p>
[[truth|azraeltruth2]]
[[lie|azraellie2]]
</div>
<div class="conversation">
<<set $azraelrel += 5>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/azrael.png" >
You take a deep breath and decide to take a risk,
</p>
<div class='row right'>
<div class='right-msg'>To be honest, my lord, I have always been fascinated by the world of magic. It is something that has always drawn me in.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You brace yourself for his reaction, worried that you have made a grave mistake. But to your surprise, he nods slowly then responds in a serious tone.
</p>
<div class='row left'>
<div class='left-msg'>Handsome Man<hr>I understand your interest, my dear. Magic has always been a potent force in our world, and those who harness it hold the potential for great good or great evil. However, I must caution you. You have just met me, and yet you have admitted to something quite dangerous. What if I were to report you to the church? Moreover, these tomes are intended solely for the use of Succubi and Incubi. It is not something that a mere human would be able to comprehend. If I may ask, how did you come to acquire the knowledge of the ancient language?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You ponder for a moment, uncertain of how to respond without giving away too much. The truth is that you're not entirely sure how you acquired the knowledge of the ancient language. Perhaps it was bestowed upon you when you were reincarnated into this world by the goddess. But you can hardly admit to that, can you?
</p>
<div class='row right'>
<div class='right-msg'>I know this sounds unbelievable, but I'm not entirely sure. I suppose I've always been fascinated by languages, and I've spent a considerable amount of time studying them.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
That's about as honest as you can be. You hope your vague response will suffice, and that the nobleman will not pry any further.
</p>
<div class='row left'>
<div class='left-msg'>Handsome Man<hr>It would take a genius to translate ancient text on their own... Well no matter. Have you taken notice of how <<if $dryadalive is true>>tranquil the forest has been lately?<<else>>the forest seems to be dying?<</if>>
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You're taken aback by his question, as his gaze intently fixes upon you. You wonder if the nobleman has any inkling of the truth. You had just slain the demon that was corrupting the forest<<if $dryadalive is false>> and the Dryad Queen<</if>>, noone should know<<if $rhelylarel isnot 30>> except Rhelyla<</if>>.
As a woman living within the city walls, it was not expected of you to have any knowledge about the forest. You wonder if he knows something about your recent exploits. But before you can respond, However, before you can respond, he erupts into laughter and admits that it was a jest.
You let out a deep breath, you're not quite sure how he would react if he knew you destroyed Melek Taus.
</p>
<div class='row left'>
<div class='left-msg'>Handsome Man<hr>Forgive me, but I realize I've gotten ahead of myself, speaking to you of such matters without even giving you my name.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
The man chuckles with a self-effacing chuckle.
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>My name is Lord Azrael, at your service.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You were right, he was a noble! Good thing you were cautious.
You nod courteously, acknowledging the faint allusion to darkness in his name, which befits a man of enigmatic charm.
You realize it's getting quite late and decide it's time for you to head home.
</p>
<div class='row right'>
<div class='right-msg'>If it would be agreeable to you, my lord, I would be honored to meet with you again. May we schedule another encounter here, on a future date?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Azrael<hr>I anticipate our meeting with great eagerness, my lady
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<<if $genderstart is "fem">>
<p>
He bows to you. You're not really sure if it's appropriate for a nobleman to bow to a commoner, much less someone from the slums, but he seems to have no problem doing it. What's more, you're taken aback by his courteous words, as no one has ever addressed you as "my lady" before. You find yourself blushing, feeling a sense of unfamiliarity and flattery at the same time.
</p>
<<else>>
<p>
You're taken aback by Lord Azrael's courteous address, feeling a strange mix of unfamiliarity and flattery. As you begin to blush, you can't help but feel a twinge of embarrassment at your own reaction. After all, you were once a man and the sudden shift to being addressed as "my lady" is still a little uncomfortable for you. Nonetheless, you try your best to maintain your composure and not reveal your unease.
</p>
<</if>>
<div class='row left'>
<div class='left-msg'>Azrael<hr>Let us meet again in 3 days time, if that is agreeable with you, my lady?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
You agree, bid a final goodbye and head home.
[[home][$currentlocation to "shack"]]
<<set $bookstoretimer to ($days + 3)>>
/* set timer for 3 days, player will have option to speak with Azrael again in 3 days */
<<set $azraelbookhonest to true>>
</div>
<div class="conversation">
<<set $azraelrel -= 3>>
<p>
You hesitate for a moment before admitting
</p>
<div class='row right'>
<div class='right-msg'>Honestly, I am illiterate and cannot decipher the contents of these tomes. However, I am deeply fascinated with collecting old things.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The nobleman's eyebrow arches, and you can tell he is taken aback by your admission.
</p>
<div class='row left'>
<div class='left-msg'>Handsome Man<hr>Nevertheless, it is a rare occurrence to encounter a person of your station with an interest in history. It is a testament to your intellectual curiosity
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You look at him perplexed. You just told him you're illiterate and he praised your intelligence.
</p>
<div class='row left'>
<div class='left-msg'>Handsome Man<hr>Unfortunately, it appears that these tomes contain spells that are only advantageous to Succubi and Incubi, making them useless to anyone else. It is a pity, for I have longed to encounter one of these creatures
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
He laments before shifting topics, abruptly and fixes his gaze intently on you
</p>
<div class='row left'>
<div class='left-msg'>Handsome Man<hr>Have you taken notice of how tranquil the forest has been lately?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You pause, your heart racing, wondering if the nobleman has any inkling of the truth. You had just slain the demon that was corrupting the forest, noone should know<<if $charmtraining gte 1>> except perhaps Rhelyla<</if>>.
As a woman living within the city walls in a more or less misogynistic world, it was not expected of you to have any knowledge about the forest. You wonder if he knows something about your recent exploits. But before you can respond, However, before you can respond, he erupts into laughter and admits that it was a jest.
You let out a deep breath, relieved that your secret is still safe. This man is astute and could easily uncover your truth, which makes you realize that you should probably leave before something goes wrong.
</p>
<div class='row left'>
<div class='left-msg'>Handsome Man<hr>Forgive me, but I realize I've gotten ahead of myself. Making jokes without even giving you my name. My name is Lord Azrael, at your service.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You nod courteously, acknowledging the faint allusion to darkness in his name, which befits a man of enigmatic charm. Not entirely sure how to respond to a lord, you pull on your memories of old tv shows.
</p>
<div class='row right'>
<div class='right-msg'>If it would be agreeable to you, my lord. I need to head home, it's getting quite late.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Azrael<hr>Of course, far be it from me to keep a lady from her home. Would you be willing to meet me here again in 3 days time?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You hesitate, you were trying to escape him not make more commitments. But he's a noble, can you say no?
</p>
<div class='row right'>
<div class='right-msg'>Yes my lord, that would be fine.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Azrael<hr>I anticipate our meeting with great eagerness, my lady
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<<if $genderstart is "fem">>
<p>
He bows to you. You're not really sure if it's appropriate for a nobleman to bow to a commoner, much less someone from the slums, but he seems to have no problem doing it. What's more, you're taken aback by his courteous words, as no one has ever addressed you as "my lady" before. You find yourself blushing, feeling a sense of unfamiliarity and flattery at the same time.
</p>
<<else>>
<p>
You're taken aback by Lord Azrael's courteous address, feeling a strange mix of unfamiliarity and flattery. As you begin to blush, you can't help but feel a twinge of embarrassment at your own reaction. After all, you were once a man and the sudden shift to being addressed as "my lady" is still a little uncomfortable for you. Nonetheless, you try your best to maintain your composure and not reveal your unease.
</p>
<</if>>
[[home][$currentlocation to "shack"]]
<<set $bookstoretimer to ($days + 3)>>
</div>
<div class="conversation">
<<set $azraelmet += 1>>
<p>
As the evening approaches, you make your way to the book store once again. To your surprise, Lord Azrael is already there, seated and engrossed in an ancient tome.
He looks up at the sound of your arrival, and a hint of anticipation sparkles in his eyes. He greets you with a gracious smile.
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/azrael.png" >
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>It is a pleasure to see you once more,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<<if $azraelbookhonest is true>>
<div class='row right'>
<div class='right-msg'>Good evening, my lord. I was hoping to speak with you about books once again, if that is acceptable?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Azrael<hr>Of course, my dear. I always enjoy a good conversation about books, What subject piques your interest today?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You weren't sure why anyone would have an interest in magic books that are only useful for Succubi and Incubi. However Rhelyla said if you ever met an Incubi you'd have an uncontrollable urge to screw eachother's brains out, and that hasn't happened. But you ask anyways just to be sure.
</p>
<div class='row right'>
<div class='right-msg'>Why are you so interested in Succubi and Incubi magic?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Lord Azrael's expression turns contemplative as he considers your question.
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>My interest lies in the nature of magic itself, and how different beings harness its power. Succubi and Incubi have a unique understanding and connection to the magical realm, and their spells are often quite powerful and mysterious. For example, did you know that iron did not exist in the home world of the demons, yet in this world it keeps their powers at bay?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You nod, intrigued. You're surprised however to learn iron has that effect.
</p>
<div class='row right'>
<div class='right-msg'>And what about you, my lord? Do you hold an affinity for magic?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Azrael<hr>Well I wonder...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
A smile plays on his lips as he pauses for effect
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>Well I'm sure its quite obvious that I am not a Succubus.
And I can assure you I am neither an Incubus.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
Lord Azrael says with a chuckle, his eyes glinting with amusement.
He sure seems to like his jokes, you inwardly sigh
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>Despite my fascination with their magic, it is impossible for me to wield it. Though, I do hold a deep interest for their control of magic, it is quite different than other races I've read about.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<div class='row left'>
<div class='left-msg'>Azrael<hr>I find the history of our world to be fascinating, especially the events surrounding the arrival of the demons. In fact, I have amassed an extensive collection of ancient texts that delve into this topic. Perhaps one day, I could grant you access to my library.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
That does sound interesting. You'd like to learn more about this world too.
You take a moment longer to process his words before responding
</p>
<div class='row right'>
<div class='right-msg'>Do you possess extensive knowledge on the demons and their arrival?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Azrael<hr>I wouldn't say extensive, but my collection of texts certainly covers a significant amount of ground. If you would allow me, I would be delighted to suggest a book that I am currently reading, I have already procured it and would be honored to present it to you as a gift.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<<else>>
<div class='row right'>
<div class='right-msg'>Good evening, my lord. I was hoping to browse the books here once more.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Azrael<hr>Of course, Is there a particular genre that interests you?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
As you ponder the question, the word "magic" echoes in your mind, but you quickly dismiss it as an inappropriate response.
You answer with a small, nervous smile
</p>
<div class='row right'>
<div class='right-msg'>No, not particularly
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Azrael<hr>If you would allow me, I would be delighted to suggest a book that I am currently reading. I have already procured it and would be honored to present it to you as a gift.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<</if>>
<p>
Lord Azrael offers you the book he was reading in a gentle and persuasive tone, and hands it to you.
You begin to protest, feeling uneasy about accepting such an extravagant offer
</p>
<div class='row right'>
<div class='right-msg'>I couldn't possibly-
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Lord Azrael presses the book into your hands and interrupts you, his tone firm yet gracious.
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>I insist.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
<<if $azraelbookhonest is true>>
You accept it graciously, your eyes drawn to the intricate symbols on the spine. Once again, you can understand the ancient language in which it is written, a fact that once again puzzles and disturbs you. You realize with a start that he has gifted you yet another tome of magic, you'll need to look at it at home. But why would he do that?
<<else>>
You accept it nervously, your eyes drawn to the intricate symbols on the spine. Once again, you can understand the ancient language in which it is written, a fact that once again puzzles and disturbs you. You realize with a start that he has gifted you yet another tome of magic, you'll need to look at it at home. But why would he do that?
<</if>>
As you're lost in thought, Lord Azrael clears his throat, drawing your attention back to him and his charming smile.
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>I'm hosting a soirée with some other nobles, and I would be thrilled if you would honor us with your presence,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You're taken aback by the invitation, wondering why a nobleman of his standing would want a commoner like yourself at his party. Despite your reservations, you're also intrigued by the possibility of rubbing elbows with the elite of society. You try your best to conceal your nervousness and carefully reply with as much composure as you can muster
</p>
<div class='row right'>
<div class='right-msg'>I appreciate your gracious invitation, my lord.
But as someone from the lower class, much less a denizen from the slums, I fear I may not fit in with the nobility.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The nobleman's smile doesn't falter, but his eyes seem to darken slightly
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>One could say turning down an invitation from nobility would be an offense.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
He stops to show off a suave smile before continuing
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>That is no threat. I am just admiring your bravery.
You are a woman of remarkable beauty and intelligence, my dear.
And who says you have to fit into the narrow confines of societal expectations? Sometimes, it's refreshing to have a new and captivating presence at social gatherings. <<if $azraelbookhonest is true>>In fact, where I come from, there are many matriarchal societies that highly value the wisdom and insight of their women.<</if>> Furthermore, a woman with your exceptional wit and acumen undoubtedly deserves a place of honor among the elite of society.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<<if $azraelbookhonest is true>>
<p>
So far this world has come off as nothing but misogynistic. You're intrigued by his words.
</p>
<div class='row right'>
<div class='right-msg'>And may I ask where you're from?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You barely catch the hint of melancholy that flickers across his features before he responds
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>I come from a land far, far away.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
As you contemplate his answer, a thought occurs to you. If he's not from this kingdom, then how did he rise to a position of nobility?
</p>
<<else>>
<p>
You can't help but feel a sense of unease creeping up on you. Despite his charming demeanor, there's something about this man that seems off. But before you can voice your concerns, he continues.
</p>
<</if>>
<div class='row left'>
<div class='left-msg'>Azrael<hr>I understand your hesitation, but I assure you, my intentions are pure. I simply wish to provide a night of enjoyment and relaxation for myself and my guests, and I believe you would be a perfect addition to the festivities.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You take a moment to consider his words. The idea of attending a noble's party is tempting, but you can't shake off the feeling that there's something more going on.
</p>
[[agree|agree to Az party]]
[[decline|decline AZ party]]
</div><div class="conversation">
<<set $azraelrel += 5>>
<<set $azraelmet += 1>>
<<set $azraelquest to 1>>
<p>
You agree to attend the party, and the smile on Lord Azrael's face is impossible to miss, his blue eyes sparkling with excitement.
<img class="passage-image" src="demongodsassets/people/fullbody/blackpool/azrael.png" >
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>Excellent, I'll send you the details of the event and the location.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
As you start bidding him goodnight, he stops you. His voice lowered in a conspiratorial tone,
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>Before you go, there's one more thing. Meet me back here at the bookshop tomorrow evening. I have some special instructions to give you for the party.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You nod, intrigued by what these instructions might entail, but also feeling a sense of apprehension. You can't quite shake the feeling that there's more to this man and his fascination with magic than he's letting on.
</p>
It's late so you say your goodbyes and head [[home][$currentlocation to "shack"]]
</div>
<<set $bookstoretimer to ($days + 1)>>
/* set timer for 1 days, player will have option to speak with Azrael again in 1 days */
<div class="conversation">
<<set $azraelrel -= 5>>
<<set $azraelmet += 1>>
<<set $azraelquest to "rejected">>
<p>
You consider the invitation for a moment, but ultimately decline. There's too much risk, you don't know this man.
</p>
<div class='row right'>
<div class='right-msg'>I appreciate the offer, Lord Azrael, but I'm afraid I won't be able to attend your party after all
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Lord Azrael's face falls slightly, but he quickly composes himself
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>I understand, perhaps another time then.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
He wears a smile, but you can't help but feel there's a hint of disappointment in his tone.
It's late, so you say goodbye and head home.
</p>
[[home][$currentlocation to "shack"]]
</div><div class="conversation">
<<set $azraelmet += 1>>
<<set $azraelquest += 1>>
<<if $bookstoretimer isnot $days>>
<p>
You promised him you'd return within 3 days, but you're late. You hope he still shows and isn't too upset.
</p>
<</if>>
<p>
As you enter the bookstore, it's still light outside and Azrael doesn't seem to have arrived yet. The old woman greets you with a sour expression. You refuse to be deterred, finding a table to sit at and choosing a book at random. Since you're waiting for the nobleman to arrive, the old woman thankfully doesn't interrupt you. The hours drag on, and you begin to feel restless. The book you're reading is a romance smut novel for noblewomen, filled with melodrama and intrigue. The protagonist is a young woman who finds herself torn between three men and simultaenously sleeping with all of them: a handsome and dangerous prince, a wealthy but cruel viscount, and an unattractive and financially disadvantaged but truly virtuous duke. As you flip through the pages, you notice that the story is filled with scandalous trysts and passionate encounters. Despite its predictable and clichéd plot, you find yourself drawn to the danger presented to the woman. Finally, as the light outside begins to dim, the old woman offers you a flame to light your candle, providing a dim light to continue reading by.
</p>
<<if $bookstoretimer is $days>>
<<set $azraelrel += 3>>
<p>
Finally the door creaks open and Azrael enters with a grin. His voice filled with delight as he speaks
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>You've returned!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<<else>>
<<set $azraelrel -= 3>>
<p>
Just then, the door creaks open and the nobleman enters with a slightly disappointed look on his face.
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>Ah you've returned at last
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
His voice filled with disappointment
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>It's passed time we agreed to meet, I was beginning to wonder if you had changed your mind.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You grimace, feeling a bit guilty. No doubt your relationship with Azrael took a small hit.
</p>
<</if>>
<p>
He glances at the book you're reading and remarks,
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>Ah, Cedric Alcott. He's quite popular with women. You're interested as well?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You feel a tinge of embarrassment as he catches you reading the cheesy novel, and quickly close the book trying to hide your discomfort.
</p>
<div class='row right'>
<div class='right-msg'>I was merely passing the time, it's not my usual reading material.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Azrael offers his apologies for being late and then presents a slip of paper adorned with ornate embroidery.
He hands it to you, and as you open it, you realize that it's a design for clothing, but not just any clothing. The outfit is revealing, far more so than anything you've worn before.
<img class="passage-image" src="demongodsassets/img/scenes/blackpool/dressdesign.png" >
</p>
<<if $p.acceptance lt 75>>
<p>
You feel a pang of discomfort and hesitate before asking,
</p>
<div class='row right'>
<div class='right-msg'>This is...?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
He replies with a hint of regret in his voice.
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>You will need to wear this to the party, I admit my mistake in not being upfront about this. It hadn't crossed my mind that this would bother you, my deepest apologies.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
It hadn't crossed his mind? It hides nothing. He has been so respectful and generous so far why would that change suddenly?
He really led you to believe he was different than most of the other men you've met in this world so far.
You exhale, feeling resigned to the situation and nod.
</p>
<div class='row right'>
<div class='right-msg'>I understand
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Azrael<hr>I do apologize, but nobles have very particular tastes for these parties. If you're still interested in attending, there is one more thing.
I cannot get this dress for you. Consider it one last quest to finally lift yourself out of these slums. You'll need to have it made yourself, how it happens does not matter. It does require some very difficult to get materials, however.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<<else>>
<p>
You look over the note. You're surprised. This dress is hot, too hot! You're getting a little excited simply at the thought of you wearing it.
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>I'm glad to see I wasn't wrong in my assessment that you'd like this dress.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I'm more surprised that you brought me something so revealing. But you're right, I love it!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Azrael<hr>I must confess, it never crossed my mind that you wouldn't. I'm grateful you are so kind with your words.
There is one more thing, I cannot get this dress for you. Consider it one last quest to finally lift yourself out of these slums. You'll need to prove yourself resourceful and have it made yourself, how it happens does not matter. It does require some very difficult to get materials, however.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<</if>>
<p>
You read the list of materials but you're unfamiliar with all of them. You'll need to bring this to the tailor and ask.
</p>
<div class='row left'>
<div class='left-msg'>Azrael<hr>Once you've completed it, I will send a note to your home which you can use to pass through the slums gate to the upper district.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/azrael.png">
</div>
</div>
<p>
You bid farewell and head out.
</p>
[[town]]
</div>
<div class="conversation">
<<set $azraelquest += 1>>
<p>
You make your way to the tailor's shop, a small, cramped space located in a back alley. As you enter, you see the tailor hunched over his work table, surrounded by fabrics of all colors and patterns.
</p>
<div class='row right'>
<div class='right-msg'>Excuse me
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You try to get his attention, but he doesn't notice you. You try again, a little louder this time.
</p>
<div class='row right'>
<div class='right-msg'>Excuse me, sir?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Finally, he looks up from his work, his eyes squinting at you from behind his spectacles.
He grunts, his tone rough and unrefined.
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>What can I do ya for, lass?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
You hand him the dress designs
</p>
<div class='row right'>
<div class='right-msg'>I need this made, can you help me?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The man runs his fingers along the intricate patterns
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>These are very fancy designs. And the materials you're askin' for are expensive, especially that enchanted spider silk. Impossible to get.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Spider silk?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Tailor<hr>Aye, from the demon spider queen in the mountains. It's powerful when used as armor, that silk, but nigh impossible to get. You'd best give up on that part of the design, lass.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
You pause, considering his words.
</p>
<div class='row right'>
<div class='right-msg'>Do you have any information on this spider?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The tailor shakes his head.
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>Nah, I don't know much else," he admits. "Just that she's old, powerful, and evil. Not someone ya want to mess with. It'd take an army to take her down.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
Can you take down an army? Maybe if they're regular people...
You thank the tailor for his time and leave the shop, determined to find a way to obtain this elusive spider silk
</p>
[[town]]
</div>
<div class="conversation">
<<set $azraelquest += 1>>
<p>
You stride into the tailor's shop, a bundle of spider silk held tightly in your hands. The tailor looks up from his work, his eyes widening in surprise.
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>Well, I'll be. You actually found it, lass. Didja have to hire a whole army?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
His usual gruffness replaced with a hint of awe.
You smile at his surprise, feeling proud of yourself for completing such a difficult task.
You hand him the silk and he examines it carefully, still shaking his head in disbelief.
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>I don't know how you managed it, but you got the spider silk. I've never even seen it in my life.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Now about the rest of the materials,
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The tailor nods, his expression serious once again.
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>Aye, I can get them for you. But you'll need to pay upfront. The material for this dress is expensive, and I can't afford to be left with the bill if you change your mind. However if you agree to let me keep the extra silk, I'll give you a discount. 300 copper.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<<if $inv.money gte 300>>
[[pay him|dressquest3]]
<</if>>
[[not right now|town]]
</div>
<div class="conversation">
<<set $azraelquest += 1>>
<<set $spidersilk to false>>
<<set $inv.money -= 300>>
<p>
You nod in agreement and you pull out a small pouch of coins, counting out the necessary amount and losing 300 copper. The tailor takes the pouch and counts the coins himself, nodding in satisfaction.
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>Very well, lass. I'll have the dress completed and delivered to your home in a few days. You'll have your dress in no time.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
(Note: This is the current end of 0.4 of the main story for Ver 0.4)
[[town]]
<<set $dressdays to ($days + 3)>>
</div>
<div class="conversation">
<p>
You could hear the demon's threatening growls and snarls echoing off the walls, sending shivers down your spine. But despite the danger, you found yourself curious.
</p>
<div class='row right'>
<div class='right-msg'>Why though?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You ask a question, cocking your head to the side and staring quizzically.
The demon halted, clearly taken aback by your question. It snarls in response
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>Why what?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/boss1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Why are you so angry when you have such a beautiful flame around you?"
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The demon Melek Taus cocked his head to the side, trying to understand your strange words. He had no eyes, but he could feel your gaze on him.
</p>
<div class='row right'>
<div class='right-msg'>Have you ever considered becoming a cook? Your flames are perfect,
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>What the Hell are you talking about, insignificant creature?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/boss1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Aww come on, don't go bacon my heart!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Melek Taus remained stone-faced, unable to comprehend your strange behavior. But you persisted, hoping to lighten the tense situation.
</p>
<div class='row right'>
<div class='right-msg'>You could be the most feared and respected grill master in all the world! Making ends meat with your grilling skills instead of corruption!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Melek Taus let out a grunt of annoyance, his muscles tensing up. But to your surprise, he didn't attack. Instead, he seemed to be considering your words.
</p>
<div class='row right'>
<div class='right-msg'>Grilling...? Explain.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
And so, with no explanation as to where it even came from, you whipped out a rabbit and walked up to Melek Taus who was still sitting. You set the rabbit down on his thigh where it begins sizzling. To your surprise Melek Taus seemed to enjoy the smell of cooking rabbit, and finally gave in and tasted it.
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>This is...
Amazing. This is perfection.
Perhaps there is something to what you say after all...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/boss1.png">
</div>
</div>
<p>
And so, you and Melek Taus continued to joke and laugh together, proving that even demons could have a sense of humor. As it turned out, Melek Taus had a talent for grilling that he had never known before. And so, you and Melek Taus, along with his five other demon brethren, spent your days joking and grilling together, proving that even demons could have a sense of humor. The end.
</p>
<p>
******************************************************************************************************
Elsewhere
In the darkness of an abyss, a gold light remains, lighting nothing as there is nothing to light in the abyss. A feminine voice grumbles.
</p>
<div class='row left'>
<div class='left-msg'>********<hr>Failure.
I'll need to kill another and bring them to this world too...
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/goddess.png">
</div>
</div>
<p>
The light began to prepare it's next victim.
</p>
<h3>
Developers note:
</h3>
<p>
When I was a kid, there was this game I loved to play called Tenchu: Wrath of Heaven. It was a stealth ninja game that I really enjoyed. However there was a cheat you could input that let you play a parody route. There were 3 different characters, and each one had their own parody route. Looking back, they probably weren't all that well written, since you still did the same missions, but honestly I loved it. So that was the inspiration for this, and in future games I want to make I plan to always throw in one parody route.
However, as per a poll I ran on Patreon, people would prefer I focus more on continuing the story and adding more images to this game. So for now, it's a temporary end, and honestly I had written a much better ending for this scene... But when I changed my mind and decided to continue it, I guess I had overwritten it. What's weird is I can't find it in my back-ups either. But that's ok! The gist is still the same and this is only temporary.
As per the Patreon votes, I'm going to focus more on finishing the main path, then when I'm much further or perhaps complete, I'll come back to the grill and catch up on my parody route.
Given that I basically have to re-write every single scene with the grill, it will be more beneficial to you guys and myself if I put it on hold and come back to it later.
I hope you guys will continue playing, or Fox eared $name will cry!
<img class="passage-image" src="demongodsassets/you/scenes/home/pout.png" >
</p>
</div>
<div class="conversation">
<div class='row right'>
<div class='right-msg'>What's the story behind this armor?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Tailor<hr> Ah, that armor. It was commissioned by a paladin woman who came here some time ago. She asked for the finest gold armor I could make and provided the materials, and so I did. But unfortunately, heard that she passed away before she could come and pick it up.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>How much are you selling it for?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>The tailor replies Nonchalantly</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr> 5,000 copper pieces.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>Your eyes widen in shock</p>
<div class='row right'>
<div class='right-msg'>That's way too expensive! I could never afford that.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The tailor just shrugs
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr> Suit yourself. I doubt I'll be able to sell it in the slums, but it does help bring a profit as onlookers come to see it.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
You take one last look at the armor, considering it.
What if you were to charm him for a discount...?
</p>
<<clothing 'goldenware' 5000 'outfit'>>
<<if $charmtraining is 4>>
[[charm the tailor][$energy -= 15]] - 15 energy
<<else>>
<p>
No, you still can't control your charm magic.
</p>
<</if>>
[[exit|town]]
</div><div class="conversation">
<div class='row right'>
<div class='right-msg'>So, what do you say? Could you give me a discount on this dress if I...persuade you?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You give him a sultry look as you begin applying your charm against him, opening up his desires.
The tailor eyes you up and down, a smug grin on his face
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>Well, well, well. Look at you, all dolled up and ready to play, but you know, sweetie, I don't give out discounts just for a pretty face. You're gonna have to work harder than that.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
You're taken aback by his blunt response, it seems he has more resistance than you expected, but you refuse to back down and apply more charm. You lean in closer to him, your lips dangerously close to his ear, your voice dripping in seduction
</p>
<div class='row right'>
<div class='right-msg'>I think I can be very persuasive
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The tailor chuckles, clearly enjoying this game
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>That so? Let's see what you got
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
He leans back in his chair.
You take a deep breath and lean over him.
You kiss the man deeply, and begin stripping out of your dress, dancing sensually as you do so, every action dripping in charm. As you finish your act, you finally look him in the eyes and give him a full-on smile as he stares at your fully naked body. He gulps at the sight of your naked breasts, his breathing quickening with anticipation.
You straddle the sitting man, your dripping pussy making a mess of his trousers, and start kissing his neck while you grind against him. You kiss the man deeply, your tongue probing his mouth as you grind yourself against his cock.
<img class="passage-image" src="demongodsassets/sexscenes/blackpool/tailor/tailorblow.png" >
You lift up off the man as his pants drop to the floor, freeing his girthy cock. Your hunger goes in overdrive as you momentarily forget the dress and simply want this mans semen. You drop to your knees and slurp on his cock, licking the head with your tongue before sliding down the length of his manhood with a slow and sensual motion.
You moan in pleasure as you suck on the tailor's cock, the taste of his pre cum making your mouth water. You cup his balls as you suck his cock, your hands massaging his sack. You moan again, this time more lustfully as the man begins to stroke himself. You continue sucking and licking, taking as much of the man's thick cock into your throat as you can.
</p>
<<set $sexcount += 1>>
[[offer him your ass|tailorass]]
[[let him inside|tailorvag]]
[[finish with your mouth|tailormouth]]
[[bail|town]]
</div>
<div class="conversation">
<p>
You turn around and bend over, leaning on his desk and spreading your ass for him. He stands up and you feel him prodding your ass with his fingers as he squeezes and spreads your cheeks, his breath hot against your rear. You whimper softly as he pushes a finger inside you and begins thrusting it in and out of you.
You look back and put on a begging face.
</p>
<div class='row right'>
<div class='right-msg'>Give me your cock
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The tailor chuckles and he spits on his cock and rubs it up and down your back entrance before pushing it inside you. He presses his cock against your asshole and begins fucking you in earnest. Your moaning gets louder and louder until you cry out in pleasure as he pushes himself deep inside you, the tightness of your ass causing him to groan and grunt in pleasure.
He reaches around and grips your breasts, squeezing a little too hard for a normal woman. But you love it, and you love how hard he pounds your ass. The man pounds away at your ass, slapping your cheeks loudly as his thrusts become more rapid and powerful. You moan and whimper as the man continues to fuck you from behind. You cry out in ecstasy and shudder as you cum, juices flowing out of your pussy as he continues pounding you from behind.
You ride the tailor's cock, enjoying the feeling of his thick meat filling up your tight asshole. The tailor keeps on fucking you, his thrusts hard and passionate. He grabs ahold of your hips and fucks you harder and finally you hear him grunting and you experience his orgasm as well as a warm sensation deep in your ass, his cum squirts deep inside your ass, coating your insides.
He falls to his knees next to you as you ride out your post orgasmic bliss.
Finally he speaks
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>2,000 copper
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<<clothing 'goldenware' 2000 'outfit'>>
[[town]]
<<set $inv.cum += 50>>
<<set $arousal to 0>>
</div><div class="conversation">
<div class='row right'>
<div class='right-msg'>Would you like to use my pussy? You can cum inside
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You ask as you lean back, spreading it open for him.
The tailor gulp nervously, his eyes glued to your dripping wet pussy. You moan again, leaning back so the tailor can get a better view of your folds. You slide your hand between your legs and begin to rub yourself, spreading your pussy open for his viewing pleasure. You slip a finger inside of you putting on a show, feeling your silky insides against your digit.
The tailor has had enough and he holds himself over you, his cock throbbing as he drives himself into your hungry pussy. You cry out in pleasure as he pushes into you, your tight pussy gripping onto him as he begins to pump in and out of you. You grab the back of the tailor's head and push him into your cleavage, pushing your nipple into his mouth as you feel him fill you up. You whimper softly and hold him close as his cock bounces in your slippery pussy.
The tailor sucks on your breast, often losing track of it as his thrusts cause your breasts to bounce around in his mouth. You moan loudly as he continues to plow into you, the pleasure going deeper and deeper into you until you feel like he's about to explode.
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>I'm about to cum!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Do it inside me!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Your hands pull his hair, allowing him no escape and smashing his face into your breasts as the tailor's cock spasms and shoots his load deep inside of you. You shiver as his warm cum drips down inside of you, coating your insides with his thick seed and he stands up to inspect his handiwork.
He gasps
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>Aye, 2000 copper then
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<<clothing 'goldenware' 2000 'outfit'>>
[[town]]
<p>
You have obtained 50 cum, you are no longer hungry
</p>
<<set $inv.cum += 50>>
<<set $arousal to 0>>
</div><div class="conversation">
<p>
You slowly pull your head off his cock, letting him see just how deep he was fucking your throat. After releasing his cock from your hungry maw, you slowly use your tongue to lick him from the base of his cock to the tip in slow, sensual movements.
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>Gods, you're going to make me cum if you keep doing that!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
he moans, grabbing your hair and pulling your head closer to his cock.
You nod, and slowly take him back into your mouth, sucking him eagerly as you pleasure the man. He begins using your hair as handlebars, fucking your face as you eagerly suck on him.
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>Unnnh, please... I'm gonna cum
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
You let him slip from your mouth, replacing it with your hand and staring up at him with adoring eyes.
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>Unngh!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<p>
<img class="passage-image" src="demongodsassets/sexscenes/blackpool/tailor/tailorfacial.png" >
He grunts and begins spraying all over your face, you open your mouth hoping to catch every drop as it falls. You can't help but let out a giggle as he spills all over you, drenching your naked body in his warm, sticky cum.
The man spent, and your face covered in his cum, your first priority is cleaning the cum off his cock with your tongue. You lean forward again, licking him clean, then stand up and begin slowly wiping cum off your face, breasts, and body as you let him watch you swallow his seed. You then rise from the man, cleaning him up and wiping his cock clean as well.
</p>
<div class='row left'>
<div class='left-msg'>Tailor<hr>2,000 copper
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/mnpc.png">
</div>
</div>
<<clothing 'goldenware' 2000 'outfit'>>
[[town]]
<<set $inv.cum += 50>>
<<set $arousal to 0>>
</div><<nobr>>
<div class="conversation">
<<switch random(2)>>
<<case 1>>
<p>
As torrential rain descends from the heavens, you find yourself <<if $wings is true>>using your wings as a makeshift umbrella shielding yourself<<else>>completely soaked<</if>> from the heavy downpour. The downpour drums a steady rhythm against the earth, orchestrating a symphony of droplets that resonate upon rocks and soil. Amidst the deluge, diminutive, ethereal creatures emerge, their iridescent wings shimmering as they dance and cavort in the falling water. Their laughter, reminiscent of the delicate chime of glass, intertwines with the rain's melodic serenade, weaving an enchanting spell of haunting beauty that lingers and resonates in the damp air.
</p>
<<case 2>>
<p>
As you traverse the enigmatic mountains, their haunting allure unfurls around you, revealing a landscape draped in the sacred hues of daylight. The rocks, sculpted by the relentless hands of time, are adorned with a lush mantle of lichen and moss, which emanates an otherworldly luminescence in the dim light. The crisp air is charged with the echoes of ancient tales, whispering secrets of long-forgotten epochs. The wind, a spectral presence, caresses your face with the tender touch of ages past..
</p>
<<default>>
<p>
As you follow the overgrown mountain trail, the daylight reveals a landscape of contrasts, where the harshness of jagged rocks meets the delicate beauty of verdant foliage. Slippery trails and sharp stones threaten to harm you, but for the first time since your transformation, you're grateful for your tail, which provides you with perfect balance on this treacherous terrain.
The scent of damp earth and moss fills the air, mingling with the faintest hint of wildflowers that cling tenaciously to the crevices of the mountainside. Shafts of sunlight pierce the canopy above, casting dappled patterns on the ground and illuminating the vibrant shades of green that cloak the rocks in a living tapestry.
As you continue your ascent, you hear a caw, and your gaze is drawn to a raven perched on a gnarled branch nearby. Black as ink, its feathers glisten with an iridescent sheen in the sunlight. It watches you intently, its head tilted inquisitively, as if questioning why you choose not to use your wings.<br><br>
<<if $wings is true>>
<div class='row right'>
<div class='right-msg'>Leave me alone, if I fly then I might miss important clues!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<else>>
<div class='row right'>
<div class='right-msg'>Yeah, must be nice to have wings, huh!?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<</if>>
The raven's eyes, a profound, entrancing obsidian, appear to be dancing with amusement, either taunting you or delighting in your spirited response.
</p>
<</switch>>
<br>
<br>
<<if $undiscoveredPaths.length == 0>>
All paths have been discovered.<br>
<</if>>
<<if $energy gte 4>>
energy cost 4
[[Explore mountains|mountains_explore][$energy -= 4]]<br><br>
<br>
<<for _i, _path range $mountainsDay.paths>>
<<if _path>>
<<switch _i>>
<<case 0>>[[Visit The Winding Path|mountains_path1][$energy -= 4]]<br><br>
<<case 1>>[[Visit The Rocky Path|mountains_path2][$energy -= 4]]<br><br>
<<case 2>>[[Visit the Narrow Path|mountains_path3][$energy -= 4]]<br><br>
<<case 3>>[[Visit The Straight but Dim Path|mountains_path4][$energy -= 4]]<br><br>
<<case 4>>[[Visit The Steep Path|mountains_path5][$energy -= 4]]<br><br>
<<case 5>>[[Visit The Shadowy Path|mountains_path6][$energy -= 4]]<br><br>
<</switch>>
<</if>>
<</for>>
<<else>>
You don't have enough energy to explore any further
<</if>>
<<if $inv.cumvial gte 1>>
<<link 'drink vial of cum' 'mountains - daytime'>>
<<set $inv.cumvial -= 1>>
<<set $p.hp = Math.min($p.hp + Math.round($p.maxhp * 0.5), $p.maxhp)>>
<</link>><br>
<</if>>
[[Return|Mountains]]
</div>
<</nobr>> <div class="conversation">
<p>
The Dryad didn't waste any time.
With a wave of her hand, she summons a flurry of vines and branches, and you prepare a counter.
</p>
[[continue|battle]]
</div>
<<nobr>>
<<set $e.type to ["magical_enemy", "charm_immune", "boss"]>>
<<set $e.name to "dryad">>
<<set $e.lvl to 11>>
<<randomEnemyEncounter>>
<<set $fullname to "Dryad Queen">>
<<set $e.weakness to "fire">>
<<set $e.eleresist to "water">>
<<set $portrait to 1>>
<</nobr>><div class="conversation">
<<if $eiracharm is 0>>
<p>
You don't feel hungry, but you should probably eat something.
A smiling waitress approaches your table, her short brown hair messy but cute.
<img class="passage-image" src="demongodsassets/people/fullbody/tavernwoman.png" >
</p>
<div class='row left'>
<div class='left-msg'>Waitress<hr>Hi! My name is Eira, What can I get for you?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Ah yeah, could I see your menu?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Eira<hr>A menu? The heck is that?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Something to show me what options I have for food and beer?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The waitress chuckles
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>We have whatever's cookin' in the pot today
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
She pauses and smirks
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>And ale that tastes like horse piss. Take it or leave it.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
Despite what she said, you catch a whiff of the stew emanating in the air. Your stomach grumbles. If this is anything like the medieval times of your home-world, especially in the slums, you really can't expect much. But beggars can't be choosers.
</p>
<div class='row right'>
<div class='right-msg'>I'll take an ale and whatever you've got to eat.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You pay the woman, and after a minute she brings you your bowl of ...something, and an ale.
You take a bite, expecting it to taste like any other meal. But the moment it touches your tongue, you know something is wrong. It tastes like the food is rotting.
You quickly spit it out and the waitress sighs, grabbing a cloth to clean up the mess. You take a swig of the ale, hoping to wash away the putrid flavor in your mouth. It's not great, but at least it's not horse piss like some of the ales you've heard of, actually the ale barely has any flavor to it at all.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>What's wrong?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Somethings wrong, I think the meat is rotten
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She furrows her brow in confusion and you're surprised as she reaches over to take a bite from your bowl of stew. You watch as she chews thoughtfully, her expression remaining neutral.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>Tastes fine to me. You a princess or somethin'?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Nono, I'm sorry of course not. I must have just had a bad bite.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She walks away and you hesitate before taking another bite. It tastes just as bad as the first, and you force yourself to swallow it down. As you wash it down with the tasteless ale, you realize that this is probably due to your race change. You're no longer human, so it makes sense that human food doesn't taste great anymore. Your new diet as a succubus has changed significantly. Human food just won't cut it anymore. You can't help but feel disappointed.
You eat as much as you can stomach simply to keep up appearances, and push it away from you signifying you're done. The waitress returns to collect it.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>You barely ate, that bad huh?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>ah no, I just don't eat a lot.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She looks over your figure
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>With how skinny you are, I figured it was just poverty but I guess some women are light eaters. Well, we'll see you again!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<<set $eiracharm += 1>>
<<elseif $eiracharm is 1>>
<p>
In an attempt to avoid arousing suspicion, you decide to return to the same establishment and order another meal. Eating in public should help avoid arousing any suspicion. You take a deep breath and try to steel yourself for what's to come, knowing full well that human food does not sit well with you anymore.
<img class="passage-image" src="demongodsassets/people/fullbody/tavernwoman.png" >
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>Hello! I see you've returned. Must not have been that bad after all.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
Your waitress, Eira, winks at you.
You order the usual and eat as much as you can stomach before pushing it away.
Eventually Eira returns and collects your dishes.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>So how was it this time?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<<if $charmtraining gte 4>>
<p>
On a whim, you consider trying out your charm ability on her. It's not supposed to work on women anyways, so it'll be good practice to make sure you don't go overboard.
</p>
[[charm eira]]
<</if>>
<<elseif $eiracharm is 2>>
<p>
Once again, in an effort to maintain your cover, you reluctantly order another meal.
<img class="passage-image" src="demongodsassets/people/fullbody/tavernwoman.png" >
As the waitress, Eira, brings your food, her bright smile illuminates the dimly lit tavern. You can't help but notice how her eyes light up when she sees you.
As she sets down a plate in front of you, you take in the sight of the unappetizing meal. It may have resembled food at one point, but now it looks like a mushy mess of indistinguishable ingredients, with a greasy sheen on top. The smell alone is enough to turn your stomach. Despite your new biology, you wonder how anyone could find this appealing.
Taking a deep breath, you force yourself to take a bite, masking your disgust with a fake smile to Eira. The taste is even worse than it looks.
Eventually Eira returns once again to collect your dishes.
</p>
[[charm eira]]
<<elseif $eiracharm is 3>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/tavernwoman.png" >
Your food arrives with the smile of your server Eira.
As you take a bite of the unappetizing-looking food, you hide your disgust. The dish looks like it should be good, but gone are the days you were able to enjoy human food. A thought occurs to you. You're kind of a vegetarian now. Are vegetarians who swallow cum, still vegetarians?
You take a long sip of your ale, while it doesn't taste particularly great to you either it does help wash down the revolting taste of mutton. As you set the mug back down, you catch the eye of your server.
</p>
[[charm eira]]
<<elseif $eiracharm is 4>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/tavernwoman.png" >
As Eira approaches your table with your meal, your eyes lock with hers and you feel a spark of attraction. You can't help but notice how her eyes seem to dance with a playful energy, and how her lips curl up into a warm, inviting smile.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>Here's your meal! Is there anything else I can get you?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
You shake your head, still lost in the moment of her gaze. You respond, barely aware of the words coming out of your mouth.
</p>
<div class='row right'>
<div class='right-msg'>No, this is perfect
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The waitress returns your smile, her eyes dancing with amusement.
</p>
[[flirt|charm eira]]
<<elseif $eiracharm is 5>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/tavernwoman.png" >
As Eira brings your meal to the table, you can't help but feel a sense of dread wash over you. The meal before you is a sorry excuse for food, with an unidentifiable meat swimming in a murky brown sauce that looks like it's been sitting in a pot for far too long. As you take a bite, you feel the revolting flavor of the dish coat your tongue, making you want to gag.
As Eira lingers, watching you eat, you can't help but wonder why she's still here. Is she waiting for you to finish your meal? Or is there something else on her mind?
Before you have a chance to say anything to her, she lowers her voice and speaks seductively
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>I'm off in a few minutes...
If you're not doing anything.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
You didn't even have a chance to charm her this time!
</p>
[[accept|eira sex]]
<<set $eiracharm += 1>>
<<elseif $eiracharm gte 6>>
<p>
You no longer need to charm Eira after your last meeting. You head inside the tavern. Would you like to wait for Eira to get off work, or just eat a meal for appearances sake?
<img class="passage-image" src="demongodsassets/img/scenes/blackpool/tavern/leaningmaid.png" >
</p>
[[wait for eira|eira sex]]
<</if>>
<p>
Unfortunately forcing down that food took a lot out of you, you're more exhausted than you were when you started. -25 energy.
</p>
<<set $energy -= 25>>
[[town]]
</div><div class="conversation">
<<if $eiracharm is 1>>
<p>
You give in to your impulses and attempt to charm Eira. You figure the risk of going overboard on a woman is pretty small since it shouldn't work on her anyways.
You subtly weave your charm magic into your words and direct them towards Eira.
</p>
<div class='row right'>
<div class='right-msg'>I don't know what's more delicious, the food or your smile.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Eira blushes slightly, her eyes twinkling as she returns your smile before turning back to her duties.
You're taken aback by the effectiveness of your charm. Rhelyla warned you that it only works on men, but here you are successfully using it on Eira.
You continue chatting and flirting with Eira until she gets off her shift and heads home.
</p>
[[town]]
<<set $eiracharm += 1>>
<<elseif $eiracharm is 2>>
<p>
Curious if it'll work again, you weave your charm into your words as you speak to Eira again.
</p>
<div class='row right'>
<div class='right-msg'>You seem to know just how to please me,
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You raise an eyebrow suggestively
</p>
<div class='row right'>
<div class='right-msg'>Do you have any other hidden talents?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The waitress leans in closer, her cheeks flushing with desire as she meets your gaze.
<img class="passage-image" src="demongodsassets/img/scenes/blackpool/tavern/leaningmaid.png" >
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>Oh, I have plenty of talents
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
she purrs at you, a coy grin on her lips.
Your heart skips a beat as you realize just how attractive she is. You hope to explore those hidden talents in private.
You bid her goodnight and head on your way.
</p>
[[town]]
<<set $eiracharm += 1>>
<<elseif $eiracharm is 3>>
<p>
You were about to tap into your charm magic, subtly coaxing Eira towards what she desires. However you consider a possibility. What if Rhelyla is right, and your charm magic doesn't work on women. To test that theory, you decide to try without using your skill, and instead you gaze deeply into her eyes.
</p>
<div class='row right'>
<div class='right-msg'>I feel so lucky to have you serving me, I might just have to come back again and again to see your beautiful face.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The waitress blushes at your words and smiles shyly. Given her reaction, it might be your imagination but it seems as though charm magic was never needed in the first place!
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>I'd like that, I'd be happy to serve you again anytime.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
Eira lingers for a moment, and you catch a whiff of her sweet, natural scent.
For the rest of the night you can't help but steal glances at the waitress whenever she passes by. Her grace and poise are captivating<<if $genderstart is "male">>, and you're grateful that your new physiology hasn't entirely overwritten your attraction to women<</if>>.
</p>
<<set $eiracharm += 1>>
[[town]]
<<elseif $eiracharm is 4>>
<div class='row right'>
<div class='right-msg'>I hope you don't mind if I linger a little while, I'd hate to miss the opportunity to spend more time with you.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She leans in a little closer, showing her gratuitous cleavage
<img class="passage-image" src="demongodsassets/img/scenes/blackpool/tavern/leaningmaid.png" >
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>I don't mind at all. In fact, I was hoping you would stay. You're such an interesting person to talk to.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>You're quite the charmer
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You tease her, as she giggles and innocently twirls a strand of her hair around her finger and gives you a playful smirk making your heart skip a beat.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>Only with those who catch my eye
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
As you start to eat, you overlook the unappetizing taste of human food, thanks to the lively conversation with the waitress. Her quick wit and infectious charm make you feel drawn to her. In fact, you find yourself enjoying her company more than you expected.
</p>
<<set $eiracharm += 1>>
<<set $eira to 30>>
<</if>>
[[town]]
</div><div class="conversation">
<<switch random (1)>>
<<case 1>>
<p>
As Eira leads you upstairs after her shift at the tavern, you're surprised to discover that she actually lives in the tavern. She guides you into her cozy bedroom, which is illuminated by the soft glow of candlelight. Despite its small size, the room has a comforting quality. Your eyes are drawn to the simple wooden bed that dominates one of the walls.
The pillows betray their age with small tears that allow feathers to peek out. They have lost their former plumpness, leaving them looking flat and somewhat uncomfortable. Your gaze wanders to her walls, which are adorned with small tapestries showing patterns that are unfamiliar to you. Their intricate weavings and bold colors lend an air of warmth to the space. A tiny mirror hangs on one of the walls.
Your focus on the details of her room is abruptly interrupted by a soft rustling sound that catches your ear, as if clothes are being dropped. As you gaze upon her body, you notice the subtleties that only enhance her allure. The gentle curves of her breasts and the delicate details of her nipples. She is wearing a delicate pair of lacy underwear, almost translucent and revealing her cleft. She does a spin, displaying her soft ass accentuated by her thong.
Eira presses against your arm, causing a jolt to run down your spine. Your arousal intensifies, and you find yourself getting wet with anticipation.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>Put on my uniform, slut.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
You're taken by surprise at the forceful command. Yet you comply, your eyes never leaving her bare flesh.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>Hurry up!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
You reach down and grab her uniform off the dusty floor, putting it on as you watch Eira remove the last barrier before her pussy. <<if $breasts isnot "large">>You pout slightly when you realize the chest is way too large for your breasts, and the bodice hangs loosely.<<else>>You're surprised that Eira and you are the same size, and the bodice fits snugly around your breasts.<</if>> The scent of Eira's sweat and perfume lingers on the fabric, a mixture that sends shivers down your spine.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>Alright slut,
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
Eira smirks at you and settles herself on the edge of her bed. Her legs spread wide giving you a perfect view of her neatly trimmed pussy, glistening invitingly in the warm light.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>I'm going to be one of my rowdy patrons, and you're going to be my maid. Make sure I'm satisfied or there may be consequences!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
You're surprised by the 180 change in her personality, and a little concerned to hear that this is how she's treated, but you nod, feeling your heart race with anticipation. You walk over to a small wooden table near Eira's bed and pretend to fill a glass with ale. You bring her the pretend beverage handing her nothing.
</p>
<div class='row right'>
<div class='right-msg'>here's your drink, ma'am
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
As you lean down to serve her, she grabs your wrist an dpulls you close. Her other hand reaches up to grope your breasts through the uniform, the sensation of her fingers digging into your fatty flesh makes you gasp and you struggle to maintain your composure. Eira chuckles, releasing you
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>Good, now fetch me another!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
You return to Eria, your body buzzing with excitement as you pretend to pour another drink. Eira takes hold of your thigh, sliding her fingers beneath your skirt. Her touch sends electricity coursing through your veins, making you tremble with pleasure. She smiles at you before whispering seductively into your ear.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>You're soaking wet...It seems like you're begging for my cock
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
You nearly burst out laughing at that line, and you can tell she struggled to maintain a straight face too. But your arousal gets the better of you as you play along.
</p>
<div class='row right'>
<div class='right-msg'>Please sir, just one taste...
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She momentarily loses her composure, laughing. She regains it and commands you
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>Another drink!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
As you turn to fetch her another, she slaps your ass leaving you with a stinging sensation that makes you leak.
As you present the third drink, Eira reaches out and grabs your wrist, yanking you into her lap. Her hands grip your waist, and she leans in, her hot breath on your neck as she whispers.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>I think it's time for your reward, slut.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
<img class="passage-image" src="demongodsassets/sexscenes/blackpool/eira/1.png" >
With a swift motion, she pulls down the top of your uniform, exposing your breasts. You feel the cool air of her rom on your nipples and they harden instantly. Eira doesn't waste any time, her mouth latching onto one nipple while her hand massages the other.
As you moan, her other hand lifts your skirt and slips beneath your panties. Her fingers find your wetness and she purrs with satisfaction.
Her fingers slide inside you, and youy gasp. The sensation of her invading your most intimate space is overwhelming. She begins to pump her fingers in and out, her thumb pressing against your clit. She expertly manipulates your body and you find yourself clincing to her, hands gripping her thighs on either side of you.
You rock your hips against her hand, your breath coming in ragged gasps as your pleasure builds. Eira continues her assault on your senses and her fingers move fater. Her mouth continues sucking and teasing your nipples.
As your pleasure mounts, you can't help but let your illusion go for just a second, and your tail emerges wrapping around Eira's waist. Thankfully she's too caught up in the moment to notice, her own moans mingling with yours as you both explode with ecstasy.
As you both fall on your backs on the bed she reaches with her other hand, the one that she wasn't using on you, and pulls your face close and kisses you. Her fingers leaving a trail of stickiness and she brings her face closer to yours and gives you a tender peck.You open your mouth to reciprocate and she slips her tongue inside, tasting the sweetness of your breath. Meanwhile her free hand begins stroking your hair, leaving her own girlcum behind.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>I hope you'll come see me again.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
She winks at you and you bid her goodnight and head out.
</p>
<<default>>
<p>
After waiting for Eira to end her shift, you follow her back to her room again. The familiar scent of lavender and cinnamon hit your nose. Eira sat on her bed, nude with her legs spread and open invitingly. You could feel your heart rate quicken as you stepped closer.
Eira stood back up and walked towards you, her hand wrapped around your neck as she pulled you in for a kiss. You could taste the sweetness of wine on her lips as she pushed you back against the wall. Her body pressed against yours, and you could feel every curve and contour of her body.
Eira's hand reaches below and pushes past our clothes, feeling your sex and eliciting a moan from your lips. She brings her wet fingers back up to her mouth and licks them clean.
Eira slowly and provocatively removes her own clothes, then removes yours. Then pushed you down onto her bed and you could feel the coarse texture of wool against your bare skin. She straddled you, her hands on your breasts as she looked down at you and her voice was forceful and commanding.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>I want you to please me, Do as I say and I promise to make it worth your while
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
You nod, your heart pounding. Eira was a dominant woman, and you're loving every minute of it. She knew exactly what she wanted and she wasn't afraid to demand it. You wonder why she puts up with the rowdy patrons in her tavern. Maybe she secretly likes it?
You could feel her hands moving down your body, her fingers tracing the contours of your curves. You moan softly as she leaned in, her breasts rubbing up against yours and her lips finding yours once again.
Her tongue invades your mouth, exploring it and mixing your saliva. As you kissed, Eira's hand moved lower down to the wetness between your legs. You moaned as she traced small circles around your clit sending waves of pleasure through your body.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>You're so wet for me
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
<img class="passage-image" src="demongodsassets/sexscenes/blackpool/eira/2.png" >
Her voice panting, you moaned louder, your body on the edge of release. You could feel your body responding to her touch, your hips grinding against her hand. Eira smiled with a wicked glint in her eyes. She continued to touch you, her movements becoming more and more urgent as you got closer and closer to the brink.
And then, suddenly, right when you were about to explode, she stopped.
You whined and thrust your hips against her hand, but she pulled away and started commanding you.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>now it's my turn. You will please your mistress
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
she gets on her knees and moves upwards, her crevice hovering above your mouth. Your lips parted slightly as she lowered herself onto your face, letting out a soft sigh as her wetness dripped down your cheeks. Her scent was overwhelming, but not unpleasant; it made you want more of her. Your fingers found their way around her hips, gripping tightly as you felt her body shudder against yours. As you begin to explore her folds with your tongue, she let out another low groan before arching back even further, gripping your breasts for support and giving you better access to her dripping folds.
She shifted her weight, allowing you to penetrate her folds with your tongue. The sensation sent waves through both of you, causing her to moan louder. With each thrust of your tongue, she seemed to become wetter and louder, until finally she reached a peak and began shaking violently, her thighs clamping the sides of your head as you continue to work on her with your tongue. You felt her sympathetic orgasm and your body shook along with her, exploding with pleasure.
Her breathing returned to normal after some time, and she slowly pulled away from you, leaving a trail of saliva and juices. She smiled widely, looking down at you with lust in her eyes.
</p>
<div class='row left'>
<div class='left-msg'>Eira<hr>That was amazing...And it seems I owe you a reward
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/tavernwoman.png">
</div>
</div>
<p>
Well, you got yours but she doesn't need to know that. She got up and knelt between your legs, spreading them apart so she could get a good look at what lay between. She ran her hand along your inner thighs, teasingly you lightly before moving closer to your center. Her warm breath tickled your lips as she moved closer, taking in the sight of your wet folds. She took one last glance before diving right in, massaging your clit with her tongue.
The feeling of her tongue caused you to arch your back involuntarily, moaning deeply as she worked her magic. She circled your clitoris while flicking her tongue across it every few seconds. Soon enough, you were close t ocoming and she wasn't stopping. She pushed harder, making sure you had no chance of escaping. Finally you couldn't take anymore and your body exploded. You cried out and pleasure as you rode the wave of blissful ecstasy.
After some time, you both lay panting. She gives you one last kiss before returning to work. After some time had passed, you collect your things and head back out.
</p>
<</switch>>
[[town][$currentlocation to "blackpool"]]
</div>
<<nobr>>
<<gameConfig>> <!--- set enemy type and classification -->
<<setEnemyLevel>> <!--- automatic enemy stats -->
<<randomEnemyEncounter>>
<<customizeEnemy>> <!--- for any enemy-specific stat changes -->
<</nobr>>
<div class="conversation">
<p><img class="passage-image" @src="'demongodsassets/people/fullbody/enemies/'+$e.name+'/'+$portrait+'.png'" alt="enemy portrait coming soon!">
You are facing a level $e.lvl $fullname</p>
[[fight|battle]]
[[run|escape]]
</div><<nobr>>
<<widget "randomEnemyEncounter">>
<<set $firstAttack = true>>
<<if $e.type.includes("physical_enemy")>>
<<set $e.hp to 25 + (6 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.melee to 7 + (4 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.pdef to 2 + Math.round(2 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.res to 1 + Math.round(1.5 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.mdef to 1 + Math.round(1.5 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.reshp to Math.round(0.8 * $e.hp) + random(-$e.lvl, $e.lvl)>>
<<set $e.critrt to random(0, 8)>>
<</if>>
<<if $e.type.includes("magical_enemy")>>
<<set $e.hp to 25 + (6 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.magic to 7 + (4 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.mdef to 2 + Math.round(2 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.res to 1 + Math.round(1.5 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.reshp to Math.round(0.8 * $e.hp) + random(-$e.lvl, $e.lvl)>>
<<set $e.pdef to 1 + Math.round(1.5 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.critrt to random(0, 8)>>
<</if>>
<<if $e.type.includes("physical_enemy") && $e.type.includes("magical_enemy")>>
<<set $e.hp to 25 + (6 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.melee to 3 + (2 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.magic to 3 + (2 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.pdef to 2 + (1 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.mdef to 2 + (1 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.res to 1 + Math.round(1.5 * $e.lvl) + random(-$e.lvl, $e.lvl)>>
<<set $e.reshp to Math.round(0.8 * $e.hp) + random(-$e.lvl, $e.lvl)>>
<<set $e.critrt to random(0, 8)>>
<</if>>
<<if $e.type.includes("boss")>>
<<set $e.hp to $e.hp * 2>>
<<set $e.melee to Math.round($e.melee * 1.4)>>
<<set $e.magic to Math.round($e.magic * 1.4)>>
<<set $e.pdef to Math.round($e.pdef * 1.3)>>
<<set $e.mdef to Math.round($e.mdef * 1.3)>>
<<set $e.res to Math.round($e.res * 1.3)>>
<<set $e.reshp to Math.round($e.reshp * 2)>>
<</if>>
<<if $e.type.includes("charm_immune")>>
<<set $e.res to 99999>>
<<set $e.reshp to 99999999>>
<</if>>
<<if $e.type.includes("physical_immune")>>
<<set $e.pdef to 99999>>
<</if>>
<<if $e.type.includes("magic_immune")>>
<<set $e.mdef to 99999>>
<</if>>
<<if $p.lvl == $e.lvl>>
<<set $e.hp to Math.round($e.hp * 0.8)>>
<<set $e.melee to Math.round($e.melee * 0.8)>>
<<set $e.magic to Math.round($e.magic * 0.8)>>
<<set $e.pdef to Math.round($e.pdef * 0.8)>>
<<set $e.mdef to Math.round($e.mdef * 0.8)>>
<<set $e.res to Math.round($e.res * 0.8)>>
<<set $e.reshp to Math.round($e.reshp * 0.8)>>
<</if>>
<<if $p.lvl gt $e.lvl>>
<<set $e.hp to Math.round($e.hp * 0.7)>>
<<set $e.melee to Math.round($e.melee * 0.7)>>
<<set $e.magic to Math.round($e.magic * 0.7)>>
<<set $e.pdef to Math.round($e.pdef * 0.7)>>
<<set $e.mdef to Math.round($e.mdef * 0.7)>>
<<set $e.res to Math.round($e.res * 0.7)>>
<<set $e.reshp to Math.round($e.reshp * 0.7)>>
<</if>>
<<if ($p.lvl - $e.lvl) == 1>>
<<set $e.hp to Math.round($e.hp * 0.9)>>
<<set $e.melee to Math.round($e.melee * 0.9)>>
<<set $e.magic to Math.round($e.magic * 0.9)>>
<<set $e.pdef to Math.round($e.pdef * 0.9)>>
<<set $e.mdef to Math.round($e.mdef * 0.9)>>
<<set $e.res to Math.round($e.res * 0.9)>>
<<set $e.reshp to Math.round($e.reshp * 0.9)>>
<</if>>
<</widget>>
<</nobr>><<nobr>>
<<widget "gameConfig">>
<<set $enemiesByArea to {
"forest1": ["wolves", "slime", "bandit", "squik", "goblinsct"],
"forest2": ["wolves", "slime", "goblinarcher", "squik", "alraune", "goblinsct"],
"forest3": ["wolves", "slime", "goblinarcher", "squik", "alraune", "goblinsldr", "goblinsct"],
"mountains_day": ["bandit", "giant", "bonecentipede", "rockgoblin", "orc", "slime", "spiderling", "female_bandit"],
"mountains_night": ["orcshaman", "night_enemy2", "night_enemy3"],
"silent_city": ["city_enemy1", "city_enemy2", "city_enemy3"]
}>>
<<setEnemyLevel>>
<<set $enemyClassifications to {
"goblinsct": ["physical_enemy"],
"goblinarcher": ["physical_enemy"],
"goblinsldr": ["physical_enemy"],
"wolves": ["physical_enemy", "charm_immune"],
"squik": ["magical_enemy"],
"alraune": ["magical_enemy"],
"bonecentipede": ["physical_enemy"],
"orc": ["physical_enemy"],
"spiderling": ["magical_enemy", "charm_immune"],
"orcshaman": ["magical_enemy"],
"giant": ["physical_enemy", "magical_enemy"],
"dryad": ["magical_enemy"],
"rockgoblin": ["physical_enemy"],
"slime": ["magical_enemy", "physical_immune"],
"bandit": ["physical_enemy"],
"Melek Taus": ["boss", "magical_enemy"],
"cringebandit": ["boss", "physical_enemy", "magical_enemy"],
"dryad": ["magical_enemy", "charm_immune", "boss"],
"arachna": ["magical_enemy", "charm_immune", "boss"],
"spiderling": ["magical_enemy", "charm_immune", "boss"],
"female_bandit": ["physical_enemy", "charm_immune"],
"god_enemy": ["physical_enemy", "charm_immune", "boss", "magical_enemy", "physical_immune", "magic_immune"]
}>>
<<if $enemiesByArea.hasOwnProperty($currentlocation)>>
<<set $e.name to $enemiesByArea[$currentlocation].random()>>
<<set $e.type to $enemyClassifications[$e.name]>>
<</if>>
<</widget>>
<</nobr>><<nobr>>
<<widget "customizeEnemy">>
<<switch $e.name>>
<<case "female_bandit">>
<<set $fullname to "bandit">>
<<set $e.weakness to "wind">>
<<set $e.eleresist to "fire">>
<<set $portrait to 1>>
<<case "bandit">>
<<set $fullname to "bandit">>
<<set $e.weakness to "charm">>
<<set $e.eleresist to "fire">>
<<set $portrait to random(1, 6)>>
<<case "goblinsct">>
<<set $fullname to "goblin scout">>
<<set $e.weakness to "fire">>
<<set $e.eleresist to "ice">>
<<set $portrait to 1>>
<<case "goblinsldr">>
<<set $fullname to "goblin soldier">>
<<set $e.weakness to "ice">>
<<set $e.eleresist to "wind">>
<<set $portrait to 1>>
<<case "alraune">>
<<set $fullname to "alraune">>
<<set $e.weakness to "fire">>
<<set $e.eleresist to "water">>
<<set $portrait to random(1,4)>>
<<case "wolves">>
<<set $fullname to "wolves">>
<<set $e.weakness to "melee">>
<<set $e.eleresist to "ice">>
<<set $portrait to random(1, 3)>>
<<case "slime">>
<<set $fullname to "slime">>
<<set $portrait to random(1, 9)>>
<<set $e.weakness to "charm">>
<<set $e.eleresist to "none">>
<<case "goblinarcher">>
<<set $fullname to "goblin archer">>
<<set $e.weakness to "ice">>
<<set $e.eleresist to "wind">>
<<set $portrait to 1>>
<<case "giant">>
<<set $fullname to "giant">>
<<set $e.weakness to "thunder">>
<<set $e.eleresist to "melee">>
<<set $portrait to 1>>
<<case "squik">>
<<set $fullname to "squik">>
<<set $e.weakness to "charm">>
<<set $e.eleresist to "ice">>
<<set $portrait to random(1,3)>>
<<case "bonecentipede">>
<<set $fullname to "bone centipede">>
<<set $e.weakness to "fire">>
<<set $e.eleresist to "melee">>
<<set $portrait to 1>>
<<case "rockgoblin">>
<<set $fullname to "rock goblin">>
<<set $e.weakness to "water">>
<<set $e.eleresist to "thunder">>
<<set $portrait to 1>>
<<case "orc">>
<<set $fullname to "orc">>
<<set $e.weakness to "ice">>
<<set $e.eleresist to "fire">>
<<set $portrait to 1>>
<<case "spiderling">>
<<set $fullname to "spiderling">>
<<set $e.weakness to "melee">>
<<set $e.eleresist to "none">>
<<set $portrait to 1>>
<<default>>
<!--- Default settings for new enemies, if any -->
<</switch>>
<</widget>>
<</nobr>>
<<nobr>>
<!--- Widget for the setEnemyLevel function -->
<<widget "setEnemyLevel">>
<<set $locationLevels to {
"forest1": { "min": 1, "max": 3 },
"forest2": { "min": 3, "max": 8 },
"forest3": { "min": 8, "max": 11 },
"mountains_day": { "min": 12, "max": 16 },
"mountains_night": { "min": 17, "max": 21 },
"silent_city": { "min": 22, "max": 22 }
}>>
<<if $locationLevels.hasOwnProperty($currentlocation)>>
<<set $levelRange to $locationLevels[$currentlocation]>>
<<set $minLevel to $levelRange.min>>
<<set $maxLevel to $levelRange.max>>
<<set $levelDiff to Math.abs($maxLevel - $minLevel)>>
<<set $weightArray to []>>
<<for $i to 0; $i <= $levelDiff; $i++>>
<<set _weight to 1 / (1 + Math.abs($p.lvl - ($minLevel + $i)))>>
<<set $weightArray to $weightArray.concat(_weight)>>
<</for>>
<<set _levelArray to []>>
<<for _i to 0; _i <= $levelDiff; _i++>>
<<set _levelArray to _levelArray.concat($minLevel + _i)>>
<</for>>
<<set $e.lvl to window.weightedRandom(_levelArray, $weightArray)>>
<<set $e.lvl to Math.min($e.lvl, $maxLevel)>> <!--- Ensure the enemy level doesn't exceed the area's max level -->
<</if>>
<</widget>>
<</nobr>>The way this works is players will go to a passage that starts a random battle .
In the case of --mountains enemy-- players will get widgets in this order:
gameConfig /* set enemy type and classification */
setEnemyLevel /* automatic enemy stats */
randomEnemyEncounter
customizeEnemy /* for any enemy-specific stat changes */
This also uses the following javascript:
// random enemy encounter weighted random for enemy level function
window.weightedRandom = function(arr, weights) {
let sum = weights.reduce((acc, val) => acc + val, 0);
let rnd = randomFloat(0, sum);
let result;
for (let i = 0; i < arr.length; i++) {
if (rnd < weights[i]) {
result = arr[i];
break;
}
rnd -= weights[i];
}
return result;
};
The first widget gameConfig checks the players $currentlocation to tell what enemies can possibly spawn there.
It then hits the setEnemyLevel widget, and then sets the enemy classifications (physical, magical, charm immune)
anytime an enemy is added to the game, will need to update their classifications here.
setEnemyLevel:
This sets the max level for each region and sets up the enemies level. Never modify this except for location levels min and max.
set $locationLevels to {
"forest1": { "min": 1, "max": 3 },
"forest2": { "min": 3, "max": 8 },
"forest3": { "min": 8, "max": 11 },
"mountains_day": { "min": 13, "max": 17 },
"mountains_night": { "min": 17, "max": 21 },
"silent_city": { "min": 22, "max": 22 }
}
This uses players $currentlocation to tell what level enemies the player can face.
Next is randomEnemyEncounter. This widget should never need to be modified unless enemy stats need to be rebalanced.
Last is customizeEnemy passage.
This will be modified for any special enemy and their stats.
Add elemental resistances and weaknesses.
steps to add new region / enemy:
New region:
1. The enemy encounter page should look like this:
<<gameConfig>> /* set enemy type and classification */
<<setEnemyLevel>> /* automatic enemy stats */
<<randomEnemyEncounter>>
<<customizeEnemy>> /* for any enemy-specific stat changes */
You are facing a level $e.lvl $e.name
fight|mountains battle
run|mountains run
2. in this section of gameConfig add the new region (based on $currentlocation):
<<set $enemiesByArea to {
"forest1": ["enemy1", "enemy2", "enemy3"],
"forest2": ["enemy4", "enemy5", "enemy6"],
"forest3": ["enemy7", "enemy8", "enemy9"],
"mountains_day": ["goblin_scout", "goblin_archer", "goblin_soldier", "squik", "alraune", "dryad", "witch", "bandit", "female_bandit"],
"mountains_night": ["night_enemy1", "night_enemy2", "night_enemy3"],
"silent_city": ["city_enemy1", "city_enemy2", "city_enemy3"]
}>>
3. Do the same for setEnemyLevel, also set the minimum or maximum allowed level for each region
<<set $locationLevels to {
"forest1": { "min": 1, "max": 3 },
"forest2": { "min": 3, "max": 8 },
"forest3": { "min": 8, "max": 11 },
"mountains_day": { "min": 13, "max": 17 },
"mountains_night": { "min": 17, "max": 21 },
"silent_city": { "min": 22, "max": 22 }
}>>
Adding new enemies:
1. go to gameConfig widget, add the enemy to the region you're adding to under $enemiesByArea
2. In the same widget, add enemy classifications (physical, boss, charm immune, magic)
3. customizeEnemy widget, add any needed modifications for special enemies and elemental resistances / weaknesses<<nobr>>
<div class="conversation">
<<set $battleTurn = "player">>
<<set $playerAction = "">>
<<set $spellSelected = "">>
<<set $battleMessage = "">>
<<set $battleOver = false>>
<<if $firstAttack is true>>
<img class="passage-image" @src="'demongodsassets/people/fullbody/enemies/'+$e.name+'/'+$portrait+'.png'" alt="this image isn't ready yet, soon!"><br>
<</if>>
<<if $e.hp gt 0 and $e.reshp gt 0 and $p.hp gt 0>>
<<if $battleTurn === "player">>
<<type 15ms>>
<span id="playerStats">Your HP: $p.hp/$p.maxhp | Your MP: $p.mp/$p.maxmp</span><br>
<<print '<br>' + $fullname + ' Level: ' + $e.lvl + ' |Enemy HP: ' + $e.hp + ' | Enemy mental resistance: ' + $e.reshp>><br>
<<if $firstAttack>>
<<print '<br>Choose an action: '>>
<</if>>
<</type>>
<<timed 3.2s>>
<<link "Attack">><<replace ".passage">>
<<set $playerAction = "attack">>
<<set $firstAttack = false>>
<<include "PlayerTurn">>
<<if $e.hp gt 0 and $e.reshp gt 0 and $p.hp gt 0>>
<<include "EnemyTurn">>
<</if>>
<<replace "#playerStats">>Your HP: $p.hp/$p.maxhp | Your MP: $p.mp/$p.maxmp<</replace>>
<<include "battle">>
<</replace>><</link>>
<<link "Charm">><<replace ".passage">>
<<set $playerAction = "charm">>
<<set $firstAttack = false>>
<<include "PlayerTurn">>
<<if $e.hp gt 0 and $e.reshp gt 0 and $p.hp gt 0>>
<<include "EnemyTurn">>
<</if>>
<<replace "#playerStats">>Your HP: $p.hp/$p.maxhp | Your MP: $p.mp/$p.maxmp<</replace>>
<<include "battle">>
<</replace>><</link>>
<<link "Cum Vial">><br><br><<replace ".passage">>
<<set $playerAction = "item">>
<<set $firstAttack = false>>
<<include "PlayerTurn">>
<<if $e.hp gt 0 and $e.reshp gt 0 and $p.hp gt 0>>
<<include "EnemyTurn">>
<</if>>
<<replace "#playerStats">>Your HP: $p.hp/$p.maxhp | Your MP: $p.mp/$p.maxmp<</replace>>
<<include "battle">>
<</replace>><</link>>
<<SpellSelection>>
<span id="battleInfo"></span>
<</timed>>
<</if>>
<</if>>
</div>
<</nobr>>
<<nobr>>
<div class="conversation">
<<if $illusionActive>>
<<set $illusionTurns = $illusionTurns - 1>>
<<if $illusionTurns <= 0>>
<<set $illusionActive = false>>
<<set $battleMessage = $battleMessage + "Your Illusion has worn off.<br>">>
<</if>>
<</if>>
<<set $critchance = Math.random()>>
<<set _damageModifier = 1>>
<<if $e.weakness == $playerAction>>
$fullname is weak against $playerAction!<br>
<<set _damageModifier = 1.5>>
<<elseif $e.eleresist == $playerAction>>
$fullname is resistant to $playerAction!<br>
<<set _damageModifier = 0.5>>
<</if>>
<<if $playerAction == "attack">>
<<set $currentatk to "melee">>
<<if $e.pdef != 99999>>
<<set _damage = Math.max(1, Math.round(($currentstats.melee - $e.pdef) * _damageModifier))>>
<<if $critchance <= $currentstats.critrt / 100>>
<<set _damage = _damage * 2>>
<<set $battleMessage = $battleMessage + "Critical hit!<br>">>
<</if>>
<<set $e.hp = $e.hp - _damage>>
<<set $battleMessage = $battleMessage + "You slash at the $fullname with your claws! $fullname takes " + _damage + " damage.<br>">>
<<else>>
<<set $battleMessage = $battleMessage + "the $fullname is immune to physical attacks. The $fullname mocks your effort.<br>">>
<</if>>
<</if>>
<<if $playerAction == "charm">>
<<if $e.res != 99999>>
<<set _charmDamage = Math.max(1, Math.round(($currentstats.charm - $e.res) * _damageModifier))>>
<<if $critchance <= $p.critrt / 100>>
<<set _charmDamage = _charmDamage * 2>>
<<set $battleMessage = $battleMessage + "Critical charm!<br>">>
<</if>>
<<set $e.reshp = $e.reshp - _charmDamage>>
<<set $battleMessage = $battleMessage + "You charmed the $fullname for " + _charmDamage + " charm damage. The $fullname is licking their lips.<br>">>
<<set _mpRecovered = Math.round($p.maxmp * 0.2)>>
<<set $p.mp = Math.min($p.mp + _mpRecovered, $p.maxmp)>>
<<set $battleMessage = $battleMessage + " You recovered " + _mpRecovered + " MP.<br>">>
<<else>>
<<set $battleMessage = $battleMessage + "the $fullname is immune to charm. The $fullname laughs at your feeble attempts.<br>">>
<</if>>
<</if>>
<<CastSpell>>
<<if $playerAction == "item">>
<<if $inv.cumvial > 0>>
<<set _healAmount = Math.ceil($p.maxhp * 0.5)>>
<<set $p.hp = Math.min($p.hp + _healAmount, $p.maxhp)>>
<<set $inv.vial = $inv.vial - 1>>
<<set $battleMessage = $battleMessage + "You drank a Cum Vial, its sticky and salty. You healed for " + _healAmount + " HP.<br>">>
<<else>>
<<set $battleMessage = $battleMessage + "You don't have any Cum Vials left.<br>">>
<</if>>
<</if>>
<<if $e.hp <= 0>>
<<set $battleOver = true>>
<<set $battleMessage = $battleMessage + " You defeated the $fullname!<br>">>
<<if $currentlocation is "forest1" or $currentlocation is "forest2" or $currentlocation is "forest3" or $currentlocation is "forestdungeon">>
<<goto "battle finish">>
<<else>>
<<goto "Battle Complete">>
<</if>>
<<elseif $e.reshp <= 0>>
<<set $battleOver = true>>
<<set $battleMessage = $battleMessage + " You charmed the $fullname! It falls to the ground unable to resist touching itself.<br>">>
<<if $currentlocation is "forest1" or $currentlocation is "forest2" or $currentlocation is "forest3" or $currentlocation is "forestdungeon">>
<<goto "battle finish">>
<<else>>
<<goto "Charmed Enemy">>
<</if>>
<<else>>
<</if>>
<br>
<img class="passage-image" @src="'demongodsassets/people/fullbody/enemies/'+$e.name+'/'+$portrait+'.png'" alt="this image isn't ready yet, but soon!"><br>
<<print $battleMessage>><br>
<<set $battleMessage = "">>
<<set $firstAttack = false>>
</div>
<</nobr>>
<<nobr>>
<div class="conversation">
<<set _enemyAction = Math.random()>>
<<set _isBoss = $e.type.includes("boss")>>
<<set _enemyPhysical = !_isBoss ? $enemyClassifications[$e.name].includes("physical_enemy") : $e.type.includes("physical_enemy")>>
<<set _enemyMagical = !_isBoss ? $enemyClassifications[$e.name].includes("magical_enemy") : $e.type.includes("magical_enemy")>>
<<if _enemyPhysical && !_enemyMagical>>
<<set _enemyAction = "physical">>
<<elseif !_enemyPhysical && _enemyMagical>>
<<set _enemyAction = "magical">>
<<elseif _enemyPhysical && _enemyMagical>>
<<set _enemyAction = _enemyAction > 0.5 ? "physical" : "magical">>
<</if>>
<<switch _enemyAction>>
<<case "physical">>
<<set _damage = Math.max(1, $e.melee - $currentstats.pdef)>>
<<set _critChance = Math.random()>>
<<if _critChance <= $e.critrt / 100>>
<<set _damage = _damage * 2>>
<<set $battleMessage = $battleMessage + "Critical hit!">>
<</if>>
<<if $illusionActive && Math.random() < 0.5>>
<<set $battleMessage = $battleMessage + "The $fullname missed their attack due to your Illusion.">>
<<else>>
<<set _roundedDamage = Math.round(_damage)>>
<<set $p.hp = $p.hp - _roundedDamage>>
<<set $battleMessage = $battleMessage + "The $fullname attacked you for " + _roundedDamage + " damage.">>
<</if>>
<<case "magical">>
<<set _magicDamage = Math.max(1, $e.magic - $currentstats.mdef)>>
<<set _critChance = Math.random()>>
<<if _critChance <= $e.critrt / 100>>
<<set _magicDamage = _magicDamage * 2>>
<<set $battleMessage = $battleMessage + "Critical magic hit!">>
<</if>>
<<if $illusionActive && Math.random() < 0.5>>
<<set $battleMessage = $battleMessage + "The $fullname missed their magic attack due to your Illusion.">>
<<else>>
<<set _roundedMagicDamage = Math.round(_magicDamage)>>
<<set $p.hp = $p.hp - _roundedMagicDamage>>
<<set $battleMessage = $battleMessage + "The $fullname used a magic attack on you for " + _roundedMagicDamage + " damage.">>
<</if>>
<</switch>>
<<if $p.hp <= 0>>
<<set $battleOver = true>>
<<set $battleMessage = $battleMessage + " You were defeated by the $fullname.">>
[[Game Over]]
<<else>>
<<set $battleMessage = $battleMessage + " It's your turn.">>
<</if>>
<br>
<<print $battleMessage>><br>
<<set $battleMessage = "">>
</div>
<</nobr>>
<<nobr>>
<<widget "CastSpell">>
<<set $playerAction = $playerAction.toLowerCase()>>
<<if $playerAction == "fire" || $playerAction == "ice" || $playerAction == "wind" || $playerAction == "water" || $playerAction == "thunder">>
<<set $currentatk to $playerAction>>
<<set _damage = Math.max(1, ($currentstats.magic - $e.mdef) * _damageModifier)>>
<<if $critchance <= $currentstats.critrt / 100>>
<<set _damage = _damage * 2>>
<<set $battleMessage = $battleMessage + "Critical hit!">>
<</if>>
<<set $e.hp = $e.hp - _damage>>
<<set $battleMessage = $battleMessage + "You cast " + $playerAction + " on the enemy for " + _damage + " damage.">>
<</if>>
<<if $playerAction == "illusion">>
<<if !$illusionActive>>
<<set $illusionActive = true>>
<<set $illusionTurns = 3>>
<<set $battleMessage = $battleMessage + "You cast Illusion. The enemy is more likely to miss you for 3 turns.">><br>
<<else>>
<<set $battleMessage = $battleMessage + "Illusion is already active.">><br>
<</if>>
<</if>>
<<if $playerAction == "transformation">>
<<if $e.name == "female_bandit">>
<<set _transformationChance = Math.random()>>
<<if _transformationChance <= 0.08>>
<<set $e.res = 1>>
<<set $e.reshp = 1>>
<<set $battleMessage = $battleMessage + "You cast Transformation. " + $e.fullname + " seems to be distracted and fumbling with her skirt.">><br>
<<else>>
<<set $battleMessage = $battleMessage + "You cast Transformation, but it failed to affect " + $e.fullname + ".">><br>
<</if>>
<<else>>
<<set $battleMessage = $battleMessage + "Transformation only works on specific enemies.">><br>
<</if>>
<</if>>
<<if $playerAction == "seduction">>
<<if !$seductionUsed>>
<<if !$e.type.includes("magic_immune")>>
<<set $e.mdef = Math.max(1, Math.round($e.mdef * 0.8))>>
<</if>>
<<if !$e.type.includes("physical_immune")>>
<<set $e.pdef = Math.max(1, Math.round($e.pdef * 0.8))>>
<</if>>
<<if !$e.type.includes("charm_immune")>>
<<set $e.res = Math.max(1, Math.round($e.res * 0.8))>>
<</if>>
<<set $seductionUsed = true>>
<<set $e.magic = Math.max(1, Math.round($e.magic * 0.8))>>
<<set $e.melee = Math.max(1, Math.round($e.melee * 0.8))>>
<<set $battleMessage = $battleMessage + "You cast Seduction. The enemy's stats are reduced by 20% for the rest of the battle.">><br>
<<else>>
<<set $battleMessage = $battleMessage + "Seduction has already been used.">><br>
<</if>>
<</if>>
<</widget>>
<</nobr>>
<div class="conversation">
<p>
A sudden darkness envelops you, and a heavy weight presses down on your chest. Your vision fades, and the sounds of battle become a distant echo. You find yourself drifting into an infinite abyss, devoid of light or sound, as if floating in an ocean of emptiness. The sensation of your physical form fades away, leaving you without consciousness, drifting in the nothingness of death.
An eerie calm settles upon you, a silence that seems to span eternity. You feel as if you are falling through the darkness, the only constant being the being the absolute silence. You cannot think. You cannot feel.
But for a succubus, the embrace of death is not the end. Your consciousness stirs, a spark of life igniting within the darkness. A sensation of warmth surges through you, and you feel yourself being pulled back towards the realm of the living.
The darkness recedes, replaced by a familiar warmth and the comforting embrace of your home. As you awaken, you realize that your brush with death has come at a price: 5% of your hard-earned experience has been lost to the void.
</p>
<<set $lust to Math.round($lust * 0.90)>>
[[home]]
</div><<nobr>>
<<widget "SpellSelection">>
<br><br>
<details class="spell-button">
<summary class="battle info" style="color:#5e5ee8;">Spells</summary><br>
<<if $spells.fire && $p.mp >= 5>>
<<link "fire">><<replace ".passage">>
<<set $playerAction = "fire">>
<<set $p.mp -= 5>>
<<include "PlayerTurn">>
<<if $e.hp gt 0 and $e.reshp gt 0 and $p.hp gt 0>>
<<include "EnemyTurn">>
<</if>>
<<include "battle">>
<</replace>><</link>>
<</if>>
<<if $spells.ice && $p.mp >= 5>>
<<link "ice">><<replace ".passage">>
<<set $playerAction = "ice">>
<<set $p.mp -= 5>>
<<include "PlayerTurn">>
<<if $e.hp gt 0 and $e.reshp gt 0 and $p.hp gt 0>>
<<include "EnemyTurn">>
<</if>>
<<include "battle">>
<</replace>><</link>>
<</if>>
<<if $spells.seduction && $p.mp >= 10>>
<<link "seduction">><<replace ".passage">>
<<set $playerAction = "seduction">>
<<set $p.mp -= 10>>
<<include "PlayerTurn">>
<<if $e.hp gt 0 and $e.reshp gt 0 and $p.hp gt 0>>
<<include "EnemyTurn">>
<</if>>
<<include "battle">>
<</replace>><</link>>
<</if>>
<<if $spells.illusion && $p.mp >= 25>>
<<link "illusion - 25mp">><<replace ".passage">>
<<set $playerAction = "illusion">>
<<set $p.mp -= 25>>
<<include "PlayerTurn">>
<<if $e.hp gt 0 and $e.reshp gt 0 and $p.hp gt 0>>
<<include "EnemyTurn">>
<</if>>
<<include "battle">>
<</replace>><</link>>
<</if>>
<<if $spells.transformation && $p.mp >= 10>>
<<link "transformation">><<replace ".passage">>
<<set $playerAction = "transformation">>
<<set $p.mp -= 10>>
<<include "PlayerTurn">>
<<if $e.hp gt 0 and $e.reshp gt 0 and $p.hp gt 0>>
<<include "EnemyTurn">>
<</if>>
<<include "battle">>
<</replace>><</link>>
<</if>>
<<if $spells.wind && $p.mp >= 5>>
<<link "wind">><<replace ".passage">>
<<set $playerAction = "wind">>
<<set $p.mp -= 5>>
<<include "PlayerTurn">>
<<if $e.hp gt 0 and $e.reshp gt 0 and $p.hp gt 0>>
<<include "EnemyTurn">>
<</if>>
<<include "battle">>
<</replace>><</link>>
<</if>>
<<if $spells.water && $p.mp >= 5>>
<<link "water">><<replace ".passage">>
<<set $playerAction = "water">>
<<set $p.mp -= 5>>
<<include "PlayerTurn">>
<<if $e.hp gt 0 and $e.reshp gt 0 and $p.hp gt 0>>
<<include "EnemyTurn">>
<</if>>
<<include "battle">>
<</replace>><</link>>
<</if>>
<<if $spells.thunder && $p.mp >= 5>>
<<link "thunder">><<replace ".passage">>
<<set $playerAction = "thunder">>
<<set $p.mp -= 5>>
<<include "PlayerTurn">>
<<if $e.hp gt 0 and $e.reshp gt 0 and $p.hp gt 0>>
<<include "EnemyTurn">>
<</if>>
<<include "battle">>
<</replace>><</link>>
<</if>>
</details>
<</widget>>
<</nobr>><div class="conversation">
<<enemydefeat>>
<<nobr>>
<<set $expmod to 150 + (($e.lvl - $p.lvl) * 15)>>
<<if $e.type.includes("boss")>>
<<set $expmod *= 2>>
<</if>>
<<if $expmod lt 0>>
<<set $expmod to 0>>
<</if>>
<<if $e.hp lte 0>>
<<set $coppermod to Math.max($e.lvl * 20) + 50>>
<<set $cummod to ($e.lvl * 10) + 25>>
<</if>>
<<if $e.reshp lte 0>>
<<set $arousal to 0>>
<<set $coppermod to Math.max($e.lvl * 10) + 25>>
<<set $cummod to ($e.lvl * 20) + 50>>
<</if>>
<<if "boss" in $e.type>>
<<set $expmod = Math.round($expmod * 2)>>
<<set $coppermod = Math.round($coppermod * 2)>>
<<set $cummod = Math.round($cummod * 2)>>
<</if>>
<<set $inv.money += $coppermod>>
<<set $inv.cum += $cummod>>
<<set $lust += $expmod>>
<</nobr>>
<p>Congratulations! You have defeated $fullname and gained $expmod EXP!
You have also obtained $coppermod copper and $cummod cum!</p>
<<nobr>>
<<if $currentlocation == "forest1">>
[[continue|forest1]]
<</if>>
<<if $currentlocation == "forest2">>
[[continue|forest2]]
<</if>>
<<if $currentlocation == "forest3">>
[[continue|forest3]]
<</if>>
<<if $currentlocation == "mountains_day">>
[[continue|mountains - daytime]]
<</if>>
<<if $currentlocation == "mountains_night">>
[[continue|mountains - night]]
<</if>>
<<if $currentlocation == "silent_city">>
[[continue|silent city]]
<</if>>
<<if $currentlocation == "spidercave">>
[[continue|mountains - daytime][$currentlocation to "mountains_day"]]
<</if>>
<</nobr>>
</div>
<<set $illusionActive to false>>
<<set $seductionUsed = true>>
<div class="conversation">
<<enemycharm>>
<<nobr>>
<<set $expmod to 150 + (($e.lvl - $p.lvl) * 15)>>
<<if $e.type.includes("boss")>>
<<set $expmod *= 2>>
<</if>>
<<if $expmod lt 0>>
<<set $expmod to 0>>
<</if>>
<<if $e.hp lte 0>>
<<set $coppermod to Math.max($e.lvl * 20) + 50>>
<<set $cummod to ($e.lvl * 10) + 25>>
<</if>>
<<if $e.reshp lte 0>>
<<set $arousal to 0>>
<<set $coppermod to Math.max($e.lvl * 10) + 25>>
<<set $cummod to ($e.lvl * 20) + 50>>
<</if>>
<<if "boss" in $e.type>>
<<set $expmod = Math.round($expmod * 2)>>
<<set $coppermod = Math.round($coppermod * 2)>>
<<set $cummod = Math.round($cummod * 2)>>
<</if>>
<<set $inv.money += $coppermod>>
<<set $inv.cum += $cummod>>
<<set $lust += $expmod>>
<</nobr>>
<p>Congratulations! You have defeated $fullname and gained $expmod EXP!
You have also obtained $coppermod copper and $cummod cum!</p>
<<nobr>>
<<if $currentlocation == "forest1">>
[[continue|forest1]]
<</if>>
<<if $currentlocation == "forest2">>
[[continue|forest2]]
<</if>>
<<if $currentlocation == "forest3">>
[[continue|forest3]]
<</if>>
<<if $currentlocation == "mountains_day">>
[[continue|mountains - daytime]]
<</if>>
<<if $currentlocation == "mountains_night">>
[[continue|mountains - night]]
<</if>>
<<if $currentlocation == "silent_city">>
[[continue|silent city]]
<</if>>
<</nobr>>
</div>
<<set $illusionActive to false>>
<<set $seductionUsed = true>><<nobr>>
<<widget 'wallpaper'>>
<<if $currentlocation is "earth">>
<style>
/* background story image */
body {
background-image: url("demongodsassets/img/backgrounds/wallpaper/earth.png");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
<<elseif $currentlocation is "blackpool">>
<style>
body {
background-image: url("demongodsassets/img/backgrounds/wallpaper/blackpool.png");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
<<elseif $currentlocation is "blackpoolgate">>
<style>
body {
background-image: url("demongodsassets/img/backgrounds/wallpaper/blackpoolgate.png");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
<<elseif $currentlocation is "forest1">>
<style>
body {
background-image: url("demongodsassets/img/backgrounds/wallpaper/forest1.png");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
<<elseif $currentlocation is "forest2">>
<style>
body {
background-image: url("demongodsassets/img/backgrounds/wallpaper/forest2.png");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
<<elseif $currentlocation is "forest3">>
<style>
body {
background-image: url("demongodsassets/img/backgrounds/wallpaper/forest3.png");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
<<elseif $currentlocation is "forestdungeon">>
<style>
body {
background-image: url("demongodsassets/img/backgrounds/wallpaper/forestdungeon.png");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
<<elseif $currentlocation is "plains">>
<style>
body {
background-image: url("demongodsassets/img/backgrounds/wallpaper/plains.png");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
<<elseif $currentlocation is "mountains_day">>
<style>
body {
background-image: url("demongodsassets/img/backgrounds/wallpaper/mountains_day.png");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
<<elseif $currentlocation is "mountains_night">>
<style>
body {
background-image: url("demongodsassets/img/backgrounds/wallpaper/mountains_night.png");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
<<elseif $currentlocation is "silentcity">>
<style>
body {
background-image: url("demongodsassets/img/backgrounds/wallpaper/silentcity.png");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
<<elseif $currentlocation is "shack">>
<style>
body {
background-image: url("demongodsassets/img/backgrounds/wallpaper/shack.png");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
<<elseif $currentlocation is "tavern">>
<style>
body {
background-image: url("demongodsassets/img/backgrounds/wallpaper/tavern.png");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
<<elseif $currentlocation is "spidercave">>
<style>
body {
background-image: url("demongodsassets/img/backgrounds/wallpaper/spidercave.png");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
<</if>>
<</widget>>
<</nobr>>
<<nobr>>
<<widget "enemydefeat">>
<<if $currentlocation is "mountains_day" or $currentlocation is "mountains_night">>
<<switch $e.name>>
<<case "bandit">>
<p>
you find yourself facing off against a malevolent figure clad in dark armor, holding a sharp dagger which gleams ominously in the dying sunlight.
The bandit’s eyes widen upon seeing a female succubus before him, but his smirk soon returns as he charges towards you. With quick reflexes, you easily avoid his attack, your razor-sharp claws sparking with excitement. A powerful blast of wind erupts around you, sending the bandit flying backwards. Despite being thrown off balance, the bandit regains composure and growls defiantly at your show of strength.
The bandit draws himself up, preparing for another assault. His muscles tense and his breath comes out in short bursts. You stand ready, waiting for his move. Suddenly, he leaps into action, swinging his sword wildly. You duck under each blow, dodging them all until finally, one strikes true. You feel a stab of pain as it pierces through your skin.
Without hesitation, you counterattack, unleashing a flurry of punches and kicks on the bandit. Each hit lands squarely on its mark, driving him further away. Finally, you land a devastating kick to his chest, knocking him down onto the ground. As he lies there motionless, you take a moment to catch your breath. Then, without warning, the bandit springs back to life, charging once again.
This time, however, you are prepared. You raise both hands, conjuring a ball of fire between them. The bandit stops abruptly, taken by surprise. You then hurl the fiery orb directly at him, engulfing him completely. After several moments, the smoke clears and only silence remains. You wait silently, listening intently for signs of other enemies approaching. However, nothing breaks the stillness except for the crackles of the dying embers from the bandit’s corpse.
</p>
<<case "giant">>
<p>
The Giant towered above the landscape, its massive bulk casting a vast shadow that seemed to swallow the sunlight itself. It's monstrous visage bore the scars of their previous encounters, deep gashes crisscrossing its face in a macabre map of pain and fury. The air trembled with the bass of its guttural roars, and the earth beneath them shook in response to its every movement. The creature's great, gnarled fist tightened around the shaft of a weapon that could have passed for a tree trunk, the head of which bristled with jagged, maliciously serrated metal shards. It bared its teeth, a forest of jagged ivory protruding from cracked and yellowed gums, and raised its weapon high above its head, preparing to strike down the interloper who dared oppose it.
You danced between the Giant's wild attacks with a grace that could only be described as supernatural. As the Giant's makeshift club tore through the air with a sound like a hurricane, you twisted and rolled, your body acting like the precision gears of an expertly crafted clock. Your hands flickered with the glow of elemental magic, tendrils of fire and ice encircling your fingers, trailing brilliant sparks as they moved.
With every near miss, you struck back at the Giant. Arcs of flame licked at its leathery skin, leaving behind ugly, blackened welts. Frigid gusts of ice magic surged forth, encasing the Giant's joints in rime, slowing its movements ever so slightly. The Giant's rage grew with each stinging blow, its roars becoming more ferocious, its attacks more desperate and brutal.
Your tail whipped through the air with lethal precision, leaving deep gashes in the Giant's face.
After several minutes of frenetic combat, the Giant's fury reached its peak. It bellowed incoherently, its voice splitting the air like thunder, and swung its weapon with all the force its monstrous muscles could muster. But you leaped into the air, your body twisting in a breathtaking display of acrobatics, and as you flipped over the Giant's club, your tail lashed out, striking the creature's head with the force of a battering ram.
The blow staggered the Giant, its massive form teetering for a moment as it fought to regain its balance. You summoned every last ounce of their power and launched into a devastating flurry of slashes with your claws. Your magic flared like a brilliant aurora, and the air hummed with the sound of your elemental fury. Fire and ice converged on the Giant in a storm of clashing energies, a maelstrom of destruction that seemed to defy the very laws of nature.
The Giant's colossal body shuddered under the onslaught, its limbs buckling beneath the sheer force of your magic. With a final, deafening roar, it toppled backward, crashing to the ground with an impact that shook the very foundations of the earth. Your breath coming in ragged gasps, your body slick with sweat and stained with the detritus of battle, stood victorious over the fallen behemoth.
</p>
<<case "bonecentipede">>
<p>
Emerging from the shadows, a long centipede-like body, with a large human-like skull slithers towards you, its elongated form a macabre combination of bone and decay. The creature's hollow gaze locks onto you, and it lunges forward with unnatural speed.
As the monstrous centipede rushes towards you, its many legs skittering across the ground in a nightmarish dance, you waste no time in calling forth your elemental power. With a flick of your wrist, a swirling gust of wind materializes around you, whipping the air into a frenzy. The centipede's advance falters as it's buffeted by the miniature cyclone you've summoned, and you take advantage of its momentary disorientation to prepare your next attack.
Your razor-sharp claws glow with an otherworldly light as you infuse them with the raw power of fire and ice. Flames dance across your left hand, while frost creeps up your right, and as the centipede regains its footing, you strike.
With the speed and grace of a predatory cat, you slash at the creature's hideous form, your fire-infused claws leaving deep gashes in its bone like face. The centipede recoils in pain, and you leap back, allowing your wings to unfurl from your back. With a powerful flap, you soar into the air, narrowly avoiding the centipede's snapping jaws.
From your vantage point above the battlefield, you call upon water and thunder. A torrent of water cascades down from the sky, drenching the centipede and the ground beneath it. As the creature hisses in rage, you summon a bolt of lightning, directing it with unerring accuracy towards your drenched adversary.
The lightning strikes the centipede with the force of a thousand hammers, and its grotesque body convulses violently. Yet the creature is more resilient than you anticipated, and it quickly recovers from the shock, lunging at you with renewed vigor.
You weave the raw energy of fire, ice, water, wind, and thunder into a single, devastating attack. The air around you crackles with power as you release the energy in a cataclysmic burst.
The centipede, caught in the maelstrom of elemental fury, writhes and twists as the combined forces of nature tear at its body. You watch as its carapace shatters, and its monstrous form slowly disintegrates from the elemental onslaught.
</p>
<<case "rockgoblin">>
<p>
With a guttural snarl that echoes through the craggy landscape, a rock goblin bursts from its hiding place among the stones, brandishing a crude stone axe. The creature's skin is a mix of grey and green, its beady eyes narrowed as it charges towards you with reckless abandon.
You sidestep the goblin's wild swing and slash at the goblin, your claws shimmering with the ethereal power of wind magic. You miss, but so does the enemy. In retaliation, you conjure a gust of razor-sharp air, sending it slashing across the rock goblin's tough hide. It howls in pain and renews its assault, the axe swinging with frenzied determination.
The goblin's reckless strikes met with your precise, wind-empowered claw attacks. As you deftly evade the rock goblin's increasingly desperate onslaught, your eyes remain focused waiting for an opening. Finally, an opportunity presents itself and you unleash a gale-force blast of wind magic.
The powerful gust of air catches the rock goblin off-guard, sending it hurtling into a nearby rock formation. The impact reverberates throughout the mountainside, a cacophony of stone and anguish. As it struggles to regain its footing, you close in for the final blow. Your claws strike with lethal accuracy, slicing scarlet ribbons in the goblins flesh.
</p>
<<case "orc">>
<p>
A guttural growl pierces the silence, and a massive orc emerges from behind a boulder, its hulking form a dark silhouette against the jagged backdrop. Brandishing a jagged, blood-stained sword, the orc narrows its beady eyes and charges at you with a ferocious battle cry, its words unintelligible in a language you don't understand.
"Ruk'garth ka'shara!"
You rely on your agility and razor-sharp claws to meet the orc's onslaught. As the orc swings its sword in a wide, vicious arc, you duck beneath the blade, feeling the rush of air above your head and a sound like thunder. In a single, fluid motion, you swipe your claws at the orc's exposed side, cutting deep into its thick hide.
The orc roars in fury, "Zal'kara! Yalghar'rat!" It snarls, spewing incomprehensible curses as it swings its sword with reckless abandon. You dance through the onslaught like a storm-tossed wave, your movements flowing seamlessly from evasion to counterattack.
The orc raises its sword for a final, powerful blow, you desperately search for an opening in its defense. With a sudden burst of speed, you dash forward, closing the distance between you and the orc. As the massive blade descends, you pivot on your heel and slide beneath the orc's outstretched arm, your razor-sharp tail slicing through the air and leaving a shallow gash in the orcs abdomen.
The orc staggers from the unexpected counter, its grip on the sword momentarily faltering. Seizing the opportunity, you leap onto the orc's back, your claws digging into its thick, muscular shoulders for purchase. With a swift, decisive strike, you plunge your claws into the orc's neck, tearing through flesh and tendon in a spray of crimson.
The orc crumples to the ground, its lifeblood pooling around its lifeless form.
</p>
<<case "slime">>
<p>
You suddenly feel the ground shift beneath you. A quivering mass of milky white substance emerges from a crevice in the rocks. The slime quivers menacingly, its shape shifting to resemble a vague, humanoid form, as if preparing to strike.
Calling upon your fire magic, you envelop your claws in searing flames, the intense heat casting dancing shadows across the rugged landscape. The slime lunges at you, its fluid form extending like a tendril, attempting to engulf you in its grasp. With a swift motion, you leap out of its path, retaliating with a blazing slash that evaporates a portion of the creature's gelatinous form.
The slime relentlessly pursues you, its body undulating and shifting in a constant dance of adaptation to avoid your fiery attacks. The creature's malleable form seems almost impervious to your razor-sharp claws, forcing you to rely solely on your elemental magic.
As the creature surges towards you, you concentrate your fire magic into a single, focused inferno, the flames in your claws coalescing into a sphere like a furious sun. You unleash the blazing torrent upon the slime, the scorching energy cascading towards it like a river of molten gold.
The mountain air fills with the acrid scent of boiling musk as the creature is incinerated in a flash steam. With a final, deafening hiss, the opponent is reduced to a bubbling puddle at your feet. You find the scent of cooked semen revolting and your stomach gurgles at the missed meal.
</p>
<<case "spiderling">>
<p>
From the shadows, a singular spiderling, the size of a large dog, emerges, its skittering legs and venomous fangs a sight that would paralyze even the most stalwart warrior. Your heart races, and you feel a shiver of arachnophobia crawl up your spine. The spiderling advances towards you, its multitude of eyes reflecting a malevolent hunger. You are filled with dread and you feel a shiver as you recall your arachnaphobia.
The spiderling lunges at you, its fangs dripping with venom and poised to strike. Desperately, you sidestep the attack, swiping your claws at the spiderling's vulnerable underbelly.
The spiderling barely evades your counter, hissing and chittering in frustration. As it recovers, you seize the opportunity to study its movements, seeking a weakness in its lightning-fast reflexes.
The spiderling leaps and weaves, attempting to catch you off guard with its venomous fangs. But you match its agility, darting away from each strike, and using your tail to deflect the creature's advances.
In a heart-stopping moment, the spiderling lunges at you once more, its fangs mere inches from your face. But you react with inhuman speed, your tail whipping around and impaling the creature through its thorax.
The spiderling's legs twitch one last time, and then it falls lifeless to the ground, your tail still embedded in its body. With a shudder, you withdraw your tail from your foe, victorious in the face of what was once a deep fear. You wonder what drives these giant spiders to hunt instead of simply waiting for prey to get caught in their webs like normal spiders.
</p>
<<case "female_bandit">>
<p>
You come face to face with a female bandit, her eyes as cold and unforgiving as the rocks beneath your feet. With a menacing grin, she draws a rusty sword and lunges towards you. You wonder why a female outlaw would be so brazen, when women are more likely to be prey for corruption. But you suppose some people have no choice.
You counter her initial strike with your claws, the razor-sharp edges of your claws clashing against the worn steel of her sword. her eyes go wide when she realizes you're not a mere human or easy prey who has lost her way. She recovers quickly, her weapon slicing through the air as she seeks an opening in your defenses. You use your wings to block her attack, the sword bouncing off with a CLANG!
As you evade and parry, you notice a pattern in her movements, an opportunity to exploit her overconfidence. With a swift motion, you use your tail to stab at her, catching her off guard and impaling her through the stomach. As she chokes on blood, you take a moment to wonder why when you used to be a human, why doesn't killing another bother you anymore? Is your mind becoming full demon too?
You turn and leave her corpse, sprawled upon the cold and unforgiving rocks.
</p>
<<default>>
<!-- Insert default or no match action -->
<</switch>>
<</if>>
/* Spidercave from here */
<<if $currentlocation is "spidercave">>
<p>
Illuminated by nothing more than the faint, eerie glow of the luminescent moss, the Arachna Queen's lair exuded an atmosphere of deadly beauty. Her power was palpable, and as a succubus, you couldn't help but feel an unsettling mixture of awe and fear. She was a being who could have effortlessly dispatched Melek Taus, and your current handicap of being unable to use your charm against her only added to the disadvantage you faced.
Your illusion dropped, you exposed your full Succubus form preparing to use all your tools at your disposal, and feigned an attack hoping to lure her into a false sense of security. She merely sneered at you with contempt and spoke
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>I knew I could sense the aura of a demon. Pathetic, just like the rest of your kind.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<p>
As the Arachna Queen swiped at you again with her scythe-like legs, you narrowly dodged the blow, tumbling out of the way with the agility you've honed through countless battles. As you regained your footing, you couldn't help but take in the full extent of the Arachna Queen's form. Her human half stared at you with an icy glare that seemed to pierce your very soul, her naked breasts bounced with every move she made making it difficult to peel your eyes away, and her spider legs swung at you with a deadly precision. Despite her half-human, half-spider form, she moved with the fluid grace of a dancer, captivating and terrifying all at once. Her tangerine hair flowed as if caught in an ethereal breeze, and her carapace gleamed like polished obsidian. Her eight legs, each tipped with wickedly sharp edges and covered in razor-sharp spines, glinted in the dim light showing you how close to death you are.
It was beginning to become increasingly evident that the Arachna Queen was several steps ahead of you. She seemed to anticipate your every move, blocking your attacks with ease and striking back with a ferocity that left you reeling. As you fought, you caught glimpses of her intelligence in the way she moved and strategized, adapting her tactics to counter your own. It was clear that you were outmatched and on the verge of losing this fight.
As the Arachna Queen moved in for the kill, you took an extremely risky move and dived into her attack, using every ounce of your remaining strength to launch yourself at her, grabbing hold of one of her legs. The element of surprise caught her off-guard, and you used that brief moment to pull her off balance. She hissed in fury, her eyes narrowing with malice.
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>Someday I will break free from this place and I will slay all of your kind!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<p>
With her momentarily vulnerable, you summoned the last of your power and channeled wind into your claws for a devastating strike at the base of her legs, severing several of them.
The Arachna Queen screamed in agony as she toppled to the ground, her once-graceful form now broken and writhing. Although she appears defenseless, you see her start using her human body to begin drawing something in the ground with her blood. It looked like she was drawing some sort of rune. Your instincts screamed at you, warning you not to let her finish this, but looking around you don't appear to have any options. You look around hopelessly as she finishes it and unleashes a torrent of magic you've never seen before. You sense nothing but void from the magic. It's almost as if the magic pulls everything in, even your very thoughts. The chamber is filled with an oppressive darkness that threatens to consume everything in its path.
You narrowly avoid a blade of magic as it soars past you, slicing the side of your abdomen open. But you don't have time to look and see how badly injured you are, as you can already see her legs beginning to heal.
To your surprise the void magic continues to grow in intensity, spiraling out of control as it ricochets throughout the chamber. It appears that even the Arachna Queen could not fully control the destructive power she had just unleashed in her rage. With a final anguished scream, she is caught in the path of her own devastating magic. Her body is sliced to ribbons and consumed by the void.
By all rights, there is no reason you should still be standing. If she's this powerful, how powerful are the remaining demon gods? Especially if she truly wasn't one, implied by the anger she showed when you mentioned that name.
Slowly you begin to pick yourself up<<if $azraelquest is 3>><<set $spidersilk to true>>, and begin collecting silk from her domain to end your difficult quest<</if>>, drawing on the last of your reserves to escape this dark place when you start hearing skittering. Like the feet of thousands of arachnids rapidly crawling in your direction. In a panic, you use all your might to escape in a hurry. <<set $alive.elyria to false>>
As you escape the cave, you spook a raven which screams at you and flies away in your rush. You keep going until it's clear that you've escaped.
</p>
<</if>>
/* future locations after here */
<</widget>>
<</nobr>>
<<nobr>>
<<widget "enemycharm">>
<<if $currentlocation is "mountains_day" or $currentlocation is "mountains_night">>
<<switch $e.name>>
<<case "bandit">>
<<set $sexcount += 1>>
The bandit approached you, mesmerized by your ethereal beauty. He couldn't look away from your pale and flawless skin, like moonlight reflecting off still waters. Your long $hair hair fell around your shoulders framing your perfect face.
"You've been blessed by the Gods themselves"
You chuckle knowing how ironically close he was.
Oh no, a bandit! What are you going to do to me?” she asked, slowly unbuttoning her dress, revealing tantalising glimpses of what lay beneath.
He could feel his pulse quickening as he took in every curve of her body. He reached out for her, grasped her waist firmly, and pulled her closer.
"I am going to take everything from you tonight. You will be a slave to my cock!"
"What could you possibly take from me? My virginity? I'm afraid you're a little late for that" You giggle
He pushed you to your knees and you felt yourself growing wetter by the second. His hands ran through your hair, caressing it tenderly before he thrust himself into you. Your lips parted to accept his invading shaft, and you began to move your head up and down, taking his length deep within your mouth. A low groan escaped from his chest as he leaned back, tiling his head back in pleasure.
As you worked your way down his shaft, y ou noticed his hands tighten in your hair. He pulled you away from his cock, causing you to let out a small cry of protest.
He turned you around and pressed your chest against the rock wall, your breasts rubbing against the rough rock wall. He kicked your legs apart, spreading them wide open and you felt something poking and prodding against your ass.
"cunt or ass?" he said aloud. Before you could answer, he'd already made his decision and shoved his cock into your ass.
You groaned loudly, feeling his thickness stretch you wide. He thrust deeper, hitting you hard and sending waves of pleasure coursing through your body. You clung to the rocks before you and struggled to remain grounded.
Finally after what seemed like forever, he stopped abruptly and pulled out. Confused, you turned around only to witness him spray his hot cum all over your stomach.
"What a waste" you said, as you used your fingers to wipe your stomach, then licked them clean.
"Sorry love, maybe next time" he laughed.
"What makes you think we're done?" You ask, as you use your charm against him in full force.
"Wha...what?" He asks? You grabbed him by the cock and knelt down, sucking the residual semen off of it and feeling it grow within your mouth.
Standing up you decided you don't want to lay on the dirt, and spread your pussy open for him "I want it here."
He lifted you up, your back against the rock wall and pressed his cock against your entrance. You let out a loud moan as you felt him slide inside of you, spreading you apart. He grunted and groaned as he pumped harder and harder, your back slapping against the stone wall. Your vaginal walls squeezed him tightly, milking his cock for every drop you could get. He thrust harder as he came inside you, and you moaned as you experienced his orgasm, your legs tightening around him not letting him escape. Your pussy continued sucking him in, causing him to come again, and again. Never letting him escape. Finally, unable to hold your weight anymore, he dropped to the floor like a sack of potatoes, and you landed gently on your feet. Your cunt dripping a few drops of semen on his face as he gasped for air. You chuckled and walked away, not wanting to be around to watch him breathe his last.
<<case "giant">>
Your heart pounds wildly against your chest as you stare up into the face of the towering giant, whose presence fills the room with its immense power and strength. His scent is overwhelming, filling your nostrils with the heady fragrance of damp soil and sweat. Your fingers tremble slightly as they brush lightly across his thick forearm, which feels like five of yours put together. You can almost feel the heat radiating off of his enormous frame, and you find yourself imagining what his equally large member would look like. He gazes down upon you hungrily, taking in every curve and contour of your body. You feel powerful as you realize how much control you have over such a powerful being. He looks at you like a puppy desperate for it's owners affection.
He removes what little garment he wears, and approaches you. You don't even need to get on your knees for this beast, simply standing at your full height you're already face to face with his cock. And what a cock! That thing is huge. Can your magic really protect you from injury from that thing!? You take in the scent of the giant's musk, and taste of your own anticipation. You reach up, trailing your fingers along his cock, feeling the texture as it hardens against your fingertips.
Flaccid this thing was already scary large, but at full mast this thing is half as tall as you are!
You open your mouth, not to take him inside, but to begin by licking him. Reveling in the taste of his surprisingly clean cock. His cock tasted of salt and musk, yet there was also something else lingering beneath the surface; a hint of sweetness that reminded you of fresh rainwater drizzling through the trees.
The giant grunts, signifying he wants more than the stroking of your hands and tongue. A bit worried, you decide to rely on your magic to protect you as you take that giant Giant's cock between your legs. The giant falls to his ass, sitting down and resting his back against a rock wall, nearly knocking you off balance with the tremor he caused.
As you try to get above his cock, you practically have to climb the thing. The giant doesn't seem the least bit concerned that it's cock is as long as your abdomen to neck and as wide as your entire stomach though, as he picks you up and jams you onto his cock with no warning.
It should have split you in two. You should have heard a terrifying tearing sound. Instead, you feel the giant's cock sliding inside you. Your walls stretch around him, accommodating his thickness without complaint. Instantly your body began to convulse with tremors as the mere sensation of being spread wide open for this thing caused your first explosive orgasm. So far only the tip was inside you, but you had no grip, no handle whatsoever and couldn't force yourself to move up and down for this beast.
The giant didn't seem to care, once again as it simply gripped your body and pushed you down all the way to the base of its cock. Your body willingly stretched for his member, taking on a somewhat phallic shape itself as you felt the tip of his cock in the back of your throat. Wait your throat!? Did this magic just rework your internal organs to be one long tube? Are you quite literally an onahole right now?
The giants hand gripped your entire body as he nearly pulled you off his cock, then jammed you right back down again. You were completely unable to moan as the cock in your throat blocked any airflow, but the sensations made you tremor nonetheless. Every time he jammed you back to the base of his cock was another explosive orgasm. Your eyes rolled back into your head as the pleasure was nearly overwhelming as he continued to stroke his cock using your body as a toy.
Finally, You felt his cock swelling as it filled you to capacity, yet somehow your body seemed to accommodate its expansion. Your mouth was flooded with a sweet taste as he thrust deeper into you, causing your throat to widen around him. You were overcome by pleasure as your throat contracted around the head of his cock, sending waves of ecstasy through your body and something delicious exploded out of your throat, and you ended up spraying delicious white semen all over yourself, showering yourself and his hand in his cum.
The beast kept using you to jack itself off all the while you were spraying its semen from your mouth, completely coating yourself and it's hand in savory white goo.
Satisfied, the giant slowly pulled you off it's cock, your eyes completely glazed over... Not that anyone could tell as you were literally covered in slimy white cum from head to toe. After being removed from the giants cock, you felt the ground tremor as it stomped away, probably more than satisfied. Your body slowly reformed back to normal, but you couldn't move. You were buried in a pool of semen and your limbs still felt like jello. You still couldn't breathe, but since it was cum that was ok, and you took your time slowly licking it, sloshing it around your mouth, and tasting the cum as your body slowly absorbed the semen around you.
<<case "bonecentipede">>
As the charmed bone centipede slithered closer, its many legs moved swiftly across the ground. Its skull-like head was massive, with razor sharp mandibles that could easily rip one apart if they were not already charmed. The rest of its body was a long, segmented mass of tough chitin which looked almost impossible to penetrate.
The muskiness of the bone centipede’s arousal filled the air, causing your own body to react in kind. As its head lowered, its empty eye sockets locked on yours. A shudder ran through you, either out of desire or apprehension. It drew nearer and opened its mouth wide, revealing a long and thick proboscis covered in tiny bumps designed for insemination. Your lips parted and allowed the proboscis to slip into your mouth, its texture coarse against your tongue.
<<if $genderstart is "male">>For a moment, you remembered your former life as a human, a man, and how you should have found this repulsive. Instead, however, your pussy dripped at the very idea of what was taking place.<</if>>
Your taste buds savored the musky arousal of the bone centipede combined with the metallic tang of its chitin. As it thrust down your throat, your succubus body responded to the flavors and textures of the creature, and you moaned around its proboscis. After one final thrust, it pulled away from your mouth and its tongue slid down toward your awaiting form. It wrapped its tongue around your body, drawing you close to its chitin-covered frame. As its proboscis entered your pussy, waves of pleasure surged throughout your body. The feeling was overpowering, and you felt yourself beginning to climax around the thick intruder.
The creature’s movements became increasingly frenzied as it felt your body responding to its touch. It thrusted harder and faster until finally, with a powerful thrust, it inseminated you with a large amount of semen. You could feel it filling you up, oozing out of your pussy as you writhed in blissful pleasure. Then it pulled its tongue out of your body.
As you watched the creature curl up and die, having already finished snacking on it's life. You rubbed your still wet pussy, collecting the dripping cum and bringing it to your mouth so you could savor it. Its taste was exquisite—sweet yet salty—and its texture was thick and creamy, yet had a pulpy feel to it.
<<case "rockgoblin">>
The rock goblin was mesmerized by your charm spell, causing him to drop his weapon and step closer to you. Your succubus magic flowed through his body like a warm embrace, weakening his defences. He began to pant heavily, overcome with desire. You could see the bulge in his loincloth grow larger with every passing moment, and you felt yourself becoming aroused. Without saying anything, you pressed your body against his, feeling his rough skin against your soft curves. His hands gripped your hips tightly, drawing you even closer to his erect member. You could feel the heat of his breath on your breasts as he leaned in to savor yourr succulent flesh.
You straddled the rock goblin, feeling the hardness of his cock pressing against your inner thigh. You couldn't wait to take him inside of you, to feel his hot semen fill you up.
As your bodies moved together in a primal dance, you cried out in pleasure as his lumpy cock slid into you. Your tight pussy grew even tighter as it attempted to milk his cock.
You relished the feeling of him inside of you, the smell of sex filling your nostrils. You moaned with pleasure as he filled you up with hot and sticky seed.
Once upon a time you would have found this creature repulsive, but now as long as your adversary has a cock, you couldn't imagine any future for yourself.
<<case "orc">>
As you run into the orc, you notice its bulging muscles and rough skin. It's bumpy and bulbous cock in perfect view as the creature wears no armor or clothing to hide itself. It seems to be pulsating with arousal, tempting you to claim it as your own. You're already dripping and your mouth is salivating as you stare at it, hardly even noticing the orc itself. It was as if the Orc didn't exist, just its oversized, bumpy for her pleasure, cock.
"Come here, handsome" You say to the orcs penis, hardly paying the orc itself any mind. The orc doesn't seem to notice, or care as it complies with your demands. Your charm magic already working it's way through the orcs defenses. As it comes closer you waste no time sinking to your knees and you wrap your arms around the orcs thighs, you can feel rippling muscles of its body under your touch as you press your lips to its lumpy green cock, the scent of the dry mountain air mingling with the musky odor of the orc.
The orc responds eagerly to your touch, its large, bumpy and bulbuous cock already hardening with arousal within your mouth. You waste no time, taking its growing shaft deep into your throat, enjoying the feeling of it getting longer and harder down your throat.
You begin to work your head up and down its shaft, the orc grunts and moans before it decides to take control.
The orc grabs you by your long $hair hair, pounding its cock down your throat. Thankfully what would have been unpleasant for other girls, for a succubus this only brought you joy as your pussy opened its floodgates below you. Your mouth constricts around the things cock as you experience an odd throat orgasm, the tightness causing the orc to start blowing it's load directly down your throat.
Although you got to enjoy the feeling of it's orgasm down your throat, you are a bit disappointed as you didn't get the opportunity to taste its flavor, since it came directly down your throat. But that's ok, you're not done yet. And the orc doesn't get a choice.
You push the orc onto it's back, feeling no resistance from the orc. His bumpy and bulbuous cock throbs eagerly as you stroke it, your hand trailing down it's length as you marvel at its size and girth and the fact that it somehow fit down your tiny throat. You straddle him, positioning yourself atop him as you lower yourself onto his throbbing member. You feel every inch of his cock, every bump as it slides deeper inside you, stretching you to your limits.
As you ride him, you can smell the musky scent of his arousal filling the air, mingling with the sweet scent of your own desire. You moan as you take him deeper, your succubi body craving the feeling of his hot cum inside you.
Finally you reach your peak, your body convulsing in pleasure as you climax around him. The orc takes the hint and slams into you, his huge cock filling you up again as he thrusts upwards into you with abandon.
As he reaches his own peak, and the end of his life, he blasts a torrent of hot, sticky cum all over your insides. You eagerly scoop it up before it leaks out, taking it into your mouth and reveling in the taste and texture of it as you slosh it around in your mouth. As you swallow every drop, you reach down to your cunt for a second helping, and you scoop it into your mouth, sloshing it and gargling it. Almost refusing to swallow it as you don't want to let go of this pleasure. Eventually you swallow every last drop, your body craving the nourishment of his life essence. Breathless and sated, you collapse on the dead orc, your body pulsing with satisfaction.
<<case "slime">>
The slimy creature was pulsating and oozing with a thick white substance which you recognized from your heightened succubus senses to be semen. The knowledge that the slime took the shape of whatever it had most recently consumed made you realize that these particular slimes must have been feasting on copious amounts of cum. Your eyes widened with anticipatory delight at the prospect of devouring the whole creature.
Your skin tingles as the slimy creature approaches, its body undulating with anticipation. The air around you fills with the intoxicating scent of its arousal, causing your mouth to water uncontrollably. Your hands move forward to caress its pulsating form, eliciting a shudder from the creature. Its slickness coats your palm, leaving behind a sticky residue which you eagerly lap up. Your mind drifts away on a wave of desire, imagining yourself devouring every bit of the creature's succulence you imagine the ecstasy of consuming the entire creature, feeling the warmth of its cum filling your belly. Closing your eyes, you surrender to the sensations, preparing yourself for the most decadent experience yet.
Your body has become possessed by instinct, and you find yourself unable to resist the creature's advances. It pulls you deeper into its gooey depths, enveloping you completely. Everywhere you turn, there is more of its thick, viscous fluid - covering your body like a second skin. You open your mouth wide, allowing the cum to flow freely down your throat, filling you with its warmth. You can feel it seeping into your pores, soaking into your very core. There is nothing left but to accept the creature's gift, becoming one with it forevermore.
As you continue to absorb the creature's essence, your body begins to respond in kind. Your lips part wider, inviting more of the cum into your mouth. Your muscles relax, allowing the cum to fill you up as your other holes open wide as the slime pushes itself inside. Your entire body feels alive with energy, as though it was designed specifically for this purpose. You revel in the feeling, letting out a cumbubble moan of pure bliss as you savor each delicious moment.
The slime dissolves into your body completely, and you can feel the effects of its essence. You lay there, basking in the afterglow of the absorption. You realize you completely lost control. It would be dangerous for you if one of these came into town. You consider flavors and consistency of semen from adversaries so far and this one might be your favorite yet.
<<case "female_bandit">>
The bandit woman had short cropped hair and wore a tattered leather skirt which revealed tantalizing glimpses of pale flesh. Her face was pretty despite its weathered look, and her body looked strong and lithe beneath the raggedy clothing. The sight of her made something stir inside you; you wanted her badly<<if $genderstart is "male">>, possibly a residual effect of having once been a male<</if>>. Unfortunately, your charm spell failed to have any effect on her. It seemed like nothing could sway her from her path. However, you were determined to try again. This time, you used your transformation spell. As soon as the words left your lips, her eyes widened and she began tearing at her clothes, oblivious to your presence.
Her full breasts begged to be suckled and her massive erection stood proudly between her legs, demanding attention. Her panic was evident in every movement she made, and her pleading gaze implored you to take pity on her. "What's happening? How did this happen?" she cried out desperately.
"I think I can help you with that" You replied
"You can make it go away? Please, I'll do anything!"
"well I didn't say anything about making it go away..."
You lick your lips. Normally you can't eat the life essence of a woman. But what if that woman suddenly had male genitalia?
The air was thick with anticipation as you knelt before her, taking in the musky scents of her aroused body. Your eyes traced the length of her erect member, its tip glistening with desire. As you ran your tongue along its length, she let out a soft moan of pleasure.
Your hands moved lower, exploring the wet folds of her sex. Her hips bucked against your touch, sending waves of delight through both of you. The taste of her arousal filled your mouth, making you even more eager to continue.
Without warning, she shot a stream of hot cum onto your face, leaving you drenched in her essence. You smiled at this sign of her passion, then began to lap away any remaining traces from your mouth.
With a mouth full of cum, you stand up and grab her chin to pull her in for a kiss. Sharing her own cum with her, you push it into her mouth with a kiss and swirl the semen between your tongues letting her taste herself.
Like a good girl, she swallows it all.
She pulled back slightly, giving you one last look before leaning forward and capturing your lips in a deep, passionate kiss. Together, you shared the flavors of each other's bodies, savoring every moment.
Then, without hesitation, she grabbed your waist and lifted you up, bringing your legs around her waist. She guided you towards a nearby rock, where she could take control of the situation.
Slowly, she slid her newly-formed penis inside of you, filling you completely. A low groan escaped your throat as you felt yourself being stretched beyond what you thought possible.
She started thrusting quickly, pushing deeper and harder until she reached her peak. Another powerful orgasm shook her entire body, causing her to cry out in joy.
You bent over the rock and presented your gaping and hungry cunt to her, no words were necessary as she was already overcome with desire. Her new cock pushed into you and she blew her load almost instantly. The warm cum coated your feminine folds as she began to thrust, unable to stop. You both moaned as she moved in and out, her large breasts pressing against your back as she filled you with more seed. Every time she experienced one of her climaxes, your pussy clmaped around her shaft and caused you a miniature orgasm.
A mix of musk and passion overwhelmed your senses, your body shook with delight as her juices flooded into you and you took them in.
You moved in unison, your groans and gasps melding together as you both neared ecstasy for the final time. The smells of sweat and sex permeated the air, and the sounds of bodies slapping reverberated throughtout the clearing. You felt yourself getting closer and closer to release and you knew the bandit was too, her breaths becoming more labored behind you.
Finally you reached your peak, your bodies convulsing in blissful harmony. Your body tightened around hers as she filled you up with her warm cum.
Having finished with her, her life now spent, you gathered your belongings and departed from the scene.
<<default>>
<!-- Insert default or no match action -->
<</switch>>
<</if>>
<</widget>>
<</nobr>><div class="conversation">
<p>
As you venture forth, the Winding Path reveals itself to be a serpentine trail of ancient, weathered stone that cuts through the very heart of the towering mountains. The sun is obscured by a veil of clouds, casting a gloomy pallor upon the gnarled trees and colossal boulders that surround you. Each step you take echoes with a resounding thud that reverberates through the valley. It's as though the earth itself is alive, and its heartbeat can be felt in every inch of the terrain.
The twisted, gnarled trees that populate the area are shrouded in a thick, sticky spiderweb. The strands glisten with moisture and seem to writhe and shift as if alive. Every twist and turn brings you deeper into the heart of the mountains, further away from the safety of the main trail.
</p>
<<if $energy gte 4>>
energy cost 4
[[Press onward, deeper into the Winding Path|Mpath1_deeper][$energy -= 4]]
[[Investigate the gnarled trees|Mpath1_trees][$energy -= 4]]
[[Climb one of the boulders to survey the surroundings|Mpath1_boulder][$energy -= 4]]
<<else>>
You don't have enough energy to continue exploring.
<</if>>
[[Turn back, returning to the safety of the main trail|mountains - daytime]]
</div><div class="conversation">
<p>
The path ahead is treacherous, a rocky and jagged trail prone to sudden rock-slides that could bury an unwary traveler in an instant. The sound of stone scraping against stone echoes through the narrow passage, like the laughter of the mountain gods at your mortal folly. The air is thin and sharp, making every breath a struggle, and the ground beneath your feet is unstable, shifting and sliding like a living thing.
Ahead, the path splits into two directions, each one equally perilous. The first path leads up, seemingly into the very heart of the mountains, where the jagged peaks reach for the sky like the teeth of some great beast. The second path leads down, into the depths of the earth, where the darkness is absolute and the only sound is the constant drip of water echoing through the caverns.
Will you venture upwards, towards the unknown heights, or will you brave the darkness below?
</p>
<<if $energy gte 4>>
energy cost 4
[[Take the path upwards, towards the jagged peaks|Mpath2_up][$energy -= 4]]
[[Take the path downwards, into the depths of the earth|Mpath2_down][$energy -= 4]]
<<else>>
The weight of making a basic decision overwhelms you, and you're too exhausted to decide!
<</if>>
[[Step back|mountains - daytime]]
</div>
<div class="conversation">
<p>
Ahead of you is a narrow path. You're not sure where it leads, or if it leads to a dead end.
You continue down the path, and the winding path ahead of you begins to narrow further. The trail is flanked by towering rock formations, their jagged edges casting ominous shadows on the ground below. The air grows still and heavy, but thankfully you have the energy of a succubus so you don't really struggle to breathe. The path becomes increasingly treacherous, the ground uneven and strewn with loose stones that threaten to trip you up with every step. The shadows shifting and dancing in the flickering light. Occasionally you have to crawl on all fours, squeezing through narrow passages that <<if $breasts is "small">>you find yourself grateful for your small breasts<<elseif $breasts is "medium">>you're barely able to squeeze through, scraping your breasts against the walls or floor at times as you try to navigate through this passage<<else>>you find yourself barely making it through unsure if you'll be able to continue much further having taken some cuts and scrapes mostly around your voluptuous chest and receiving 10 damage <<set $p.hp -= 10>><</if>>.
Finally you reach a fork an option to go left or right.
</p>
<<if $energy gte 4>>
energy cost 4
<<if $breasts isnot "large">>
[[Take the tight path to the left|Mpath3_left][$energy -= 4]]
<<else>>
Unfortunately with your current breast size, there's no way you'll fit through the left passage, leaving you with only two options.
<</if>>
[[The path on the right seems to get wider|Mpath3_right][$energy -= 4]]
<<else>>
The weight of making a basic decision overwhelms you, and you're too exhausted to decide!
<</if>>
[[Turn back|mountains - daytime]]
</div>
<div class="conversation">
<p>
You begin to make your way down the dimly lit path, the light struggling to pierce through the thick canopy of trees and rock walls. You're not sure if it's the time of day or the elevation, but light seems to take more of a mute tone, and the world around you is cloaked in a gray haze.
Your eyes gradually adjust to the darkness and you start to make out your surroundings more clearly. The jagged rocks on either side of you cast long shadows and you can hear the faint rustle of leaves in the wind. As you round a corner, you see a<<if $arabellastone is true>> broken statue, its lower half intact but the upper half destroyed by what appears to be a massive boulder that fell upon it. The shattered remains of the statue are strewn about. You can see that it was once a beautiful work of art, you can't find the head, but the lower half of the humans torso is perfectly sculpted, every detail of the form captured in flawless detail. The muscles ripple beneath the stone, the veins and tendons seemingly alive.<<else>> corpse. You step carefully to avoid stepping on the scattered remains, your marvel at the sculptures now gone, now that you know what they once were.<</if>>
</p>
<<if $alive.arabella is true and $arabellastone is true>>
<p>You're a little curious about the artist that was skilled enough to make such a creation, and what it's doing all the way out in these mountains? It doesn't seem to be as ancient as some of the ruins you've seen.</p>
<<if $energy gte 4>>
[[continue exploring this path|Mpath4_further][$energy -= 4]]
<<else>>
You're too tired to continue the path, maybe after you've had some rest.
<</if>>
<<elseif $eyes is true and $arabellastone is false>>
You can try returning to the writing.
[[return to the writing|arachnajournal4]]
<<else>>
Unfortunately there's no point in returning unless you want to try to read that writing again<<if $eyes is false>>, but first you'll need to find out how.<<else>><br>[[return to the writing|arachnajournal4]]<</if>>
<</if>>
[[Return|mountains - daytime]]
</div><div class="conversation">
<p>
As you cautiously navigate the steep path, the ground beneath your feet proves treacherous and unsteady. The loose rocks and slippery terrain test your balance, demanding your utmost concentration<<if $tail is true>>. Thankfully, your tail provides some measure of stability, reducing the risk of a fall, though it does not entirely eliminate the danger<<else>> and unfortunately you do take a few tumbles here and there<</if>>. You suddenly find yourself slipping, the ground giving way beneath your feet and begin to slide. By some stroke of luck or skill, you manage to catch yourself just in time, heart pounding in your chest. As you regain your composure, you realize that you've arrived at a fork in the road. The path before you splits into two distinct directions.
One path continues down the steep slope, its incline seemingly growing more treacherous than the one you've already taken. The shadows cast by the surrounding loose rocks cloak this route in an air of make it difficult to see stable footing.
The other path, by contrast, begins to level out, though it still descends at a gentle incline. Sunlight filters through the clouds above, casting a warm, inviting glow on the trail ahead. This route promises a more leisurely journey.
Faced with this decision, you weigh your options and consider the path that best aligns with your instincts and desires.
</p>
<<if $energy gte 4>>
[[steep path|Mpath5_steep][$energy -= 4]]
[[gentle path|Mpath5_gentle][$energy -= 4]]
<<else>>
You're too tired to continue the path, maybe after you've had some rest.
<</if>>
[[Return|mountains - daytime]]
</div><div class="conversation">
<p>
You come across a shadowy path, shrouded by towering, jagged rocks that cast an ominous atmosphere over the area. Their jagged edges appear like the twisted fingers of ancient beings, reaching for the heavens, and you feel a haunting chill down your spine. Thick webbing stretches between the rocks, as if in attempt to conceal the earth from the gaze of the sun. Despite every movie you'd ever seen in your past life warning against such an exploration, your curiosity urges you forward, and you continue down the path.
At last, you are greeted by the sight of a dark cave, its entrance draped with a foreboding curtain of thick, silvery web. The cave seems to stare back at you, a gaping maw of shadows and mysteries. Your instincts are screaming that going any further would be dangerous.
<<if $azraelquest is 3>>There's no doubt in your mind that the enchanted silk the tailor commissioned you to find is located here<</if>>
</p>
<<if $energy gte 4>>
[[enter the cave][$energy -= 4, $currentlocation to "spidercave"]]
<<else>>
Unfortunately you don't have the energy to go any further. Maybe return later?
<</if>>
[[return|mountains - daytime]]
</div><<nobr>>
<<set $undiscoveredPaths = []>>
<<for _i, _path range $mountainsDay.paths>>
<<if not _path>>
<<set $undiscoveredPaths.push(_i + 1)>>
<</if>>
<</for>>
<<set $outcome = random(1, 100)>>
<<if $outcome <= $mountainsDay.discoverChance and $undiscoveredPaths.length > 0>>
<<set _newPathIndex = random(0, $undiscoveredPaths.length - 1)>>
<<set _newPath = $undiscoveredPaths[_newPathIndex]>>
<<set $mountainsDay.paths[_newPath - 1] = true>>
<<switch _newPath>>
<<case 1>>You have discovered a new path: The Winding Path<br>
<<case 2>>You have discovered a new path: The Rocky Path<br>
<<case 3>>You have discovered a new path: The Straight but Dim Path<br>
<<case 4>>You have discovered a new path: The Narrow Path<br>
<<case 5>>You have discovered a new path: The Steep Path<br>
<<case 6>>You have discovered a new path: The Shadowy Path<br>
<</switch>>
<<elseif $outcome <= $mountainsDay.discoverChance + $mountainsDay.battleChance>>
<<goto "enemy attack">>
<<elseif $outcome <= $mountainsDay.discoverChance + $mountainsDay.battleChance + $mountainsDay.healingVialChance>>
You found a vial of cum!<br>
<<set $inv.cumvial to $inv.cumvial + 1>>
<<else>>
<<goto "random_event">>
<</if>>
[[return|mountains - daytime]]
<</nobr>>
<div class="conversation">
<<switch random(3)>>
<<case 1>>
<p>
<img class="passage-image" src="demongodsassets/img/backgrounds/wallpaper/crystalcaves.png">
You meander through the treacherous mountain range, exploring in the hopes of finding something new. You come across an inconspicuous crevice in the rock face. Curious, you decide its worth a closer look. You squeeze through the narrow opening, like a troll attempting to fit into a goblin's waistcoat.
You find yourself in an astonishing cavern that looked like a supernova of rock. As if an explosion had taken place in the center. The walls, floor, and ceiling are all adorned with shimmering, multicolored crystals that dance and sparkle as if the laws of physics had taken a holiday and left reality to the whims of a particularly mischevous imp.
The cavern's remarkable beauty is such that it would even make the most cynical of sorcerers momentarily forget their own egos. The crystals cast a kaleidoscope of colors across the cavern, and you swear you can hear the faintest of melodies playing in the air, like a choir of angels who had a bit too much to drink at the pub.
Naturally, you consider the possibility of making a small fortune by selling these alluring crystals back in Blackpool. You approach one of the larger, more resplendent specimens, and with the delicate touch of a bull in a china shop, attempt to break off a piece. But it won't budge. It's as if the crystal has been fused with the very essence of stubbornness. No matter how much you pull, twist, or poke at it, the crystal remains firmly attached to the cavern wall.
Disappointed, you admire the beauty of the cavern a bit longer before leaving it behind.
</p>
<<case 2>>
<p>
<img class="passage-image" src="demongodsassets/img/scenes/mountains/jollygiant.png">
You hear a coarse melody accompanied by a deep, resounding voice. Compelled by curiosity, you follow the sound and discover a massive man with braided blond hair, guzzling from what appears to be a barrel. Momentarily alarmed at the unexpected encounter, you recall the countless enemies you've faced, all shouting incomprehensible words and snarling at you. This one, however, is singing something that sounds faintly reminiscent of Earth's Nordic tunes, though you can't be entirely certain. It seems the goddess didn't grant you complete knowledge of every language in this world.
Preparing to retreat from the giant, you ready your claws ready to defend yourself or flee. The giant must have caught a glimpse of you, for it lets out a spine-chilling yell. Tensing for either flight or fight, you're caught off guard when the giant's roar melds seamlessly with its song. The giant simply grins at you, amusement dancing in its eyes.
With a gesture of its cup, the giant beckons you closer. Warily, you advance, watching as it rummages through an enormous bag, muttering words you can't decipher. At last, it yanks something from the bag, hoisting it triumphantly above its head with two fingers. Whatever it holds is obscured by the sun, and you could swear you hear a fanfare playing in the distance.
The giant dips the mysterious item into its barrel of potent-smelling alcohol, then offers you a dainty, elegant teacup. The contrast between the two of you is striking—a petite girl sitting beside a giant twice the size of the most robust men, both sipping from their respective cups. The giant converses and laughs in its unknown language, and you find yourself laughing along despite having no idea what was said. After only a few sips from the teacup, you begin to feel lightheaded and eventually lose consciousness. When you awaken, you're still somewhat disoriented. The giant and the teacup are both gone. Despite having consumed just a couple of sips, whatever the giant shared with you was incredibly potent. You appear to have made a friend.
You've recovered 10 energy!
<<set $energy += 10>>
<<if $energy gte $maxenergy>>
<<set $energy to $maxenergy>>
<</if>>
</p>
<<case 3>>
<p>
The monotonous landscape begins to wear on you. You long for a change of pace. The confining cliff walls keep you grounded and unable to stretch your wings very wide, so you resolve to climb them. With your claws providing additional grip, you begin scaling the tight passage, your tail offering support and balance. As you ascend, the slope becomes steeper, and the once-solid rock transitions to friable dirt and stones.
Moments before you conquer the summit, the earth crumbles beneath you. Gasping, you brace to deploy your wings and slow your fall, but a hand seizes your wrist just in time
</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Are you unharmed, m'lady?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/freydis.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>Yes, thank you.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/silentcity/freydis.png">
You gaze at him, captivated by his piercing green eyes, long blonde hair, and statuesque physique. At last, an Elf! This world is finally feeling like a fantasy world after all!
</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Is there an issue with my appearance, m'lady?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/freydis.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>You're an elf!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You cover your mouth with your hands after your accidental squeal of delight.
His lips curl into a smirk
</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Indeed, what's even more peculiar is you know of our race to begin with. It would have been strange if you had already met one of us, Miss Succubus.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/freydis.png">
</div>
</div>
<p>
Taken aback, you question whether your disguise has failed. It occurs to you that he might have seen through it when he clutched your clawed hand.
</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Your unique scent betrayed you.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/freydis.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I have a SMELL!?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
He emits a gentle laugh.
</p>
<div class='row left'>
<div class='left-msg'>Stranger<hr>Succubi possess a distinct fragrance. <br>Regrettably, I must take my leave, but I trust our paths will cross again. Beware, for these mountains harbor danger—even for a succubus.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/freydis.png">
</div>
</div>
<p>
He pivots and disappears into the distance, leaving you to admire his retreating form
</p>
<<default>>
Continuing your exploration, you come across a lone, ancient structure partially concealed by dense foliage and the passage of time. Intrigued by the anomaly in this desolate landscape, you decide to investigate further.
As you approach the ruin, you realize it must have once been a stately manor, its architectural style strikingly similar to that of Victorian London. The passage of time has left its mark on the structure, with portions of the walls and roof crumbling under the weight of the centuries. Vines and moss have claimed their territory, intertwining and creeping along the exterior, creating a tapestry of green against the weathered stones.
Curiosity piqued, you cautiously enter the manor, your footsteps echoing through the empty halls. The interior is a maze of chambers and passageways, each revealing remnants of the past. Elaborate moldings and intricate carvings on the walls and ceilings tell a story of opulence and grandeur. Faded, tattered tapestries cling to the walls, their once-vibrant colors now subdued.
Most rooms are collapsed, barring your entry. A couple rooms are accessible, and you venture deeper into the manor, you notice the air growing colder, the atmosphere heavy with a palpable sense of history. You find yourself in a room that must have been a private study or a personal sanctuary, its walls lined with more bookshelves and an ancient, dust-covered desk standing in one corner. The windows, now devoid of glass, offer a breathtaking view of the mountains that surround the manor.
Sadly the ancient ruin offers no tangible treasures or knowledge that might aid you, and you leave with nothing more than curiosity.
<</switch>>
[[return|mountains - daytime]]
</div>The following passages are intended for mountains daytime exploration<div class="conversation">
<p>
As you press forward on the winding path, the once-distant peaks now loom overhead, imposing figures that pierce the clouds. The rocks around you, shards of a shattered world, appear to have been crafted by an ancient battle between the elements themselves. Occasionally you pass by some ancient ruins, but time has not been kind as it's hard to tell they were ever man made. As the shadows thicken, swallowing the path before you, the dwindling light casts an eerie glow over the landscape.
A cool breeze carries the scent of damp rock of a nearby cavern. The farther you travel up this mountain, the more the vegetation struggles for survival, clawing for life in this forsaken land. Yet bursts of vibrant color clings to the crags and fissures of stone, wildflowers and tufts of grass bloom defiantly, their brilliance a silent rebellion against the desolate surroundings. Stunted trees grip the rocky earth with gnarled roots, their branches battered by relentless strong winds.
The shadows grow more voracious, and the light recedes further. Finally, you pause for a break and consider your next step.
</p>
<<if $energy gte 4>>
energy cost 4
[[Continue along the path, your determination unwavering|Mpath1_further][$energy -= 4]]
<</if>>
[[Turn back, fearing the unknown dangers that lurk ahead|mountains - daytime]]
</div><div class="conversation">
<p>
You venture deeper into the mountains, the path becomes treacherous, and the boulders grow larger and more imposing. The twisted, gnarled trees that surround you seem to reach out with their branches, as if beckoning you forward, deeper into their ancient realm.
The spiderwebs here are so thick that they obscure your vision, and you must use your hands to push them aside. The strands stick to your skin, leaving a clammy, unsettling feeling in their wake. But as you make your way through the webbed maze, something catches your eye in the distance, glimmering like a diamond in the rough.
</p>
<<if $energy gte 4>>
energy cost 4
[[continue to the diamond|Mpath1_trees2][$energy -= 4]]
<<else>>
You don't have enough energy to continue.
<</if>>
[[Step back, deciding not to disturb the trees' slumber|mountains_path1]]
</div><div class="conversation">
<p>
You ascend one of the immense outcropping of rocks that form a hill. The stone is rough under your feet, and you must grip the rough edges with your claws to keep from slipping. At the peak, you pause, taking in the magnificent view of the mountain range stretching out before you. Far below, you glimpse the faint outline of ancient buildings, crumbling with age.
</p>
<<if $p.lvl gte 12>>
<p>
As you turn to make your way back down the mountain, a deafening rumble catches your attention. A rockslide is barreling towards you, threatening to engulf you in its path. With lightning-fast reflexes, you jump onto a nearby ledge and cling on for dear life as the rocks crash and tumble past you. Once the danger has passed, you begin to follow the path, slippery rocks threatening to make you lose your balance if you didn't have a tail to help you stay upright.
Finally, the path opens up before you, revealing the same view that greeted you before.
What a waste of time!
</p>
[[Return|mountains_path1]]
<<else>>
<p>
As the rockslide approaches, you desperately try to jump out of the way, but it's too late. The massive boulders slam into you with a deafening roar, crushing you under their weight. Pain shoots through your body as you struggle to breathe, but it's no use. The weight of the rocks is too much, and you can feel your life slipping away.
As the rumbling finally subsides, all is silent except for the sound of crumbling rocks settling around you. Your vision fades to black, and your journey comes to an abrupt and tragic end. The winding path and stunning views you once marveled at are forever lost to you.
Perhaps you weren't yet strong enough...
</p>
[[Game Over]]
<</if>>
</div><div class="conversation">
<<if $eyes is true>>
<p>
As you push forward from the winding path, the shadows recede revealing a clearing surrounded by jagged cliff walls and a single cavern, too small for you to fit through.
As you venture further into the clearing, you notice intricate writing carved into the stone. The characters, though unfamiliar, appear to have been etched by a wide and sharp blade. Remarkably, the writing seems to have been carved in a single, unbroken stroke, implying that whoever created it must have possessed immense strength to execute it with such effortless grace.
You're curious why there would be writing out here, in the middle of nowhere. Should you read it?
</p>
<<if $energy gte 4>>
energy cost 4
[[read the writing|arachnajournal1][$energy -= 4]]
<<else>>
<p>
Unfortunately you're too exhausted to comprehend the text. Although you're capable of reading ancient text thanks to the goddess,the characters before you seem to dance and shift before your eyes, inducing a headache. You decide instead to turn back and come take another look when you've had some rest.
</p>
<</if>>
<<else>>
<p>
As you push forward from the winding path, the shadows recede revealing a clearing surrounded by jagged cliff walls and a single cavern, too small for you to fit through.
As you venture further into the clearing, you notice what seems to be writing carved into the stone. However, a strange, hazy filter obscures the text, making it impossible to discern the characters. The writing eludes your understanding, shrouded in a veil of some sort of enchantment. As you attempt to focus on the text and make it out, you find yourself arriving at nothing short of a migraine. The first you've had since becoming something inhuman.
The impenetrable text taunts you, but honestly its just some text on a rock wall. Whatever ancient civilization left this is long gone. There's honestly no real need to worry about this, unless you're curious enough.
</p>
<</if>>
[[Turn back|mountains - daytime]]
</div><div class="conversation">
<p>
You move closer, heart racing with excitement, wondering what treasure could be waiting for you. The thing glittering in the distance is just out of reach, obscured by the spiderwebs that blanket the trees. You can't quite make out what it is, but the way it shines in the sunlight is alluring, beckoning you ever closer.
As you approach the twisted trees, their ancient, gnarled forms bear the scars of untold centuries. The silence is eerie, broken only by the faint rustling of leaves in the wind. As you draw closer to the glittering object, you start to feel a bit nervous. The way the light reflects off of it seems strange, and the closer you get, the more you begin to suspect that what you saw was not a treasure.
Still, you've come this far you might as well continue, pushing you deeper into the heart of the spiderwebbed maze. You can't shake the feeling that something is watching you. The path ahead seems to twist and turn endlessly and you're worried you may be lost, the way forward obscured by the thick strands of spider silk.
The gnarled trees and ancient stones seem to close in around you, suffocating you with their weight and age. And all the while, the thing glittering in the distance grows larger, looming ever closer, until you can make out its true form - the massive body of a spider, its eyes fixed upon you with an unblinking gaze.
</p>
<<nobr>>
<<set $fullname to "Glittering Spiderling">>
<<set $e.name to "spiderling">>
<<set $e.type to ["magical_enemy", "charm_immune", "boss"]>>
<<setEnemyLevel>>
<<randomEnemyEncounter>>
<<set $e.weakness to "physical">>
<<set $e.eleresist to "none">>
<<set $portrait to 1>>
<</nobr>>
[[to battle!|battle]]
</div><div class="conversation">
<p>
You kneel before the stone, captivated by the remarkably elegant handwriting etched by a blade, and begin to read.
Journal Entry 1 (Date: Unspecified):
My name is Elyria, and I fear that one day, I may forget who I am. To preserve my memories, I carve these words into the mountain's stone, where I now dwell, and place a curse on the writing to ensure no one, especially that treacherous bastard, can read it. Once, I was a woman living in the Silent City, my life brimming with love, laughter, and dreams. I had a fiancé and served as a maid within the royal palace. But now, all that has been stolen from me.
<<set $arachnajournals[0] = true>>
Whoever she is, she's probably long dead and gone. But you can't help but be a little curious about her.
</p>
[[Turn back|mountains - daytime]]
</div><div class="conversation">
<p>
You set out up the path towards the jagged peaks, scrambling over loose rocks and navigating narrow ledges with care. For a time, you make good progress, the world around you growing smaller with every step. But then, without warning, the ground beneath your feet gives way, sending a cascade of rocks and debris tumbling down towards you.
<div class='row right'>
<div class='right-msg'>Help!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
</p>
<<if $p.lvl >= 12>>
<p>You try to scramble out of the way, but it's too late. The rockslide crashes down around you, battering you with stones and dust. When it finally subsides, you're left battered and bruised, but alive.</p>
<<set _max_damage to 60>>
<<set _damage to _max_damage - $p.pdef>>
<<set _damage = _damage < 0 ? 0 : _damage>> <!-- Ensure damage isn't negative -->
<p>You take <<print _damage>> damage from the rocks</p>
<<set $p.hp -= _damage>>
<<else>>
<p>As the rockslide approaches, you desperately try to jump out of the way, but it's too late. The massive boulders slam into you with a deafening roar, crushing you under their weight. Pain shoots through your body as you struggle to breathe, but it's no use. The weight of the rocks is too much, and you can feel your life slipping away.
Perhaps you should wait until you're a little stronger before exploring the mountains.</p>
<<set $p.hp = 0>>
<</if>>
<<if $p.hp gt 0>>
<p>You're battered and bruised, but alive. It looks like this path is not worth continuing on.</p>
[[Return|mountains_path2]]
<<else>>
<p>As the rumbling finally subsides, all is silent except for the sound of crumbling rocks settling around you. Your vision fades to black, and your journey comes to an abrupt and tragic end. The winding path and stunning views you once marveled at are forever lost to you.</p>
[[Game Over]]
<</if>>
</div><div class="conversation">
<p>
You make your way down the narrow, winding path that leads deep into the mountain. The air grows colder and the light fades until all that remains is darkness. But you have no trouble seeing in the pitch blackness thanks to your demonic eyes, which pierce through the darkness like a knife.
You soon arrive at a small cavern, barely large enough for you to stand in. The walls are slick with moisture and the air is thick with the musty scent of decay. As you look around, you notice what appears to be writing etched into the stone.
</p>
<<if $arachnajournals.slice(0,5).includes(true)>>
<p>
Just like the ones you found previously, these also appear to be carved with a blade, implying that whoever created it must have possessed immense strength to execute it with such effortless grace. Yet the letters are written beautifully.
</p>
<</if>>
<<if $eyes is true>>
<<if $energy gte 4>>
Costs 4 energy
[[read the writing|arachnajournal2][$energy -= 4]]
<<else>>
<p>
Unfortunately you're too exhausted to comprehend the text. Although you're capable of reading ancient text thanks to the goddess,the characters before you seem to dance and shift before your eyes, inducing a headache. You decide instead to turn back and come take another look when you've had some rest.
</p>
<</if>>
<<else>>
<p>
However, a strange, hazy filter obscures the text, making it impossible to discern the characters. The writing eludes your understanding, shrouded in a veil of some sort of enchantment. As you attempt to focus on the text and make it out, you find yourself arriving at nothing short of a migraine. The first you've had since becoming something inhuman.
The impenetrable text taunts you, but honestly its just some text on a rock wall. Whatever ancient civilization left this is long gone. There's honestly no real need to worry about this, unless you're curious enough.
</p>
<</if>>
[[Turn back, returning to the safety of the main trail|mountains - daytime]]
</div><div class="conversation">
<p>
You kneel before the stone, captivated by the remarkably elegant handwriting etched by a blade, and begin to read.
Journal Entry 2 (Date: Unspecified):
I mourn for my home, unknown creatures attacked our city. Destroying it. While fleeing, I was stopped by a monster calling himself the Demon God, in his wickedness, transformed me into this grotesque creature – half giant spider, half woman. I can still recall the excruciating pain that rippled through my body as my limbs twisted and stretched into their new form. As he cast his spell on me, the very essence of my humanity was stripped away, leaving me trapped in this monstrous prison and unable to refuse his commands. I had someone to love, someone who loved me in return. We shared a life filled with laughter and affection, but now, all I have is the memory of his face.
<<set $arachnajournals[1] = true>>
Whoever she is, she's probably long dead and gone. But you can't help but be a little curious about her.
</p>
[[Turn back|mountains - daytime]]
</div><div class="conversation">
<p>
You proceeded to the left, and continued to struggle and squeeze your way through until finally you emerge from the narrow passage. Your eyes are immediately drawn to the sight of an ancient, crumbling stone building that seems to defy the passage of time. The structure reminds you of victorian-like gothic architecture from your home-world. Delicate, curling metal twists around the cracked and eroded stone, vines and moss creeping through every crevice, their tendrils weaving a verdant tapestry over the walls.
The building seems as if it is captured in a moment of decay, it's silent beauty undisturbed for countless ages. The air is heavy with the scent of damp earth. The towering edifice looms over you, its windows like dark, empty eyes staring into a void.
Shafts of light pierce the canopy of rock above, casting eerie shadows that dance across the buildings face and provide enough light for you to view this beautiful scene. The entrance of the structure is partially crumbled, but has just enough room for you to squeeze inside. Would you like to see more?
</p>
<<if $energy gte 4>>
energy cost 4
[[squeeze inside|Mpath3_shrine][$energy -= 4]]
<<else>>
The weight of making a basic decision overwhelms you, and you're too exhausted to decide!
<</if>>
[[Turn back|mountains - daytime]]
</div>
<div class="conversation">
<p>
You opt for the right path, your patience worn thin from the endless squeezing and crawling through the narrow passageways. The rocky walls give way to a grand chamber, vast and open, with a dark, still lake at its center. You approach the water's edge, peering into its murky depths. There, in the distance, you catch a glimmer of scales, and the unmistakable shape of a massive fish or serpent. Its tail almost protrudes from the water, motionless and lifeless.
Curiosity gets the best of you, and you decide to investigate further. You pick up a nearby stone and toss it towards the tail, hoping for some reaction. Instead, the stone bounces off the water's surface, its clacking and sliding echoing through the chamber.
You step closer, reaching down to touch the water. To your surprise, it feels like glass, solid and unyielding. But what of the creature? Is it also trapped within this eerie stillness? Curious.
As you're pondering this curious sight, you notice a way out of the chamber. Looks like you're lucky, you won't have to squeeze through those cramped passages again. <<if $wings is true>>Thankfully, your wings make it easy to soar through the opening at the top of the chamber, sunlight streaming down and illuminating the glassy waters below.<<else>>You'll have to climb a bit to reach the opening, but it beats turning back and retracing your steps.<</if>>
But before you leave, your gaze falls upon a lone raven perched on the limb of a nearby dead tree. It regards you with a steady gaze, its black feathers a sharp contrast against the barren landscape. Of all the creatures you've encountered in this strange world, the raven is a welcome sight, one of the few things that remind you of home.
</p>
[[leave|mountains - daytime]]
</div>
<div class="conversation">
<p>
Stepping inside the ancient structure, you see it appears to be a church once upon a time. It's as if time itself has halted within these walls, though vegetation still grows through the crumbling and cracked walls. Your footsteps echo as you walk down the middle, disturbing ancient dust.
Your gaze falls upon a row of metal benches, their construction defying the craftsmanship of any era you have encountered in this world. Though to be fair, you haven't really seen much else outside of Blackpool. Remarkably, they show not a speck of rust, even as the dampness lingers in the air. Upon these benches you find the remains of corpses seated in eternal repose. What little is left of their forms has been reduced to brittle bones and faint outlines.
As you venture deeper in to the church, you notice symbols and old paintings which have defied the laws of time adorning the walls, their colors faded but still discernible. The deities depicted in these images bear no resemblance to the holy symbols you have seen on the robes of priests in Blackpool, not a hint of the Shining Sun, the symbol of their church you're used to seeing everywhere. You're surprised but this may suggest that the people of this long-lost civilization may have worshipped different gods, which raises questions about the seemingly singular church of this world you now inhabit.
Next to one of the paintings at the back of the room you see what appears to be a pedestal, though somewhat eroded with time. It cradles a book that appears miraculously preserved. The cover bears legible words, but as you open the tome you find all of the pages blank. Curious. You flip back to the cover of the tome where the words Eternal Cycle sit upon its leather bindings.
You remember one of the bards tales in the tavern boasting that the church has existed for thousands of years, and his words always made you assume that they were the only religion. Of course that's a silly thought, you have yet to explore much of this world. It's pretty naive of you to assume that there is only one religion, yet at least in Blackpool the church seems to have total control.
Well, this was all interesting, but unless you plan to join these dusty bones in their eternal prayer, you should return.
Just after you step outside from the ancient church and back under the canopy of stone, something catches your eye along one of the walls, more letters beautifully carved into the stone wall and completely untouched by time. They flicker in and out of your vision and it's hard to focus on them.
</p>
<<if $energy gte 4>>
<<if $eyes is true>>
[[focus your eyes|arachnajournal3]]
<<else>>
Unfortunately trying to focus on the writing is just giving you a headache.
<</if>>
<<else>>
Unfortunately you're too tired to worry about reading some ancient writing. You should instead be focusing on finding the Demon of these mountains and ending him. Let's go get some rest.
<</if>>
[[Turn back|mountains - daytime]]
</div>
<div class="conversation">
<p>
You kneel before the stone, captivated by the remarkably elegant handwriting etched by a blade, and begin to read.
Journal Entry 3 (Date: Unspecified):
I can hardly bear the pain and torment that has plagued me over these long centuries. The agonizing transformation of my body, the relentless commands from the Demon God, and the horror of what I have become. As I continue to serve as a pet guard dog for the Demon God, I find myself forgetting the details of my past. It hasn't been very long, but I can no longer recall the face of my love. The faces of other loved ones are fading, and I struggle to remember the warmth of their embrace. I feel as though I am losing myself, piece by piece, with each passing day.
<<set $arachnajournals[2] = true>>
Who is this woman who was capable of carving in stone and why is her writing preserved so perfectly? She speaks of the Demon God, but when did they appear in this world?
</p>
[[Turn back|mountains - daytime]]
</div><div class="conversation">
<p>
As you continue down the path, your eyes gradually adjust to the dimly lit surroundings, and you begin to notice more and more statues. Some of them are ancient, their features faded with time, while others seem more recent. They're all damaged in various ways, with cracks and missing limbs. You can't help but wonder who created them, and why they're scattered throughout these mountains.
Despite the damage, the beauty of the sculptures still shines through. They capture a perfect moment frozen in time. Some seem fearful, caught in mid-action, while others seem to be in peaceful repose. You approach one of the more recent-looking statues, the bust of a man with his mouth agape and his arm appears as if he was trying to cover his eyes, though its broken off at the forearm. The lower half of the body is sadly in pieces. Whoever created these statues took great care to make such amazing works of art, yet took no care of them afterwards. And they don't seem to be intentionally vandalized either.
As you study another lifelike statue, a gust of wind blows and you hear another piece of statue crumble, making you jump before you realize what it is.
You're beginning to feel unnerved like something about this place feels off.
</p>
<<if $energy gte 4>>
[[continue exploring this path|Mpath4_further2][$energy -= 4]]
<<else>>
You're too tired to continue the path, maybe after you've had some rest.
<</if>>
[[Return|mountains_path4]]
</div><div class="conversation">
<p>
As you make your way deeper into the winding path, you begin to notice more and more creatures around you. Some of them are familiar to you, like the bandits and orcs that you've encountered on your journeys, while others are much larger and more imposing, like the giant that lies in a heap on the ground, its massive form crushed beneath its own weight. Large spiderlings that skitter across the ground, their many eyes dull, pale and made of stone. And then there are the goblins, frozen in time as stone statues.
All of them seem damaged in some way, like they fell over unexpectedly, or were crushed beneath some massive weight. Some of the creatures are missing limbs or have gaping wounds, while others appear to be completely unscathed, as if they simply fell asleep and never woke up.
As you walk among the strange and twisted landscape of fantasy creatures, you can't help but feel a sense of unease. It's as if the world around you is in a constant state of flux and forgotten by time.
</p>
<<if $energy gte 4>>
[[continue exploring this path|Mpath4_further3][$energy -= 4]]
<<else>>
You're too tired to continue the path, maybe after you've had some rest.
<</if>>
[[Return|mountains_path4]]
</div><div class="conversation">
<p>
You emerge into an open clearing, less packed with statues as the path leading to here had been. You do notice a few more broken statues, scattered haphazardly across the grassy expanse. Some of them are orcs, missing limbs or with massive cracks running through their stone bodies. There's a giant, its head crumbled into pieces and more spiderlings, in pieces as if they were frozen mid-leap. Even the goblins weren't spared, with one missing its head and another missing an arm.
In the midst of all this destruction, you notice a lone statue that's still perfectly intact. It's crouching on the ground next to what appears to be some sort of ancient pillar, its features worn and faded with time, and it appears to be covered in webbing as if the webbing was meant to protect the statue.
Above the statue's head, you see writing carved into the pillar. Intrigued, you begin to head towards it when you hear a noise. Turning around you see a creature you've never seen before. It reminded you of an Earth Chicken, but it had the tail of a snake slowly swishing back and forth. It has the form of a bird, but with a snake's tail and razor-sharp talons. Its eyes lock onto yours and you suddenly recall Rhelyla's warning, <<if $eyes is false>>but you are too late. You feel your body slowly turning to stone, your muscles locking up and your skin growing hard and cold.
Thinking fast, you scramble over to the intact statue and cling to it and its soft cushioned webbing, hoping you won't topple over or get damaged like the statues around you. You can hear the basilisks hissing getting louder, but you can't move anymore. You can only hope that someone finds you before it's too late<<else>>you feel an intense pressure building in your head. But then something strange happens - you feel a strain in your eyes and something cool washes over you. You see lines of magic dancing from the basilisk and washing over you, but they have no effect.
The basilisk cocks its head to one side, perplexed that its gaze had no effect on you. You remain frozen, unsure of what to do next.<</if>>
</p>
<<if $eyes is true>>
[[do something, anything|Mpath4_basilisk]]
<<else>>
[[time passes|Mpath4_basiliskstone]]
<</if>>
</div><div class="conversation">
<p>
As the basilisk advances, you feel your heart racing and your breathing quickening. Panic sets in as you realize you are defenseless against its strange magic. You frantically look around for a way to defend yourself, but find nothing but the statues around you, all of them damaged in some way. The basilisk's gaze pierces through you, and you feel a strange sensation in your eyes. Suddenly, you see lines of magic begin to dance from the basilisk and wash over you, but as they do, you feel a cool sensation and a strain in your eyes.
The basilisk cocks its head to one side, almost as if it was confused. But then your gaze falls upon the massive stone statue of an orc standing nearby. Without hesitation, you rush over and shove it with all your strength. The statue topples over with a deafening crash, crushing the basilisk beneath it.
As the dust settles and the echo of the crash fades, you hear a strange sound emanating from the surrounding area. The statues in the vicinity begin to take flesh again, though it's a grotesque sight as they're all damaged in some way or another. But your attention is drawn to the one covered in webs, and you see flesh appearing on what looks like a beautiful young woman wearing a dress made of deep green satin with intricate lace details on the sleeves and hemline. A white ruffled collar adorns the neckline, and a matching bow cinches her waist. Her long, chestnut curls cascade down her back, and as she stands she carries herself with an air of grace and poise. The woman looks confused and disoriented, and frantically brushing spider-webs out of her hair.
</p>
<div class='row left'>
<div class='left-msg'>Maiden<hr> Pray tell, what manner of magic hath thou wrought to free me from my frozen state?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/fnpc.png">
</div>
</div>
<p>Her voice has an interesting archaic tone, and while you understand her easily, you can tell she speaks a language from a bygone era. What's more, as you form your response, you realize her language is flowing from you easily.</p>
<div class='row right'>
<div class='right-msg'>You appear to have been turned to stone, for what appears to be a very long time.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>You point at the dead basilisk crushed under the weight of mutiliated orc flesh</p>
<div class='row left'>
<div class='left-msg'>Maiden<hr> Then it appears thou art my savior. I am most grateful for thy aid.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/fnpc.png">
</div>
</div>
<p>she smiles at you momentarily when her face rapidly changes to panic</p>
<div class='row left'>
<div class='left-msg'>Maiden <hr> Oh! I must away with haste. My family awaits and my mother is most ill. Who knows how long I've been gone, but I need to get these herbs back home with utmost haste. My name is Lady Arabella, and I am in your debt for saving me. If you find yourself in the Silent City, seek me out at the House of the Falling Leaves. I will repay your generosity in kind. Farewell for now, kind stranger.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/fnpc.png">
</div>
</div>
<p>Before you even have a chance to suggest that much time has likely passed, she has already run off into the distance.
You turn your attention to the intricate text written on the pillar.</p>
[[read|arachnajournal4]]
</div>
<<set $arabellastone to false>><div class="conversation">
<p>
You awaken to find yourself no longer a statue, but unsure of how much time has passed. You glance down at the statue you had clutched onto, but to your dismay, you see talon marks etched deeply into its surface and its head partially crushed.
As you glance up, you see the basilisk in the distance, oblivious to the fact that you have regained your form. You seize the opportunity and begin to move towards the statue of an orc nearby. You push with all your might, using all of your strength to topple the statue over and crush the basilisk.
After the dust settles, you hear a strange sound coming from the surrounding area. You glance over to the statues nearby and see that they are beginning to take the forms of mutilated and quickly dying flesh.
Taking care to avert your eyes from the dead woman, you take a deep breath and turn your attention to the writing on the nearby pillar. However, as you try to read the ancient script, a pounding headache forces you to give up for now.
</p>
<<set $alive.arabella to false>>
[[return|mountains - daytime]]
</div>
<<set $arabellastone to false>><div class="conversation">
<p>
You kneel before the stone, captivated by the remarkably elegant handwriting etched by a blade, and begin to read.
Journal Entry 4 (Date: Unspecified):
I admit that my mind is slowly being consumed by darkness. I am haunted by the sight of this stone girl. Every day, I come to this place and I find myself drawn to her statue. I recognize her face, and I know that she was once a friend of mine. But try as I might, I cannot recall her name.
Still, I take care to protect her stone body, because she is one of the only memories I can continue to gaze upon.
But the darkness is closing in around me. I feel as though I am losing myself, piece by piece. For every man I capture, I breed with him, I lay eggs, and then I or my children devour him. The once vibrant memories of my human life are slipping away, replaced by the atrocities I commit in this form. The guilt and remorse I once felt for these acts are beginning to vanish, and one day I will no longer be myself.
<<set $arachnajournals[3] = true>>
So this person knew the girl who had been turned into a statue here. She's definitely ancient then. Perhaps thousands of years old. You find it unlikely she's still alive, yet its doubtful her webbing would have survived so long.
<<if $alive.arabella is false>>What a shame then that you weren't able to save her last remaining friend...<</if>>
</p>
[[Turn back|mountains - daytime]]
</div><div class="conversation">
<p>
You choose the steeper path, uncertain of your destination in this unfamiliar mountainous terrain. The loose rocks and slippery ground challenge your every step, and your footing becomes increasingly unstable. <<if $tail is true>>Your tail swishes and adjusts to maintain your balance as best it can, but even a cat would struggle on this treacherous slope. Despite your efforts to stay upright, walking sideways and angling your feet, the rocks beneath you give way and you start to tumble. Desperate to slow your fall, you reach for anything within grasp but fail to find purchase. Suddenly, you find yourself suspended in midair, the distant landscape below rapidly approaching<<else>>You misstep and start to slide rapidly downhill, tumbling headlong into the void. Your head strikes a rock, and your vision swims with stars. A jagged stone or tree root slices your arm open, and then you feel nothing. As your vision begins to clear, your eyes focus on the sky, and your ears focus on the roaring wind in your ears. You twist and twirl around in midair until you can see the ground below you. A distant landscape like a painting, rapidly growing larger.<</if>>
<<if $wings is true>>You take a moment, and attempt to take a breath as best you can. You use the distance between you and the landscape below you to orient yourself and unfurl your wings, slowing your descent and catching air. Once you're back in control you fly back to where you fell and catch your breath, your heart beating from the adrenaline of the near death experience. If you were still human, this would have been your end. After collecting yourself you look around. It looks like this was a waste of time afterall, as it appears to have been a dead end. Except for one thing. You notice more writing on the wall, intricately written. But when you try to make out the words, it's like they're dancing around preventing you from seeing the letters<<else>>You frantically try to consider if there is anything you can do. The ground is still far away, but its rapidly approaching. There's nothing you can grasp in midair, no tree branch sticking out the side of a cliff wall that you could grab onto like the movies. All you can do is watch the floor approach faster and faster, until a sickening crack echoes through the air, and darkness envelops you too quickly before the pain rushes in.<</if>>
</p>
<<if $energy gte 4 and $wings is true and $eyes is true>>
[[Check out the writing|arachnajournal5][$energy -= 4]]
<<elseif $wings is false>>
[[Game Over]]
<<elseif $eyes is false>>
You strain your eyes at the writing, but a hazy filter blurs the text, and focusing on it only intensifies your headache.
<<else>>
You're too tired to continue the path; maybe after you've had some rest.
<</if>>
[[Return|mountains_path5]]
</div>
<div class="conversation">
<p>
Wary of the steeper path, you make your way down the more gentle looking one. The terrain gradually becomes less treacherous, the rocks becoming less jagged and the incline less steep. You find yourself surrounded by a plethora of vibrant wildflowers, and the air is filled with the sweet aroma of fresh pine, there's no sign of corruption which implies you may be going the wrong way but that won't stop you from exploring. Above you, the sky is a vibrant blue, and the sun is shining down upon you, warming your skin. It's a welcome change from the dreary, misty air you were enveloped in not too long ago.
As you continue on, the scenery around you only becomes more stunning. Around you, you catch glimpses of patches of snow and icy rocks scattered around the mountain slopes. As you continue down the path, you feel a chill in the air, and your breaths come out in visible puffs. But the sun is still shining down, casting an inviting glow on the trail ahead. The path eventually leads you to an open clearing, with a shimmering lake at its center. The water is a deep blue-green, reflecting the sunlight in sparkling patterns. Above the water, you see tiny, iridescent pixies playing, their tiny laughter echoing across the surface. The entire scene is so serene and beautiful without a hint of corruption, it feels almost surreal.
You decide to take a brief rest, sitting down near the edge of the lake. You let out a deep breath, feeling your muscles relax as you take in the view. As you take in the scene around you, you realize this world really can be beautiful when you remove the layer of corruption and the human structures. You notice a small opening nearby nearly obscured by a bit of snow piled around it, leading to what appears to be a cave.
<<if not $wardrobe.outfit.includes("tentacle")>>
You've come this far, and there's no other way other than turning back. Might be worth taking a look if curiosity gets the better of you.
<<else>>
Unfortunately the only thing that remains this direction are the tentacles, and they've already given you a gift.
<</if>>
</p>
<<if $energy gte 4>>
<<if not $wardrobe.outfit.includes("tentacle")>>
[[continue exploring this path|Mpath5_cave][$energy -= 4]]
<</if>>
<<else>>
You're too tired to continue the path, maybe after you've had some rest.
<</if>>
[[Return|mountains_path5]]
</div><div class="conversation">
<p>
You kneel down and focus your demonic eyes to read the text, piercing through the hazy illusion.
Journal Entry 5 (Date: Unspecified):
The Silent City, the place I once called home, now feels like a distant memory. I remember its streets filled with laughter and life, but those memories are fading, becoming mere echoes in my mind. I can't help but fear that everyone I knew - family, friends, my love - might be gone, I can't even tell how many years have passed. Has it been 5 years? Has it been a century? Each passing day blends into the last. The thought of never seeing them again haunts me, and I can feel my connection to the place that shaped me slipping away. I know I must act quickly to exact my revenge. The demon god, Pseudinferis, only reveals himself under the cover of night, so I must meticulously strategize my vengeance within the shadows. A direct assault on him seems impossible, yet I must find a way. Mayhaps eliminating him could break this curse that binds me, or at the very least, liberate me from being his unwilling servant.
<<set $arachnajournals[4] = true>>
As you read the journal entry, a mix of curiosity and concern washes over you. The writer has mentioned the Silent City multiple times making you more curious. Is it these ancient ruins scattered across the mountain ranges you keep seeing? You can't help but empathize with her pain and desire for revenge. The revelation that Pseudinferis only emerges at night could prove to be crucial information. It might be worth seeking more of these writings, as they might provide further insights into Pseudinferis and his potential weaknesses.
</p>
[[Turn back|mountains_path5]]
</div><div class="conversation">
<p>
You take a moment to catch your breath before continuing on your journey, your heart pounding with anticipation as you approach the cave. It doesn't seem large, but its dark and foreboding mouth seems to swallow up all the light around it, beckoning you to explore its depths.
<<if $eyes is true>>Thankfully, with your eyes, there is no risk of going blind on the other side, so you are not too worried about getting lost.<<else>>It looks like it'll be pretty dark on the other side, but your curiosity still gets the best of you<</if>>.
As you move deeper into the cave, the darkness grows thicker,<<if $eyes is true>> but you're unperturbed as your eyes illuminate the way with their enhanced vision,<</if>> and the sound of something slithery and slimy fills your ears, echoing through the cavernous space like a haunting melody.
The noise is both disturbing and intriguing, and you feel your heart racing with a mixture of fear and excitement. You move slowly and cautiously, your eyes scanning the darkness for any signs of movement or danger. And then, as you turn a corner, you see a faint glimmer of light up ahead, and the sound suddenly grows louder, almost deafening in its intensity. It's a sound like soft, squelching of wet flesh slapping against each other, accompanied by a subtle sloshing sound and it sends shivers down your spine.
You <<if $eyes is true>>look around with keen eyes, but the source of the sound eludes you, seemingly obscured by the surrounding stones and you see nothing but a forest of stone<<else>>look around but of course you see nothing. Since you're having difficulty seeing, maybe you should turn back? You don't know what you're getting yourself into after all<</if>>.
</p>
<<if $energy gte 4>>
[[step forward|Mpath5_cave2][$energy -= 4]]
<<else>>
You're too tired to continue the path, maybe after you've had some rest.
<</if>>
[[Return|mountains_path5]]
</div><div class="conversation">
<p>
You fall upon a bed of what can only be wriggling and slimy tentacles, feeling them caress your skin as they begin to explore every inch of your body, their slimy texture leaving a trail of arousal in their wake.
</p>
<div class='row right'>
<div class='right-msg'>Oh... Been a while since I've seen any tentacles.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The tentacles surround you, moving in slow and deliberate motions, as if they are savoring every moment of your submission. The tentacles begin sliding into every orifice they can find. You moan as they enter your mouth, nearly choking on premature semen sprayed down your throat.
You feel one tentacle slide into your vagina, stretching you open as it thrusts inside you. You moan loudly as you feel the tentacle slide in and out of you, filling you completely. A third tentacle stretches your ass, making you gasp with pleasure around one in your mouth. You are being taken by the tentacles in every way possible, and you feel completely consumed by pleasure. You hear the wet noises of the tentacles sliding in and out of your holes, and you feel the pressure building inside you.
The tentacles show no sign of stopping, and they continue to pleasure you, taking you to new heights of pleasure. They spew excessive amounts of cum deep inside you, filling you completely. You can feel their warm release inside you, and it only intensifies your pleasure. You are lost in a sea of pleasure, your mind consumed by the sensations. You feel like you are drowning in pleasure, and you never want it to end.
You're lost in a world of pleasure as the tentacles continue to fuck you, depositing their hot, sticky cum deep inside of you. Your succubus pussy is aching with desire, craving even more seed to satisfy your insatiable hunger.
As your orgasm subsides, you feel a new sensation building inside of you. You can feel a large tentacle probing at your entrance, slowly sliding inside of you. The feeling of being stretched is overwhelming, and you can't help but moan as it pushes deeper and deeper inside of you.
You can feel the eggs being deposited inside of you, one after the other, filling you up with their slimy, wriggling bodies. The sensation is intense, as you're stretched wider and wider, filled to the brim with their pulsing, squirming limbs.
Your succubus body trembles with pleasure as the tentacle continues to deposit more and more eggs inside of you, stretching you to your limits. You can feel their wriggling bodies squirming inside of you, pulsing with life and energy.
As the tentacle finishes depositing the eggs, you're left lying there, completely filled with their slimy, wriggling bodies. You can't help but moan with pleasure as you feel them pulsing and squirming inside of you, a constant reminder of the pleasure you've just experienced.
You writhe and squirm as the tentacles continue to wrap around you, their phallic tips probing and exploring your succulent flesh. You know that you're completely at their mercy, your succubus body aching with desire for more of their hot, sticky seed.
You scream with pleasure as the tentacles fuck you again and again, depositing more and more cum deep inside of you. Your succubus pussy is stretched to its limit, but you don't care. All you want is more, more of their pulsing, wriggling seed to fill you up and satisfy your insatiable hunger. Finally, after they explode in every orifice one last time, you feel them retreat, and you curl up as much as your pregnant belly will allow, and fall asleep, content with the sensations of warm cum dripping out of you.
You open your eyes to find yourself lying on the ground, your body sore and sticky with cum. The memory of the tentacles violating every inch of your body floods back to you, causing you to shiver with a mix of pleasure<<if $p.acceptance lt 75>> and shame<</if>>.
You try to stand up, but your legs feel weak and wobbly. You're barely able to keep yourself upright as you stagger forward, leaving a trail of semen behind you. You feel a strange sensation deep within your womb. You feel a strange sensation in your lower abdomen. You look down and see a small, white bump emerging from your nether regions.
Suddenly, the bump grows larger and a sharp pain shoots through your body. You cry out in agony as a plain, white and bumpy egg is pushed out of your pussy. You can't believe what you're seeing, and yet more eggs are quickly following.
Your mind races as you try to comprehend what is happening to you. You remember the tentacles that fucked you relentlessly and deposited their eggs inside of you. Could these eggs be theirs? You can't help but feel a twinge of excitement at the thought of carrying their offspring followed by disappointment that nothing will hatch from them. What kind of creatures would have spawned if they did?
The sensation is not painful but extremely pleasurable, and you can feel your pussy getting wetter with each passing moment. Your moans of ecstasy echo through the air as you continue to lay egg after egg. Your pussy clenches as you feel another egg starting to move down through your cervix. You writhe in pleasure as it stretches you wide open, and you can't help but moan as you feel it's bumps against your vaginal whiles as it slips out of you.
Your body is filled with an insatiable desire, and you find yourself craving more. You moan and whimper as your pussy continues to spasm, squeezing out the eggs and wringing out your pleasure.
You're lost in the throes of ecstasy, your mind consumed by the pleasure that the egg-laying is bringing you. Your body is alive with sensation, and every inch of your skin is covered in a sheen of sweat and semen, mixed with your own juices. You revel in the feeling of being stretched and filled, unable to get enough of the sensations that are coursing through your body.
As the last egg slips out of you, you're left panting and gasping, your body trembling with the aftershocks of orgasm. The ground around you is littered with the bumpy, white eggs.
Finally you notice something else. It looks like a small pile of wriggling worms at first glance, but you look closer and see its actually more like Lingerie. Lingerie with small wrigging tentacles all over it. The top part has a suction for your nipples, and the lower part is more like a living thong. The interior with small wriggling tentacles eager to never stop pleasing you. It seems as though besides the eggs the tentacles left you with one last gift. You reach down and grab it, <<if $patronversion is true>>tempted to try it on.<<else>>but are repelled by some unknown force. A disembodied voice echoes in your head that you must be a <a href="https://www.patreon.com/daemonden" target="_blank">patron</a> to receive this gift.<</if>>
<<if $patronversion is true>>
<details class="spell-button">
<summary style="color:#5e5ee8;">Preview the outfit</summary>
<img class="passage-image" @src="'demongodsassets/you/clothes/'+$hair+'/tentacle.png'" >
</details>
<<set $wardrobe.outfit.push("tentacle")>>
<</if>>
Receive 200 cum, 100 lust.
<!-- come back and edit this scene to add images, and add a check to see if the player is repeating the scene or already have the outfit -->
</p>
[[Return|mountains_path5]]
</div><div class="conversation">
<<if $alive.elyria is true and $arachnally is false>>
<p>
You enter the cave. As you venture further, the air around you grows colder, and the oppressive weight of darkness presses in on you. A faint luminescence emanates from the moss and lichen clinging to the rocks, casting an eerie glow as the light from outside completely recedes. <<if $eyes is true>>Your eyes provide you with improved sight, allowing you to see just fine in the dark. If you had to rely on the light from the moss, you can only imagine how difficult it would be to continue and keep an eye out for predators.<<else>>The moss and lichen give just enough light to make out the large passages, but not enough to prepare you for an ambush. You could get surrounded and never even notice.<</if>> You continuously run into webs, pulling them out of your hair, heart pounding in your chest.
The sensation of the sticky, fragile threads clinging to your skin sends shivers down your spine as you frequently pat your body down, hoping to knock off any stray spider that dared crawl on you. You can't help but imagine tiny, sinister spiders crawling all over you, their multiple eyes reflecting the weak light, and their venomous fangs inches away from your flesh. Your breath comes in short, shallow gasps, and you feel a rising sense of panic threatening to overwhelm you.
<<if $azraelquest is 3>>Unfortunately you do need to retrieve that silk that was requested of you, so you can't back down now after coming this far<<else>>Is there really a need to be here right now? The only sound is your own footsteps as you walk deeper into the cave, and a gentle breeze blowing through the webs. The silence and darkness seem to envelop you, leaving you feeling isolated and vulnerable. Your imagination runs wild with the terrors that could be lurking within the shadows, and you can't shake the feeling that you're being watched.<</if>>
</p>
<<if $energy gte 4>>
[[go deeper|enter the cave2][$energy -= 4]]
<<else>>
Unfortunately you don't have the energy to go any further. Maybe return later?
<</if>>
<<else>>
You glance at the entrance to the cave. There's no reason to return there for now.
<</if>>
[[return|mountains - daytime][$currentlocation to "mountains_day"]]
</div><div class="conversation">
<p>
<<set _firstFiveRead = $arachnajournals.slice(0, 5).every(function (el) { return el })>>
<img class="passage-image" src="demongodsassets/people/fullbody/enemies/arachna/1.png" >
Traversing the shadowy and foreboding cavern, the air grows colder, instilling a sense of dread that threatens to suffocate you. Suddenly, you find yourself trapped, with no place to hide or escape. <<if $eyes isnot true>>A sinister hissing invades your ears, and you whirl around, only to find a monstrous creature, black as midnight, has descended silently behind you. The being is reminiscent of a pale, naked woman, with large breasts laid bare; save for her massive spider-like lower half.<<else>> You see something move out of the corner of your eye and whirl around to see a monstrous creature, black as midnight descending silently. The being is reminiscent of a pale naked woman with perfect naked breasts, with long black hair. The only thing ruining this image is the fact that her lower half below her abdomen is a massive spider.<</if>>
Her spindly legs, long and sharp as blades, tap ominously against the cavern floor. The naked human torso, hauntingly beautiful despite its grotesque merging with the spider body, rises from the top of the monstrous form.
<<if $eyes is false>>How she managed to approach without your heightened senses detecting her presence remains a mystery.<<else>>If it weren't for your heightened vision, you would have entirely missed her.<</if>>
Her gaze pierces your soul with an icy intensity, and your heart pounds loudly in the now-echoing cavern. Her voice, a chilling blend of malice and anguish and a hint of archaic, sends shivers down your spine.
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>So, little human, thou darest venture into my domain? It has been a millennium since I last laid eyes upon a woman. Before I consume thee, tell me, what brings you
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<<if _firstFiveRead>>
<div class='row right'>
<div class='right-msg'>Are you... Elyria? I've discovered messages you left behind carved into the mountain.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Momentarily taken aback by your words, the Arachna Queen studies you, weighing her options with a calculating gaze.
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>That name... it does seem familiar. I shall permit thee to live a moment longer. Explain thyself. But first, tell me your purpose here.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<<if $azraelquest is 3>>
<div class='row right'>
<div class='right-msg'>I was sent on a quest for enchanted spider silk, and I hoped to borrow just a small amount... As for your name, I found it etched into the runes scattered throughout this mountain range.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The Arachna Queen sneers, her cold heart evident in her expression.
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>You dare to come here and steal from me?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I did.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<<else>>
<div class='row right'>
<div class='right-msg'>I am exploring in search of clues about a Demon God that lives on these mountains. I believe his name is Pseudinferis? ... As for your name, I found it etched into the runes scattered throughout this mountain range.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The expression that crosses the queens face is unmistakeably one of hatred.
</p>
<</if>>
<div class='row right'>
<div class='right-msg'>But after reading the messages you've left behind, I think we share a goal. What if I promise to help you slay Pseudinferis?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
A flicker of hope flashes in her eyes, swiftly replaced by her customary steely gaze. She contemplates your proposition, her voice softening only slightly.
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>If I can't even get close to him, how wouldst a mere human aid me in such a task?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
[[I am no mere human]]
[[I may be human, but...]]
[[I am blessed by the goddess herself]]
<<else>>
<div class='row right'>
<div class='right-msg'>I am exploring in search of clues about a Demon God that lives on these mountains. Are you the Demon God Pseudinferis?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The expression that crosses the queens face is unmistakeably one of hatred.
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>Thou darest to speak that name in my presence!? Thou seeks death!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>No, no! I seek his death!
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>Whether thou speakest lies matters not to me. Thy life shall be ended by I, 'tis all the same.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<p>
There's no hope of talking your way out of this. It seems you'll have to fight.
</p>
[[Arachna Queen Attacks]]
<</if>>
</div><div class="conversation">
<div class='row right'>
<div class='right-msg'>I am no mere human.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You drop your illusion and your human form melts to reveal unmistakeable demonic features.
Despite your honesty, the Arachna Queen simply bares her fangs
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>What makes thee think I trust the words of a Demon any more than I would a human? Ye are all the same.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<p>
You're a little surprised by her words. Isn't she basically a demon herself?
</p>
<div class='row right'>
<div class='right-msg'>You don't need to trust me. I will kill him myself without your help.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She stares at you a moment longer, as if she's trying to see the lies written on your face.
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>Curious... I find myself unable to refuse this opportunity, though thy form does evoke unsettling memories.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I can't be certain how to prove my intentions, but our goals are aligned. It is my duty to slay all the demon gods, and Pseudinferis is my next target.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>Why wouldst thou slay thine own kind?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>They are not my kind. He's corrupting the land, and the creatures just like the rest of his ilk. Not all demon kind is doing this, though I admit I have only actually met one other demon.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The Arachna Queen studies you for a moment longer, then etches something into the stone with one of her razor-sharp spider legs—a rune you don't recognize and are unable to decipher.
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>Place thy hand upon this. If thou doth, <<if $azraelquest is 3>>I will give thee what thee seekest<<else>>I will let thee live<</if>>.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
[[place hand on rune]]
<<set $arachnarel to 5>> <!-- gain 5 rel for being honest about your race with Arachna -->
</div><div class="conversation">
<div class='row right'>
<div class='right-msg'>I may be a human, but I am no ordinary one.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You maintain your human appearance, but your otherworldly presence is still detectable.
Despite your words, the Arachna Queen narrows her eyes and bares her fangs.
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>What makes thee think I trust the words of a human? Especially one who bears an otherworldly aura? Ye are all the same.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<p>
You're a little surprised by her words. What gave you away?
</p>
<div class='row right'>
<div class='right-msg'>You don't need to trust me. I will kill him myself without your help.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She stares at you a moment longer, as if she's trying to see the lies written on your face.
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>Curious... I find myself unable to refuse this opportunity, though thy presence does evoke unsettling suspicions.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I can't be certain how to prove my intentions, but our goals are aligned. It is my duty to slay all the demon gods, and Pseudinferis is my next target.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>I know not of Demon Gods, but Pseudinferis is powerful. Why wouldst thou slay beings of such power? What dost thou gain from this?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>They're corrupting the land and the creatures, just like the rest of their ilk. Not all beings with power are doing this, though I admit I have never met one.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The Arachna Queen studies you for a moment longer, then etches something into the stone with one of her razor-sharp spider legs—a rune you don't recognize and are unable to decipher.
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>Place thy hand upon this. If thou doth, <<if $azraelquest is 3>>I will give thee what thee seekest<<else>>I will let thee live<</if>>.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
[[place hand on rune]]
<<set $arachnarel to -5>> <!-- lose 5 rel for lying about your race with Arachna -->
</div><div class="conversation">
<div class='row right'>
<div class='right-msg'>Well, I have some blessings that will help.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
You aren't exactly lying, but you're not telling the full truth either. She's supposed to be an evil spider queen, it's probably best you don't lay all your cards out on the table all at once.
The Arachna Queen narrows her eyes in suspicion.
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>What makes thee think I trust thy words?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I am blessed by the goddess herself. You don't need to trust me. I will kill him myself without your help.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
She stares at you a moment longer, as if she's trying to see the lies written on your face.
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>I know not of human Gods. However... I find myself unable to refuse this opportunity, though thy aura does evoke discomfort.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I can't be certain how to prove my intentions, but our goals are aligned. It is my duty to slay all the demon gods, and Pseudinferis is my next target.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>Why wouldst thou attempt to slay something so powerful?
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>I told you, I'm blessed by the Goddess herself. These gifts do not come for free.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
The Arachna Queen studies you for a moment longer, then etches something into the stone with one of her razor-sharp spider legs—a rune you don't recognize and are unable to decipher.
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>Place thy hand upon this. If thou doth, <<if $azraelquest is 3>>I will give thee what thee seekest<<else>>I will let thee live<</if>>.
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
[[place hand on rune]]
<!-- no arachnarel gain or loss because you didn't exactly lie but you didn't tell the truth either-->
</div>
<div class="conversation">
<p>
Almost faster than your eyes can follow, the Arachna Queen raises a scythe like spider leg and swipes, attempting to cleave you in two in beautiful form.
You manage to narrowly avoid it, but it's more luck than anything else.
The dim light of the moss is the only thing illuminating the cave, casting eerie shadows across the walls as you face off against the Arachna Queen. Her cold unfeeling eyes glow in the faint lighting, gleaming with an unearthly hatred that sends a shiver down your spine.
She moves with a grace and speed that defy her monstrous size, raising one of her scythe-like legs to strike at you with deadly precision in an attempt to cleave you in two with what can only be described as beautiful form, like a woman swinging a scythe. You manage to dodge just in time, but the force of the blow sends you stumbling back several steps.
You ready your claws for attack and debate your options. It doesn't look like you'll be able to charm your way out of this one.
She seems extremely powerful, this will be risky but its too late to run.
</p>
[[battle]]
</div>
<<nobr>>
<<set $e.type to ["charm_immune", "magical_enemy", "boss"]>>
<<set $e.name to "arachna">>
<<set $e.lvl to 19>>
<<randomEnemyEncounter>>
<<set $fullname to "Arachne Queen">>
<<set $e.weakness to "none">>
<<set $e.eleresist to "fire">>
<<set $portrait to 1>>
<</nobr>><div class="conversation">
<p>
Hesitantly, you place your hand on the rune. A searing sensation ensues, leaving a mark on the back of your hand.
</p>
<div class='row right'>
<div class='right-msg'>What have you done!?
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>Should you betray me, you will be forcibly summoned back to my lair, where you will become a feast for my offspring. However, if you challenge him, I will be summoned to you, and through that mark you will give me the power to defy him.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<p>
You shudder at the thought, grateful that this time, your goals genuinely coincide with hers. <<if $azraelquest is 3>><<set $spidersilk to true>>You watch as she produces strands of spider silk from her own body, weaving them together and placing them into your hands. And continus speaking.<</if>>
For the first time you see a look of sadness upon her face.
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>Without borrowing a bit of your power through that mark, I would be incapable of letting you leave and be forced to kill you.
I am, after all, nothing more than a slave. A guard dog.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<p>
She looks at you, her face not showing a shadow of its previous despair
</p>
<div class='row left'>
<div class='left-msg'>Arachna Queen<hr>Now, be on your way. I can only restrain my children out of their fear of me while you remain in my presence. Despite their human fathers, they are still spiders driven by instinct alone. Tarry too long, and they will pursue you relentlessly.
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/arachna/1.png">
</div>
</div>
<p>With haste, you depart from the cavern.</p>
<<set $arachnally to true>>
[[Return|mountains - daytime][$currentlocation to "mountains_day"]]
</div><div class="conversation">
<<nobr>>
<<set _anyTrue = false>>
Main objectives:<br><br>
I...<br>
<<if $race isnot "Human" and $race isnot "grill">>
<<if $p.acceptance lt 10>>
✧I hate this! I can't stand being like this! I need to find a way back home and get my body back! You can't expect me to live off cum!<br>
<<elseif $p.acceptance lt 20>>
<<if $genderstart is "male">>
✧Gross! I can't believe how much cum I've already swallowed... Give me back my dick!<br>
<<else>>
✧Gross! I can't believe I have to live off cum for the rest of my life.<br>
<</if>>
<<elseif $p.acceptance lt 30>>
<<if $genderstart is "male">>
✧I hate how good cum tastes! I want to go home, I miss my friends...<br>
<<else>>
✧At least cum tastes pretty good now. I still miss my friends...<br>
<</if>>
<<elseif $p.acceptance lt 40>>
<<if $genderstart is "male">>
✧What's with this body? Human or Monster I completely lose control around cocks...<br>
<<else>>
✧It's weird how I am completely unable to resist cock, but at least it tastes good.<br>
<</if>>
<<elseif $p.acceptance lt 50>>
✧I've given up on turning back. I can't even remember what a burger tastes like...<br>
<<elseif $p.acceptance lt 60>>
✧I'm getting used to this life, and I'm starting to appreciate some aspects of it. Going home doesn't seem as urgent.<br>
<<elseif $p.acceptance lt 70>>
✧I can't deny that I feel more at home in my new body than my old one.<br>
<<elseif $p.acceptance lt 80>>
✧Bring more cocks!<br>
<<elseif $p.acceptance lt 90>>
✧I've embraced my new body and its needs, in fact I love it<br>
<<else>>
✧This is my home, Earth is boring<<if $race is "Succubus">> and I love being a Succubus<</if>>!<br>
<</if>>
<<else>>
✧I don't really have any objectives right now.<br>
<</if>>
<<if $boss1alive is false and $azraelmet is 0>>
✧ I kinda wanna check out that bookstore in the market. Let's go!<br>
<</if>>
<<if $race is "Human">>
✧I'm hanging out with my friends!<br>
<<elseif $boss1alive is true>>
✧I need to learn about the first Demon God, then slay them. Maybe I should try exploring one of the areas outside of town<br>
<<if $taverndecision is false>>
✧I guess I need to head to the Tavern and find a body guard...<br>
<<elseif $taverndecision is true and $guardpermission is false>>
<<if $p.acceptance lt 25>>
✧I can't think of any other way to get them to let me leave other than using my charm magic... There's gotta be another way!<br>
<<else>>
✧Guess I'll go charm the guard then...<br>
<</if>>
<<else>>
✧Time to explore the forest!<br>
<</if>>
<</if>>
<<if $boss1alive is false and $rhelylanote is false>>
✧Melek Taus is dead. Lets go home and get some rest and figure out what to do next.<br>
<<elseif $charmtraining is 0 and $boss1alive is false>>
✧Rhelyla left me a note asking to see me. I should go see her.<br>
<<elseif $charmtraining is 1>>
<<set _daysleft to ($traintimer - $days)>>
✧I should continue my training with Rhelyla, she's expecting me back in _daysleft days<br>
<<elseif $charmtraining is 2>>
<<if $arachnally is false and $alive.elyria is true>>
✧Looks like your next destination is the mountains. Lets go during the day.<br>
<<elseif $arachnally is true>>
✧The Arachna Queen and I have a temporary truce, until we slay Pseudinferis. I'll need to return to the mountains at night. (end of Version 0.4)<br>
<<elseif $alive.elyria is false and $arachnajournals[4]>>
✧I slayed the Arachna Queen, but she wasn't the God of the mountains. I'll need to learn something more...(end of Version 0.4)<br>
<<elseif $alive.elyria is false>>
✧I slayed the Arachna Queen but found no trace of the God of the mountains. I'll need to continue searching. (end of Version 0.4)<br>
<</if>>
<</if>>
<br>
Optional objective:<br><br>
<<if $boss1alive is false and $eyes is false>>
✧ Something happened when I defeated Melek Taus. I should try to look into this power<br>
<</if>>
<<if $azraelquest is 2 and $spidersilk is false>>
✧I need to visit the tailor and see if he can make this dress for me.<br>
<<elseif $spidersilk is true and not $wardrobe.outfit.includes("partydress")>>
✧I got the Spider Silk! Now I just need to bring it to the tailor.<br>
<</if>>
<<if $rhelylarevenge is true>>
✧I want to help Rhelyla with her revenge. There's gotta be someone I can ask for more information on this guy. (NOTE: this is the current end of this quest)<br>
<</if>>
<<if $charmtraining gt 0 and $charmtraining lt 4>>
<<set _daysleft to ($traintimer - $days)>>
✧You're currently being trained to use Charm by Rhelyla. You have _daysleft until your next session.<br>
<</if>>
<<if $azraelmet gte 1>>
<<if $azraelmet lte 3>>
<<set _daysleftaz to ($bookstoretimer - $days)>>
<<if $azraelquest isnot "rejected">>
<<if _daysleftaz gt 0>>
✧You have an appointment with Azrael in _daysleftaz days.<br>
<<else>>
✧You have missed your appointment with Azrael.<br>
<</if>>
<</if>>
<</if>>
<</if>>
I have had sex with $sexcount (human) men.<br>
<<if $boss1alive is false>>
<details>
<summary style="color:#8282f3;">Melek's Book</summary>
It looks like someone tried writing in this tiny book with huge hands. The lettering is ancient text, yet erratic. The symbols have jagged edges. If Melek was the one writing, then it makes sense, his hands are twice the size of this book. You read the first one.
<br><br>
<div class="conversation" style="max-width: 50%;">
<p>
Oh Seraphina, dear,<br>
With hair like moonlit snow,<br>
I saw you through your window,<br>
And my heart began to... uh...<br>
</p>
</div>
<br>
Ha, so even that evil monster could fall in love with someone! Is she human?
<br><br>
<div class="conversation" style="max-width: 50%;">
<p>
Seraphina, in the night,<br>
Your gaze so full of sorrow,<br>
I wish I could carry you away,<br>
To a brighter tomorrow,<br>
Your dark dress, like the shadows,<br>
Contrasts your radiant... um...<br>
</p>
</div>
<br>
Hm, well at least he tried. Even if it's bad, it's kind of sweet.
<br><br>
<div class="conversation" style="max-width: 50%;">
<p>
Seraphina, my love, so pure,<br>
Your white hair like a beacon,<br>
I, a Horned Nocturne, so unsure,<br>
But my love for you keeps me seekin'.<br>
In the night, you stood apart,<br>
With a sadness in your eyes,<br>
Yet from that moment, my heart,<br>
Couldn't help but be entwined.<br>
Though my flames fearsome, it's true,<br>
And you, nobility, so fair,<br>
I promise to care and protect,<br>
For you, my sweet Seraphina, I'll dare.<br>
</p>
</div>
<br>
If you meet this Seraphina, should you give this to her? If she's human she'd probably be horrified that one of the Demon Gods wanted her. What if she's one of those demon women that was hanging all over him? Well, it's not really a concern right now.
</details>
<</if>>
<<for _i to 0; _i < $arachnajournals.length; _i++>>
<<if $arachnajournals[_i]>>
<<set _anyTrue = true>>
<<break>>
<</if>>
<</for>>
<<if _anyTrue>>
<details>
<summary style="color:#8282f3;">Journals scrawled on the mountains</summary><br><br>
<<if $arachnajournals[0]>>
Journal Entry 1 (Date: Unspecified):<br><br>
My name is Elyria, and I fear that one day, I may forget who I am. To preserve my memories, I carve these words into the mountain's stone, where I now dwell, and place a curse on the writing to ensure no one, especially that treacherous bastard, can read it. Once, I was a woman living in the Silent City, my life brimming with love, laughter, and dreams. I had a fiancé and served as a guard within the royal palace. But now, all that has been stolen from me.<br><br>
<</if>>
<<if $arachnajournals[1]>>
Journal Entry 2 (Date: Unspecified):<br><br>
I mourn for my home, unknown creatures attacked our city. Destroying it. While fleeing, I was stopped by a monster calling himself the Demon God, in his wickedness, transformed me into this grotesque creature – half giant spider, half woman. I can still recall the excruciating pain that rippled through my body as my limbs twisted and stretched into their new form. As he cast his spell on me, the very essence of my humanity was stripped away, leaving me trapped in this monstrous prison and unable to refuse his commands. I had someone to love, someone who loved me in return. We shared a life filled with laughter and affection, but now, all I have is the memory of his face.<br><br>
<</if>>
<<if $arachnajournals[2]>>
Journal Entry 3 (Date: Unspecified):<br><br>
I can hardly bear the pain and torment that has plagued me over these long centuries. The agonizing transformation of my body, the relentless commands from the Demon God, and the horror of what I have become. As I continue to serve as a pet guard dog for the Demon God, I find myself forgetting the details of my past. It hasn't been very long, but I can no longer recall the face of my love. The faces of other loved ones are fading, and I struggle to remember the warmth of their embrace. I feel as though I am losing myself, piece by piece, with each passing day.<br><br>
<</if>>
<<if $arachnajournals[3]>>
Journal Entry 4 (Date: Unspecified):<br><br>
I admit that my mind is slowly being consumed by darkness. I am haunted by the sight of this stone girl. Every day, I come to this place and I find myself drawn to her statue. I recognize her face, and I know that she was once a friend of mine. But try as I might, I cannot recall her name.<br><br>
Still, I take care to protect her stone body, because she is one of the only memories I can continue to gaze upon.<br><br>
But the darkness is closing in around me. I feel as though I am losing myself, piece by piece. For every man I capture, I breed with him, I lay eggs, and then I or my children devour him. The once vibrant memories of my human life are slipping away, replaced by the atrocities I commit in this form. The guilt and remorse I once felt for these acts are beginning to vanish, and one day I will no longer be myself.<br><br>
<</if>>
<<if $arachnajournals[4]>>
Journal Entry 5 (Date: Unspecified):<br><br>
The Silent City, the place I once called home, now feels like a distant memory. I remember its streets filled with laughter and life, but those memories are fading, becoming mere echoes in my mind. I can't help but fear that everyone I knew - family, friends, my love - might be gone, I can't even tell how many years have passed. Has it been 5 years? Has it been a century? Each passing day blends into the last. The thought of never seeing them again haunts me, and I can feel my connection to the place that shaped me slipping away. I know I must act quickly to exact my revenge. The demon god, Pseudinferis, only reveals himself under the cover of night, so I must meticulously strategize my vengeance within the shadows. A direct assault on him seems impossible, yet I must find a way. Mayhaps eliminating him could break this curse that binds me, or at the very least, liberate me from being his unwilling servant.<br><br>
<</if>>
<<if $arachnajournals[5]>>
Journal Entry 6 (Date: Unspecified):<br><br>
There was a time when I had someone to love, someone who loved me in return. But now, I couldn't remember his face or the sound of his voice. Yet I heard shouting nearby. It's his voice! He's alive! He came searching for me. I don't know how he survived after all these years, or what possessed him to search for me here. I hid, worried about how he'd react if he saw me in this form. But I really want to see him.<br><br>
<</if>>
<<if $arachnajournals[6]>>
Journal Entry 7 (Date: Unspecified):<br><br>
I met my love face to face, finally after all this time. He seemed unaffected by the change in my body, and promised to find a way to undo my curse. His affection drove my lust wild, and we mated. <br>
At some point I lost control over myself, and when I came to I realized that I had devoured the one person who still believed in me, the one person who could have reminded me of my humanity. The taste of his flesh, the sound of his screams, and the tears that streamed down his face will forever haunt me. Now, my eggs lay in his half eaten corpse, waiting to hatch. I am tormented by the agony of that moment, and I cannot shake the feeling of despair that consumes me.<br><br>
<</if>>
<<if $arachnajournals[7]>>
Journal Entry 8 (Date: Unspecified):<br><br>
My memories are fading, and I can no longer recall my own name. The faces of loved ones have vanished, and the Silent City is but a whisper in the wind. The only thing that remains constant in my existence is the burning hatred I hold for the Demon God, the one who cursed me to this life.<br><br>
<</if>>
<<if $arachnajournals[8]>>
Journal Entry 9 (Date: Unspecified):<br><br>
It seems that I have changed, and I hardly recognize myself anymore. The person I once was has been replaced by something unrecognizable – a being driven by anger and hatred. The lives I take no longer fill me with the remorse I once felt; instead, my heart has grown cold, and my conscience has grown quiet.<br><br>
As I commit these unspeakable acts, I realize that I've become a stranger to myself. My once vibrant emotions have dulled, leaving behind only the burning desire for revenge against the Demon God. It is this singular purpose that fuels me now, a guiding light in the darkness that has consumed me.<br><br>
I remember a time when I felt love, happiness, and sorrow, but those feelings have vanished, slipping away like sand through my fingers. All that remains is a hollow emptiness, a void that can only be filled by exacting vengeance upon the one who cursed me to this life. Each atrocity I commit brings me closer to my goal, and I find myself pushing forward without hesitation or regret.<br><br>
I am the Arachna Queen, and Pseudinferis will die by my venom.<br><br>
<</if>>
</details>
<</if>>
<</nobr>>
<<back>>
</div><<nobr>>
<<widget 'acceptance'>>
<<if $race is "Succubus">>
<<if $p.acceptance lt 10>>
I hate this! I can't stand being like this! I need to find a way back home and get my body back! You can't expect me to live off cum!<br>
<<elseif $p.acceptance lt 20>>
<<if $genderstart is "male">>
Gross! I can't believe how much cum I've already swallowed... Give me back my dick!<br>
<<else>>
Gross! I can't believe I have to live off cum for the rest of my life.<br>
<</if>>
<<elseif $p.acceptance lt 30>>
<<if $genderstart is "male">>
I hate how good cum tastes! I want to go home, I miss my friends...<br>
<<else>>
At least cum tastes pretty good now. I still miss my friends...<br>
<</if>>
<<elseif $p.acceptance lt 40>>
<<if $genderstart is "male">>
What's with this body? Human or Monster I completely lose control around cocks...<br>
<<else>>
It's weird how I am completely unable to resist cock, but at least it tastes good.<br>
<</if>>
<<elseif $p.acceptance lt 50>>
I've given up on turning back. I can't even remember what a burger tastes like...<br>
<<elseif $p.acceptance lt 60>>
I'm getting used to this life, and I'm starting to appreciate some aspects of it. Going home doesn't seem as urgent.<br>
<<elseif $p.acceptance lt 70>>
I can't deny that I feel more at home in my new body than my old one.<br>
<<elseif $p.acceptance lt 80>>
Bring more cocks!<br>
<<elseif $p.acceptance lt 90>>
I've embraced my new body and its needs, in fact I love it<br>
<<else>>
This is my home, Earth is boring<<if $race is "Succubus">> and I love being a Succubus<</if>>!<br>
<</if>>
<</if>>
<</widget>>
<</nobr>> <div class="conversation">
<<nobr>>
<<gameConfig>> <!--- set enemy type and classification -->
<<setEnemyLevel>> <!--- automatic enemy stats -->
<<randomEnemyEncounter>>
<<customizeEnemy>> <!--- for any enemy-specific stat changes -->
<</nobr>>
<img class="passage-image" @src="'demongodsassets/people/fullbody/enemies/'+$e.name+'/'+$portrait+'.png'" >
<<if $e.name is "alraune" and $alrauneally is true>>
You've encountered an alraune! Spend time with her?
[[spend time|sex with alraune]]
<<else>>
You are facing a level $e.lvl $fullname
[[fight|battle]]
[[run|escape]]
<</if>>
<<set $randomeventcomplete to true>>
</div><div class="conversation">
<<if $boss1attempt == 1>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/enemies/boss1/1.png" >
You stride back into the extravagant cavern, the ostentatious decor just as you remember from your last encounter. Melek Taus, the self-proclaimed demon god, lounges upon his throne, his demonic consorts attending to him. As soon as he catches sight of you, he sits up in disbelief.
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>Impossible! The corruption should have turned you into nothing more than a taint spreading slut! Yet, you stand before me, seemingly unscathed. Explain yourself!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<div class='row right'>
<div class='right-msg'>That's my secret ♡
</div>
<div class="img-box">
<<headshot>>
</div>
</div>
<p>
Enraged by your defiance, the demon screams in rage as flames erupt around him. His consorts scurry away as he grabs his sword.
</p>
<<elseif $boss1attempt gt 1>>
<p>
<img class="passage-image" src="demongodsassets/people/fullbody/enemies/boss1/1.png" >
Once again, you step into the lavish cavern, the garish decorations a constant reminder of Melek Taus's arrogance. He reclines on his throne, his demonic consorts attending to his every whim. As he notices your presence, he practically flings them aside, his massive sword now clenched in his hand.
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>How is it that you continue to defy corruption!? This shouldn't be possible!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<p>
His frustration only elicits a giggle out of you which enrages him further
</p>
<div class='row left'>
<div class='left-msg'>Melek Taus<hr>I WILL SEE TO IT THAT YOU ABSORB ENOUGH TAINT TO CORRUPT A PLANET!
</div>
<div class="img-box">
<img class='left-img' src="demongodsassets/people/headshots/enemies/boss1/1.png">
</div>
</div>
<</if>>
[[continue|battle]]
</div>
<<nobr>>
<<set $e.type to ["physical_enemy", "magical_enemy", "boss"]>>
<<set $e.name to "boss1">>
<<set $e.lvl to 11>>
<<randomEnemyEncounter>>
<<set $fullname to "Melek Taus">>
<<set $e.weakness to "ice">>
<<set $e.eleresist to "fire">>
<<set $portrait to 1>>
<<set $boss1attempt += 1>>
<</nobr>>
<<nobr>>
<<set $alrauneally to false>>
<<set $boss1alive to false>>
<<set $breasts to "medium">>
<<set $brotheljob to true>>
<<set $ears to true>>
<<set $gatequest to true>>
<<set $gender to "female">>
<<set $guardpermission to true>>
<<set $hair to "white">>
<<set $horns to true>>
<<set $inv.cum to 2500>>
<<set $inv.money to 2000>>
<<set $inv.cumvial to 3>>
<<set $maps.blackpool1 to true>>
<<set $maps.forest1 to true>>
<<set $maps.forest2 to true>>
<<set $maps.forest3 to true>>
<<set $marketvisited to true>>
<<set $metrhe to true>>
<<set $wardrobe.outfit.push("rags")>>
<<set $wardrobe.outfit.push("adventurerdress")>>
<<set $race to "Succubus">>
<<set $read.illusion to 3>>
<<set $rhelylarel to 30>>
<<set $sexcount to 20>>
<<set $slutfame to 30>>
<<set $spells.illusion to true>>
<<set $spells.claws to 1>>
<<set $spells.fire to 1>>
<<set $tail to true>>
<<set $taverndecision to true>>
<<set $days to 28>>
<<set $daycounter to 35>>
<<set $tome.illusion to true>>
<<set $tome.fire to true>>
<<set $tome.wind to true>>
<<set $unlocked.forest1 to true>>
<<set $unlocked.forest2 to true>>
<<set $unlocked.forest3 to true>>
<<set $unlocked.forestdungeon to true>>
<<set $p.acceptance to 75>>
<<set $p.lvl to 12>>
<<set $p.maxhp to 177>>
<<set $p.hp to 177>>
<<set $p.maxmp to 70>>
<<set $p.mp to 70>>
<<set $p.melee to 55>>
<<set $p.magic to 55>>
<<set $p.pdef to 19>>
<<set $p.mdef to 19>>
<<set $p.charm to 55>>
<<set $e.hp to 0>>
<<set $currentlocation to "forestdungeon">>
<</nobr>>
<div class="conversation">
Your male friend on earth name: <input type="text" id="friend1Name"><br>
Your female friend on earth name: <input type="text" id="friend2Name"><br>
Your name: <input type="text" id="playerName"><br>
Gender start:
<<listbox "$genderstart" autoselect>>
<<option "male">>Male
<<option "fem">>Female
<</listbox>><br>
Please choose 11 additional stats to strengthen!
<<listbox "_chosenStat1" autoselect>>
<<option 'melee'>>
<<option 'magic'>>
<<option 'pdef'>>
<<option 'mdef'>>
<<option 'charm'>>
<</listbox>>
<<listbox "_chosenStat2" autoselect>>
<<option 'melee'>>
<<option 'magic'>>
<<option 'pdef'>>
<<option 'mdef'>>
<<option 'charm'>>
<</listbox>>
<<listbox "_chosenStat3" autoselect>>
<<option 'melee'>>
<<option 'magic'>>
<<option 'pdef'>>
<<option 'mdef'>>
<<option 'charm'>>
<</listbox>>
<<listbox "_chosenStat4" autoselect>>
<<option 'melee'>>
<<option 'magic'>>
<<option 'pdef'>>
<<option 'mdef'>>
<<option 'charm'>>
<</listbox>>
<<listbox "_chosenStat5" autoselect>>
<<option 'melee'>>
<<option 'magic'>>
<<option 'pdef'>>
<<option 'mdef'>>
<<option 'charm'>>
<</listbox>>
<<listbox "_chosenStat6" autoselect>>
<<option 'melee'>>
<<option 'magic'>>
<<option 'pdef'>>
<<option 'mdef'>>
<<option 'charm'>>
<</listbox>>
<<listbox "_chosenStat7" autoselect>>
<<option 'melee'>>
<<option 'magic'>>
<<option 'pdef'>>
<<option 'mdef'>>
<<option 'charm'>>
<</listbox>>
<<listbox "_chosenStat8" autoselect>>
<<option 'melee'>>
<<option 'magic'>>
<<option 'pdef'>>
<<option 'mdef'>>
<<option 'charm'>>
<</listbox>>
<<listbox "_chosenStat9" autoselect>>
<<option 'melee'>>
<<option 'magic'>>
<<option 'pdef'>>
<<option 'mdef'>>
<<option 'charm'>>
<</listbox>>
<<listbox "_chosenStat10" autoselect>>
<<option 'melee'>>
<<option 'magic'>>
<<option 'pdef'>>
<<option 'mdef'>>
<<option 'charm'>>
<</listbox>>
<<listbox "_chosenStat11" autoselect>>
<<option 'melee'>>
<<option 'magic'>>
<<option 'pdef'>>
<<option 'mdef'>>
<<option 'charm'>>
<</listbox>>
<<link 'Confirm' 'forest boss 2'>>
<<set $friend1 to document.getElementById("friend1Name").value>>
<<set $friend2 to document.getElementById("friend2Name").value>>
<<set $name to document.getElementById("playerName").value>>
<<if _chosenStat is "melee">>
<<set $p.melee += 1>>
<<elseif _chosenStat is "magic">>
<<set $p.magic += 1>>
<<elseif _chosenStat is "pdef">>
<<set $p.pdef += 1>>
<<elseif _chosenStat is "mdef">>
<<set $p.mdef += 1>>
<<elseif _chosenStat is "charm">>
<<set $p.charm += 1>>
<</if>>
<<if _chosenStat2 is "melee">>
<<set $p.melee += 1>>
<<elseif _chosenStat2 is "magic">>
<<set $p.magic += 1>>
<<elseif _chosenStat2 is "pdef">>
<<set $p.pdef += 1>>
<<elseif _chosenStat2 is "mdef">>
<<set $p.mdef += 1>>
<<elseif _chosenStat2 is "charm">>
<<set $p.charm += 1>>
<</if>>
<<if _chosenStat3 is "melee">>
<<set $p.melee += 1>>
<<elseif _chosenStat is "magic">>
<<set $p.magic += 1>>
<<elseif _chosenStat is "pdef">>
<<set $p.pdef += 1>>
<<elseif _chosenStat is "mdef">>
<<set $p.mdef += 1>>
<<elseif _chosenStat is "charm">>
<<set $p.charm += 1>>
<</if>>
<<if _chosenStat4 is "melee">>
<<set $p.melee += 1>>
<<elseif _chosenStat2 is "magic">>
<<set $p.magic += 1>>
<<elseif _chosenStat2 is "pdef">>
<<set $p.pdef += 1>>
<<elseif _chosenStat2 is "mdef">>
<<set $p.mdef += 1>>
<<elseif _chosenStat2 is "charm">>
<<set $p.charm += 1>>
<</if>>
<<if _chosenStat5 is "melee">>
<<set $p.melee += 1>>
<<elseif _chosenStat is "magic">>
<<set $p.magic += 1>>
<<elseif _chosenStat is "pdef">>
<<set $p.pdef += 1>>
<<elseif _chosenStat is "mdef">>
<<set $p.mdef += 1>>
<<elseif _chosenStat is "charm">>
<<set $p.charm += 1>>
<</if>>
<<if _chosenStat6 is "melee">>
<<set $p.melee += 1>>
<<elseif _chosenStat2 is "magic">>
<<set $p.magic += 1>>
<<elseif _chosenStat2 is "pdef">>
<<set $p.pdef += 1>>
<<elseif _chosenStat2 is "mdef">>
<<set $p.mdef += 1>>
<<elseif _chosenStat2 is "charm">>
<<set $p.charm += 1>>
<</if>>
<<if _chosenSta7 is "melee">>
<<set $p.melee += 1>>
<<elseif _chosenStat is "magic">>
<<set $p.magic += 1>>
<<elseif _chosenStat is "pdef">>
<<set $p.pdef += 1>>
<<elseif _chosenStat is "mdef">>
<<set $p.mdef += 1>>
<<elseif _chosenStat is "charm">>
<<set $p.charm += 1>>
<</if>>
<<if _chosenStat8 is "melee">>
<<set $p.melee += 1>>
<<elseif _chosenStat2 is "magic">>
<<set $p.magic += 1>>
<<elseif _chosenStat2 is "pdef">>
<<set $p.pdef += 1>>
<<elseif _chosenStat2 is "mdef">>
<<set $p.mdef += 1>>
<<elseif _chosenStat2 is "charm">>
<<set $p.charm += 1>>
<</if>>
<<if _chosenStat9 is "melee">>
<<set $p.melee += 1>>
<<elseif _chosenStat2 is "magic">>
<<set $p.magic += 1>>
<<elseif _chosenStat2 is "pdef">>
<<set $p.pdef += 1>>
<<elseif _chosenStat2 is "mdef">>
<<set $p.mdef += 1>>
<<elseif _chosenStat2 is "charm">>
<<set $p.charm += 1>>
<</if>>
<<if _chosenStat10 is "melee">>
<<set $p.melee += 1>>
<<elseif _chosenStat is "magic">>
<<set $p.magic += 1>>
<<elseif _chosenStat is "pdef">>
<<set $p.pdef += 1>>
<<elseif _chosenStat is "mdef">>
<<set $p.mdef += 1>>
<<elseif _chosenStat is "charm">>
<<set $p.charm += 1>>
<</if>>
<<if _chosenStat11 is "melee">>
<<set $p.melee += 1>>
<<elseif _chosenStat2 is "magic">>
<<set $p.magic += 1>>
<<elseif _chosenStat2 is "pdef">>
<<set $p.pdef += 1>>
<<elseif _chosenStat2 is "mdef">>
<<set $p.mdef += 1>>
<<elseif _chosenStat2 is "charm">>
<<set $p.charm += 1>>
<</if>>
<</link>>
</div>