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
window.saHormonesEffects = (function saHormonesEffects() {
"use strict";
let r;
// eslint-disable-next-line no-unused-vars
let he, him, his, hers, himself, girl, loli, He, His;
let gigantomastiaMod;
let rearLipedemaMod;
let boobSize;
let buttSize;
let normBreasts;
let normButt;
let faceValue;
let faceInc;
let faceDec;
return saHormonesEffects;
/**
* @param {App.Entity.SlaveState} slave
* @returns {string}
*/
function saHormonesEffects(slave) {
r = [];
gigantomastiaMod = slave.geneticQuirks.gigantomastia === 2 ? (slave.geneticQuirks.macromastia === 2 ? 3 : 2) : 1;
rearLipedemaMod = slave.geneticQuirks.rearLipedema === 2 ? 1 : 0;
boobSize = slave.boobs - slave.boobsImplant - slave.boobsMilk;
buttSize = slave.butt - slave.buttImplant;
faceValue = slave.face - slave.faceImplant;
({
// eslint-disable-next-line no-unused-vars
he, him, his, hers, himself, girl, He, His, loli
} = getPronouns(slave));
hormoneBalance(slave);
if (V.hormoneUpgradeMood === 0) {
moodConflict(slave);
}
if (slave.physicalAge >= 18 || V.loliGrow === 0 || slave.geneMods.NCS === 1) {
hormonesEffects(slave);
}
if (slave.fetish !== "mindbroken" && slave.fuckdoll === 0) {
hormoneReactions(slave);
}
return r.join(" ");
}
/**
* @param {App.Entity.SlaveState} slave
*
*/
function hormoneBalance(slave) {
if (slave.hormoneBalance <= -400) {
r.push(`${His} hormone balance is overwhelmingly masculine.`);
} else if (slave.hormoneBalance <= -300) {
r.push(`${His} hormone balance is extremely masculine.`);
} else if (slave.hormoneBalance <= -200) {
r.push(`${His} hormone balance is heavily masculine.`);
} else if (slave.hormoneBalance <= -100) {
r.push(`${His} hormone balance is very masculine.`);
} else if (slave.hormoneBalance < -20) {
r.push(`${His} hormone balance is masculine.`);
} else if (slave.hormoneBalance >= 400) {
r.push(`${His} hormone balance is overwhelmingly feminine.`);
} else if (slave.hormoneBalance >= 300) {
r.push(`${His} hormone balance is extremely feminine.`);
} else if (slave.hormoneBalance >= 200) {
r.push(`${His} hormone balance is heavily feminine.`);
} else if (slave.hormoneBalance >= 100) {
r.push(`${His} hormone balance is very feminine.`);
} else if (slave.hormoneBalance > 20) {
r.push(`${His} hormone balance is feminine.`);
} else {
r.push(`${He} has a neutral hormone balance.`);
}
if (Math.abs(slave.hormones) > 1) {
slave.chem += 0.5;
}
}
/**
* @param {App.Entity.SlaveState} slave
*
*/
function moodConflict(slave) {
if (slave.hormoneBalance > 20 && slave.genes === "XY" && slave.balls !== 0 && slave.ballType !== "sterile") {
r.push(`${His} feminine hormonal balance conflicts with ${his} natural hormones,`);
if (slave.devotion > 50) {
r.push(`but ${he}'s a good enough slave to suppress the occasional moodiness.`);
} else {
r.push(`causing <span class="mediumorchid">occasional moodiness.</span>`);
slave.devotion -= 1;
}
if (slave.energy > 10) {
r.push(`It also has the unfortunate consequence of <span class="red">damaging ${his} libido.</span>`);
slave.energy--;
}
if (slave.attrXX > 50 || slave.attrXY > 50) {
r.push(`Even more troubling, ${his} sexual confusion <span class="red">leaves ${him} finding others less attractive.</span>`);
if (slave.attrXX > 50) {
slave.attrXX--;
}
if (slave.attrXY > 50) {
slave.attrXY--;
}
}
}
if (slave.hormoneBalance < -20 && slave.genes === "XX" && (slave.ovaries !== 0 || slave.mpreg !== 0)) {
r.push(`${His} masculine hormonal balance conflicts with ${his} natural hormones,`);
if (slave.devotion > 50) {
r.push(`but ${he}'s a good enough slave to suppress the occasional moodiness.`);
} else {
r.push(`causing <span class="mediumorchid">occasional moodiness.</span>`);
slave.devotion -= 1;
}
if (slave.energy > 10) {
r.push(`It also has the unfortunate consequence of <span class="red">damaging ${his} libido.</span>`);
slave.energy--;
}
if (slave.attrXX > 50 || slave.attrXY > 50) {
r.push(`Even more troubling, ${his} sexual confusion <span class="red">leaves ${him} finding others less attractive.</span>`);
if (slave.attrXX > 50) {
slave.attrXX--;
}
if (slave.attrXY > 50) {
slave.attrXY--;
}
}
}
}
/**
* @param {App.Entity.SlaveState} slave
*
*/
function hormonesEffects(slave) {
if (Math.abs(slave.hormoneBalance) >= 50) {
if (slave.hormoneBalance > 30 && slave.geneMods.NCS !== 1) {
/* 'Expected' breast size based on weight for feminine-bodied slaves */
normBreasts = Math.trunc((100 + (slave.weight + 100) * 5 + 2 * slave.lactationAdaptation) * (0.85 + slave.hormoneBalance / 400) * gigantomastiaMod);
normButt = ((slave.weight + 100) * 0.025 * (0.9 + slave.hormoneBalance / 600) * (rearLipedemaMod / 2 + 1));
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
}
if (slave.hormoneBalance >= 350) {
if ((slave.geneMods.NCS === 1)) {
if ((slave.shoulders + Math.abs(slave.shouldersImplant)) > -1 && slave.shoulders > -2 && jsRandom(1, 100) < (40 + (20 * V.hormoneUpgradePower))) {
r.push(`Feminine hormones team up with ${his} <span class="orange">NCS</span> to cause <span class="lime">${his} shoulders to shrink into a more childlike narrowness</span> than before.`);
slave.shoulders--;
}
} else if (slave.physicalAge < 25) {
if (slave.shoulders + Math.abs(slave.shouldersImplant) > -1 && slave.shoulders > -2 && jsRandom(1, 100) < 20 + (10 * V.hormoneUpgradePower)) {
r.push(`${His} body has not yet found its final bone structure, which typically happens in the mid-twenties. Hormonal effects cause <span class="lime">${his} shoulders to develop into a more feminine narrowness</span> than they would have done naturally.`);
slave.shoulders--;
}
if (slave.geneMods.NCS === 0 && slave.hips - (Math.abs(slave.hipsImplant)) < 1 && slave.hips < 2 && jsRandom(1, 100) <= 20 + (10 * V.hormoneUpgradePower)) {
r.push(`${His} body has not yet found its final bone structure, which typically happens in the mid-twenties. Hormonal effects cause <span class="lime">${his} hips to develop more broadly</span> than they would have done naturally.`);
slave.hips++;
}
}
if (slave.faceImplant < 5) {
if (slave.faceShape === "masculine") {
r.push(`Hormonal effects cause <span class="orange">${his} face to soften into`);
if (slave.geneMods.NCS === 1) {
r.push(`childlike`);
}
r.push(`androgyny.</span>`);
slave.faceShape = "androgynous";
} else if (slave.faceShape === "androgynous" && slave.geneticQuirks.androgyny !== 2) {
r.push(`Hormonal effects cause <span class="lime">${his} face to soften into`);
if (slave.geneMods.NCS === 1) {
r.push(`childlike normalcy`);
} else {
r.push(`femininity`);
}
r.push(`. < /span>`);
slave.faceShape = "normal";
} else if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50 && slave.faceShape === "normal") {
r.push(`Hormonal effects cause <span class="lime">${his} face to soften into childlike cuteness.</span>`);
slave.faceShape = "cute";
}
}
if (faceValue < 0 && slave.face < 75) {
r.push(`Hormonal effects cause <span class="lime">${his} facial structure to soften and become less unattractive.</span>`);
faceInc = 1 + V.hormoneUpgradePower;
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
faceInc *= 2;
}
faceIncrease(slave, faceInc);
}
if (slave.voice < 3 && slave.voice > 0) {
r.push(`Hormonal effects cause <span class="lime">${his} voice to become higher and more`);
if (slave.geneMods.NCS === 1) {
r.push(`childlike.</span>`);
} else {
r.push(`feminine.</span>`);
}
slave.voice++;
}
if (slave.muscles > 10 && slave.diet !== "muscle building" && slave.drugs !== "steroids") {
r.push(`Hormonal effects <span class="orange">reduce ${his} musculature.</span>`);
slave.muscles -= 2 + V.hormoneUpgradePower + slave.geneticQuirks.mLoss;
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
slave.muscles -= 2 + V.hormoneUpgradePower + slave.geneticQuirks.mLoss;
}
}
if (slave.waist > -30) {
r.push(`Hormonal effects cause ${his} <span class="lime">waist to narrow.</span>`);
slave.waist -= 2 + V.hormoneUpgradePower;
}
if (slave.geneMods.NCS === 0) {
if (boobSize < 0.9 * normBreasts) {
/* Grow to 90% of normBreasts */
r.push(`Hormonal effects cause <span class="lime">a small amount of natural breast growth.</span>`);
slave.boobs += 25;
}
if (slave.nipples === "tiny") {
r.push(`Hormonal effects cause ${his} tiny <span class="lime">nipples to grow to a more normal size.</span>`);
slave.nipples = "cute";
}
if (buttSize < Math.trunc(4.5 * normButt) / 5) {
/* 90% of normButt, rounded down to the next increment of .2 */
r.push(`Hormonal effects cause <span class="lime">the natural size of ${his} butt to increase.</span>`);
slave.butt += 0.2;
}
} else {
r.push(`${His} <span class="orange">NCS</span> blocks asset growth despite the fact that ${his} body is swimming in hormones.`);
}
if (slave.vagina > -1 && slave.ovaries !== 0 && slave.vaginaLube < 2) {
r.push(`Hormonal effects cause <span class="lime">${his} vagina to produce more copious natural lubricant.</span>`);
slave.vaginaLube++;
}
if (V.hormoneUpgradeShrinkage === 0) {
if (slave.dick > 1) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50 && slave.dick > 2) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} dick to atrophy a lot.</span>`);
slave.dick -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">${his} dick to atrophy.</span>`);
}
slave.dick--;
}
if (slave.balls > 1) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50 && slave.balls > 2) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} testicles to atrophy a lot.</span>`);
slave.balls -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">${his} testicles to atrophy.</span>`);
}
slave.balls--;
}
if (slave.clit > 0) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50 && slave.clit > 1) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} clit to shrink down greatly.</span>`);
slave.clit -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">${his} clit to shrink significantly.</span>`);
}
slave.clit--;
}
}
if (slave.devotion <= 20) {
r.push(`Hormonal effects make ${him} a bit more <span class="hotpink">docile.</span>`);
slave.devotion++;
}
if (slave.trust <= 20) {
r.push(`Hormonal effects make ${him} a bit more <span class="mediumaquamarine">trusting.</span>`);
slave.trust++;
}
if (slave.attrXY < 100) {
r.push(`Hormonal effects cause ${him} to become <span class="green">more attracted to men.</span>`);
slave.attrXY += 2 + V.hormoneUpgradePower;
}
} else if (slave.hormoneBalance >= 300) {
if (slave.faceImplant < 5) {
if (slave.faceShape === "masculine") {
r.push(`Hormonal effects cause <span class="orange">${his} face to soften into`);
if (slave.geneMods.NCS === 1) {
r.push(`childlike`);
}
r.push(`androgyny.</span>`);
slave.faceShape = "androgynous";
} else if (slave.faceShape === "androgynous" && slave.geneticQuirks.androgyny !== 2) {
r.push(`Hormonal effects cause <span class="lime">${his} face to soften into`);
if (slave.geneMods.NCS === 1) {
r.push(`childlike normalcy.</span>`);
} else {
r.push(`femininity.</span>`);
}
slave.faceShape = "normal";
} else if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50 && slave.faceShape === "normal") {
r.push(`Hormonal effects cause <span class="lime">${his} face to soften into childlike cuteness.</span>`);
slave.faceShape = "cute";
}
}
if (faceValue < 0 && slave.face < 60) {
r.push(`Hormonal effects cause <span class="lime">${his} facial structure to soften and become less unattractive.</span>`);
faceInc = 1 + V.hormoneUpgradePower;
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
faceInc *= 2;
}
faceIncrease(slave, faceInc);
}
if (slave.voice < 3 && slave.voice > 0) {
r.push(`Hormonal effects cause <span class="lime">${his} voice to become higher and more`);
if (slave.geneMods.NCS === 1) {
r.push(`childlike.</span>`);
} else {
r.push(`feminine.</span>`);
}
slave.voice++;
}
if (slave.muscles > 30 && slave.diet !== "muscle building" && slave.drugs !== "steroids") {
r.push(`Hormonal effects <span class="orange">reduce ${his} musculature.</span>`);
slave.muscles -= 2 + V.hormoneUpgradePower + slave.geneticQuirks.mLoss;
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
slave.muscles -= 2 + V.hormoneUpgradePower + slave.geneticQuirks.mLoss;
}
}
if (slave.waist > -10) {
r.push(`Hormonal effects cause ${his} <span class="lime">waist to narrow.</span>`);
slave.waist -= 2 + V.hormoneUpgradePower;
}
if (slave.geneMods.NCS === 0) {
if (boobSize < 0.8 * normBreasts) {
/* Grow to 80% of expected */
r.push(`Hormonal effects cause <span class="lime">a small amount of natural breast growth.</span>`);
slave.boobs += 25;
}
if (slave.nipples === "tiny") {
r.push(`Hormonal effects cause ${his} tiny <span class="lime">nipples to grow to a more normal size.</span>`);
slave.nipples = "cute";
}
if (buttSize < Math.trunc(4 * normButt) / 5) {
/* 80% of normButt, rounded down to the next increment of .2 */
r.push(`Hormonal effects cause <span class="lime">the natural size of ${his} butt to increase.</span>`);
slave.butt += 0.2;
}
}
if (slave.vagina > -1 && slave.ovaries !== 0 && slave.vaginaLube < 2) {
r.push(`Hormonal effects cause <span class="lime">${his} vagina to produce more copious natural lubricant.</span>`);
slave.vaginaLube++;
}
if (V.hormoneUpgradeShrinkage === 0) {
if (slave.dick > 1) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50 && slave.dick > 2) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} dick to atrophy a lot.</span>`);
slave.dick -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">${his} dick to atrophy.</span>`);
}
slave.dick--;
}
if (slave.balls > 1) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50 && slave.balls > 2) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} testicles to atrophy a lot.</span>`);
slave.balls -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">${his} testicles to atrophy.</span>`);
}
slave.balls--;
}
if (slave.clit > 0) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50 && slave.clit > 1) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} clit to shrink down greatly.</span>`);
slave.clit -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">${his} clit to shrink significantly.</span>`);
}
slave.clit--;
}
}
if (slave.devotion <= 20) {
r.push(`Hormonal effects make ${him} a bit more <span class="hotpink">docile.</span>`);
slave.devotion++;
}
if (slave.trust <= 20) {
r.push(`Hormonal effects make ${him} a bit more <span class="mediumaquamarine">trusting.</span>`);
slave.trust++;
}
if (slave.attrXY < 100) {
r.push(`Hormonal effects cause ${him} to become <span class="green">more attracted to men.</span>`);
slave.attrXY += 2 + V.hormoneUpgradePower;
}
} else if (slave.hormoneBalance >= 250) {
if (slave.faceImplant < 5) {
if (slave.faceShape === "masculine") {
r.push(`Hormonal effects cause <span class="orange">${his} face to soften into`);
if (slave.geneMods.NCS === 1) {
r.push(`childlike`);
}
r.push(`androgyny.</span>`);
slave.faceShape = "androgynous";
} else if (slave.faceShape === "androgynous" && slave.geneticQuirks.androgyny !== 2) {
r.push(`Hormonal effects cause <span class="lime">${his} face to soften into`);
if (slave.geneMods.NCS === 1) {
r.push(`childlike normalcy.</span>`);
} else {
r.push(`femininity.</span>`);
}
slave.faceShape = "normal";
} else if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50 && slave.faceShape === "normal") {
r.push(`Hormonal effects cause <span class="lime">${his} face to soften into childlike cuteness.</span>`);
slave.faceShape = "cute";
}
}
if (faceValue < 0 && slave.face < 30) {
r.push(`Hormonal effects cause <span class="lime">${his} facial structure to soften and become less unattractive.</span>`);
faceInc = 1 + V.hormoneUpgradePower;
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
faceInc *= 2;
}
faceIncrease(slave, faceInc);
}
if (slave.voice < 2 && slave.voice > 0) {
r.push(`Hormonal effects cause <span class="lime">${his} voice to become higher and more`);
if (slave.geneMods.NCS === 1) {
r.push(`childlike.</span>`);
} else {
r.push(`feminine.</span>`);
}
slave.voice++;
}
if (slave.muscles > 30 && slave.diet !== "muscle building" && slave.drugs !== "steroids") {
r.push(`Hormonal effects <span class="orange">reduce ${his} musculature.</span>`);
slave.muscles -= 2 + V.hormoneUpgradePower + slave.geneticQuirks.mLoss;
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
slave.muscles -= 2 + V.hormoneUpgradePower + slave.geneticQuirks.mLoss;
}
}
if (slave.waist > 0) {
r.push(`Hormonal effects cause ${his} <span class="lime">waist to narrow.</span>`);
slave.waist -= 2 + V.hormoneUpgradePower;
}
if (slave.geneMods.NCS === 0) {
if (boobSize < 0.7 * normBreasts) {
/* Grow to 70% of expected */
r.push(`Hormonal effects cause <span class="lime">a small amount of natural breast growth.</span>`);
slave.boobs += 25;
}
if (slave.nipples === "tiny") {
r.push(`Hormonal effects cause ${his} tiny <span class="lime">nipples to grow to a more normal size.</span>`);
slave.nipples = "cute";
}
if (buttSize < Math.trunc(3.5 * normButt) / 5) {
/* 70% of normButt, rounded down to the next increment of .2 */
r.push(`Hormonal effects cause <span class="lime">the natural size of ${his} butt to increase.</span>`);
slave.butt += 0.2;
}
}
if (slave.vagina > -1 && slave.ovaries !== 0 && slave.vaginaLube < 1) {
r.push(`Hormonal effects cause <span class="lime">${his} vagina to produce more copious natural lubricant.</span>`);
slave.vaginaLube++;
}
if (V.hormoneUpgradeShrinkage === 0) {
if (slave.dick > 2) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} dick to atrophy a lot.</span>`);
slave.dick -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">${his} dick to atrophy.</span>`);
}
slave.dick--;
}
if (slave.balls > 2) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} testicles to atrophy a lot.</span>`);
slave.balls -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">${his} testicles to atrophy.</span>`);
}
slave.balls--;
}
if (slave.clit > 1) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} clit to shrink down greatly.</span>`);
slave.clit -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">${his} clit to shrink significantly.</span>`);
}
slave.clit--;
}
}
if (slave.devotion <= 20) {
r.push(`Hormonal effects make ${him} a bit more <span class="hotpink">docile.</span>`);
slave.devotion++;
}
if (slave.trust <= 20) {
r.push(`Hormonal effects make ${him} a bit more <span class="mediumaquamarine">trusting.</span>`);
slave.trust++;
}
if (slave.attrXY < 95) {
r.push(`Hormonal effects cause ${him} to become <span class="green">more attracted to men.</span>`);
slave.attrXY += 2 + V.hormoneUpgradePower;
}
} else if (slave.hormoneBalance >= 200) {
if (slave.faceImplant < 5) {
if (slave.faceShape === "masculine") {
r.push(`Hormonal effects cause <span class="orange">${his} face to soften into`);
if (slave.geneMods.NCS === 1) {
r.push(`childlike`);
}
r.push(`androgyny.</span>`);
slave.faceShape = "androgynous";
} else if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50 && slave.faceShape === "androgynous" && slave.geneticQuirks.androgyny !== 2) {
r.push(`Hormonal effects cause <span class="lime">${his} face to soften into`);
if (slave.geneMods.NCS === 1) {
r.push(`childlike normalcy.</span>`);
} else {
r.push(`femininity.</span>`);
}
slave.faceShape = "normal";
}
}
if (faceValue < 0 && slave.face < 0) {
r.push(`Hormonal effects cause <span class="lime">${his} facial structure to soften and become less unattractive.</span>`);
faceInc = 1 + V.hormoneUpgradePower;
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
faceInc *= 2;
}
faceIncrease(slave, faceInc);
}
if (slave.voice < 2 && slave.voice > 0) {
r.push(`Hormonal effects cause <span class="lime">${his} voice to become higher and more`);
if (slave.geneMods.NCS === 1) {
r.push(`childlike.</span>`);
} else {
r.push(`feminine.</span>`);
}
slave.voice++;
}
if (slave.muscles > 30 && slave.diet !== "muscle building" && slave.drugs !== "steroids") {
r.push(`Hormonal effects <span class="orange">reduce ${his} musculature.</span>`);
slave.muscles -= 2 + V.hormoneUpgradePower + slave.geneticQuirks.mLoss;
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
slave.muscles -= 2 + V.hormoneUpgradePower + slave.geneticQuirks.mLoss;
}
}
if (slave.waist > 10) {
r.push(`Hormonal effects cause ${his} <span class="lime">waist to narrow.</span>`);
slave.waist -= 2 + V.hormoneUpgradePower;
}
if (slave.geneMods.NCS === 0) {
if (boobSize < 0.6 * normBreasts) {
/* Grow to 60% of expected */
r.push(`Hormonal effects cause <span class="lime">a small amount of natural breast growth.</span>`);
slave.boobs += 25;
}
if (slave.nipples === "tiny") {
r.push(`Hormonal effects cause ${his} tiny <span class="lime">nipples to grow to a more normal size.</span>`);
slave.nipples = "cute";
}
if (buttSize < Math.trunc(3 * normButt) / 5) {
/* 60% of normButt, rounded down to the next increment of .2 */
r.push(`Hormonal effects cause <span class="lime">the natural size of ${his} butt to increase.</span>`);
slave.butt += 0.2;
}
}
if (slave.vagina > -1 && slave.ovaries !== 0 && slave.vaginaLube < 1) {
r.push(`Hormonal effects cause <span class="lime">${his} vagina to produce more copious natural lubricant.</span>`);
slave.vaginaLube++;
}
if (V.hormoneUpgradeShrinkage === 0) {
if (slave.dick > 3) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} dick to atrophy a lot.</span>`);
slave.dick -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">${his} dick to atrophy.</span>`);
slave.dick--;
}
}
if (slave.balls > 3) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} testicles to atrophy a lot.</span>`);
slave.balls -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">${his} testicles to atrophy.</span>`);
}
slave.balls--;
}
if (slave.clit > 2) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} clit to shrink down greatly.</span>`);
slave.clit -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">${his} clit to shrink significantly.</span>`);
}
slave.clit--;
}
}
if (slave.devotion <= 20) {
r.push(`Hormonal effects make ${him} a bit more <span class="hotpink">docile.</span>`);
slave.devotion++;
}
if (slave.trust <= 20) {
r.push(`Hormonal effects make ${him} a bit more <span class="mediumaquamarine">trusting.</span>`);
slave.trust++;
}
if (slave.attrXY < 90) {
r.push(`Hormonal effects cause ${him} to become <span class="green">more attracted to men.</span>`);
slave.attrXY += 2 + V.hormoneUpgradePower;
}
} else if (slave.hormoneBalance >= 100) {
if (slave.faceImplant < 5) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50 && slave.faceShape === "masculine") {
r.push(`Hormonal effects cause <span class="orange">${his} face to soften into`);
if (slave.geneMods.NCS === 1) {
r.push(`childlike`);
}
r.push(`androgyny.</span>`);
slave.faceShape = "androgynous";
}
}
if (slave.geneMods.NCS === 0) {
if (boobSize < 0.5 * normBreasts) {
/* Grow to 50% of expected */
r.push(`Hormonal effects cause <span class="lime">a small amount of natural breast growth.</span>`);
slave.boobs += 25;
}
}
if (slave.devotion <= 20) {
r.push(`Hormonal effects make ${him} a bit more <span class="hotpink">docile.</span>`);
slave.devotion++;
}
if (slave.trust <= 20) {
r.push(`Hormonal effects make ${him} a bit more <span class="mediumaquamarine">trusting.</span>`);
slave.trust++;
}
if (slave.attrXY < 80) {
r.push(`Hormonal effects cause ${him} to become <span class="green">more attracted to men.</span>`);
slave.attrXY += 2 + V.hormoneUpgradePower;
}
} else if (slave.hormoneBalance >= 50) {
if (slave.attrXY < 70) {
r.push(`Hormonal effects cause ${him} to become <span class="green">more attracted to men.</span>`);
slave.attrXY += 2 + V.hormoneUpgradePower;
}
} else if (slave.hormoneBalance <= -350) {
if (slave.geneMods.NCS === 1) {
if (slave.hips + Math.abs(slave.hipsImplant) > -1 && slave.hips > -2 && jsRandom(1, 100 <= (20 + (10 * V.hormoneUpgradePower)))) {
r.push(`Masculine hormones team up with ${his} <span class="orange">NCS</span> to cause <span class="lime">${his} hips to shrink into a more childlike narrowness</span> than before.`);
slave.hips -= 1;
}
} else if (slave.physicalAge < 25) {
if ((slave.shoulders - (Math.abs(slave.shouldersImplant)) < 1) && (slave.shoulders < 2) && (jsRandom(1, 100) < 20 + (10 * V.hormoneUpgradePower))) {
r.push(`${His} body has not yet found its final bone structure, which typically happens in the mid-twenties. Hormonal effects cause <span class="orange">${his} shoulders to develop a more masculine wideness</span> than they would have done naturally.`);
slave.shoulders += 1;
}
if ((slave.hips + (Math.abs(slave.hipsImplant)) > -1) && (slave.hips > -2) && (jsRandom(1, 100) <= 20 + (10 * V.hormoneUpgradePower))) {
r.push(`${His} body has not yet found its final bone structure, which typically happens in the mid-twenties. Hormonal effects cause <span class="orange">${his} hips to develop more narrowly</span> than they would have done naturally.`);
slave.hips -= 1;
}
}
if (slave.geneMods.NCS === 0) {
if (slave.faceImplant < 5) {
if (slave.geneticQuirks.androgyny !== 2) {
if (slave.faceShape === "androgynous") {
r.push(`Hormonal effects cause <span class="orange">${his} face to harden into masculinity.</span>`);
slave.faceShape = "masculine";
} else if (slave.faceShape !== "masculine") {
r.push(`Hormonal effects cause <span class="orange">${his} face to harden into androgyny.</span>`);
slave.faceShape = "androgynous";
}
}
}
if (faceValue > 0 && faceValue < 100) {
r.push(`Hormonal effects cause <span class="orange">${his} facial structure to harden and become less attractive.</span>`);
faceDec = 1 + V.hormoneUpgradePower;
slave.face = Math.trunc(slave.face - faceDec, -100, 100);
}
if (slave.voice > 1) {
r.push(`Hormonal effects cause <span class="orange">${his} voice to become deeper and less feminine.</span>`);
slave.voice--;
}
}
if (V.hormoneUpgradeShrinkage === 0) {
if (buttSize > 1 && rearLipedemaMod !== 2) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50 && buttSize > 2) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} butt to decrease a lot.</span>`);
slave.butt -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">the natural size of ${his} butt to decrease.</span>`);
}
slave.butt--;
}
if (boobSize > 100 * gigantomastiaMod && gigantomastiaMod !== 3) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50 && boobSize > 200) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} tits to shrink a lot.</span>`);
slave.boobs -= 10 + (15 * V.hormoneUpgradePower);
} else {
r.push(`Hormonal effects cause <span class="orange">the natural size of ${his} tits to shrink.</span>`);
}
slave.boobs -= 10 + (15 * V.hormoneUpgradePower);
}
}
if (slave.geneMods.NCS === 1 && slave.nipples === "tiny") {
/* nothing, just don't advance to cute */
} else if (slave.nipples !== "cute" && slave.nipples !== "fuckable") {
r.push(`Hormonal effects cause ${his} <span class="orange">nipples to shrink to a more masculine size.</span>`);
slave.nipples = "cute";
}
if (slave.geneMods.NCS === 0) {
if (slave.dick > 0 && slave.dick < 5) {
r.push(`Hormonal effects add <span class="lime">a bit more heft to ${his} penis.</span>`);
slave.dick++;
}
if (slave.balls > 0 && slave.balls < 5) {
r.push(`Hormonal effects cause <span class="lime">${his} balls to hang a little heavier.</span>`);
slave.balls++;
}
if (slave.clit < 5 && slave.dick === 0) {
r.push(`Hormonal effects cause <span class="lime">${his} clit to grow significantly.</span>`);
slave.clit++;
}
if (slave.vagina > -1 && slave.vaginaLube > 0) {
r.push(`Hormonal effects cause <span class="orange">${his} vagina to produce less natural lubricant.</span>`);
slave.vaginaLube--;
}
if (slave.muscles <= 50 && slave.diet !== "slimming") {
r.push(`Hormonal effects <span class="lime">build up ${his} musculature.</span>`);
slave.muscles += 2 + V.hormoneUpgradePower + slave.geneticQuirks.mGain;
}
if (slave.waist < 80) {
r.push(`Hormonal effects cause ${his} <span class="orange">waist to broaden.</span>`);
slave.waist += 2 + V.hormoneUpgradePower;
}
}
if (slave.attrXX < 100) {
r.push(`Hormonal effects cause ${him} to become <span class="green">more attracted to women.</span>`);
slave.attrXX += 2 + V.hormoneUpgradePower;
}
if (slave.devotion > 20 && slave.trust <= 20) {
r.push(`Hormonal effects <span class="mediumorchid">make ${him} a bit less docile.</span>`);
slave.devotion -= 1;
}
} else if (slave.hormoneBalance <= -300) {
if (slave.geneMods.NCS === 0) {
if (slave.faceImplant < 5) {
if (slave.geneticQuirks.androgyny !== 2) {
if (slave.faceShape === "androgynous") {
r.push(`Hormonal effects cause <span class="orange">${his} face to harden into masculinity.</span>`);
slave.faceShape = "masculine";
} else if (slave.faceShape !== "masculine") {
r.push(`Hormonal effects cause <span class="orange">${his} face to harden into androgyny.</span>`);
slave.faceShape = "androgynous";
}
}
}
if (faceValue > 0 && faceValue < 100) {
r.push(`Hormonal effects cause <span class="orange">${his} facial structure to harden and become less attractive.</span>`);
faceDec = 1 + V.hormoneUpgradePower;
slave.face = Math.trunc(slave.face - faceDec, -100, 100);
}
if (slave.voice > 1) {
r.push(`Hormonal effects cause <span class="orange">${his} voice to become deeper and less feminine.</span>`);
slave.voice--;
}
}
if (V.hormoneUpgradeShrinkage === 0) {
if (buttSize > 1 && rearLipedemaMod !== 2) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50 && buttSize > 2) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} butt to decrease a lot.</span>`);
slave.butt -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">the natural size of ${his} butt to decrease.</span>`);
}
slave.butt--;
}
if (boobSize > 300 * gigantomastiaMod && gigantomastiaMod !== 3) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} tits to shrink a lot.</span>`);
slave.boobs -= 10 + (15 * V.hormoneUpgradePower);
} else {
r.push(`Hormonal effects cause <span class="orange">the natural size of ${his} tits to shrink.</span>`);
}
slave.boobs -= 10 + (15 * V.hormoneUpgradePower);
}
}
if (slave.geneMods.NCS === 1 && slave.nipples === "tiny") {
/* nothing, just don't advance to cute */
} else if (slave.nipples !== "cute" && slave.nipples !== "fuckable") {
r.push(`Hormonal effects cause ${his} <span class="orange">nipples to shrink to a more masculine size.</span>`);
slave.nipples = "cute";
}
if (slave.geneMods.NCS === 0) {
if (slave.dick > 0 && slave.dick < 5) {
r.push(`Hormonal effects add <span class="lime">a bit more heft to ${his} penis.</span>`);
slave.dick++;
}
if (slave.balls > 0 && slave.balls < 5 && slave.ballType !== "sterile") {
r.push(`Hormonal effects cause <span class="lime">${his} balls to hang a little heavier.</span>`);
slave.balls++;
}
if (slave.clit < 4 && slave.dick === 0) {
r.push(`Hormonal effects cause <span class="lime">${his} clit to grow significantly.</span>`);
slave.clit++;
}
if (slave.vagina > -1 && slave.vaginaLube > 0) {
r.push(`Hormonal effects cause <span class="orange">${his} vagina to produce less natural lubricant.</span>`);
slave.vaginaLube--;
}
if (slave.muscles <= 50 && slave.diet !== "slimming") {
r.push(`Hormonal effects <span class="lime">build up ${his} musculature.</span>`);
slave.muscles += 2 + V.hormoneUpgradePower + slave.geneticQuirks.mGain;
}
if (slave.waist < 40) {
r.push(`Hormonal effects cause ${his} <span class="orange">waist to broaden.</span>`);
slave.waist += 2 + V.hormoneUpgradePower;
}
}
if (slave.attrXX < 100) {
r.push(`Hormonal effects cause ${him} to become <span class="green">more attracted to women.</span>`);
slave.attrXX += 2 + V.hormoneUpgradePower;
}
if (slave.devotion > 20 && slave.trust <= 20) {
r.push(`Hormonal effects <span class="mediumorchid">make ${him} a bit less docile.</span>`);
slave.devotion -= 1;
}
} else if (slave.hormoneBalance <= -250) {
if (slave.geneMods.NCS === 0) {
if (slave.faceImplant < 5) {
if (slave.faceShape !== "masculine" && slave.faceShape !== "androgynous") {
r.push(`Hormonal effects cause <span class="orange">${his} face to harden into androgyny.</span>`);
slave.faceShape = "androgynous";
}
}
if (faceValue > 20 && faceValue < 100) {
r.push(`Hormonal effects cause <span class="orange">${his} facial structure to harden and become less attractive.</span>`);
faceDec = 1 + V.hormoneUpgradePower;
slave.face = Math.trunc(slave.face - faceDec, -100, 100);
}
if (slave.voice > 1) {
r.push(`Hormonal effects cause <span class="orange">${his} voice to become deeper and less feminine.</span>`);
slave.voice--;
}
}
if (V.hormoneUpgradeShrinkage === 0) {
if (buttSize > 2 && rearLipedemaMod !== 2) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} butt to decrease a lot.</span>`);
slave.butt -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">the natural size of ${his} butt to decrease.</span>`);
}
slave.butt--;
}
if (boobSize > 400 * gigantomastiaMod && gigantomastiaMod !== 3) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} tits to shrink a lot.</span>`);
slave.boobs -= 10 + (15 * V.hormoneUpgradePower);
} else {
r.push(`Hormonal effects cause <span class="orange">the natural size of ${his} tits to shrink.</span>`);
}
slave.boobs -= 10 + (15 * V.hormoneUpgradePower);
}
}
if (slave.geneMods.NCS === 1 && slave.nipples === "tiny") {
/* nothing, just don't advance to cute */
} else if (slave.nipples !== "cute" && slave.nipples !== "fuckable") {
r.push(`Hormonal effects cause ${his} <span class="orange">nipples to shrink to a more masculine size.</span>`);
slave.nipples = "cute";
}
if (slave.geneMods.NCS === 0) {
if (slave.dick > 0 && slave.dick < 4) {
r.push(`Hormonal effects add <span class="lime">a bit more heft to ${his} penis.</span>`);
slave.dick++;
}
if (slave.balls > 0 && slave.balls < 4 && slave.ballType !== "sterile") {
r.push(`Hormonal effects cause <span class="lime">${his} balls to hang a little heavier.</span>`);
slave.balls++;
}
if (slave.clit < 3 && slave.dick === 0) {
r.push(`Hormonal effects cause <span class="lime">${his} clit to grow significantly.</span>`);
slave.clit++;
}
if (slave.vagina > -1 && slave.vaginaLube > 0) {
r.push(`Hormonal effects cause <span class="orange">${his} vagina to produce less natural lubricant.</span>`);
slave.vaginaLube--;
}
if (slave.muscles <= 35 && slave.diet !== "slimming") {
r.push(`Hormonal effects <span class="lime">build up ${his} musculature.</span>`);
slave.muscles += 2 + V.hormoneUpgradePower + slave.geneticQuirks.mGain;
}
if (slave.waist < 25) {
r.push(`Hormonal effects cause ${his} <span class="orange">waist to broaden.</span>`);
slave.waist += 2 + V.hormoneUpgradePower;
}
}
if (slave.attrXX < 95) {
r.push(`Hormonal effects cause ${him} to become <span class="green">more attracted to women.</span>`);
slave.attrXX += 2 + V.hormoneUpgradePower;
}
if (slave.devotion > 20 && slave.trust <= 20) {
r.push(`Hormonal effects <span class="mediumorchid">make ${him} a bit less docile.</span>`);
slave.devotion -= 1;
}
} else if (slave.hormoneBalance <= -200) {
if (slave.geneMods.NCS === 0) {
if (slave.faceImplant < 5) {
if (slave.faceShape !== "masculine" && slave.faceShape !== "androgynous") {
r.push(`Hormonal effects cause <span class="orange">${his} face to harden into androgyny.</span>`);
slave.faceShape = "androgynous";
}
}
if (faceValue > 40 && faceValue < 100) {
r.push(`Hormonal effects cause <span class="orange">${his} facial structure to harden and become less attractive.</span>`);
faceDec = 1 + V.hormoneUpgradePower;
slave.face = Math.trunc(slave.face - faceDec, -100, 100);
}
if (slave.voice > 2) {
r.push(`Hormonal effects cause <span class="orange">${his} voice to become deeper and less feminine.</span>`);
slave.voice--;
}
}
if (V.hormoneUpgradeShrinkage === 0) {
if (buttSize > 3 && rearLipedemaMod !== 2) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} butt to decrease a lot.</span>`);
slave.butt -= 1;
} else {
r.push(`Hormonal effects cause <span class="orange">the natural size of ${his} butt to decrease.</span>`);
}
slave.butt--;
}
if (boobSize > 600 * gigantomastiaMod && gigantomastiaMod !== 3) {
if (slave.geneMods.NCS === 1 && jsRandom(1, 100) > 50) {
r.push(`Hormonal effects work with ${his} <span class="orange">NCS</span> and cause <span class="orange">${his} tits to shrink a lot.</span>`);
slave.boobs -= 10 + (15 * V.hormoneUpgradePower);
} else {
r.push(`Hormonal effects cause <span class="orange">the natural size of ${his} tits to shrink.</span>`);
}
slave.boobs -= 10 + (15 * V.hormoneUpgradePower);
}
}
if (slave.nipples === "huge" || slave.nipples === "puffy") {
r.push(`Hormonal effects cause ${his} big <span class="orange">nipples to shrink to a more reasonable size.</span>`);
slave.nipples = "cute";
}
if (slave.geneMods.NCS === 0) {
if (slave.dick > 0 && slave.dick < 3) {
r.push(`Hormonal effects add <span class="lime">a bit more heft to ${his} penis.</span>`);
slave.dick++;
}
if (slave.balls > 0 && slave.balls < 3 && slave.ballType !== "sterile") {
r.push(`Hormonal effects cause <span class="lime">${his} balls to hang a little heavier.</span>`);
slave.balls++;
}
if (slave.clit < 2 && slave.dick === 0) {