Newer
Older
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
globalThis.FSlaveFeed = function(slave, milkTap) {
const el = new DocumentFragment();
let _pregDiscovery = 0;
const {
His, He,
his, he, him, himself, wife, girl, hers
} = getPronouns(slave);
const {
His2, He2,
his2, he2, him2, wife2
} = getPronouns(milkTap).appendSuffix("2");
let _incestGive;
let _incestTake;
let r = [];
const relative = relativeTerm(slave, milkTap);
App.Events.drawEventArt(el, [slave, milkTap])
if (slave.inflationType === "milk") {
slave.milkSource = milkTap.ID;
if (milkTap.behavioralQuirk === "sinful" || milkTap.sexualQuirk === "perverted" || milkTap.fetish === "incest") { // incest is a planned fetish, don't touch it!
_incestGive = 1;
}
if (slave.behavioralQuirk === "sinful" || slave.sexualQuirk === "perverted" || slave.fetish === "incest") {
_incestTake = 1;
}
r.push(`The first necessary step is to prepare the milk cow and ${his2} udders.`);
if (milkTap.fuckdoll > 0) {
r.push(`This is hilariously easy, as you have complete control over how ${milkTap.slaveName} is posed.`);
} else if (milkTap.fetish === "mindbroken") {
r.push(`This is very easy, as ${milkTap.slaveName} blankly follows your every will. Combined with ${his2} instinct to relieve the pressure in ${his2} breasts, ${he2} is simple to position.`);
} else if (milkTap.rivalryTarget === slave.ID) {
r.push(`This is rather easy, as ${milkTap.slaveName} wants to `);
if (canSee(milkTap)) {
r.push(`see`);
} else {
r.push(`feel`);
}
r.push(`${slave.slaveName}'s belly swell painfully as ${he} is force-fed ${his2} milk.`);
if (milkTap.lactation > 1) {
r.push(`${he} is practically gushing milk with excitement`);
} else {
r.push(`It takes minimal effort to get ${his2} milk flowing`);
}
r.push(`.`);
} else if (milkTap.relationshipTarget === slave.ID) {
r.push(`This is rather easy, as ${milkTap.slaveName}`);
if (milkTap.relationship === 1) {
r.push(`wants ${his2} friend to try ${his2} milk, fresh from the source.`);
} else if (milkTap.relationship === 2) {
r.push(`wants ${his2} best friend to try ${his2} milk, fresh from the source.`);
} else if (milkTap.relationship === 3) {
r.push(`can't wait to have some fun with ${his2} friend with benefits.`);
} else if (milkTap.relationship === 4) {
r.push(`enjoys spending intimate time with ${his2} lover, and having ${his2} breasts suckled is one of ${his2} favorites.`);
} else if (milkTap.relationship === 5) {
r.push(`enjoys spending intimate time with ${his2} ${wife}, and having ${his2} breasts suckled is one of ${his2} favorites.`);
}
if (milkTap.lactation > 1) {
r.push(`${He2} is practically gushing milk with excitement`);
} else {
r.push(`It takes minimal effort to get ${his2} milk flowing`);
}
r.push(`.`);
} else if ((milkTap.fetish === "boobs") && (milkTap.fetishKnown === 1) && (milkTap.fetishStrength > 60) && (milkTap.devotion >= -20)) {
r.push(`This is very easy, since ${milkTap.slaveName} loves ${his2} tits played with and can't wait to get suckled. `);
if (milkTap.lactation > 1) {
r.push(`${he2} is practically gushing milk with excitement`);
} else {
r.push(`It takes next to no effort to get ${his2} milk flowing`);
}
r.push(`.`);
} else if (slave.mother === milkTap.ID) {
if (_incestGive) {
r.push(`This is easy enough, as ${milkTap.slaveName} fondly remembers nursing ${his2} ${relativeTerm(milkTap, slave)}.`);
} else {
r.push(`This is fairly easy, as ${milkTap.slaveName}'s body remembers nursing ${his2} ${relativeTerm(milkTap, slave)}, even if ${he} is resistant to the idea.`);
}
if (milkTap.lactation > 1) {
r.push(`${He2} is practically gushing milk with nostalgia.`);
} else {
r.push(`It takes minimal effort to get ${his2} milk flowing.`);
}
} else if (slave.father === milkTap.ID) {
if (_incestGive) {
r.push(`This is easy enough, as ${milkTap.slaveName} is aroused at the thought of breast feeding the ${girl} ${he2} sired.`);
if (milkTap.lactation > 1) {
r.push(`${He2} is practically gushing milk with excitement.`);
} else {
r.push(`It takes minimal effort to get ${his2} milk flowing.`);
}
} else {
r.push(`This is extremely tough, as ${milkTap.slaveName} is very uncomfortable breast feeding the ${girl} ${he2} sired.`);
if (milkTap.lactation > 1) {
r.push(`${His2} excessive milk production quickly leaves ${him2} eager for release, however.`);
} else {
r.push(`It takes some coaxing and kneading to get ${his2} milk flowing and ${him2} eager for relief.`);
}
}
} else if (milkTap.mother === slave.ID) {
if (_incestGive) {
r.push(`This is easy enough, as ${milkTap.slaveName} is aroused at the lewdity of breast feeding ${his2} own mother.`);
if (milkTap.lactation > 1) {
r.push(`${He2} is practically gushing milk with excitement.`);
} else {
r.push(`It takes minimal effort to get ${his2} milk flowing.`);
}
} else {
r.push(`This is moderately tough, as ${milkTap.slaveName} finds it awkward to nurse ${his2} own mother.`);
if (milkTap.lactation > 1) {
r.push(`${His2} excessive milk production quickly leaves ${him2} eager for release.`);
} else {
r.push(`It takes some coaxing and kneading to get ${his2} milk flowing and ${him2} eager for relief.`);
}
}
} else if (milkTap.father === slave.ID) {
if (_incestGive) {
r.push(`This is easy enough, as having ${his2} father drink ${his2} milk is a taboo ${milkTap.slaveName} can't wait to break.`);
if (milkTap.lactation > 1) {
r.push(`${He2} is practically gushing milk with excitement.`);
} else {
r.push(`It takes minimal effort to get ${his2} milk flowing.`);
}
} else {
r.push(`This is very tough, as ${milkTap.slaveName} finds it weird to let ${his2} father suckle from ${him2}.`);
if (milkTap.lactation > 1) {
r.push(`${His2} excessive milk production quickly leaves ${him2} eager for release, however.`);
} else {
r.push(`It takes some coaxing and kneading to get ${his2} milk flowing and ${him2} eager for relief.`);
}
}
} else if (areSisters(slave, milkTap) === 1) {
if (_incestGive) {
r.push(`This is easy enough, as having ${milkTap.slaveName} enjoys sexually experimenting with ${his2} ${relative}.`);
} else {
r.push(`This is easy enough, as ${milkTap.slaveName} wants ${his2} ${relative} to try ${his2} milk, but only if ${he} can taste ${hers} too.`);
}
if (milkTap.lactation > 1) {
r.push(`${He2} is practically gushing milk with excitement.`);
} else {
r.push(`It takes minimal effort to get ${his2} milk flowing.`);
}
} else if (areSisters(slave, milkTap) === 2) {
if (_incestGive) {
r.push(`This is easy enough, as having ${milkTap.slaveName} enjoys sexually experimenting with ${his2} ${relative}.`);
if (milkTap.lactation > 1) {
r.push(`${He2} is practically gushing milk with excitement.`);
} else {
r.push(`It takes minimal effort to get ${his2} milk flowing.`);
}
} else {
r.push(`This is moderately tough, as ${milkTap.slaveName} is uncomfortable getting so intimate with ${his2} ${relativeTerm(milkTap, slave)}.`);
if (milkTap.lactation > 1) {
r.push(`${His2} excessive milk production quickly leaves ${him2} eager for release.`);
} else {
r.push(`It takes some coaxing and kneading to get ${his2} milk flowing and ${him2} eager for relief.`);
}
}
} else if (areSisters(slave, milkTap) === 3) {
if (_incestGive) {
r.push(`This is easy enough, as having ${milkTap.slaveName} enjoys sexually experimenting with ${his2} ${relative}.`);
if (milkTap.lactation > 1) {
r.push(`${He2} is practically gushing milk with excitement.`);
} else {
r.push(`It takes minimal effort to get ${his2} milk flowing.`);
}
} else {
r.push(`This is slightly difficult, as ${milkTap.slaveName} is uncomfortable getting so intimate with ${his2} ${relativeTerm(milkTap, slave)}.`);
if (milkTap.lactation > 1) {
r.push(`${His2} excessive milk production quickly leaves ${him2} eager for release.`);
} else {
r.push(`It takes some coaxing and kneading to get ${his2} milk flowing and ${him2} eager for relief.`);
}
}
} else if ((milkTap.lactation > 1) && (milkTap.devotion >= -20)) {
r.push(`Since ${milkTap.slaveName} produces so much milk, ${he2} eagerly accepts any source of relief ${he2} can manage.`);
} else if ((milkTap.devotion > 50)) {
r.push(`Since ${milkTap.slaveName} is devoted to you, ${he2}'ll allow anyone you want to drink deeply from ${him2}.`);
} else if ((milkTap.devotion > 20)) {
r.push(`Since ${milkTap.slaveName} is obedient, ${he2} appreciates any relief from ${his2} swollen breasts.`);
} else if ((milkTap.devotion >= -20)) {
r.push(`Since ${milkTap.slaveName} does not resist your will, ${he2} should comply reasonably well. If anything, ${he}'ll at least be thankful to be relieved of some pressure.`);
} else {
r.push(`Since ${milkTap.slaveName} is unlikely to comply willingly, you simply restrain ${him2} with ${his2} tits exposed and ready to be drank from. `);
if (milkTap.lactation > 1) {
r.push(`You affix nipple clamps to ${his2} ${milkTap.nipples} nipples and step back to watch ${his2} breasts back up with milk. When ${he2} is unclamped, the flow should certainly be strong enough for your desires`);
} else {
r.push(`You make sure to roughly coax ${his2} milk into flowing, all the while reminding ${him2} that ${he2} is nothing more than a cow now`);
}
r.push(`.`);
}
App.Events.addNode(el, r, "p");
r = [];
r.push(`Next, you see to ${slave.slaveName}.`);
if (isAmputee(slave)) {
r.push(`You move the limbless ${girl} to ${milkTap.slaveName}'s nipple and strap ${him} to it to prevent it from falling out of ${his} mouth.`);
} else if (tooBigBreasts(slave)) {
r.push(`You set ${him} up so that ${his} massive breasts pin ${him} on ${milkTap.slaveName}'s milky nipple.`);
} else if (milkTap.fuckdoll > 0) {
r.push(`${He} hesitantly brings ${his} mouth to its milky nipple, uncertain about suckling from a living doll.`);
} else if (slave.rivalryTarget === milkTap.ID) {
r.push(`Knowing ${his} relationship with ${milkTap.slaveName}, you feel it best to restrain ${him} and anchor ${him} to milkTap.slaveName's milky nipple so ${he} has no choice but to drink until you release ${him}.`);
} else if (slave.relationshipTarget === milkTap.ID) {
r.push(`This is rather easy, as `);
slave.slaveName
if (slave.relationship === 1) {
r.push(`licks ${his} lips as ${he} approaches ${his} friend's breasts.`);
} else if (slave.relationship === 2) {
r.push(`eagerly licks ${his} lips as ${he} approaches ${his} best friend's breasts.`);
} else if (slave.relationship === 3) {
r.push(`licks ${his} lips and smiles as ${he} approaches ${his} friend with benefits' breasts, knowing well how ${his2} `);
if (canTaste(slave)) {
r.push(`milk tastes`);
} else {
r.push(`body feels`);
}
r.push(`.`);
} else if (slave.relationship === 4) {
r.push(`licks ${his} lips and smiles as ${he} approaches ${his} lover's breasts. This won't be the first time ${he}'s suckled from ${him2} like this.`);
} else if (slave.relationship === 5) {
r.push(`licks ${his} lips and smiles as ${he} approaches ${his} ${wife2}'s breasts. This won't be the first time ${he}'s suckled from ${him2} like this.`);
}
} else if (slave.mother === milkTap.ID) {
r.push(`${He} draws close to ${his} mother's nipples, trying to remember if ${he} once had a favorite.`);
} else if (slave.father === milkTap.ID) {
if (_incestTake) {
r.push(`${He} eagerly wraps ${his} lips around ${his} father's nipple.`);
if (canAchieveErection(milkTap)) {
r.push(` ${He} shudders with budding lust when ${he} feels the dick that sired ${him} poking at ${his} belly.`);
}
} else {
r.push(`${He} hesitatingly lowers ${himself} to ${his} father's nipple.`);
if (canAchieveErection(milkTap)) {
r.push(` ${He} nearly backs away when ${he} feels the dick that sired ${him} poking at ${his} belly.`);
}
}
} else if (milkTap.mother === slave.ID) {
r.push(`${He} `);
if (_incestTake) {
r.push(`happily`);
} else {
r.push(`awkwardly`);
}
r.push(` brings ${his} lips to ${his} relative's nipple.`);
} else if (milkTap.father === slave.ID) {
r.push(`${He} `);
if (_incestTake) {
r.push(`eagerly`);
} else {
r.push(`awkwardly`);
}
r.push(` brings ${his} lips to ${his} relative's nipple`);
if (canAchieveErection(slave)) {
r.push(`, ${his} cock steadily hardening at the perversion of suckling from ${his} child`);
}
r.push(`.`);
} else if (areSisters(slave, milkTap) === 1) {
r.push(`${He} readily gets in position to `);
if (canTaste(slave)) {
r.push(`taste`);
} else {
r.push(`suckle from`);
}
r.push(` ${his} ${relative}`);
if (slave.lactation > 0) {
r.push(` while coaxing ${his} own milk to flow`);
}
r.push(`.`);
} else if (areSisters(slave, milkTap) === 2) {
r.push(`${He} `);
if (_incestTake) {
r.push(`eagerly wraps ${his} lips around`);
} else {
r.push(`hesitatingly lowers ${himself} to`);
}
r.push(` ${his} relative's nipple.`);
} else if (areSisters(slave, milkTap) === 3) {
r.push(`${He} `);
if (_incestTake) {
r.push(`eagerly wraps ${his} lips around`);
} else {
r.push(`hesitatingly lowers ${himself} to`);
}
r.push(` ${his} relative's nipple.`);
} else if ((slave.fetish === "boobs") && (slave.fetishKnown === 1) && (slave.fetishStrength > 60) && (slave.devotion >= -20)) {
r.push(`${He} can't wait to `);
if (hasBothArms(slave)) {
r.push(`wrap ${his} hands around`);
} else {
r.push(`get between`);
}
r.push(` ${milkTap.slaveName}'s massive milky breasts and eagerly approaches ${his} nipples to suckle.`);
} else if ((slave.fetish === "submissive") && (slave.fetishStrength > 60) && (slave.fetishKnown === 1)) {
r.push(`${He} is accustomed to submitting to you, but as a natural submissive ${he} doesn't have much trouble submitting to ${milkTap.slaveName}'s mothering instead.`);
} else if (slave.devotion < -20) {
r.push(`${He} tries to refuse, so you strap ${him} to ${milkTap.slaveName}'s breast, milky milkTap.nipples nipple wedged in ${his} mouth.`);
} else if (slave.devotion <= 20) {
r.push(`${He} obeys your orders reluctantly, drawing near ${milkTap.slaveName}'s breasts despite ${his} obvious hesitation to be filled with milk.`);
} else if (slave.devotion <= 50) {
r.push(`${He} obeys your orders, drawing near ${milkTap.slaveName}'s breasts despite ${his} slight hesitation at the idea of being filled with milk.`);
} else {
r.push(`${He} happily obeys your orders, eagerly wrapping ${his} lips around ${milkTap.slaveName}'s milky milkTap.nipples nipple and suckling enthusiastically.`);
}
App.Events.addNode(el, r, "p");
r = [];
if (slave.preg > slave.pregData.normalBirth/13.33 && slave.pregKnown === 0 && slave.inflation > 1) {
r.push(`It becomes abundantly clear that something is wrong with `);
slave.slaveName
r.push(` as ${he} struggles to down ${his} milky meal. Before ${his} health can be affected further, you pull ${him} into a medical exam. While most of the tests come back normal, one in particular catches your eye; <span class="lime">${he} is pregnant`);
if (slave.preg > slave.pregData.normalBirth/4) {
r.push(` and surprisingly far along`);
}
r.push(`.</span> ${he} should be able to still handle at least two liters of milk, however.`);
deflate(slave);
slave.pregKnown = 1, _pregDiscovery = 1;
} else if (milkTap.fuckdoll > 0) {
r.push(`Slight moaning emanates from the Fuckdoll as `);
slave.slaveName
r.push(` drinks from ${his2} breasts. You enjoy the show, specifically the sight of ${slave.slaveName}'s belly steadily growing larger until `);
if (slave.inflation === 3) {
r.push(`${his} belly is round and taut, making ${him} look pregnant. ${He} pops off ${his2} nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and rubbing ${his} gurgling stomach`);
}
} else if (slave.inflation === 2) {
r.push(`${his} belly is round, jiggling and sloshing with milk. ${He} pops off ${his2} nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} wobbling, gurgling stomach`);
}
} else if (slave.inflation === 1) {
r.push(`${his} belly is distended and sloshing with milk. ${He} pops off ${his2} nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} gurgling stomach`);
}
}
r.push(`.`);
} else if (milkTap.rivalryTarget === slave.ID) {
r.push(`${milkTap.slaveName} grins as ${his2} rival is forced to drink until ${his} belly is `);
if (slave.inflation === 3) {
r.push(`nearly bursting with milk. `);
slave.slaveName
r.push(` struggles against ${his} bindings until the pressure building in ${him} overwhelms ${him}, causing ${him} to pass out directly into ${milkTap.slaveName}'s cushiony breasts. You quickly remove ${him} from the nipple before ${he} drowns`);
} else if (slave.inflation === 2) {
r.push(`is rounded, jiggling and sloshing with milk. You release ${his} bindings, allowing ${him} to flop to the floor. `);
if (hasAnyArms(slave)) {
r.push(`${He} gingerly crawls away from ${milkTap.slaveName}, `);
if (hasBothArms(slave)) {
r.push(`one`);
} else {
r.push(`${his}`);
}
r.push(` hand cradling ${his} overfull stomach`);
} else {
r.push(`${He} rolls onto ${his} side, groaning with discomfort`);
}
} else if (slave.inflation === 1) {
r.push(`bloated with milk. You release ${his} bindings, allowing ${him} to flop to the floor. `);
if (hasAnyArms(slave)) {
r.push(`${He} gingerly sits up and begins massaging ${his} full stomach`);
} else {
r.push(`${He} rolls onto ${his} back, hiccupping pathetically`);
}
}
r.push(`.`);
} else if (milkTap.relationshipTarget === slave.ID) {
if (milkTap.relationship === 1) {
r.push(`${milkTap.slaveName} sighs contently as ${his2} friend drinks deeply from ${his2} breasts. You enjoy the show, specifically the sight of ${slave.slaveName}'s belly steadily growing larger until`);
if (slave.inflation === 3) {
r.push(`${his} belly is round and taut, making ${him} look pregnant. ${He} pops off ${his} friend's nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and rubbing ${his} gurgling stomach`);
}
} else if (slave.inflation === 2) {
r.push(`${his} belly is round, jiggling and sloshing with milk. ${He} pops off ${his} friend's nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} wobbling, gurgling stomach`);
}
} else if (slave.inflation === 1) {
r.push(`${his} belly is distended and sloshing with milk. ${He} pops off ${his} friend's nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} gurgling stomach`);
}
}
r.push(`.`);
} else if (milkTap.relationship === 2) {
r.push(`${milkTap.slaveName} sighs contently as ${his2} best friend drinks deeply from ${his2} breasts. You enjoy the show, specifically the sight of ${slave.slaveName}'s belly steadily growing larger until `);
if (slave.inflation === 3) {
r.push(`${his} belly is round and taut, making ${him} look pregnant. ${He} pops off ${his} best friend's nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and rubbing ${his} gurgling stomach`);
}
} else if (slave.inflation === 2) {
r.push(`${his} belly is round, jiggling and sloshing with milk. ${He} pops off ${his} best friend's nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} wobbling, gurgling stomach`);
}
} else if (slave.inflation === 1) {
r.push(`${his} belly is distended and sloshing with milk. ${He} pops off ${his} best friend's nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} gurgling stomach`);
}
}
r.push(`.`);
} else if (milkTap.relationship === 3) {
r.push(`${milkTap.slaveName} moans lewdly as ${his2} friend with benefits drinks deeply from ${his2} breasts, savoring it despite commonly nursing `);
slave.slaveName
r.push(` during their lovemaking. You enjoy the show, specifically the sight of ${slave.slaveName}'s belly steadily growing larger until`);
if (slave.inflation === 3) {
r.push(`${his} belly is round and taut, making ${him} look pregnant. ${He} pops off ${his} friend with benefits' nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and rubbing ${his} gurgling stomach`);
}
} else if (slave.inflation === 2) {
r.push(`${his} belly is round, jiggling and sloshing with milk. ${He} pops off ${his} friend with benefits' nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} wobbling, gurgling stomach`);
}
} else if (slave.inflation === 1) {
r.push(`${his} belly is distended and sloshing with milk. ${He} pops off ${his} friend with benefits' nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} gurgling stomach`);
}
}
r.push(`.`);
} else if (milkTap.relationship === 4) {
r.push(`${milkTap.slaveName} moans lewdly as ${his2} lover drinks deeply from ${his2} breasts, savoring it despite commonly nursing `);
slave.slaveName
r.push(` during their lovemaking. You enjoy the show, specifically the sight of ${slave.slaveName}'s belly steadily growing larger until `);
if (slave.inflation === 3) {
r.push(`${his} belly is round and taut, making ${him} look pregnant. ${He} pops off ${his} lover's nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and rubbing ${his} gurgling stomach`);
}
} else if (slave.inflation === 2) {
r.push(`${his} belly is round, jiggling and sloshing with milk. ${He} pops off ${his} lover's nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} wobbling, gurgling stomach`);
}
} else if (slave.inflation === 1) {
r.push(`${his} belly is distended and sloshing with milk. ${He} pops off ${his} lover's nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} gurgling stomach`);
}
}
r.push(`.`);
} else if (milkTap.relationship === 5) {
r.push(`${milkTap.slaveName} moans lewdly as ${his2} wife drinks deeply from ${his2} breasts, savoring it despite commonly nursing `);
slave.slaveName
r.push(` during their lovemaking. You enjoy the show, specifically the sight of ${slave.slaveName}'s belly steadily growing larger until `);
if (slave.inflation === 3) {
r.push(`${his} belly is round and taut, making ${him} look pregnant. ${He} pops off ${his} ${wife2}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and rubbing ${his} gurgling stomach`);
}
} else if (slave.inflation === 2) {
r.push(`${his} belly is round, jiggling and sloshing with milk. ${He} pops off ${his} ${wife2}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} wobbling, gurgling stomach`);
}
} else if (slave.inflation === 1) {
r.push(`${his} belly is distended and sloshing with milk. ${He} pops off ${his} ${wife2}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} gurgling stomach`);
}
}
r.push(`.`);
}
} else if (slave.mother === milkTap.ID) {
r.push(`${milkTap.slaveName} sighs contently as ${his2} little ${girl} once again suckles from ${his2} breasts. You enjoy the show, specifically the sight of ${slave.slaveName}'s belly steadily growing larger until`);
if (slave.inflation === 3) {
r.push(`${his} belly is round and taut, making ${him} look pregnant. ${He} pops off ${his} mother's nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and rubbing ${his} gurgling stomach`);
}
} else if (slave.inflation === 2) {
r.push(`${his} belly is round, jiggling and sloshing with milk. ${He} pops off ${his} mother's nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} wobbling, gurgling stomach`);
}
} else if (slave.inflation === 1) {
r.push(`${his} belly is distended and sloshing with milk. ${He} pops off ${his} mother's nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} gurgling stomach`);
}
}
r.push(`.`);
} else if (slave.father === milkTap.ID) {
r.push(`${milkTap.slaveName} moans lewdly as ${his2} ${relativeTerm(milkTap, slave)} suckles from ${his2} breasts`);
if (canAchieveErection(milkTap)) {
r.push(`, ${his2} dick throbbing with lust`);
}
r.push(`. You enjoy the show, specifically the sight of ${slave.slaveName}'s belly steadily growing larger until`);
if (slave.inflation === 3) {
r.push(`${his} belly is round and taut, making ${him} look pregnant. ${He} pops off ${his} father's nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and rubbing ${his} gurgling stomach`);
}
} else if (slave.inflation === 2) {
r.push(`${his} belly is round, jiggling and sloshing with milk. ${He} pops off ${his} father's nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} wobbling, gurgling stomach`);
}
} else if (slave.inflation === 1) {
r.push(`${his} belly is distended and sloshing with milk. ${He} pops off ${his} father's nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} gurgling stomach`);
}
}
if (canAchieveErection(milkTap)) {
if (_incestTake) {
r.push(`. The way ${he} is wiggling ${his} hips suggests ${he} isn't finished with ${his} daddy just yet, and ${his} father's moaning confirms ${he} is teasing ${him2} with ${his} rear. ${He} giggles as the horny cow unloads on ${his} backside`);
} else {
r.push(`. ${He} doesn't stay put for long, as a strong moan and a blast of cum across ${his} rear from the horny cow startles ${him} from ${his} rest`);
}
}
r.push(`.`);
} else if (milkTap.mother === slave.ID) {
r.push(`${milkTap.slaveName} moans lewdly as ${he2} enjoys some role reversal as ${his2} mother suckles from ${his2} breasts. You enjoy the show, specifically the sight of ${slave.slaveName}'s belly steadily growing larger until `);
if (slave.inflation === 3) {
r.push(`${his} belly is round and taut, making ${him} look pregnant. ${He} pops off ${his} ${relative}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and rubbing ${his} gurgling stomach`);
}
} else if (slave.inflation === 2) {
r.push(`${his} belly is round, jiggling and sloshing with milk. ${He} pops off ${his} ${relative}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} wobbling, gurgling stomach`);
}
} else if (slave.inflation === 1) {
r.push(`${his} belly is distended and sloshing with milk. ${He} pops off ${his} ${relative}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} gurgling stomach`);
}
}
r.push(`.`);
} else if (milkTap.father === slave.ID) {
r.push(`${milkTap.slaveName} moans lewdly as ${his2} father suckles from ${his2} breasts. You enjoy the show, specifically the sight of ${slave.slaveName}'s belly steadily growing larger until`);
if (slave.inflation === 3) {
r.push(`${his} belly is round and taut, making ${him} look pregnant. ${He} pops off ${his} ${relative}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and rubbing ${his} gurgling stomach`);
}
} else if (slave.inflation === 2) {
r.push(`${his} belly is round, jiggling and sloshing with milk. ${He} pops off ${his} ${relative}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} wobbling, gurgling stomach`);
}
} else if (slave.inflation === 1) {
r.push(`${his} belly is distended and sloshing with milk. ${He} pops off ${his} ${relative}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} gurgling stomach`);
}
}
r.push(`.`);
} else if (areSisters(slave, milkTap) === 1) {
r.push(`${milkTap.slaveName} sighs contently as ${his2} ${relativeTerm(milkTap, slave)} suckles from ${his2} breasts. You enjoy the show, specifically the sight of ${slave.slaveName}'s belly steadily growing larger until `);
if (slave.inflation === 3) {
r.push(`${his} belly is round and taut, making ${him} look pregnant. ${He} pops off ${his} ${relative}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and rubbing ${his} gurgling stomach`);
}
} else if (slave.inflation === 2) {
r.push(`${his} belly is round, jiggling and sloshing with milk. ${He} pops off ${his} ${relative}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} wobbling, gurgling stomach`);
}
} else if (slave.inflation === 1) {
r.push(`${his} belly is distended and sloshing with milk. ${He} pops off ${his} ${relative}'s nipple and settles into ${his2} breasts for a short rest while hiccupping}`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} gurgling stomach`);
}
}
r.push(`.`);
} else if (areSisters(slave, milkTap) === 2) {
r.push(`${milkTap.slaveName} moans lewdly as ${his2} `);
if (milkTap.actualAge >= slave.actualAge) {
r.push(`little`);
} else {
r.push(`big`);
}
r.push();
r.push(`${relativeTerm(milkTap, slave)} suckles from ${his2} breasts. You enjoy the show, specifically the sight of ${slave.slaveName}'s belly steadily growing larger until `);
if (slave.inflation === 3) {
r.push(`${his} belly is round and taut, making ${him} look pregnant. ${He} pops off ${his} ${relative}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and rubbing ${his} gurgling stomach`);
}
} else if (slave.inflation === 2) {
r.push(`${his} belly is round, jiggling and sloshing with milk. ${He} pops off ${his} ${relative}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} wobbling, gurgling stomach`);
}
} else if (slave.inflation === 1) {
r.push(`${his} belly is distended and sloshing with milk. ${He} pops off ${his} ${relative}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} gurgling stomach`);
}
}
r.push(`.`);
} else if (areSisters(slave, milkTap) === 3) {
r.push(`${milkTap.slaveName} moans lewdly as ${his2} ${relative} suckles from ${his2} breasts. You enjoy the show, specifically the sight of ${slave.slaveName}'s belly steadily growing larger until `);
if (slave.inflation === 3) {
r.push(`${his} belly is round and taut, making ${him} look pregnant. ${He} pops off ${his} ${relative}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and rubbing ${his} gurgling stomach`);
}
} else if (slave.inflation === 2) {
r.push(`${his} belly is round, jiggling and sloshing with milk. ${He} pops off ${his} ${relative}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} wobbling, gurgling stomach`);
}
} else if (slave.inflation === 1) {
r.push(`${his} belly is distended and sloshing with milk. ${He} pops off ${his} ${relative}'s nipple and settles into ${his2} breasts for a short rest while hiccupping`);
if (hasAnyArms(slave)) {
r.push(` and teasing ${his} gurgling stomach`);
}
}
r.push(`.`);
} else if ((slave.devotion < -20) && (milkTap.devotion < -20)) {
r.push(`Since you have two restrained and unwilling slaves, the work of milking ${milkTap.slaveName}'s breasts falls to you. That doesn't mean you can't have fun doing it though.`);
if (canDoVaginal(milkTap)) {
r.push(`Moving behind the restrained cow while`);
if (V.PC.dick === 0) {
r.push(` donning a strap-on`);
} else {
r.push(`teasing your erect cock`);
}
r.push(`, you push ${him2} forward to allow you to insert yourself into ${his2} `);
if (milkTap.vagina === 0) {
r.push(`virgin `);
}
r.push(`pussy. Getting comfortable, you reach around to ${his2} immense mammaries and begin kneading them in time to your thrusts. After some time, and several orgasms in both yourself and the sobbing cow, is `);
slave.slaveName
r.push(` bloated with enough milk.`);
milkTap.counter.vaginal++, V.vaginalTotal++;
if (canImpreg(milkTap, V.PC)) {
r.push(knockMeUp(milkTap, 40, 0, -1));
}
} else if (canDoAnal(milkTap)) {
r.push(`Moving behind the restrained cow while`);
if (V.PC.dick === 0) {
r.push(` donning a strap-on`);
} else {
r.push(` teasing your erect cock`);
}
r.push(`, you push ${him2} forward to allow you to insert yourself into ${his2} `);
if (milkTap.anus === 0) {
r.push(`virgin `);
}
r.push(`rear. Getting comfortable, you reach around to ${his2} immense mammaries and begin kneading them in time to your thrusts. After some time, and several orgasms in both yourself and the sobbing cow, is `);
slave.slaveName
r.push(` bloated with enough milk.`);
milkTap.counter.anal++, V.analTotal++;
if (canImpreg(milkTap, V.PC)) {
r.push(knockMeUp(milkTap, 40, 1, -1));
}
} else if (V.PC.dick !== 0 && milkTap.butt > 4) {
r.push(`Moving behind the restrained cow while teasing your erect cock, you push ${him2} forward to allow you to press your dick between ${his2} huge butt cheeks. Getting comfortable, you reach around to ${his2} immense mammaries and begin kneading them in time to your thrusts. After some time, and several orgasms across the back of the sobbing cow, is `);
slave.slaveName
r.push(` bloated with enough milk.`);
} else if (V.PC.dick !== 0 && !hasAnyLegs(milkTap)) {
r.push(`Moving behind the restrained cow while teasing your erect cock, you find a severe lack of places to stick your dick. Sighing, you hoist ${his2} belted ass into the air so you may thrust between ${his2} `);
if (milkTap.weight > 95) {
r.push(`soft `);
}
r.push(`thighs. Getting comfortable, you reach around to ${his2} immense mammaries and begin kneading them in time to your thrusts. After some time, and several loads blown`);
if (milkTap.belly >= 1500) {
r.push(` onto the rounded belly of the sobbing cow`);
}
r.push(`, is `);
slave.slaveName
r.push(` bloated with enough milk.`);
} else {
r.push(`With a lack of holes to penetrate, you simply wrap your arms around ${milkTap.slaveName} and begin fondling and milking ${his2} luscious breasts. After some time, `);
slave.slaveName
r.push(` is finally bloated to your desired size.`);
}
r.push(`Standing and releasing ${him} from ${milkTap.slaveName}, gives you the opportunity to finally see ${slave.slaveName}'s`);
if (slave.inflation === 3) {
r.push(`taut, round belly`);
} else if (slave.inflation === 2) {
r.push(`rounded, jiggling belly`);
} else {
r.push(`distended, sloshing belly`);
}
r.push(`. You just wish you could have enjoyed it a bit more, though forcing milk into the squirming slave was quite enjoyable.`);
r.push(`Both slaves <span class="mediumorchid">resent</span> what you made them do and <span class="gold">fear you</span> as a result.`);
slave.devotion -= 5, slave.trust -= 5;
milkTap.devotion -= 5, milkTap.trust -= 5;
if (canDoVaginal(milkTap) && (milkTap.vagina === 0)) {
r.push(`${milkTap.slaveName} <span class="mediumorchid">especially,</span> having just <span class="lime">lost ${his} virginity</span> to your inconvenience.`);
milkTap.devotion -= 5, milkTap.vagina = 1;
} else if (canDoAnal(milkTap) && (milkTap.anus === 0)) {
r.push(`${milkTap.slaveName} <span class="mediumorchid">especially,</span> having just <span class="lime">lost ${his} anal virginity</span> to your inconvenience.`);
milkTap.devotion -= 5, milkTap.anus = 1;
}
} else if ((milkTap.devotion < -20)) {
r.push(`Since your cow is restrained, you order the more obedient `);
slave.slaveName
r.push(` to enjoy ${himself} with ${milkTap.slaveName}'s breasts. As ${he} suckles, you can't help but notice the tantalizing way ${he} wiggles ${his} rear.`);
if (canDoVaginal(slave)) {
if (V.PC.dick === 0) {
r.push(`Donning a strap-on`);
} else {
r.push(`Teasing your stiffening cock`);
}
r.push(`, you push ${him} deeper into the protesting ${milkTap.slaveName} and mount ${his} `);
if (slave.vagina === 0) {
r.push(`virgin `);
}
r.push(` pussy, doggy style. You wrap your arms around ${slave.slaveName}'s middle so you may feel ${his} stomach swell with milk. `);
if (slave.inflation === 3) {
r.push(`You cum multiple times as you feel ${his} belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers`);
} else if (slave.inflation === 2) {
r.push(`You cum several times as you feel ${his} belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers`);
} else {
r.push(`You cum as you feel ${his} belly slowly round with milk under your molesting fingers`);
}
r.push(`. Only once your weight is removed from the squirming milk balloon is ${he} allowed to pull ${himself} off of the <span class="mediumorchid">resentful ${milkTap.slaveName}</span> and catch ${his} breath.`);
if (slave.vagina === 0) {
r.push(` ${His} senses were so overwhelmed, ${he} didn't even notice you <span class="lime">broke in ${his} vagina.</span>`);
}
slave.counter.vaginal++, V.vaginalTotal++;
} else if (canDoAnal(slave)) {
if (V.PC.dick === 0) {
r.push(`Donning a strap-on`);
} else {
r.push(`Teasing your stiffening cock`);
}
r.push(`, you push ${him} deeper into the protesting ${milkTap.slaveName} and mount ${his} `);
if (slave.anus === 0) {
r.push(`virgin `);
}
r.push(` asshole, doggy style. You wrap your arms around ${slave.slaveName}'s middle so you may feel ${his} stomach swell with milk. `);
if (slave.inflation === 3) {
r.push(`You cum multiple times as you feel ${his} belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers`);
} else if (slave.inflation === 2) {
r.push(`You cum several times as you feel ${his} belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers`);
} else {
r.push(`You cum as you feel ${his} belly slowly round with milk under your molesting fingers`);
}
r.push(`. Only once your weight is removed from the squirming milk balloon is ${he} allowed to pull ${himself} off of the <span class="mediumorchid">resentful ${milkTap.slaveName}</span> and catch ${his} breath.`);
if (slave.anus === 0) {
r.push(` ${His} senses were so overwhelmed, ${he} didn't even notice you <span class="lime">broke in ${his} anus.</span>`);
}
slave.counter.anal++, V.analTotal++;
} else if (V.PC.dick !== 0 && slave.butt > 4) {
r.push(`Teasing your stiffening cock, you push ${him} deeper into the protesting ${milkTap.slaveName} and squeeze your dick between ${his} huge butt cheeks. You wrap your arms around ${slave.slaveName}'s middle so you may feel ${his} stomach swell with milk as you fuck ${his} butt. `);
if (slave.inflation === 3) {
r.push(`You cum multiple times as you feel ${his} belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers`);
} else if (slave.inflation === 2) {
r.push(`You cum several times as you feel ${his} belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers`);
} else {
r.push(`You cum as you feel ${his} belly slowly round with milk under your molesting fingers`);
}
r.push(`. Only once your weight is removed from the squirming milk balloon is ${he} allowed to pull ${himself} off of the <span class="mediumorchid">resentful ${milkTap.slaveName}</span> and catch ${his} breath.`);
} else if (V.PC.dick !== 0 && hasBothLegs(slave)) {
r.push(`Teasing your stiffening cock, you find a severe lack of places to stick your dick. Sighing, you hoist ${his} belted ass into the air, push ${him} deeper into the protesting ${milkTap.slaveName} and squeeze your dick between ${his} `);
if (slave.weight > 95) {
r.push(`soft `);
}
r.push(`thighs. You wrap your arms around ${slave.slaveName}'s middle so you may feel ${his} stomach swell with milk as you fuck ${his} butt. `);
if (slave.inflation === 3) {
r.push(`You cum multiple times as you feel ${his} belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers`);
} else if (slave.inflation === 2) {
r.push(`You cum several times as you feel ${his} belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers`);
} else {
r.push(`You cum as you feel ${his} belly slowly round with milk under your molesting fingers`);
}
r.push(`. Only once your weight is removed from the squirming milk balloon is ${he} allowed to pull ${himself} off of the <span class="mediumorchid">resentful ${milkTap.slaveName}</span> and catch ${his} breath.`);
} else {
r.push(`With a lack of holes to penetrate, you simply wrap your arms around ${him} and push ${him} deeper into the protesting ${milkTap.slaveName}. You bring a hand to ${slave.slaveName}'s middle so you may feel ${his} stomach swell with milk and lead the other to your `);
if (V.PC.dick === 0) {
r.push(`soaked pussy`);
} else {
r.push(`stiff prick`);
}
r.push(`. `);
if (slave.inflation === 3) {
r.push(`You cum multiple times as you feel ${his} belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers`);
} else if (slave.inflation === 2) {
r.push(`You cum several times as you feel ${his} belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers`);
} else {
r.push(`You cum as you feel ${his} belly slowly round with milk under your molesting fingers`);
}
r.push(`. Only once your weight is removed from the squirming milk balloon is ${he} allowed to pull ${himself} off of the <span class="mediumorchid">resentful ${milkTap.slaveName}</span> and catch ${his} breath.`);
}
r.push(`${He} gives the shaking ${milkTap.slaveName} an apologetic look before taking a seat. The poor cow isn't used to this yet and <span class="gold">is terrified of your willingness</span> to take what you want from your slaves.`);
milkTap.devotion -= 5, milkTap.trust -= 5;
if (canDoVaginal(slave) && (slave.vagina === 0)) {
slave.vagina = 1;
} else if (canDoAnal(slave) && (slave.anus === 0)) {
slave.anus = 1;
}
} else if ((milkTap.fetish === "boobs") && (milkTap.fetishStrength > 60) && (milkTap.devotion > 20) && (slave.devotion < -20)) {
if (canDoVaginal(slave)) {
r.push(`You position the restrained `);
slave.slaveName
r.push(` so that you can penetrate ${his} `);
if (slave.vagina === 0) {
r.push(`virgin `);
}
r.push(`pussy `);
if (V.PC.dick === 0) {
r.push(`with a strap-on `);
}
r.push(` while ${he} is forced to drink from ${milkTap.slaveName}'s breasts. With every thrust into the squirming slave, you push ${him} into the moaning milkTap.slaveName forcing even more milk down ${his} throat. You wrap an arm around ${slave.slaveName}'s middle so you may feel ${his} stomach swell with milk and place your other hand to ${milkTap.slaveName}'s free nipple, knowing just how much ${he} loves it groped. `);
if (slave.inflation === 3) {
r.push(`You cum multiple times as you feel ${his} belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers`);
} else if (slave.inflation === 2) {
r.push(`You cum several times as you feel ${his} belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers`);
} else {
r.push(`You cum as you feel ${his} belly slowly round with milk under your molesting fingers`);
}
r.push(` and ${milkTap.slaveName} even more. ${He2} is semi-conscious, drooling in <span class="hotpink">pleasure and satisfaction,</span> by the time you release the bloated `);
slave.slaveName
r.push(` from ${his} harness. Patting ${his2} well milked breasts, you know ${he2}'ll come out of it and be eagerly begging you for another milking soon. `);
slave.slaveName
r.push(`, on the other hand, is regarding ${his} swollen stomach <span class="mediumorchid">with disgust</span> and <span class="gold">fear</span> of your power over ${him}.`);
if (slave.anus === 0) {
r.push(` ${he} <span class="mediumorchid">hates you so much more</span> that you <span class="lime">broke in ${his} virgin vagina.</span>`);
}
slave.counter.vaginal++, V.vaginalTotal++;
} else if (canDoAnal(slave)) {
r.push(`You position the restrained `);
slave.slaveName
r.push(` so that you can penetrate ${his} `);
if (slave.anus === 0) {
r.push(`virgin `);
}
r.push(`ass `);
if (V.PC.dick === 0) {
r.push(`with a strap-on `);
}
r.push(` while ${he} is forced to drink from ${milkTap.slaveName}'s breasts. With every thrust into the squirming slave, you push ${him} into the moaning milkTap.slaveName forcing even more milk down ${his} throat. You wrap an arm around ${slave.slaveName}'s middle so you may feel ${his} stomach swell with milk and place your other hand to milkTap.slaveName's free nipple, knowing just how much ${he} loves it groped. `);
if (slave.inflation === 3) {
r.push(`You cum multiple times as you feel ${his} belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers`);
} else if (slave.inflation === 2) {
r.push(`You cum several times as you feel ${his} belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers`);
} else {
r.push(`You cum as you feel ${his} belly slowly round with milk under your molesting fingers`);
}
r.push(` and ${milkTap.slaveName} even more. ${He2} is semi-conscious, drooling in <span class="hotpink">pleasure and satisfaction,</span> by the time you release the bloated `);
slave.slaveName
r.push(` from ${his} harness. Patting ${his2} well milked breasts, you know ${he2}'ll come out of it and be eagerly begging you for another milking soon. `);
slave.slaveName
r.push(`, on the other hand, is regarding ${his} swollen stomach <span class="mediumorchid">with disgust</span> and <span class="gold">fear</span> of your power over ${him}.`);
if (slave.anus === 0) {
r.push(` ${he} <span class="mediumorchid">hates you so much more</span> that you <span class="lime">broke in ${his} virgin anus.</span>`);
}
slave.counter.anal++, V.analTotal++;
} else if (V.PC.dick !== 0 && slave.butt > 4) {
r.push(`You position the restrained ${slave.slaveName} so that you can rub your dick between ${his} huge butt cheeks while ${he} is forced to drink from ${milkTap.slaveName}'s breasts. With every thrust against the squirming slave, you push ${him} into the moaning milkTap.slaveName forcing even more milk down ${his} throat. You wrap an arm around ${slave.slaveName}'s middle so you may feel ${his} stomach swell with milk and place your other hand to milkTap.slaveName's free nipple, knowing just how much ${he} loves it groped. `);
if (slave.inflation === 3) {
r.push(`You cum multiple times as you feel ${his} belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers`);
} else if (slave.inflation === 2) {
r.push(`You cum several times as you feel ${his} belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers`);
} else {
r.push(`You cum as you feel ${his} belly slowly round with milk under your molesting fingers`);
}
r.push(` and ${milkTap.slaveName} even more. ${He2} is semi-conscious, drooling in <span class="hotpink">pleasure and satisfaction,</span> by the time you release the bloated `);
slave.slaveName
r.push(` from ${his} harness. Patting ${his2} well milked breasts, you know ${he}'ll come out of it and be eagerly begging you for another milking soon. `);
slave.slaveName
r.push(`, on the other hand, is regarding ${his} swollen stomach, and cum soaked back, <span class="mediumorchid">with disgust</span> and <span class="gold">fear</span> of your power over ${him}.`);
} else if (V.PC.dick !== 0 && hasBothLegs(slave)) {
r.push(`You position the restrained `);
slave.slaveName
r.push(` so that you can fuck ${his} `);
if (slave.weight > 95) {
r.push(`soft `);
}
r.push(`thighs, for a lack of anything better, while ${he} is forced to drink from ${milkTap.slaveName}'s breasts. With every thrust against the squirming slave, you push ${him} into the moaning milkTap.slaveName forcing even more milk down ${his} throat. You wrap an arm around ${slave.slaveName}'s middle so you may feel ${his} stomach swell with milk and place your other hand to milkTap.slaveName's free nipple, knowing just how much ${he} loves it groped. `);
if (slave.inflation === 3) {
r.push(`You cum multiple times as you feel ${his} belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers`);
} else if (slave.inflation === 2) {
r.push(`You cum several times as you feel ${his} belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers`);
} else {
r.push(`You cum as you feel ${his} belly slowly round with milk under your molesting fingers`);
}
r.push(` and ${milkTap.slaveName} even more. ${He2} is semi-conscious, drooling in <span class="hotpink">pleasure and satisfaction,</span> by the time you release the bloated `);
slave.slaveName
r.push(` from ${his} harness. Patting ${his2} well milked breasts, you know ${he2}'ll come out of it and be eagerly begging you for another milking soon. `);
slave.slaveName
r.push(`, on the other hand, is regarding ${his} swollen, cum-covered stomach <span class="mediumorchid">with disgust</span> and <span class="gold">fear</span> of your power over ${him}.`);
} else {
r.push(`You position the restrained `);
slave.slaveName
r.push(` so that you can rub your `);
if (V.PC.dick === 0) {
r.push(`clit`);
} else {
r.push(`dick`);
}
r.push(` against ${him} while ${he} is forced to drink from ${milkTap.slaveName}'s breasts, since ${he} lacks any better way to please you while you lavish attention on your eager cow. With every thrust against the squirming slave, you push ${him} into the moaning milkTap.slaveName forcing even more milk down ${his} throat. You wrap an arm around ${slave.slaveName}'s middle so you may feel ${his} stomach swell with milk and place your other hand to milkTap.slaveName's free nipple, knowing just how much ${he} loves it groped. `);
if (slave.inflation === 3) {
r.push(`You cum multiple times as you feel ${his} belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers`);
} else if (slave.inflation === 2) {
r.push(`You cum several times as you feel ${his} belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers`);
} else {
r.push(`You cum as you feel ${his} belly slowly round with milk under your molesting fingers`);
}
r.push(` and ${milkTap.slaveName} even more. ${He2} is semi-conscious, drooling in <span class="hotpink">pleasure and satisfaction,</span> by the time you release the bloated `);
slave.slaveName
r.push(` from ${his} harness. Patting ${his2} well milked breasts, you know ${he2}'ll come out of it and be eagerly begging you for another milking soon. `);
slave.slaveName
r.push(`, on the other hand, is regarding ${his} swollen stomach <span class="mediumorchid">with disgust</span> and <span class="gold">fear</span> of your power over ${him}.`);
}
if (canDoVaginal(slave) && (slave.vagina === 0)) {
slave.vagina = 1;
slave.devotion -= 5;
} else if (canDoAnal(slave) && (slave.anus === 0)) {
slave.anus = 1;
slave.devotion -= 5;
}
slave.devotion -= 5;
slave.trust -= 5;
milkTap.devotion += 4;
} else if ((slave.devotion <= 20) || (milkTap.devotion <= 20)) {
if (canDoVaginal(slave)) {
r.push(`You order `);
slave.slaveName
r.push(` to lift ${his} ass so you can penetrate ${his} `);
if (slave.vagina === 0) {
r.push(`virgin `);
}
r.push(`pussy `);
if (V.PC.dick === 0) {
r.push(`with a strap-on `);
}
r.push(` while ${he} drinks from ${milkTap.slaveName}'s breasts. With every thrust into the squirming slave, you push ${him} into the docile milkTap.slaveName forcing even more milk down ${his} throat.`);
slave.counter.vaginal++, V.vaginalTotal++;
} else if (canDoAnal(slave)) {
r.push(`You order `);
slave.slaveName
r.push(` to lift ${his} ass so you can penetrate ${his} `);
if (slave.anus === 0) {
r.push(`virgin `);
}
r.push(`ass `);
if (V.PC.dick === 0) {
r.push(`with a strap-on `);