-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathakbal.as
1616 lines (1390 loc) · 189 KB
/
akbal.as
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
const AKBAL_TIMES_BITCHED:int = 902;
const AKBAL_BITCH_Q:int = 903;
//Akbal of the Terrestrial Fire [EDITED]
//2. AKBAL'S MY BITCH
//[First Encounter]
function supahAkabalEdition():void {
spriteSelect(2);
//Make sure that the buttchange is set correctly
//when submitting. Gotta stretch em all!
monster.createCock();
monster.cocks[0].cockLength = 15;
monster.cocks[0].cockThickness = 2.5;
monster.cocks[0].cockType = 0;
if(flags[AKBAL_BITCH_Q] >= 2) {
akbitchEncounter();
return;
}
if(flags[17] == 2) {
repeatAkbalPostSubmission();
return;
}
if(flags[17] == 1) {
ackbalRepeatAfterWin();
return;
}
if(flags[17] == -1) {
ackbalRepeatAfterLoss();
return;
}
outputText("", true);
//(Player should be level 4 or greater before encounter
//chance is activated)
outputText("As you are walking through the forest, a twig suddenly snaps overhead. You quickly look up towards the source of the noise, only to be met by a pair of glowing emerald eyes hidden in the shadowed canopy of a tree. A demonic force sweeps over you, keeping you frozen in place as a single jaguar paw emerges from the darkness. The graceful killer stalks across the branch of its tree and soon is fully exposed to you. Bathed in the sunlight filtering through the trees overhead, the creature holds you within its gaze – a gaze far too intelligent to belong to a mere wild animal. A chorus of whispering voices tickles your ear, but too quietly for you to make out what is being said.\n\n", false);
outputText("The jaguar blinks, releasing you from your trance, and the creature finally jumps down to the ground. It widens its stance and unleashes a roar so loud that it seems to be coming from every direction at once, drowning out everything but the sound of your own heartbeat hammering away in the confines of your chest.\n\n", false);
outputText("The creature circles you once before you hear a deep male voice rise amongst the chorus of whispers.\n\n", false);
outputText("\"<i>I am Akbal, God of the Terrestrial Fire. You are trespassing on sacred ground... Submit, or die.</i>\"\n\n", false);
outputText("The aura pouring forth from this 'Akbal' is anything but god-like; you recognize the demon for what it truly is. Yet its ivory teeth and sharp claws prove to you that it can make good on its threat. What do you do?", false);
//Talk / Fight / Run
simpleChoices("Talk",2307,"Fight",2312,"",0,"",0,"Leave",13);
}
//[Talk]
function superAkbalioTalk():void {
spriteSelect(2);
outputText("", true);
outputText("After a few moments of silence you ask, \"<i>What do you mean, 'submit'?</i>\" Akbal grins, revealing a row of wicked ivory teeth as he opens his mouth. You suddenly feel the demon's powerful body pinning you down, a wide tongue licking your neck and claws tickling your back in a way that is both horrifying and sensual. Yet after a moment of taking it in, you realize that he is still there in front of you, unmoved and grinning. You can guess what the image means: he wants you to become his mate for a day to make up for invading his territory. What do you do?\n\n", false);
//Submit / Fight
simpleChoices("Fight",2312,"Submit",2313,"",0,"",0,"",0);
}
//[Encounter if previously submitted]
function repeatAkbalPostSubmission():void {
spriteSelect(2);
outputText("", true);
outputText("As you walk through the forest, you hear a purring coming from behind you. Turning around reveals that Akbal has come to find you. He uses his head to push you in the direction of his territory, obviously wanting to dominate you again.\n\n", false);
outputText("What do you do?", false);
//Submit / Deny / Fight
simpleChoices("Submit",2313,"Deny",2309,"Fight",2312,"",0,"",0);
}
//[Deny]
function akbalDeny():void {
spriteSelect(2);
outputText("", true);
outputText("You shake your head and rub the lust-filled jaguar behind the ear as you tell him you're busy. The demon's eyes roll, and he licks your " + player.leg() + " before his eyes find an imp in the trees above the two of you.\n\n", false);
outputText("Knowing he's found a new toy, Akbal allows you to leave unmolested.", false);
doNext(13);
}
//[Encounter if previously fought and won/raped him]
function ackbalRepeatAfterWin():void {
spriteSelect(2);
outputText("", true);
outputText("As you walk through the forest, you hear a snarl and look up just in time to dodge a surprise attack by the jaguar demon, Akbal. Your ", false);
if(player.lowerBody == 4) outputText("equine leap places you a good distance away from him. Do you fight or flee?\n\n", false);
else outputText("dodging roll places you a good distance away from him. Do you fight or flee?\n\n", false);
//Fight / Flee
simpleChoices("Fight",2312,"",0,"",0,"",0,"Leave",13);
}
//[Encounter if previously fought and lost]
function ackbalRepeatAfterLoss():void {
spriteSelect(2);
outputText("", true);
outputText("A chorus of laughter sounds inside your mind as the jaguar demon, Akbal, drops to the ground in front of you. His masculine voice says, \"<i>Well, if it isn't the defiant welp who, in all their great idiocy, has wandered into my territory again. Will you submit, or do I have to teach you another harsh lesson?</i>\"\n\n", false);
//Submit / Fight / Run
simpleChoices("Submit",2313,"Fight",2312,"",0,"",0,"Leave",13);
}
//[Fight]
function startuAkabalFightomon():void {
spriteSelect(2);
outputText("", true);
outputText("You ready your " + player.weaponName + " and prepare to battle the demon jaguar.", false);
//[battle ensues]
startCombat(22);
flags[15]++;
}
//[Submit]
function akbalSubmit():void {
spriteSelect(2);
slimeFeed();
flags[16]++;
flags[17] = 2;
flags[AKBAL_BITCH_Q] = -1;
//Big booty special
if(flags[16] > 5 && flags[15] < 2 && player.buttRating >= 13 && player.tone < 80) {
akbalBigButtSubmit();
return;
}
outputText("", true);
//Naga variant goez here
if(player.lowerBody == 3) {
outputText("After a few moments of thinking you nod to Akbal and the masculine voice in your head commands you to disrobe. You take off your " + player.armorName + ", setting it aside moments before the demon is upon you.\n\n", false);
outputText("Akbal pushes you face first into the ground and places his forward paws on your back, pinning your chest against the ground. He removes the paw and you attempt to reposition yourself only to have your body pushed back down, a silent command for you to stay in this position. You can't help but squirm a little as your bottom half is bunched up under your abdomen, putting your " + buttDescript() + " in the air.\n\n", false);
outputText("His paws slide to your waist, melting into hands along the way. You look from beneath your arm and watch as Akbal's body changes, becoming more humanoid. Once his transformation is complete he gets on his knees behind you and roughly pulls your upturned bottom half back. When he shoves his face into your " + buttDescript() + " you flinch at the sudden and inexplicably erotic feeling.\n\n", false);
outputText("He works his slippery wet tongue into your " + assholeDescript() + ", greedily lapping at your exposed backside as if it were a quickly-melting ice cream cone. The sensation causes you to groan as you push back against the tongue, suddenly lost in ecstasy. A part of your long tail wraps around his waist, holding him there as you revel in the sensation of being rimmed by a pro. You even arch your back, allowing his long, thick jaguar tongue to penetrate deeper into your " + assholeDescript() + ". You feel his saliva, thick and warm like melted candy, sliding inside of you and coating your insides.\n\n", false);
//(transition)
outputText("A sudden warmth heats your innards, making you shiver in ecstasy. Akbal takes a moment to uncoil your bottom half from around his chest before he rises to mount you. A single paw shoves your lifted chest and face back into the dirt, causing cold earth to cling to your body as Akbal gets into position above you.\n\n", false);
//(Small/Virgin Pucker)
if(player.ass.analLooseness < 3) {
outputText("You feel him poking around your " + assholeDescript() + " and quickly realize his member is not only insanely large but its head is covered in a dozen tiny barbs. You grit your teeth, expecting pain and yet, thanks to the weird saliva he slathered your innards with, there is no pain as his gargantuan member forcibly widens your " + assholeDescript() + ".\n\n", false);
outputText("The feeling of being stretched by Akbal's long, slimy member makes you shudder, the weird spit even heats up, creating a steamy warmth inside you as Akbal's equally hot member stretches you out and makes your body spasm slightly. After a few slow, shallow strokes you begin to feel the barbs vibrate. This vibrating drives you insane, and the wicked looking barbs feeling more like humming sex beads than punishing spikes. When Akbal picks up the pace you grit your teeth as you are stretched beyond your natural limits.", false);
}
//(Medium Pucker)
else if(player.ass.analLooseness < 5) {
outputText("You feel him poking around your " + assholeDescript() + " and quickly realize his member is not only quite large but covered in almost a dozen tiny barbs. Yet, thanks to the weird spit he slathered your innards with, there is no pain as his gargantuan member forcibly widens your " + assholeDescript() + ".\n\n", false);
outputText("Akbal's titanic member stretches your " + assholeDescript() + " and makes you groan beneath him, reveling in the slick heat and fullness of your bowels. His saliva heats up, creating a steamy,pleasurable warmth inside your body. As he begins to pump his huge sex organ in and out of you the barbs covering his head begin to vibrate and hits your body with tidal waves of unbearable pleasure, feeling more like vibrating sex beads than punishing spikes. Your body begins to act of its own accord, your " + buttDescript() + " grinding against his thrusts as his large sex pump slides in with his trunk slamming into your " + buttDescript() + " in rhythmic, echoing claps.", false);
}
//(Gapping Pucker - Akbal's dick = 15 inches)
else {
outputText("You feel him poking around your " + assholeDescript() + " and quickly realize his member is not only quite large but covered in almost a dozen tiny barbs. When Akbal begins to penetrate you he is surprised when his trunk suddenly slams into your " + buttDescript() + ", the sudden invasion causing you to croon.\n\n", false);
outputText("The weird spit he slathered your insides with begins to heat up instantly and the barbs covering his cock head start vibrating. The sensation of the vibrating barbs is like a dozen small slimy sex beads spinning and shaking as they are pushed inside you. Akbal wastes no time and begins forcibly fucking your " + assholeDescript() + " with reckless abandon, his every brutal thrust causing your body to slide forward through the dirt. You try to meet his deep thrusts but the jaguar fucks you with speed and force befitting a cheetah and the constantly vibrating barbs make your body shiver with each hammer blow to your insides.", false);
}
buttChange(monster.cockArea(0), true);
outputText("\n\n", false);
//(ending)
outputText("Akbal works his hips fast, piston-pumping his long demon-cat dick in and out of your " + assholeDescript() + ". Your voice rises and falls with his frantic thrusts. Your body is racked by orgasm after orgasm and soon you're lying chest and knees in a pool of your own love juices.\n\n", false);
outputText("Akbal releases a harsh growl and you feel the large feline member twitching and swelling inside you. A growl sounds in your own chest as the hot, corrupted seed of the demon cat shoots into you. Despite having reached his climax the jaguar's piston-pumping doesn't slow until he's erupted no less than six times, masterfully working your hole the entire time.\n\n", false);
outputText("After his last massive eruption you feel the jaguar demon pull out, releasing even more of his copious loads from your happy hole in an oddly satisfying cascade of thick white cream that rushes like a waterfall down your body.\n\n", false);
outputText("The jaguar demon no longer seems to mind your presence in his territory as he drapes his tired body over yours and the two of you fall into a sex-induced coma.", false);
//[+ 4-12 Corruption]
stats(0,0,0,0,0,0,0,4+rand(8));
//[+ 1-2 Speed]
stats(0,0,1+rand(2),0,0,0,-100,0);
//[Chance of butt growth]
if(player.buttRating < 8) {
outputText("\n\nIn your sleep, your ass plumps up slightly, growing to accomodate the demon's wishes...", false);
player.buttRating++;
}
player.createStatusAffect("Post Akbal Submission",0,0,0,0);
doNext(16);
return;
}
//Taur variant goez here
if(player.lowerBody == 4) {
outputText("After a few moments of thinking you nod to Akbal. The deep voice in your head commands you to disrobe. You take off your " + player.armorName + ", setting it aside while mentally preparing yourself for whatever this demon has in mind.\n\n", false);
outputText("You watch with fascination as Akbal rises onto his hind legs, his body melting into a more humanoid form. His long, demonic cat-dick is already rock-hard and jutting out of his sheath. He walks past your top half, moving around your body while sliding his hand across your haunch. His hands are oddly warm.", false);
//(if centaur player has a tail)
if(player.tailType > 0) outputText(" As he makes his way to your hind quarters he grabs you by the tail, pulling it up and out the way with a feral, jaguar grin. His free hand slides a finger across your " + assholeDescript() + " making you paw the ground with your hooves.", false);
//(No tail)
else outputText(" As he makes his way to your hind quarters he grabs your " + buttDescript() + ", groping the mass of flesh with one hand and sliding a finger across your exposed " + assholeDescript() + ", making you paw the ground with your hooves.", false);
outputText("\n\n", false);
//(Transition)
outputText("The jaguar demon begins pushing you forward with his powerful hips, his demon-cat-dick sliding up the crevice of your " + buttDescript() + ". He steers you towards a tree, forcing you chest-first against the rough bark.\n\n", false);
outputText("Looking back you watch Akbal bend low, losing site of the jaguar demon as he disappears behind you. For a moment you wonder what he's doing but soon you feel him shove his face into your " + buttDescript() + " with a snarl. He begins working his slippery wet tongue into your " + assholeDescript() + ", greedily lapping at your exposed backside as if it were a quickly-melting ice cream cone. The sensation causes you to groan and grind against the tongue, suddenly lost in ecstasy. You are surprised at the strength in the demon's neck as he smashes your body against the tree with nothing but his mouth. You feel his saliva, thick and warm like melted candy, sliding inside of you and coating your insides.", false);
//(If Player has Vagina)
if(player.hasVagina()) outputText(" Akbal slurps his way down to your " + vaginaDescript(0) + " twisting his face and drilling his tongue into you, mercilessly attacking your " + clitDescript() + " as you scream, howl, and cringe in ecstasy. He then uses his lips to gently suck your " + clitDescript() + " into his mouth and twirl his tongue on it, making your grind your swollen sex against his jaguar lips.", false);
//(If Player has balls)
if(player.balls > 0) outputText(" Akbal slurps his way down to your " + sackDescript() + " where he slathers his thick, heated saliva over your orbs, making you groan as your sensitive " + ballsDescriptLight() + " are teased and gently juggled by Akbal's masterful tongue. He sucks both orbs into his mouth. The sensation sends your eyes to the back of your skull and makes your entire body shiver.", false);
//(transition)
outputText(" Once his oral machinations are finished a sudden warmth heats your innards, making you shiver in ecstasy as the demon rises to mount you.\n\n", false);
//(Small/Virgin Pucker)
//[Small/virgin pucker]
if(player.ass.analLooseness < 3) {
outputText("You feel him poking around your " + assholeDescript() + " and quickly realize his member is not only insanely large but its head is covered in a dozen tiny barbs. You grit your teeth, expecting pain and yet, thanks to the weird saliva he slathered your innards with, there is no pain as his gargantuan member forcibly widens your " + assholeDescript() + ".\n\n", false);
outputText("The feeling of being stretched by Akbal's long, slimy member makes you shudder. The weird spit even heats up which creates a steamy warmth inside you as Akbal's hot member makes your body spasm slightly. After a few slow, shallow strokes you begin to feel the barbs vibrate. This vibrating sends your body into convulsions, the wicked-looking barbs feeling more like humming sex beads than punishing spikes. When Akbal picks up the pace you grit your teeth as you are stretched beyond your natural limits.", false);
}
//(Medium Pucker)
else if(player.ass.analLooseness < 5) {
outputText("You feel him poking around your " + assholeDescript() + " and quickly realize his member is not only quite large but covered in almost a dozen tiny barbs. Yet, thanks to the weird spit he slathered your innards with, there is no pain as his gargantuan member forcibly widens your " + assholeDescript() + ".\n\n", false);
outputText("Akbal's titanic member stretches your " + assholeDescript() + " and makes you groan and claw at the tree he has you pressed against, reveling in the slick heat and fullness of your bowels. His saliva heats up, creating a steamy yet pleasurable warmth inside your body. As he begins to pump his huge sex organ in and out of you the barbs covering his head begin to vibrate and hits your body with tidal waves of unbearable pleasure, feeling more like vibrating sex beads than punishing spikes. You lean back into his his thrusts as his trunk begins slamming into your " + buttDescript() + " in rhythmic claps that echo throughout the forest.", false);
}
//(Gapping Pucker - Remember Akbal's dick is 15 inches)
else {
outputText("You feel him poking around your " + assholeDescript() + " and quickly realize his member is not only quite large but covered in almost a dozen tiny barbs. When Akbal begins to penetrate you he groans in surprise as his large dick sinks into your " + buttDescript() + " easily, the sudden invasion causing you to croon.\n\n", false);
outputText("The weird spit he slathered your insides with begins to heat up instantly and the barbs covering his cock head start vibrating. The sensation is like a dozen small slimy sex beads spinning and shaking as they are pushed inside you. Akbal wastes no time and begins forcibly fucking your " + assholeDescript() + " with reckless abandon, his every brutal thrust causing the tree you're shoved up against to shake back and forth. You try to meet his deep thrusts but the jaguar fucks you with speed and force befitting a cheetah and the constantly vibrating barbs make your body shiver with each hammer blow to your insides.", false);
}
buttChange(monster.cockArea(0), true);
outputText("\n\n", false);
//(ending)
outputText("Akbal works his hips fast, piston-pumping his long demon-cat dick in and out of your " + assholeDescript() + ". Your body is racked by orgasm after orgasm and soon the ground beneath your pawing hooves is covered in a thick layer of your own love juices. Then Akbal releases a harsh growl and you feel the large feline member twitching and swelling inside you. A growl sounds in your own chest as the hot, corrupted seed of the demon cat shoots into you. The feeling of the hot, wet warmth being fucked deeper into you is so close to supreme bliss you can scarcely tell the difference.\n\n", false);
outputText("After a few moments you realize Akbal isn't slowing down. His piston pumping hips drive right through his orgasm and never stop slamming into your " + buttDescript() + ". He continues until he's erupted no less than eight times, masterfully working your hole the entire time.\n\n", false);
outputText("After his last massive eruption you feel the jaguar demon pull out, releasing even more of his copious load from your happy hole in an oddly satisfying cascade of thick white cream that rushes like a waterfall down your legs", false);
if(player.totalCocks() > 0) outputText(" to join your own", false);
outputText(".\n\n", false);
outputText("You close your eyes, willingly falling into a sex induced sleep.", false);
//[+ 4-12 Corruption]
stats(0,0,0,0,0,0,0,4+rand(8));
//[+ 1-2 Speed]
stats(0,0,1+rand(2),0,0,0,-100,0);
//[Chance of butt growth]
if(player.buttRating < 8) {
outputText("\n\nIn your sleep, your ass plumps up slightly, growing to accomodate the demon's wishes...", false);
player.buttRating++;
}
player.createStatusAffect("Post Akbal Submission",0,0,0,0);
doNext(16);
return;
}
outputText("After thinking for a minute, you nod to Akbal. The deep voice in your head commands you to disrobe. You obediently take off your " + player.armorName + " and set it aside just before the demon is upon you.\n\n", false);
outputText("Akbal pushes you face-first into the ground and places his forward paws on your back, pinning your chest against the ground. He removes them after a few seconds and you attempt to reposition yourself, only for you to be pushed back down again: a silent yet forceful command for you to stay in this position.\n\n", false);
outputText("His paws slide to your waist, changing into hands along the way. You look back and watch as his body starts morphing into a more humanoid shape, his muscles shifting themselves beneath his skin as his body changes to something better suited to dominate you.\n\n", false);
outputText("He suddenly yanks your upturned bottom half toward himself and shoves his face into your " + buttDescript() + ". His slippery wet tongue begins to work its way into your " + assholeDescript() + ", greedily lapping at your exposed backside as though it were a quickly-melting ice cream cone. The sensation causes you to groan and grind against the tongue, quickly losing yourself into ecstasy. You spread your " + player.legs() + " and arch your back, allowing his long and thick jaguar tongue to drill deeper into your " + assholeDescript() + ". You feel his thick and warm saliva sliding into you and coating your insides.\n\n", false);
//[Player has a vagina]
if(player.hasVagina()) {
outputText("Akbal slurps his way down to your " + vaginaDescript(0) + ", twisting his face and drilling his tongue into you, mercilessly attacking your " + clitDescript() + " as you scream, howl and cringe from the stimulation. He then gently sucks your " + clitDescript() + " into his mouth and twirls his tongue around it, making you grind your swollen sex against his jaguar lips. ", false);
}
//[Player has balls]
else if(player.balls > 0) {
outputText("Akbal slurps his way down to your " + sackDescript() + ", slathering his heated saliva over your orbs and making you groan as your sensitive " + ballsDescriptLight() + " are teased and gently juggled by Akbal's masterful tongue. Your body continually twitches with pleasure from the sensations. ", false);
}
outputText("His oral ministrations end when a sudden warmth heats your innards, and you shiver in ecstasy as the demon rises to mount you. A single paw-like hand shoves your lifted chest and face back into the dirt, causing cold earth to cling to your face as Akbal gets into position above you.\n\n", false);
outputText("You feel him poking around your " + assholeDescript() + ", learning quickly that not only is his member insanely large, but its head is covered in dozens of tiny barbs. ", false);
//[Small/virgin pucker]
if(player.ass.analLooseness < 3) {
outputText("You grit your teeth, expecting pain. However, thanks to the weird saliva he slathered your innards with, you feel none as his gargantuan member forcibly widens your " + assholeDescript() + ".", false);
buttChange(monster.cockArea(0), true);
outputText("\n\n", false);
outputText("Being stretched by Akbal's long and slick member makes you shudder. The weird spit even begins to heat up, creating a steamy warmth inside you as Akbal's equally hot member stretches you out, your body spasming slightly in response. After a few slow and shallow strokes, you can feel the barbs begin to vibrate. The sudden motion sends your body into convulsions, the wicked-looking barbs acting more like humming sex beads than barbs. When Akbal picks up the pace, you can only grit your teeth harder as you're stretched more and more beyond your natural limits.\n\n", false);
}
//[Medium Pucker]
else if(player.ass.analLooseness < 5) {
outputText("Thanks to the weird saliva he slathered your innards with, you feel no pain as his gargantuan member forcibly widens your " + assholeDescript() + ".", false);
buttChange(monster.cockArea(0), true);
outputText("\n\n", false);
outputText("Akbal's titanic member stretching your " + assholeDescript() + " makes you groan beneath him, reveling in the slick heat and the fullness of your bowels. His saliva heats up, creating a steamy and pleasurable warmth inside your body. As he begins to pump his huge member in and out of you, the barbs covering his head begin to vibrate. Your body is hit with waves of unbearable pleasure, the wicked-looking barbs acting more like humming sex beads than barbs. Your body begins to act of its own accord; your " + buttDescript() + " grinds against his thrusts as his large sex slides in, his trunk slamming into your " + buttDescript() + " with rhythmic claps that echo throughout the forest.\n\n", false);
}
//[Gapping Pucker - Remember Akbal's dick is 15 inches]
else {
outputText("As Akbal begins to penetrate you, he groans in surprise at how easily his large dick sinks into your " + buttDescript() + ", and the sudden invasion causes you to croon.\n\n", false);
outputText("The weird spit he slathered your insides with instantly heats up, and the barbs covering his cock head suddenly start vibrating. The vibrating barbs feel like slimy sex beads, spinning and shaking as they are pushed inside you. Akbal wastes no time and begins forcibly fucking your " + assholeDescript() + " with reckless abandon, his every brutal thrust causing your body to slide forward through the dirt. You try to meet his deep thrusts, but the jaguar is fucking you with speed and force befitting a cheetah. The constantly vibrating barbs make your body shiver with each hammering blow to your insides.\n\n", false);
}
outputText("Akbal works his hips fast, piston-pumping his long demon cat-dick in and out of your " + assholeDescript() + ". The rampant babbling coming from your mouth breaks with his every thrust, and your body is racked by orgasm after orgasm. You're soon on your chest and knees ", false);
if(player.hasVagina() || player.totalCocks() > 0) outputText("in a pool of your own love juices", false);
else outputText("in sexual bliss", false);
outputText(".\n\n", false);
outputText("Akbal releases a harsh growl and you feel his large feline member twitch and swell inside you. You let out a growl of your own as the hot, corrupted seed of the demon cat shoots into you. Feeling the hot, wet warmth being fucked deeper into you is so close to supreme bliss that you can scarcely tell the difference.\n\n", false);
outputText("After the sensation begins to settle, you realize Akbal isn't slowing down. His hips carry on with their pistoning right through his orgasm and continually slam into your " + buttDescript() + ". He persists until he's erupted no less than eight times, masterfully working your hole the entire time.\n\n", false);
outputText("After his final massive eruption, the jaguar demon pulls out. His copious load is released from your happy hole in an oddly satisfying cascade of thick white cream, rushing like a waterfall down your " + player.legs() + ".\n\n", false);
outputText("The jaguar demon no longer seems to mind your presence in his territory as he drapes his body over yours, and the two of you fall into a sex-induced sleep.", false);
//[+ 4-12 Corruption]
stats(0,0,0,0,0,0,0,4+rand(8));
//[+ 1-2 Speed]
stats(0,0,1+rand(2),0,0,0,-100,0);
//[Chance of butt growth]
if(player.buttRating < 8) {
outputText("\n\nIn your sleep, your ass plumps up slightly, growing to accomodate the demon's wishes...", false);
player.buttRating++;
}
player.createStatusAffect("Post Akbal Submission",0,0,0,0);
doNext(16);
}
//[General End]
//Set flag after submitting, then clear it and run
//this before going to camp?
function akbalSubmissionFollowup():void {
spriteSelect(2);
outputText("", true);
if(flags[16] < 4) {
outputText("You awake in your camp feeling dangerous, powerful and fiercely satisfied.", false);
}
//[After 8th submission, if whispered and corruption is greater than 80%]
//(fighting Akbal disables this scene, but you retain the ability if you rape him after)
else if(flags[15] == 0 && flags[16] >= 8 && player.cor > 80) {
if(player.cor < 80 || player.hasPerk("Fire Lord") >= 0) {
outputText("You awake in your camp feeling dangerous, powerful and fiercely satisfied.", false);
}
else {
outputText("You open your eyes and almost yell in surprise when you see Akbal's emerald eyes looking into yours. You are still in the forest and his lithe jaguar body is still over you; you quickly realize he hasn't moved you, as you're still resting in a puddle of mixed sex juices.\n\n", false);
outputText("\"<i>You are a loyal pet,</i>\" Akbal says as he stands. The compliment makes you smile, but it quickly fades into a look of fear when he suddenly releases a bone-chilling roar right in your face. Green flames begin to pour from his open maw, and you scream as you flail your hands in a pointless attempt to block the fire.\n\n", false);
outputText("After a moment of horror, you realize you aren't burning. You can feel the emerald flames inside your lungs, glowing with a palpable warmth. Akbal snaps his teeth together, a feral grin on his face as he halts the torrent of flame.\n\n", false);
outputText("You can feel Akbal's demonic presence inside your lungs, slowly building up until it finally explodes out of your open mouth in a titanic roar, accompanied with a jet of emerald flame.\n\n", false);
outputText("(You are now capable of breathing Akbal's fire.)", false);
//['LOTF' or 'Terrestrial Fire Lord' appears as perk]
//[Gain 'Terrestrial Fire' in Specials]
player.createPerk("Fire Lord",0,0,0,0,"Thanks to Akbal's blessings, you're able to breathe gouts of green flame at your foes.");
}
}
//[After 4th submission if corruption is greater than 40%]
else if(player.hasPerk("Whispered") < 0 && player.cor >= 40) {
outputText("You awake in your camp with Akbal standing over you, the chorus of voices in your head reaching the apex of an agonizingly beautiful song, and then falling silent. When you rise, Akbal licks your face before turning away and sprinting into the forest.\n\n", false);
if(player.hasPerk("Whispered") < 0) {
outputText("(You are now Whispered.)", false);
player.createPerk("Whispered",0,0,0,0,"Akbal has allowed you to whisper to the minds of your foes, as he does.");
//['Whispered' appears as perk]
//[Gain 'Whisper' in Specials]
}
}
else outputText("You awake in your camp feeling dangerous, powerful and fiercely satisfied.", false);
doNext(1);
}
//[Abilities]
function akabalAttack():void {
//Chances to miss:
var damage:Number = 0;
//Blind dodge change
if(monster.hasStatusAffect("Blind") >= 0) {
outputText(monster.capitalA + monster.short + " seems to have no problem guiding his attacks towards you, despite his blindness.\n", false);
}
//Determine if dodged!
if(player.spe - monster.spe > 0 && int(Math.random()*(((player.spe-monster.spe)/4)+80)) > 80) {
if(player.spe - monster.spe < 8) outputText("You narrowly avoid " + monster.a + monster.short + "'s " + monster.weaponVerb + "!", false);
if(player.spe - monster.spe >= 8 && player.spe-monster.spe < 20) outputText("You dodge " + monster.a + monster.short + "'s " + monster.weaponVerb + " with superior quickness!", false);
if(player.spe - monster.spe >= 20) outputText("You deftly avoid " + monster.a + monster.short + "'s slow " + monster.weaponVerb + ".", false);
combatRoundOver();
return;
}
//Determine if evaded
if(player.hasPerk("Evade") >= 0 && rand(100) < 10) {
outputText("Using your skills at evading attacks, you anticipate and sidestep " + monster.a + monster.short + "'s attack.", false);
combatRoundOver();
return;
}
//Determine if flexibilitied
if(player.hasPerk("Flexibility") >= 0 && rand(100) < 10) {
outputText("Using your cat-like agility, you twist out of the way of " + monster.a + monster.short + "'s attack.", false);
combatRoundOver();
return;
}
//Determine damage - str modified by enemy toughness!
//*Normal Attack A -
if(rand(2) == 0) {
//(medium HP damage)
damage = int((monster.str + monster.weaponAttack) - Math.random()*(player.tou) - player.armorDef);
if(damage <= 0) {
outputText("Akbal lunges forwards but with your toughness", false);
if(player.armorDef > 0) outputText(" and " + player.armorName + ", he fails to deal any damage.", false);
else outputText(" he fails to deal any damage.", false);
}
else{
outputText("Akbal rushes at you, his claws like lightning as they leave four red-hot lines of pain across your stomach.", false);
takeDamage(damage);
}
}
//*Normal Attack B
else {
//(high HP damage)
damage = int((monster.str + 25 + monster.weaponAttack) - Math.random()*(player.tou) - player.armorDef);
if(damage == 0) {
outputText("Akbal lunges forwards but between your toughness ", false);
if(player.armorDef > 0) outputText("and " + player.armorName + ", he fails to deal any damage.", false);
}
else {
outputText("Akbal snarls as he flies towards you, snapping his ivory teeth on your arm. You scream out in pain as you throw him off.", false);
takeDamage(damage);
}
}
combatRoundOver();
}
function akbalLustAttack():void {
//*Lust Attack -
if(player.hasStatusAffect("Whispered") < 0) {
outputText("You hear whispering in your head. Akbal begins speaking to you as he circles you, telling all the ways he'll dominate you once he beats the fight out of you.", false);
//(Lust increase)
stats(0,0,0,0,0,0,7+(100-player.inte)/10,0);
}
//Continuous Lust Attack -
else {
outputText("The whispering in your head grows, many voices of undetermined sex telling you all the things the demon wishes to do to you. You can only blush.", false);
//(Lust increase)
stats(0,0,0,0,0,0,12+(100-player.inte)/10,0);
}
combatRoundOver();
}
function akbalSpecial():void {
//*Special Attack A -
if(rand(2) == 0 && player.spe > 20) {
var speedChange:Number = player.spe/5 * -1;
outputText("Akbal's eyes fill with light, and a strange sense of fear begins to paralyze your limbs.", false);
//(Speed decrease)
stats(0,0,speedChange,0,0,0,0,0);
if(player.hasStatusAffect("Akbal Speed") >= 0) player.addStatusValue("Akbal Speed",1,speedChange);
else player.createStatusAffect("Akbal Speed",speedChange,0,0,0);
}
//*Special Attack B -
else {
outputText("Akbal releases an ear-splitting roar, hurling a torrent of emerald green flames towards you.\n", false);
//(high HP damage)
//Determine if dodged!
if(player.spe - monster.spe > 0 && int(Math.random()*(((player.spe-monster.spe)/4)+80)) > 80) {
if(player.spe - monster.spe < 8) outputText("You narrowly avoid " + monster.a + monster.short + "'s fire!", false);
if(player.spe - monster.spe >= 8 && player.spe-monster.spe < 20) outputText("You dodge " + monster.a + monster.short + "'s fire with superior quickness!", false);
if(player.spe - monster.spe >= 20) outputText("You deftly avoid " + monster.a + monster.short + "'s slow fire-breath.", false);
combatRoundOver();
return;
}
//Determine if evaded
if(player.hasPerk("Evade") >= 0 && rand(100) < 20) {
outputText("Using your skills at evading attacks, you anticipate and sidestep " + monster.a + monster.short + "'s fire-breath.", false);
combatRoundOver();
return;
}
//Determine if flexibilitied
if(player.hasPerk("Flexibility") >= 0 && rand(100) < 10) {
outputText("Using your cat-like agility, you contort your body to avoid " + monster.a + monster.short + "'s fire-breath.", false);
combatRoundOver();
return;
}
outputText("You are burned badly by the flames! (40)", false);
takeDamage(40);
}
combatRoundOver();
}
//*Support ability -
function akbalHeal():void {
if(monster.HP == eMaxHP()) outputText("Akbal licks himself, ignoring you for now.", false);
else outputText("Akbal licks one of his wounds, and you scowl as the injury quickly heals itself.", false);
monster.HP += 30;
if(monster.HP > eMaxHP()) {
monster.HP = eMaxHP();
}
monster.lust += 10;
combatRoundOver();
}
//Victory/Defeat Scenes
//[Victory via HP]
function victoryChoices():void {
flags[17] = 1;
//[General Victory]
if(monster.HP < 1) {
/*if(rand(10) == 0) {
outputText("Akbal falls to the ground, but as you raise your " + player.weaponName + " to deliver the final blow, a harsh ripping sound rends the air. A dark form covered in burning violet light flies out of the jaguar's body; the demon has fled, leaving a corpse behind. You have no doubt that the demon can gain another body, but it's best to take the old one with you to make sure it doesn't regain its form easily.", false);
//9999 change monster name to let itemloot know what item to drop.
monster.short = "Akbitch";
//[Get 'Jaguar Pelt']
}*/
//[Common chance of dropping 'Incubus Draft', 'Smart Tea' or 'Pipe']
outputText("Akbal falls to the ground in a beaten bloody heap.", true);
}
//[Victory via Lust]
else {
outputText("Akbal falls to the ground, unable to go on. Yet a growl still rumbles in his chest, and you quickly recognize the submissive gesture when he bows his head, his cat belly hugging the ground. His body begins shifting, and soon he has a vaguely humanoid form. You assume this is the form he uses for sex, as his lust is out of control.\n\n", true);
if(player.lust >= 33 && player.gender > 0) {
outputText("You walk around Akbal's beaten and lust crazed form with a smile on your face. The demon's growl continues as he awaits your judgment.", false);
var vagoo:Number = 0;
var vagooLick:Number = 0;
var buttFuck:Number = 0;
var bikiniTits:int = 0;
if(player.hasVagina()) {
vagoo = 3023;
vagooLick = 3025;
}
if(player.hasVagina() && player.biggestTitSize() >= 4 && player.armorName == "lusty maiden's armor") bikiniTits = 3988;
if(player.hasCock()) buttFuck = 5129;
outputText("\n\nDo you rape him?", false);
//Rape / Don't Rape
simpleChoices("Butt-fuck",buttFuck,"Take Vaginally",vagoo,"Force Lick",vagooLick,"B.Titfuck",bikiniTits,"Leave",5007);
return;
}
}
eventParser(5007);
}
function rapeAkbalForcedFemaleOral():void {
flags[AKBAL_BITCH_Q]++;
outputText("", true);
//Naga RAPPUUUUUU
if(player.isNaga()) {
outputText("You slither around the demon cat's form, wrapping him up until a scared whimper rises from his chest. You continue to tighten your coils around Akbal until he's gasping for breath. You ask him if he's going to be a good little demon for you. He nods.\n\n", false);
outputText("As you uncoil you can't help but bump into the slimy leaking faucet Akbal calls his dick. At your command he raises his hind quarters, allowing you a perfect view of his low hanging balls and sheath. You reach around his fuzzy orbs and pull his swollen cock back until the jaguar demon's 15 inch pecker is visible.\n\n", false);
outputText("Your eyes widen as you see several wicked looking barbs around his pre-pumping slit. Instead of trying to deal with this massive phallus that looks like it was made to punish sinners you slither around to the front of the creature.\n\n", false);
outputText("Your scent causes the growl ripping out of Akbal's chest to quiver. You lay before him, reaching up to smash his furry lips into your " + vaginaDescript(0) + ". The demon, unable to escape his debilitating arousal, begins to lap at your " + vaginaDescript(0) + ". He shoves his face against your " + vaginaDescript(0) + " twisting his lips and drilling his tongue into you, mercilessly attacking your " + clitDescript() + " as you scream, howl and cringe in ecstasy.\n\n", false);
outputText("He begins to lift up, probably to get into position above you and sake his lust, but you force his face back down into your " + vaginaDescript(0) + ". After dropping a line about how he has to make your cum or get his head ripped off Akbal wines, obviously distressed at not being able to slip his aching member into your " + vaginaDescript(0) + ".\n\n", false);
outputText("With a sadistic laugh you ride out your orgasm until you're reduced to a shuddering heap on the floor. After you've recovered you gather your " + player.armorName + ", leaving Akbal in a groaning mess behind you. He howls as he claws the ground, his barbed cock still rock hard beneath him. Just as you begin to leave you notice a group of imps watching you and the jaguar demon, their cocks out and leaking as their jagged teeth spread into feral grins. You even spy a few goblins mixed in the crowd, each twirling a bottle of liquid and playing with her snatch.\n\n", false);
outputText("As you leave Akbal snarls as the creatures that once feared him use his overtly aroused state to get revenge on the \"god\" of the terrestrial fire. Even After you've reached the edge of the forest the wails of the jaguar demon can still be heard but just barely over the high pitched laughter of the demon imps and goblin females.", false);
}
//Centaur RAPPUUUUU
else if(player.isTaur()) {
outputText("You roughly grab the scruff of the demon's neck, aiming a gut crushing blow to his stomach and causing him to call out in pain.\n\n", false);
outputText("\"<i>Who's gonna submit now... bitch.</i>\"\n\n", false);
outputText("Akbal snarls as you shove him back first onto the forest ground. You look down at him, fully prepared to have your way with his demon dick. What you see causes your " + vaginaDescript(0) + " to flinch at the through of what would have happened if you had lost and the demon had used that on you.\n\n", false);
outputText("The head of the massive dick sitting between Akbal's thighs is covered in a dozen tiny barbs that look like they were created to punish sinners.\n\n", false);
outputText("You walk around the creature, irritated at the fact that you can't squat on that crazy large demon cat dick. Once you're on the other side of him you sit your hind quarters on his face.\n\n", false);
outputText("Akbal gives a muffled scream at first but soon he gets the message. His tongue slithers into your " + vaginaDescript(0) + ". You lift a little, well... you lean forward a bit to let the demon actually breath. This proves to be the right choice as Akbal is ravenous for your " + vaginaDescript(0) + ".\n\n", false);
outputText("He drills his tonuge into you, mercilessly attacking your " + clitDescript() + " as you scream, howl and cringe in ecstasy. He begins to lift up, probably to get the weight of your body off of the rest of his face, but you grab his tender furry balls in your hand and he stops before you're forced to do something drastic.\n\n", false);
outputText("After dropping a line about how he has to make you cum or get his head ripped off Akbal wines, obviously distressed at not being able to slip his aching member into your " + vaginaDescript(0) + ".\n\n", false);
outputText("With a sadistic laugh you ride out your orgasm until you're reduced to a shuddering heap. After you've recovered you stand and gather your " + player.armorName + ", leaving Akbal in a groaning mess behind you. He howls as he claws the ground, his barbed cock still rock hard beneath him. Just as you begin to leave you notice a group of imps watching you and the jaguar demon, their cocks out and leaking as their jagged teeth spread into feral grins. You even spy a few goblins mixed in the crowd, each twirling a bottle of liquid and playing with her snatch.\n\n", false);
outputText("As you leave Akbal snarls as the creatures that once feared him use his overtly aroused state to get revenge on the \"god\" of the terrestrial fire. Even After you've reached the edge of the forest the wails of the jaguar demon can still be heard but just barely over the high pitched laughter of the demon imps and goblin females.", false);
}
//Everybody else
else {
outputText("You roughly grab the scruff of the demon's neck and give a gut-crushing blow to his stomach, causing him to call out in pain.", false);
outputText("\n\n\"<i>Who's gonna submit now, bitch?</i>\"\n\n", false);
outputText("Akbal grunts as you smash his face into the ground. At your command he raises his hind quarters, allowing you a perfect view of his low-hanging balls and sheath. You reach around his fuzzy orbs and pull his swollen cock back until the jaguar demon's 15-inch pecker is visible.\n\n", false);
outputText("Your eyes widen when you see several wicked-looking barbs around his pre-pumping cockhead. Instead of trying to deal with this massive phallus that looks like it was made to punish sinners, you walk around to the front of the creature.\n\n", false);
outputText("Your scent causes Akbal's growling to quiver. You lay down before him, grabbing his head and smashing his furry lips into your " + vaginaDescript(0) + ". The demon, unable to escape his debilitating arousal, begins to lap at your " + vaginaDescript(0) + ". He twists his lips and drills his tongue into you, mercilessly attacking your " + clitDescript() + ", and you scream, howl and cringe in ecstasy. He begins to lift up, probably to get into position above you, but you force his face back down into your " + vaginaDescript(0) + ". After dropping a line about how he has to make your cum or get his head ripped off, Akbal whines, obviously distressed at not being able to slip his aching member into your " + vaginaDescript(0) + ".\n\n", false);
outputText("With a sadistic laugh you ride out your orgasm until you're reduced to a shuddering heap on the floor. After you've recovered, you stand and gather your " + player.armorName + ", leaving Akbal in a groaning mess behind you. He howls as he claws the ground, his barbed cock still rock hard beneath him. As you walk away, you notice a group of imps watching you and the jaguar demon with their cocks out and leaking, their jagged teeth spread into feral grins. You even spy a few goblins mixed in the crowd, and each is twirling a bottle of liquid while playing with her snatches.\n\n", false);
outputText("Akbal snarls as you leave, the creatures that once feared him using his aroused state to get revenge on the 'god' of the terrestrial fire. Even after you've reached the edge of the forest, the jaguar demon's pained howls can still be heard – though, just barely over the high-pitched laughter of the demon imps and the cackling of the goblin females.", false);
}
//END CENTAUR STUFF
stats(0,0,0,0,0,0,-100,1);
eventParser(5007);
return;
}
//Standard rapes - buttfucks and oral
function rapeAkbal():void {
flags[AKBAL_BITCH_Q]++;
var primary:Number = player.cockThatFits(50);
if(primary < 0) primary = 0;
outputText("", true);
//Naga RAPPUUUUUU
if(player.lowerBody == 3) {
outputText("You slither around the demon cat's form, wrapping him up until a scared whimper rises from his chest. You continue to tighten your coils around Akbal until he's gasping for breath. You ask him if he's going to be a good little demon for you. He nods.\n\n", false);
//(If player has a dick)
if(player.totalCocks() > 0) {
//(Sm Penis: 7 inches or less)
if(player.cocks[primary].cockLength <= 7) {
outputText("As you uncoil you can't help but bump into the slimy leaking faucet Akbal calls his dick. At your command he raises his hind quarters, giving you a perfect view of his tight pucker. From the looks of it nothing has ever even touched the tightly sealed rim. First you poke it with your finger, causing Akbal to flinch at the sensation. Taking your " + cockDescript(primary) + " in hand you shove in without hesitation or mercy. The virginally-tight hole clamps shut and Akbal hisses in pain as you force him open. In no time at all you're sawing your " + cockDescript(primary) + " in and out of the demon's virginally-tight hole, relishing in the way it quivers and squirms around your embedded " + cockDescript(primary) + ".\n\n", false);
}
//(Md Penis: 8-12 inches)
else if(player.cocks[primary].cockLength <= 12) {
outputText("As you uncoil you can't help but bump into the slimy leaking faucet Akbal calls his dick. At your command he raises his hind quarters, giving you a perfect view of his tight pucker. From the looks of it nothing has ever even touched the tightly sealed rim. A light tap of your finger causes the tiny hole to constrict in fear as Akbal's entire body flinches away from you. You grab your " + cockDescript(primary) + " with a cruel smile.\n\n", false);
outputText("As you shove your " + cockDescript(primary) + " into his tight pucker you are not surprised to find your " + cockDescript(primary) + " barely able to breach the tightly sealed walls. Grunting with effort you slowly inch forward, Akbal howling and squirming beneath you as he is taken without regard for his own pleasure.\n\n", false);
outputText("After a dozen achingly slow thrusts Akbal's asshole begins to loosen and you begin to saw your " + cockDescript(primary) + " in and out of his pucker with force as the demon cat's howls range from pained to pleased.\n\n", false);
}
//(Lg Penis: 13 inches and up)
else {
outputText("As you uncoil you can't help but bump into the slimy leaking faucet Akbal calls his dick. At your command he raises his hind quarters, giving you a perfect view of his tight pucker. A short glance tells you your " + cockDescript(primary) + " won't fit... but since when has that stopped you from trying?\n\n", false);
outputText("When you slide a single finger against his virginally-tight hole Akbal flinches, the already tight hole clamping shut in fear.\n\n", false);
outputText("You twist Akbal's tail into your fist and laugh as a scared whimper rises out of the jaguar demon's throat. You begin to push your huge cock in with one hand as your other pulls Akbal's tail. The creature wines and howls as you invade its clenching sphincter, forcibly stretching its tight pink hole to a dangerous degree with your " + cockDescript(primary) + ". All too soon you are halted, barely able to fit more than a foot of your huge cock into Akbal's virginally-tight hole. Deciding that's good enough you pull out and push forward, meeting the same resistance as before.\n\n", false);
outputText("After hours of resistance and howling Akbal's body shudders as his asshole relaxes due to complete exhaustion. Battling with your tremendous cock seems to have made him almost pass out and he no longer has the energy to resist you. The jaguar demon's body flinches with your every thrust as you begin to pound him raw, without lube and without mercy.\n\n", false);
}
//(transition)
outputText("You rape the jaguar demon's tight hole with steadily mounting force, your " + hipDescript() + " smashing into his body with freight train force and causing him to cry out. Despite this his 15 inch swollen sex organ pumps pre beneath him, letting you know that his pain is mixed with plenty of unwilling pleasure.\n\n", false);
//(With Fertility/Lots of Jizz Perk)
if(player.cumQ() > 1000) {
outputText("The crushing tightness of Akbal's quivering hole pushes you over the edge and with a titanic howl you begin hosing down his insides. The jaguar demon erupts as well, his body convulsing in time with your still thrusting " + cockDescript(0) + ".\n\n", false);
outputText("As your cock continues to pump massive tons of liquid into the jaguar demon you grind your still swelling sex organ inside him and beneath the two of you his belly begins to bulge as he is filled. As your massive orgasm subsides you pull out, releasing an gargantuan deluge of your thick spunk that rolls down his legs and creates a large puddle in the forest floor. Akbal heaves a relieved sighs, obviously happy you are done raping him.\n\n", false);
}
//(without perk)
else outputText("The crushing tightness of Akbal's quivering hole pushes you over the edge and with a titanic howl you begin hosing down his insides. Beneath you Akbal's own orgasm erupts and the jaguar demon goes limp as you continue to pound him through his orgasm. When you pull out you aim a slap at Akbal's now very tender ass, making him yelp as your unexpected blow connects.\n\n", false);
//(Ending)
outputText("As you stand you gather your " + player.armorName + " and turn to leave the weakened demon behind you. Just as you begin to walk away you notice a group of imps watching you and the jaguar demon, their cocks out and leaking. Mixed in with the crowd are several goblins, each with a vial of liquid and a malicious grin.\n\n", false);
outputText("As you leave Akbal snarls as the creatures that once feared him use his weakened state to exact revenge on the \"god\" of the terrestrial fire. Even After you've reached the edge of the forest the jaguar demon's pained snarls can still be heard but just barely over the high pitched laughter of the demon imps and the cackling of the goblin females.", false);
}
//(If the player has a vagina)
else {
outputText("As you uncoil you can't help but bump into the slimy leaking faucet Akbal calls his dick. At your command he raises his hind quarters, allowing you a perfect view of his low hanging balls and sheath. You reach around his fuzzy orbs and pull his swollen cock back until the jaguar demon's 15 inch pecker is visible.\n\n", false);
outputText("Your eyes widen as you see several wicked looking barbs around his pre-pumping slit. Instead of trying to deal with this massive phallus that looks like it was made to punish sinners you slither around to the front of the creature.\n\n", false);
outputText("Your scent causes the growl ripping out of Akbal's chest to quiver. You lay before him, reaching up to smash his furry lips into your " + vaginaDescript(0) + ". The demon, unable to escape his debilitating arousal, begins to lap at your " + vaginaDescript(0) + ". He shoves his face against your " + vaginaDescript(0) + " twisting his lips and drilling his tongue into you, mercilessly attacking your " + clitDescript() + " as you scream, howl and cringe in ecstasy.\n\n", false);
outputText("He begins to lift up, probably to get into position above you and sake his lust, but you force his face back down into your " + vaginaDescript(0) + ". After dropping a line about how he has to make your cum or get his head ripped off Akbal wines, obviously distressed at not being able to slip his aching member into your " + vaginaDescript(0) + ".\n\n", false);
outputText("With a sadistic laugh you ride out your orgasm until you're reduced to a shuddering heap on the floor. After you've recovered you gather your " + player.armorName + ", leaving Akbal in a groaning mess behind you. He howls as he claws the ground, his barbed cock still rock hard beneath him. Just as you begin to leave you notice a group of imps watching you and the jaguar demon, their cocks out and leaking as their jagged teeth spread into feral grins. You even spy a few goblins mixed in the crowd, each twirling a bottle of liquid and playing with her snatch.\n\n", false);
outputText("As you leave Akbal snarls as the creatures that once feared him use his overtly aroused state to get revenge on the \"god\" of the terrestrial fire. Even After you've reached the edge of the forest the wails of the jaguar demon can still be heard but just barely over the high pitched laughter of the demon imps and goblin females.", false);
}
stats(0,0,0,0,0,0,-100,1);
eventParser(5007);
return;
//END NAGA STUFF
}
//Centaur RAPPUUUUU
else if(player.lowerBody == 4) {
outputText("You roughly grab the scruff of the demon's neck, aiming a gut crushing blow to his stomach and causing him to call out in pain.\n\n", false);
outputText("\"<i>Who's gonna submit now... bitch.</i>\"\n\n", false);
//(If player has a dick)
if(player.totalCocks() > 0) {
//(Sm Penis: 7 inches or less)
if(player.cocks[primary].cockLength <= 7) {
outputText("Akbal snarls pitifully as you shove him stomach down against a log. Your " + cockDescript(primary) + " leaks at the thought of bringing this \"god\" down a notch . At your command he arches his back and lifts his tail, giving you a perfect view of his tight pucker. From the looks of it nothing has ever even touched the tightly sealed rim. As you lightly tap it with your finger it flinches, becoming even tighter as Akbal's body jerks away in fear.\n\n", false);
outputText("You rear up, standing on two legs for a moment before your hooves fall to the ground, Akbal's head between your front legs with his hair tickling your belly. You give a few experimental thrusts. The first one causes your " + cockDescript(primary) + " to slide up Akbal's upturned cheeks, making him cringe. The second one, however, catches.\n\n", false);
outputText("The virginally-tight hole clamps shut and Akbal hisses in pain as you force him open. In no time at all you're sawing your " + cockDescript(primary) + " in and out of the demon's virginally-tight hole, relishing in the way it quivers and squirms around your embedded " + cockDescript(primary) + ". The sounds coming from Akbal's throat are varied but include many unwillingly pleased groans. He's obviously liking this more than he's willing to admit.\n\n", false);
}
//(Md Penis: 8-12 inches)
else if(player.cocks[primary].cockLength <= 12) {
outputText("Akbal snarls pitifully as you shove him stomach down against a log. Your " + cockDescript(primary) + " leaks at the thought of bringing this \"god\" down a notch. At your command he arches his back and lifts his tail, giving you a perfect view of his tight pucker. From the looks of it nothing has ever even touched the tightly sealed rim. As you lightly tap it with your finger it flinches, becoming even tighter as Akbal's body jerks away in fear.\n\n", false);
outputText("You rear up, standing on two legs for a moment before your hooves fall to the ground, Akbal's head between your legs tickling your belly. You give a few experimental thrusts. The first one causes your " + cockDescript(primary) + " to slide up Akbal's upturned cheeks, making him cringe. The second one, however, catches.\n\n", false);
outputText("As you shove your " + cockDescript(primary) + " forward into his virginally-tight pucker you are not surprised to find your " + cockDescript(primary) + " barely able to breach the tightly sealed walls. Grunting with effort you slowly inch forward, Akbal howling and squirming beneath you as he is taken without regard for his own pleasure.\n\n", false);
outputText("After a dozen achingly slow thrusts Akbal's asshole begins to loosen and you begin to saw your " + cockDescript(primary) + " in and out of his pucker. The demon cat's howls range from pained to pleased, obviously enjoying his butt rape more than he is willing to admit.\n\n", false);
}
//(Lg Penis: 13 inches and up)
else {
outputText("Akbal snarls pitifully as you shove him stomach down against a log. Your " + cockDescript(primary) + " leaks at the thought of bringing this \"god\" down a notch . At your command he arches his back and lifts his tail, giving you a perfect view of his tight pucker. From the looks of it nothing has ever even touched the tightly sealed rim. As you lightly tap it with your finger it flinches, becoming even tighter as Akbal's body jerks away in fear. There's no way in hell your " + cockDescript(primary) + " can fit inside something so incredibly tight but... since when has that stopped you?\n\n", false);
outputText("You rear up, standing on two legs for a moment before your hooves fall to the ground, Akbal's head between your legs, his hair tickling your belly. You give a few experimental thrusts. The first one causes your " + cockDescript(primary) + " to slide up Akbal's upturned cheeks, making him cringe. The second one, however, catches.\n\n", false);
outputText("The demon wines and wraps his arms around your front legs, pulling himself away from the burning pressure of your " + cockDescript(primary) + ". His voice breaks as you invade his clenching sphincter, forcibly stretching Akbal's tight pink hole to a dangerous degree. All too soon you are halted, barely able to fit more than a foot of your huge cock into Akbal's virginally-tight hole. Deciding that's good enough you pull out and push forward, meeting the same resistance as before.\n\n", false);
outputText("You grin as you realize that this may take a while...\n\n", false);
outputText("After hours of resistance and howling Akbal's body shudders as his asshole relaxes due to complete exhaustion. Battling with your tremendous cock seems to have made him almost pass out and he no longer has the energy to resist you. The jaguar demon's body flinches with your every thrust as you begin to pound him raw, without lube and without mercy.\n\n", false);
}
//(transition)
outputText("You rape the jaguar demon's tight hole with steadily mounting force, your trunk smashing into his cringing body with freight train force and causing him to cry out in times with your grunts. Despite this his 15 inch swollen sex organ pumps pre beneath him, letting you know that his pain is mixed with plenty of unwilling pleasure.\n\n", false);
//(With Fertility/Lots of Jizz Perk)
if(player.cumQ() > 1000) {
outputText("The crushing tightness of Akbal's quivering hole pushes you over the edge and with a titanic howl you begin hosing down his insides. Akbal's suddenly clenching sphincter lets you know he has reached his orgasm as well. ", false);
outputText("You continue to slide your still swollen sex organ inside his quivering hole as you pump massive tons of liquid into the false god's stomach and bowels. Beneath the two of you his belly begins to bulge as he is filled to a dangerous degree. ", false);
outputText("Once your massive orgasm subsides you pull out, releasing a gargantuan deluge of your thick spunk that rolls down his legs and creates a large puddle in the forest floor. Akbal heaves a relieved sigh, obviously happy you are finally done raping him.\n\n", false);
}
//(without perk)
else {
outputText("The crushing tightness of Akbal's quivering hole pushes you over the edge and with a titanic howl you begin hosing down his insides. Akbal's suddenly clenching sphincter lets you know he has reached his orgasm as well. The jaguar demon's body goes limp as you continue to pound him through his orgasm. When you pull out you aim a slap at Akbal's now very tender ass, making him yelp as your unexpected blow connects.\n\n", false);
}
//(Ending)
outputText("As you stand you gather your " + player.armorName + " and turn to leave the weakened demon behind you. Just as you begin to walk away you notice a group of imps watching you and the jaguar demon, their cocks out and leaking. Mixed in with the crowd are several goblins, each with a vial of liquid and a malicious grin.\n\n", false);
outputText("As you leave Akbal snarls as the creatures that once feared him use his weakened state to exact revenge on the \"god\" of the terrestrial fire. Even After you've reached the edge of the forest the jaguar demon's pained snarls can still be heard but just barely over the high pitched laughter of the demon imps and the cackling of the goblin females.\n\n", false);
}
//(If the player has a vagina)
else {
outputText("Akbal snarls as you shove him back first onto the forest ground. You look down at him, fully prepared to have your way with his demon dick. What you see causes your " + vaginaDescript(0) + " to flinch at the through of what would have happened if you had lost and the demon had used that on you.\n\n", false);
outputText("The head of the massive dick sitting between Akbal's thighs is covered in a dozen tiny barbs that look like they were created to punish sinners.\n\n", false);
outputText("You walk around the creature, irritated at the fact that you can't squat on that crazy large demon cat dick. Once you're on the other side of him you sit your hind quarters on his face.\n\n", false);
outputText("Akbal gives a muffled scream at first but soon he gets the message. His tongue slithers into your " + vaginaDescript(0) + ". You lift a little, well... you lean forward a bit to let the demon actually breath. This proves to be the right choice as Akbal is ravenous for your " + vaginaDescript(0) + ".\n\n", false);
outputText("He drills his tonuge into you, mercilessly attacking your " + clitDescript() + " as you scream, howl and cringe in ecstasy. He begins to lift up, probably to get the weight of your body off of the rest of his face, but you grab his tender furry balls in your hand and he stops before you're forced to do something drastic.\n\n", false);
outputText("After dropping a line about how he has to make you cum or get his head ripped off Akbal wines, obviously distressed at not being able to slip his aching member into your " + vaginaDescript(0) + ".\n\n", false);
outputText("With a sadistic laugh you ride out your orgasm until you're reduced to a shuddering heap. After you've recovered you stand and gather your " + player.armorName + ", leaving Akbal in a groaning mess behind you. He howls as he claws the ground, his barbed cock still rock hard beneath him. Just as you begin to leave you notice a group of imps watching you and the jaguar demon, their cocks out and leaking as their jagged teeth spread into feral grins. You even spy a few goblins mixed in the crowd, each twirling a bottle of liquid and playing with her snatch.\n\n", false);
outputText("As you leave Akbal snarls as the creatures that once feared him use his overtly aroused state to get revenge on the \"god\" of the terrestrial fire. Even After you've reached the edge of the forest the wails of the jaguar demon can still be heard but just barely over the high pitched laughter of the demon imps and goblin females.", false);
}
stats(0,0,0,0,0,0,-100,1);
eventParser(5007);
return;
//END CENTAUR STUFF
}
outputText("You roughly grab the scruff of the demon's neck and give a gut-crushing blow to his stomach, causing him to call out in pain.", false);
outputText("\n\n\"<i>Who's gonna submit now, bitch?</i>\"\n\n", false);
//[Player has a dick]
if(player.totalCocks() > 0) {
outputText("Akbal grunts as you smash his face into the ground. At your command he raises his hind quarters, allowing you a perfect view of his tight pucker. From the looks of it, his tightly sealed rim would look at home on a virgin.\n\n", false);
//[Small penis (7 inches or less)]
if(player.cockArea(0) < 13) {
outputText("You first poke it with your finger, causing Akbal to flinch at the sensation. Taking your " + cockDescript(0) + " in hand, you shove it in without hesitation or mercy. The virgin-like hole clamps shut and Akbal hisses in pain as you force him open. In no time at all you're sawing your " + cockDescript(0) + " in and out of the demon's tight hole, relishing in the way it quivers and squirms around your embedded " + cockDescript(0) + ".\n\n", false);
}
//[Medium penis (8-12 inches)]
else if(player.cockArea(0) < 25) {
outputText("A light tap of your finger causes the tiny hole to constrict and Akbal's entire body flinches in fear. You grab your " + cockDescript(0) + " with a cruel smile. As you shove yourself into his tight pucker, you aren't surprised to find that your " + cockDescript(0) + " is barely able to breach the tightly sealed walls. Grunting with effort you slowly inch forward, Akbal howling and squirming beneath you as he is taken without regard for his own pleasure.\n\n", false);
outputText("After a dozen achingly slow thrusts, Akbal's asshole begins to loosen and you start sawing your " + cockDescript(0) + " in and out of his pucker with force. The demon cat's howls fluctuate between yelps of pain and moans of pleasure.\n\n", false);
}
//[Large penis (13 inches and up)]
else {
outputText("A single look tells you your " + cockDescript(0) + " won't fit... but since when has that stopped you from trying? You slide a single finger against the virginally-tight hole and Akbal flinches. His already tight hole clamps shut in fear, as if doing so will somehow stop the inevitable intrusion.\n\n",false);
outputText("You twist Akbal's tail into your fist and laugh as a scared whimper escapes from the jaguar demon's throat. You begin to push your " + cockDescript(0) + " in with one hand as you pull Akbal's tail with the other. The demon whines and howls as you invade his clenching sphincter, forcibly stretching the tight pink hole to a dangerous degree. You are halted all too soon, barely able to fit more than a foot of your " + cockDescript(0) + " into Akbal's virginally-tight hole. Deciding that's good enough, you pull out before pushing forward again, meeting the same resistance as before.\n\n", false);
outputText("After what seems like hours of resistance and howling, Akbal's body shudders and his asshole relaxes from complete exhaustion. Battling with your " + cockDescript(0) + " seems to have nearly made him pass out, and he no longer has the energy to resist you. The jaguar demon's body flinches with your every thrust as you pound him raw – without lube, and without mercy.\n\n", false);
}
outputText("You rape the jaguar demon's tight hole with steadily mounting force, your " + hipDescript() + " smashing into his body with freight-train force, and causing him to cry out. Despite this, his 15-inch swollen sex organ is pumping out pre beneath him, letting you know that his pain is mixed with plenty of unwilling pleasure.\n\n", false);
outputText("The crushing tightness of Akbal's quivering hole pushes you over the edge, and with a titanic howl you unleash your load inside him. Akbal's suddenly clenching sphincter lets you know that he has reached his orgasm as well.\n\n", false);
//[With Fertility/Lots of Jizz Perk]
if(player.cumQ() > 1000) {
outputText("You continue to slide your still-swollen " + cockDescript(0) + " inside his quivering hole as you pump massive tons of liquid into the false god's stomach and bowels. Beneath the two of you, his belly begins to bulge as he is filled to a dangerous degree.\n\n", false);
outputText("Once your massive orgasm subsides you pull out, releasing a gargantuan deluge of your thick spunk that rolls down his legs, creating a large puddle in the forest floor. Akbal heaves a relieved sigh, obviously glad that you are finally done raping him.\n\n", false);
}
//[Without Fertility/Lots of Jizz Perk]
else {
outputText("The jaguar demon's body goes limp as you continue to pound him through his orgasm. When you finally pull out, you aim a slap at Akbal's now very tender ass and make him yelp when your unexpected blow connects.\n\n", false);
}
outputText("Standing up, you gather your " + player.armorName + " and turn to leave the weakened demon behind you. As you walk away, you notice a group of imps watching you and the jaguar demon with their cocks out and leaking. Mixed in with the crowd are several goblins, each with a vial of liquid and a malicious grin.\n\n", false);
outputText("Akbal snarls as you leave, the creatures that once feared him using his weakened state to get revenge on the 'god' of the terrestrial fire. Even after you've reached the edge of the forest, the jaguar demon's pained howls can still be heard – though, just barely over the high-pitched laughter of the demon imps and the cackling of the goblin females.", false);
}
//[Player has a vagina]
else if(player.hasVagina()) {
outputText("Akbal grunts as you smash his face into the ground. At your command he raises his hind quarters, allowing you a perfect view of his low-hanging balls and sheath. You reach around his fuzzy orbs and pull his swollen cock back until the jaguar demon's 15-inch pecker is visible.\n\n", false);
outputText("Your eyes widen when you see several wicked-looking barbs around his pre-pumping cockhead. Instead of trying to deal with this massive phallus that looks like it was made to punish sinners, you walk around to the front of the creature.\n\n", false);
outputText("Your scent causes Akbal's growling to quiver. You lay down before him, grabbing his head and smashing his furry lips into your " + vaginaDescript(0) + ". The demon, unable to escape his debilitating arousal, begins to lap at your " + vaginaDescript(0) + ". He twists his lips and drills his tongue into you, mercilessly attacking your " + clitDescript() + ", and you scream, howl and cringe in ecstasy. He begins to lift up, probably to get into position above you, but you force his face back down into your " + vaginaDescript(0) + ". After dropping a line about how he has to make your cum or get his head ripped off, Akbal whines, obviously distressed at not being able to slip his aching member into your " + vaginaDescript(0) + ".\n\n", false);
outputText("With a sadistic laugh you ride out your orgasm until you're reduced to a shuddering heap on the floor. After you've recovered, you stand and gather your " + player.armorName + ", leaving Akbal in a groaning mess behind you. He howls as he claws the ground, his barbed cock still rock hard beneath him. As you walk away, you notice a group of imps watching you and the jaguar demon with their cocks out and leaking, their jagged teeth spread into feral grins. You even spy a few goblins mixed in the crowd, and each is twirling a bottle of liquid while playing with their snatches.\n\n", false);
outputText("Akbal snarls as you leave, the creatures that once feared him using his aroused state to get revenge on the 'god' of the terrestrial fire. Even after you've reached the edge of the forest, the jaguar demon's pained howls can still be heard – though, just barely over the high-pitched laughter of the demon imps and the cackling of the goblin females.", false);
}
stats(0,0,0,0,0,0,-100,1);
eventParser(5007);
}
function girlsRapeAkbal():void {
flags[AKBAL_BITCH_Q]++;
outputText("", true);
outputText("You smirk to yourself quietly as the so called \"God of Terrestrial Fire\" lays in a twitching heap on the ground, his flesh squirming as he shifts into his more humanoid form. Removing your " + player.armorName + ", your hand lowers to your feminine slit, pondering how to make use of him.\n\n", false);
//{If Centaur}
if(player.isTaur()) {
outputText("Already you can see the trouble of trying to accommodate someone with your body type, but as they said in your village, \"<i>where there's a will, there's a way</i>\". Grabbing some of the vines from the nearby trees, you approach the near comatose Akbal and sling him over your back, grinning as you work through the details in your mind.\n\n", false);
outputText("Before the feline demon can recover and protest, you bind his arms to the end of the longest vines, throwing them over some of the stronger branches to make a makeshift pulley system. Hauling him up against the bark of the tree, he stirs slightly, but is still unable to work up the strength to fight back. Making the most of the time you figure you have left before he fully awakens, you bind his feet near the base of the tree, effectively turning him into a mounted toy for you to impale your " + vaginaDescript() + " upon.\n\n", false);
outputText("With his arms and legs bound, you take the time to examine your prize, reaching forward to stroke his full, baseball sized sack and swinging barbed shaft. It looks that despite the fact that you beat him into submission, the demon isn't totally opposed to the idea as he stirs to life in your hand, throbbing slightly. The Jaguar starts to open his emerald eyes and glares at you, but nonetheless tries to push his hips forward, giving a snarl of annoyance when he can't work get proper leverage on the tree thanks to your binding.\n\n", false);
outputText("Keeping the vines holding his arms up in hand, you slowly turn around and lift your tail, allowing your sopping mare cunt to wink at Akbal", false);
if(player.hasCock()) outputText(" " + sMultiCockDesc() + " hanging beneath, twitching in anticipation", false);
outputText(". With a smirk at the helpless Gods expense, you take a step back, lining up before pushing yourself against him roughly, shoving his barbed feline shaft deeply into you.", false);
}
//{If Pussy is <loose}
else if(player.vaginalCapacity() < monster.cockArea(0)) {
outputText("Rolling him over onto his back with your foot, you tsk in annoyance, knowing that you won't be able to fit his large kitty-cock between your legs without some considerable pain, and you don't really trust the demon to let his mouth with all those oh-so-sharp teeth near your most sensitive areas. Thankfully, another option is available, currently twitching around your feet.\n\n", false);
outputText("Reaching down, you grab his flicking tail, ignoring his feline Yowl of discomfort, stroking the spotted, silky smooth fur with a few fingers, the sensation creating shivers of lust up your spine. Already images bloom in your mind, creating all kinds of acts you could use this appendage for and plucking the most prominent one from your mind, you grab the demon cat by the scruff of his neck, ", false);
//({If strength >60}
if(player.str > 60) outputText("hauling him towards a tree like a newborn kitten", false);
else outputText("dragging him towards the nearest tree", false);
outputText(" and forcing him to lean back against it.\n\n", false);
outputText("Gripping his tail once more, you grab him by the fur of his head and yank him down to meet the tip, pressing insistently against his lips. Even in his weakened state Akbal refuses until you happen to glance down between his legs. It seems like the demon is more turned on by you taking charge than he would like to admit. ", false);
//({if Naga}
if(player.isNaga()) outputText("You curl the tip of your tail around his length, catching the barbs lightly on your scales and squeezing, coaxing a low yowl of pleasure which you hurriedly make use of, ", false);
//{If Goo}
else if(player.isGoo()) outputText("You focus, extending a small part of your liquid-like body, enveloping his feline meat in yourself, careful to avoid the tip. The sensation of damp warmth around his feline member is too much, making him open his mouth in a silent moan which you hastily use, ", false);
else outputText("Lifting up your " + player.leg() + ", you firmly place the sole of your foot against his barbed flesh, pressing it against his stomach, forcing the jaguar to let out a low moan which you quickly take advantage of, ", false);
outputText("stuffing his own tail into his maw. As he tries to push his tail back out, you remove your " + player.foot() + " pointedly, staring down at the demon. Lifting his hips back up weakly towards you, he meekly begins to suckle on his own appendage, closing his vibrant emerald eyes as you return your attention to his shaft.\n\n", false);
}
//{If Pussy >= Loose}
else {
outputText("You grin as you flip him over onto his back, staring down at his breeding tool between his legs, firmly erect as it rests on his rather full set of balls. Quite clearly, this \"<i>God</i>\" hasn't had much action for quite some time, hence his aggressive nature towards you. You finger yourself slightly as you examine his feline shaft, coated with layers of barbs that look as though they would be quite painful. Leaning down, you run your fingers over them, smirking as they bend slightly. They may not be enough to harm you, but sex would definitely be unpleasant... Unless you happened to have a source of suitable lube nearby.\n\n", false);
outputText("Remembering the cats back home", false);
//({If player has the flexibility Perk}
if(player.hasPerk("Flexibility") >= 0) outputText(" and your own experience with such matters", false);
outputText(", you figure you have a pretty good idea where a reliable source of lube could be. You grin as you grab the demon cat by the scruff of his neck, ", false);
//({If strength >60}
if(player.str > 60) outputText("hauling him towards a tree like a newborn kitten", false);
else outputText("dragging him towards the nearest tree", false);
outputText(" and forcing him to lean back against it.\n\n", false);
outputText("In his dazed state, Akbal offers little resistance when you position him against the tree. That changes however, when you grab the hair of his head and push him down towards his own straining cock. Angry whispers flit at the edge of your mind, easily brushed aside as you reach down and squeeze the demon's cheeks, forcing his mouth to open. Quickly, you plug his maw with his own shaft, holding his head down, forcing him to coat his meat with his own saliva. ", false);
//{If Corruption <30}
if(player.cor < 33) outputText("In a brief moment of pity you reach down, stroking Akbal's strained balls as he suckles, feeling them quiver as he noisily slurps and drools.", false);
else outputText("You smirk, grabbing his full sack almost roughly, shaking them as he stares at you with his emerald eyes, although with rage or lust you can't quite tell.", false);
outputText("\n\n", false);
outputText("Finally, you judge that he's done enough, allowing him to lift his head back up with a splutter, although considering the flowing pre around his tip and over his lips, the experience was hardly a painful one. He glares at you with his burning green eyes as you ", false);
//({if Player is naga}
if(player.isNaga()) outputText("rear up, supporting your weight on your own tail as your hands explore down below, finding your puffed up slit and slowly parting them with a pair of fingers, allowing your scent and dampness to coat the jaguar's snout.", false);
else if(player.isGoo()) outputText("reach out, your liquid-like body coating his legs and holding them open, your hands reaching down to play with your damp, open fuck hole, chuckling as he tries to feign disinterest despite the obvious throbbing of his sack.", false);
else outputText(" begin to stand over him, spreading your legs to reveal your damp, open pussy, his expression turning comically from rage to confusion to one of sheer lust, the feline licking his lips despite his own flavour on them.", false);
outputText("\n\n", false);
outputText("Judging by the shudder of longing that runs through his body, it's clear that he's more turned on by your actions than he would have liked. Using your lower body to pin his legs down, you grab his arms as you sink down, moaning more for his benefit as you brush the tip of his slick member against your entrance.", false);
}
stats(0,0,0,0,0,0,50,0);
//-Page Turn-
doNext(3024);
}
function girlsRapeAkbalPart2():void {
outputText("", true);
hideUpDown();
//Centaur
if(player.isTaur()) {
outputText("You moan deeply as the thick shaft spreads your lips wide, throbbing against your clit as the barbs shudder against your inner walls, pushing your rump firmly against his lower abdomen as you squirm, leaking over his waist", false);
if(player.hasCock()) outputText(", " + sMultiCockDesc() + " swinging back and forth, occasionally bumping into his bound legs", false);
outputText(". The demon groans, clenching his eyes shut as he refuses to like the treatment you're forcing on him, but his body betrays him as a liar as his felinehood thickens and lengthens, more than eager to stuff your box full. It's with no small shiver of delight when you drink in his moans of longing as you pull back to the very tip of his cock.\n\n", false);
//({If Corruption > 30}
if(player.cor > 33) outputText("If you weren't so eager on using him to get off, you might have considered teasing him like that then leaving him bound to the tree. ", false);
outputText("Quickly, you settle into a rhythm of rocking back and forth, the tree creaking as you throw your weight against it with every plunge down, the cat behind you reduced to a mewling, begging kitten, trying in vain to thrust into your sopping cunt.\n\n", false);
outputText("You continue like this for the better part of an hour, his barbs raking your insides and sending constant shivers through your body, but you just can't seem to get off on your bounces alone. Without really thinking it through, you release the vines holding Akbal's arms up to grope your own " + chestDesc() + ", fondling yourself roughly.\n\n", false);
outputText("Thankfully, Akbal is just as desperate to get off as you as he makes use of his new found freedom, one hand clutching the base of your tail, the other grabbing your flank with a clawed paw. Immediately he snarls, shoving his feline dong deep into you, a much better sensation then when you were merely rocking on him, your mare cunt squirting and clenching around him, trying to milk his seed", false);
if(player.hasCock()) outputText(", while your cock slaps at your stomach, pre flying from the tip to coat your lower body and the earth below", false);
outputText(". He buries himself deep over and over, his fat, swollen balls slapping against you, feeling oddly natural", false);
if(player.balls > 0) {
outputText(", your own swaying back to meet him", false);
//({If >=Grapefruit}
if(player.ballSize >= 12) outputText(" dwarfing him despite his pent up lusts", false);
}
outputText(", coaxing moans and groans of sheer pleasure to mingle with his snarls and purrs of enjoyment.\n\n", false);
outputText("In the end the Jaguar finishes first, roaring his pleasure to the trees as he squirts his kitten-cream into your cunt, filling you up. If you were in any state to guess, you could probably imagine the cat filling up your womb as well judging by the swelling of your lower body, causing a flash of concern, wondering if the feline could possibly impregnate your womb. He's not finished however, as he continues to thrust through his release, pulling you higher and higher into orgasmic bliss as you finally release in tandem with his fifth orgasm. Your " + vaginaDescript() + " clenches tightly over him, coating his waist in fem juices as you milk him", false);
if(player.hasCock()) outputText(" as " + sMultiCockDesc() + " twitch and let loose, spraying the ground with your seed", false);
outputText(".\n\n", false);
outputText("Your body trembles as the demon sags down onto your lower back, clutching your equine hips lightly, as you want nothing more but to simply sag down with him, his weight oddly comfortable on your back. Shaking your head to clear it, you begin to turn round, careful not to dislodge Akbal from his obviously comfortable position as you feel him slowly start to shift back into his quadruped form, his dripping shaft slipping out of your pussy with an obscene slurping noise. Lowering your tail, you let the demon slip off, fumbling with the vines around his feet, releasing him as he sprawls on the ground in pure contentment. As you straighten up and start to head back to camp, you realise you feel the same way; perfectly content. Maybe it wouldn't be a bad idea to look out for the God in the future...", false);
//Imp pregnancy
//Preggers chance!
player.knockUp(1,432,101);
cuntChange(monster.cockArea(0), true, true, false);
stats(0,0,0,0,0,0,-100,1);
}
//TOIGHT
else if(player.vaginalCapacity() < monster.cockArea(0)) {
//-Page Turn-
outputText("Judging the silky fur to be slick enough, you yank out the tail from his mouth, pulling it towards your " + vaginaDescript() + " lips, teasing your folds with the tip before guiding him in. Taking the hint, the feline squirms his tail, pushing into you as he lifts his hips up once more, purring lightly as he presses himself against your " + player.foot() + ". His cock is already leaking pre from the tip. You gasp loudly as his fur bristles inside you, his saliva making your womanhood quiver in need as you feel him slip deeper, coiling and twisting. Making sure not to neglect the feline, you", false);
//({If Naga}
if(player.isNaga()) outputText(" squeeze his meat tighter, moving your coils up and down his feline prick while using the very tip of your tail to tease and poke his urethra, coating it in his pre", false);
//({If Goo}
else if(player.isGoo()) outputText(" squirm and writhe over the base of his feline shaft, vibrating your liquid-like appendage like a living sex toy, causing his balls to jiggle slightly", false);
//({If Bipedal}
else outputText(" press his shaft firmer against his stomach, slowly slipping the sole of your foot up and down his length, coaxing out small yowls and purrs of pleasure", false);
outputText(" as silent payment for the pleasure he's flooding your pussy with.\n\n", false);
outputText("Time seems to stretch as you stand there, pinning the god, once so proud and mighty, now just a mewling kitten devoted to your pleasure", false);
//({If Herm}
if(player.hasCock()) outputText(" while you stroke " + oMultiCockDesc() + " in time with his thrusts", false);
outputText(". His flexible tail pokes and strokes your deepest recesses as you keep him permanently on the edge with your teasing treatment while his sharp claws dig furrows into the earth as he strains up against you, too caught up in his pleasure to mentally voice his desires. Instead, he opens his maw to signal his lust as a savage beast would, full of yowls, snarls and purrs, creating an oddly pleasing cacophony to your ears, making you feel like the " + player.mf("Ruler of Beasts","Queen of Beasts") + ", adding your own savage calls to his.\n\n", false);
outputText("The squirming of his tail becomes too much however, as a familiar pressure builds up down below. Increasing the pace upon which you please his shaft, you lower yourself, trying to push more of that skilled tail into you, ", false);
//({If Herm}
if(player.gender == 3) outputText("stroking " + oMultiCockDesc() + " roughly, ", false);
outputText("moaning loudly as your pussy lips begin to clench and tighten, slick juices trickling down his fur. Sensing your closeness, Akbal redoubles his efforts, his writhing tail bristling, dragging his fur along your insides. Finally it becomes too much as you release, your thick fem juices pouring out of your stuffed pussy, falling down onto his straining shaft", false);
if(player.hasCock()) outputText(" as " + sMultiCockDesc() + " offers up its bounty, spasming and adding to the mess", false);
outputText(". The added heat and wetness of your orgasm sets him over the edge as he gives a roar loud enough to shake the trees, his thick, barbed shaft squirting hard, arcing his back as his seed splats onto the leaves of the tree above, falling down as a perverse rain over the pair of you.\n\n", false);
outputText("Your " + chestDesc() + " chest heaves as you struggle to gulp air, " + player.legs() + " quivering from the sheer power of the orgasm the cat's tail gave you. ", false);
//({if cum volume > normal}
if(player.cumQ() > 500) outputText("His entire waist is coated in your juices, the once proud cat sitting in a pool of your leavings, with a contented grin on his face, like the cat that caught the canary", false);
//({If cum volume low/normal}
else outputText("He sits, dazed as your cum covers his groin, his meat still shiny from the torrent you dropped down upon it. Nevertheless, his face is twisted into a purr", false);
outputText(" as he sags against the tree trunk, overwhelmed by the pleasure. With a satisfied grin of your own, you pick up your " + player.armorName + " and head out. Perhaps you should look out for the \"<i>God of Terrestrial fire</i>\" again sometime...", false);
//{No Penetration or fluids exchanged = No corruption increase? Poss. Sensitivity increase/decrease due to fur and/or saliva}
stats(0,0,0,0,0,0,-100,0);
}
//= = = =
//Loose
else {
outputText("You groan loudly as Akbal's impressive shaft stretches your pussy wide, instantly thankful that you had the idea to lube him up beforehand. Your less-than-willing partner adds his own groan to yours, the twitching of his meat signalling that he's not quite to opposed to the idea as he makes out. Maybe he's got a thing about dominance, from either angle. Nevertheless, you continue to push down until your hips reach his with a light bump. The sensation of his immense cock filling you up causes you to shudder, before leaning into the demon, pressing your " + chestDesc() + " against his, revealing in his silky fur stroking multiple parts of your body all at once. The yowling male takes off, ducking his head to lick and nip at your " + nippleDescript(0) + "s", false);
//({If Lactating}
if(player.biggestLactation() >= 1) outputText(", adding a purr of pleasant surprise as he locks his lips around one nipple, drawing out mouthfuls of your sweet milk before gulping it down. The sheer taboo of feeding a demon your milk sending shivers down your spine", false);
outputText(".\n\n", false);
outputText("As you lift yourself off, your head beings to swim as his previously unnoticed barbs rake along your inner walls, tugging, catching and massaging from the inside as they start to vibrate, causing you to ", false);
//({if Naga}
if(player.isNaga()) outputText("wrap your coils around him and the tree, adding leverage to your plunges down", false);
//({If Goo}
else if(player.isGoo()) outputText("encase yourself around his hips and groin, your entire lower body writhing and squirming around his shaft", false);
//({If Bipedal}
else outputText("lock your legs around his torso, bouncing upon him with greater force", false);
outputText(". As your mouth hangs open, the demon lunges forward, pressing his own snout against your " + player.face() + ". You can still taste the traces of his own pre on his lips and tongue, furthering your lust as you use his groin roughly, impaling yourself hard enough to leave bruises on the pair of you, while he uses his tail to ", false);
//({if herm}
if(player.cockTotal() == 1) outputText("wrap around your own straining shaft, the fur enhancing the effects of his pumps", false);
//({If more than 1 cock}
else if(player.cockTotal() > 1) outputText("wrap around each of your throbbing malehoods with difficulty, teasing them with his bristled fur", false);
//({If female}
else outputText("stroke and tickle your ass and lower back", false);
outputText(".\n\n", false);
outputText("You're not sure how long you sit there, bouncing roughly on the feline demon's cock, his eyes clenched tightly shut as he revels in the feeling of your warm damp pussy and your " + buttDescript() + " grinding against his swollen sack. Eventually, his combined efforts of mouth, shaft and tail force you over the edge, your hungry pussy lips clenching tightly over him, rhythmically squeezing as you attempt to milk his shaft", false);
//({if Herm}
if(player.hasCock()) outputText(" as " + sMultiCockDesc() + " twitches and strains, ready to blow", false);
outputText(", and he certainly doesn't disappoint. With a roar loud enough to shake the trees, he erupts violently within your passage, his hot, steaming, fertile seed pouring into your depths", false);
//({if Herm}
if(player.cockTotal() == 1) outputText(", setting your own malehood off in sympathy, squirting thick cream over his chest", false);
else if(player.cockTotal() > 1) outputText(" setting each of your malenesses surging, splattering the feline with your seed", false);
outputText(", his face twisted into a snarl of pleasure and satisfaction.\n\n", false);
outputText("You slowly come down from your orgasmic high, struggling to remove yourself from the demon's lap and heading unsteadily towards your " + player.armorName + " as fresh feline seed pours down your body, wincing at the slight bruising to your womanhood. Rubbing a hand over your stomach, you start to wonder if perhaps it was a touch risky to allow a demon to shoot his seed into your womb. However, despite the mild throbbing, you feel refreshed and oddly strengthened by Akbal's potent seed, glancing over your shoulder to see the once proud god revealing in his own release. Perhaps it wouldn't be a bad idea to seek him out some other time...", false);
stats(0,0,0,0,0,0,-100,1);
//Imp pregnancy
//Preggers chance!
player.knockUp(1,432,101);
}
eventParser(5007);
}
function loseToAckballllllz():void {
flags[17] = -1;
flags[AKBAL_BITCH_Q] = 0;
outputText("", true);
//[Defeat via HP]
if(player.HP < 1) {
outputText("The intense pain causes you to black out. The last thing you see is Akbal standing over you on his two hind legs, his massive cock ominously swinging between them as he watches you lose consciousness.\n\n", false);
eventParser(5007);
return;
}
//[Defeat via Lust]
else if(player.lowerBody != 4) {
outputText("You fall to your knees and begin to feverishly masturbate. Akbal rises onto his two hind legs, his body shifting into more humanoid as he stands. His long cock swings ominously between legs as he walks towards you. The first thing he does is pull his massive 15-inch cock to your lips, slapping the shaft against your chin.\n\n", false);
outputText("Like a whore in heat, you open your mouth and lewdly lick the jaguar demon's cock head, feeling odd barbs rub against your tongue. Your mouth opens wide, but can't even get past the head before the sheer girth of Akbal's massive sex organ halts its advance. Akbal is content to let you orally fumble with the head for only a few moments before he pushes down onto your back. His claws tickle your thighs as he forces your " + player.legs() + " up over your head, bringing your " + assholeDescript() + " into plain view.\n\n", false);
outputText("\"<i>Defiance repaid,</i>\" is all you hear from the chorus of voices in your head as Akbal displays his massive length to you. Your eyes widen in horror, counting a dozen wicked-looking barbs on the head of his overtly thick and over-sized cock.\n\n", false);
}
//Centaurs R SPECIALZ
else if(player.lowerBody == 4) {
outputText("You stumble like a drunken pony as your lust goes into the red zone and you know in the pit of your stomach that you are at this wicked demon's mercy.\n\n", false);
outputText("Akbal rises onto his two hind legs, his body becoming more humanoid as he does. His long, semi-erect cock swings ominously his legs as he walks towards you.\n\n", false);
outputText("\"<i>Defiance repaid,</i>\" is all you hear from the chorus of voices in your head as Akbal displays his massive length to you. Your eyes widen in horror as you count a dozen wicked looking barbs on the head of his overtly thick, gargantuan cock.\n\n", false);
//(Small/Virgin Pucker)
if(player.ass.analLooseness < 3) {
outputText("Akbal begins to push into you, the barbs on his massive head causing you to howl as your " + assholeDescript() + " is forcibly stretched. His jaguar claws grab your sides as he uses your body as leverage to force his demonic erection into you.\n\n", false);
outputText("When Akbal shoves forward the strain makes you feel as though you are going to pass out, the pain from his spiked sex organ is just enough to leave you concious. He begins to withdraw and you realize he's not even forcing half the length of that swollen sex organ into your " + assholeDescript() + ".\n\n", false);
outputText("After hours of Akbal's long cat dick being slowly forced into your " + assholeDescript() + " your body gives out and you become too exhausted from the strain to even lift your arms. With a triumphant growl Akbal thrusts forward, his cock head spikes burying themselves into you but, without your resistance, they seem to vibrate inside you like twelve little beads massaging your innards. The sudden change makes you croon as you paw the ground with your hooves, suddenly desperate for more.", false);
}
//(Medium Pucker)
else if(player.ass.analLooseness < 5) {
outputText("Akbal begins to push into you, the barbs on his massive cock head causing you to wince as you are forcibly stretched. Without warning he forces the entirety of his massive length into you with a snarl. The initial incursion makes you grind your teeth as that spiked rod invades your " + assholeDescript() + ". You widen your stance in an attempt to lessen the sudden slicing pressure created by the barbed cock head. The moment you do the barbs start to vibrate, beginning to feel more like humming sex beads than the wicked looking battering ram you know is inside you. You can't suppress the sudden sounds coming from your throat and exclaiming your ecstasy to your rapist.", false);
}
//(Gapping Pucker)
//[hp heals 50% after this if that's ok with
//you Fen]
else {
outputText("Akbal begins to push into you, the barbs on his massive cock head causing you to wince. He bottoms out instantly and you hear a pleased purr behind you. As he begins to pump his blood engorged sex organ in and out of your " + assholeDescript() + " with steadily mounting force you can't help but wonder why the barbs aren't causing you pain. You release a groan as those very barbs start to vibrate and begin feeling more like humming sex beads than punishing spikes.\n\n", false);
outputText("Akbal snarls as he slams his hips into you, obviously happy that you're able to take his massive length. The demon appears to forget he's raping you and begins licking the back of your horse like bottom half, sending shivers throughout your entire body as he roughly fucks you while painting your back with his saliva.", false);
}
buttChange(monster.cockArea(0), true);
outputText("\n\n", false);
//(Ending)
outputText("The entire length of Akbal's embedded cock begins to hum inside you, causing you to cry out as he picks up the pace. His every thrust is a hammer like thump against your hungry cheeks. Without warning his thrusts become sloppy and you feel his giant tool swelling inside you, stretching you out even more.\n\n", false);
outputText("Suddenly Akbal roars as he reaches his climax. You feel his giant cock hosing down your insides, filling you with his corrupted demon seed as he rides out his orgasm. His hips never stop. You feel your own orgasm rising to the surface only to suddenly fizzle out and you realize the corrupted seed inside you is actually stopping you from reaching climax. Akbal, however, sprays his spunk into your " + assholeDescript() + " again and again and never slows for a moment. Soon your stomach is obscenely swollen and you even taste cat jizz in your throat. Yet Akbal just keeps going, brutally fucking your helpless body and denying you release.\n\n", false);
outputText("After hours of being his toy you pass out, never having reached your own orgasm.", false);