Newer
Older
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
## 0.3.13.5
- Fixed a bug in the changing rooms. Thanks to note leven.
- Fixed a bug with the new sewer slime event. Thanks to note leven.
Thanks to Crimson Tide for the following fixes:
- You can now begin the fame tasks in the pub with high exhibitionism fame.
- The cooldown for being able to begin tasks after completing the last one has been lowered.
- Neutral/defiant dialogue for the wolf pack Halloween event was corrected.
- Leaving the Wraith compound event now gives you one turn of safety to escape the compound if you wish.
- An easter egg line has been made slightly less common.
Thanks to Lollipop Scythe for the following fixes:
- Fixed a bug that caused blood moons to end at midnight, interrupting the Wraith sequence.
- Fixed an issue with the schism scene and scene viewer.
- Fixed an issue with forest shop clothes.
- Fixed time.
- Fixed a bug that prevented the PC collecting custom contact lenses. Thanks to note leven.
- Fixed issues with the settings importer for the options overlay.
- Code improvements.
## 0.3.13.4
- Thanks to Jimmy for ironman code improvements.
- Fixed a bug that prevented women from generating in the changing rooms. Thanks to Pumping Lemma.
- The lewd version of modelling at Domus street now respects genital generation settings, and can be accessed by virgin characters. Thanks to Pumping Lemma.
- Fixed an error found when trying to keep or prevent choking by a defeated NPC.
- Fixed a bug that caused the PC's eyes to always turn blue when possessed. Thanks to PurityGuy.
- Fixed time not skipping to dawn once the Schism scene ends. Thanks to PurityGuy.
- Fixed blood moons not appearing at the right time. Thanks to hwp.
- Fixed a bug that prevented wraith hunts starting before midnight. Thanks to hwp.
- The hanfu is now gender neutral. Thanks to hwp.
- The Wraith is now less likely to mimic Robin at night. Thanks to Crimson Tide.
- Thanks to Crimson Tide for code improvements.
- Thanks to Pumping Lemma for a typo fix.
Thanks to anon for the following fixes:
- Fixed an error when hiding during stalking encounters. Thanks to Crimson Tide.
- Adjusted the artwork for the classy vampire jacket. Thanks to MinerDx.
- Fixed a few events in the office not reflecting for the PC's genitals.
- Fixed an error when raiding lockers in the boys' changing room.
- Fixed the cheats menu being unable to un-dye the PC's fringe.
- Fixed a few issues with the brothel tentacles show.
- Fixed a softlock in the orphanage garden.
- Typo fixes.
Thanks to note leven for the following fixes:
- Time should no longer freeze during the Halloween party at the lake.
- Fixed a number of issues found during the manager masturbation event.
- Fixed changing room links.
- Fixed some error found when importing old settings.
- Enabled save export to file during combat and dancing.
- Fixed broken links when stripping at the office.
- Fixed a broken variable during the office shredder event.
- Office code improvements.
## 0.3.13.3
- Added icons for the skeleton outfit and mask. Thanks to anon.
- Added Robin and Whitney reaction lines for the skeleton costume. Thanks to hwp.
- Thanks to note leven for fixing bad links.
- Thanks to Jimmy for an ironman fix.
Thanks to Crimson Tide and anon for the following fixes:
- A new event at the compound will no longer trigger before the PC's actually discovered it.
- Completing the new compound event drastically increases security.
- Fixed an error caused by the ear slime at Alex's farm.
- Fixed an error at the underground farm.
- Fixed an error in the office.
- Pronoun fixes.
## 0.3.13.2
- Added some small events to the catacombs.
- Adjusted the catacombs pass out scene for when a monster spawns.
- Fixed a bug that caused school bathroom events to become confused about your gender. Thanks to xao.
Thanks to note leven for the following fixes:
- Fixed an error found when attempting to reset NPC virginities in the cheat menu.
- Added starting season to setting export.
- Fixed a bug that made the game forget something about Kylar.
- Disabled Eden's raft during winter.
- Fixed a bug that caused the encounter found when delivering a note in maths class to end prematurely.
Thanks to anon for the following fixes:
- The PC can no longer join the Halloween party at the lake before the evening. Thanks to Crimson Tide.
- Fixed an error when taking a certain task from Mickey at the pub. Thanks to Crimson Tide.
- Fixed an error found when exploring the catacombs.
- Reduced the severity of body part sensitivity.
- Fixed errors caused by an unused variable.
## 0.3.13.1
- Added the classy vampire jacket to the forest shop, unlocked on 21st October. Art courtesy of MinerDx.
- Added location art for Kylar's manor. Art courtesy of MinerDx.
- Thanks to MinerDx for adjusting the winter jacket icon.
- Thanks to Kami for adjusting the park dawn location image, the landfill icon, and the beer bottle icon.
- Fixed several bugs and text inconsistencies in Whitney's Halloween sequence. Thanks to hwp.
- Fixed a bug that broke time. Thanks to note leven.
- Fixed a scene in the office that didn't properly initiate.
- Thanks to note leven for pronoun fixes.
- Thanks to xao for miscellaneous fixes.
Thanks to anon for the following fixes:
- Fixed some lines in the churchyard that should've been hidden by the disabled stats setting. Thanks to Crimson Tide.
- Fixed a worker at the office bringing an [undefined] as their emotional support animal. Thanks to Crimson Tide.
- Landry will no longer ask the PC to recruit Mickey from the orphanage if they've already been recruited.
- The Ivory Wraith can no longer become the PC's manager. Thanks to braymann and hwp.
- Fixed the PC's fringe colour not updating in the sidebar on the starting screen.
- Fixed broken links when an NPC demands your underwear in the office.
- Fixed a bug when generating Sydney. Thanks to PurityGuy.
- Fixed the office building's icon being misaligned.
- Fixed an error found when swallowing cum.
- Typo fixes, mostly found by Crimson Tide.
## 0.3.13.0
- Added the old churchyard to the forest, and a catacombs beneath. Requires at least C+ skulduggery to break in.
- Added an office building to the High Street, where the PC can find work. Thanks to googlyman, with help from Crimson Tide. Location icons courtesy of Swaggy Bookshelf, and link icon courtesy of MinerDx.
- Added a Halloween event for the wolf pack at the lake. Written by Burnt Toast, and coded by Crimson Tide.
- Added a short Halloween party event to the lake, tying into the above. Written and coded by anon.
- Overhauled the sensitivity system. Added mouth and bottom sensitivities, while breast and genital sensitivities are now taken into account more frequently and appropriately. Thanks to Akoz.
- Added a handful of playable nightmare scenes that may occur in the PC's sleep. Thanks to Necro for writing the Eden, Wraith, and Harper nightmares. Thanks to stale sandwich for writing the Great Hawk nightmare. Coded by anon, with help from Jimmy.
- Ear slimes can now make you suck your own penis or pussy, should the PC be capable of doing so.
- Added additional masturbation actions to the bullet vibe, small dildo, and dildo. Thanks to Lollipop Scythe, with help from Meat Glacier and Crimson Tide.
- Added additional save statistics, which can be displayed in the top right of the screen.
- Added a short Halloween scene. Thanks to hwp.
- Added the skeleton outfit and skeleton mask to the forest shop. They become available on 21st October. Arts courtesy of namelessone.
- Added nine antiques.
- Added the "Swallow" and "Spit" actions to combat, appearing when an NPC ejaculates in the PC's mouth. Thanks to Nicky Lassandri.
- Statistics now keeps track of the total amount of human and beast semen swallowed. Thanks to Nicky Lassandri.
- Added several comments on the PC's Halloween costumes for Robin and Whitney. Thanks to hwp.
- Added the option to dye sides and fringe separate colours at the hairdressers. Thanks to KiraaCorsac.
- Adjusted the crop top art to be shorter. Thanks to Teeib7.
- Added the option to move the overlay close button to the left of the window, to make it more accessible on small screens. Thanks to xao.
- Added the "Column radio" encounter formatting style, available in options. Thanks to Divine Heir Kuro.
- Added the "Dark Delvings" feat.
- Thanks to Crimson Tide, Jimmy, xao, hwp, note leven, Lollipop Scythe, and KiraaCorsac for code improvements.
Thanks to PurityGuy for the following additions and improvements:
- The ancient threat, or Wraith, is now a named NPC, and may haunt the social tab.
- The Wraith now has the obsession stat. It impacts its power in interactions, and attitude towards the PC.
- Completing the Schism scene for the first time will give a potent reduction to obsession This will be applied to most existing saves. There are other methods for reducing obsession.
- Taking the Ivory Necklace raises obsession to max, and prevents it from being lowered below half. It is also raised by letting pale offspring die, or selling them.
- The "Apologise" action becomes very effective against the Wraith once the Schism scene is seen.
- Renovated the Plinth Room in the underwater ruins. The PC is no longer required to take the necklace to access its other features, including ear slime removal.
- Single-NPC encounters now refer to the NPC by their description again.
Thanks to Crimson Tide for the following additions and improvements:
- Added twelve missions to the pub that allow you to decrease or increase fame stats. The difficulty depends on the particular stat involved, the direction of the change, and whether the change is permanent or temporary.
- Added a Robin event.
- Added a Wraith event.
- Obsession now changes how the Wraith holds the PC before kissing, impacting stat changes.
- At high obsession and while haunting, the Wraith can now strike while "ejaculating", raising stress, trauma, and pain.
- Added a small bit of flavour text to the machine asylum scene at high obsession.
- The Wraith is now slightly more dangerous during the farm assault, and appears slightly more often, at high obsession.
- The Wraith can now stalk the PC as a random encounter on the town's streets. Framework was made by anon.
- Added a tentacle mode to the brothel sex machine, and a tentacle show.
- Added painful tentacles that cause a small amount of pain when they rub against the PC.
- Added the "Shining Reputation" and "Slip Through the Backdoor" feats.
### Balance Changes
- Moved the exhibitionism check in the school changing rooms from the locker, to the rooms themselves. Thanks to xao.
- Vines and metal tentacles are no longer affected by holy tattoos. Thanks to Crimson Tide.
- You can now do your own shopping when shopping for a Halloween costume for Robin. Thanks to hwp.
- Lowered the trauma and time requirements to see the Schism scene. Thanks to PurityGuy.
- In the pub mimic event, the amount of drugs and hallucinogens you get from the pill is impacted by obsession. Thanks to Crimson Tide.
- Hopping the school fence now gives one cat transformation point per day. Thanks to note leven.
- Added options to avoid clothes tearing when hopping the school fence based on athletics, knowledge of fence hopping, or being a cat. Thanks to note leven.
- Added possible arousal, stress, or pain gains when hopping the school fence naked. Thanks to note leven.
- Aphrodisiacs are no more threatening, as they can double the modifier applied to arousal from sensitivity. Thanks to Akoz.
- Oral skill can now be increased to D rank by sucking your own penis, a dildo, a small dildo, or the moor phallus plant.
- Hypnotic deviancy may now make the PC provoke beasts at the start of encounters, rather than punish a lack of deviant acts.
### Bug Fixes
- Fixed several event outcomes related to tiredness on Alex's farm and at the temple that could never trigger. Thanks to dust36.
- Leaving the pub with someone will now properly take drunkenness into account. Thanks to dust36.
- Fixed a couple of issues that prevented default actions working. Thanks to Lollipop Scythe.
- Fixed a bug that prevented mini penises from releasing any semen. Thanks to Lollipop Scythe.
- Fixed a bug that allowed chastised NPCs to masturbate in combat. Thanks to Lollipop Scythe.
- It's once again possible to remove individual clothes at the lake, if exhibitionism is high enough. Thanks to xao.
- The game will no longer forget that the PC has seen the Schism scene, allowing some previous interactions to become more common. Thanks to PurityGuy.
- Fixed a broken CSS element. Thanks to PurityGuy.
- Fixed a broken text effect. Thanks to Crimson Tide.
- Trying to speak while dissociating will now help you snap out of it as intended. Thanks to braymann.
- Fixed a bug when Kylar gives you their striped panties. Thanks to braymann.
- Tweaked the effect that working out has on butt shrinkage, shouldn't be as easy to shrink now. Thanks to braymann.
- Robin will now pull your hood down to give you a flower crown instead of making you take off your entire hoodie. Thanks to braymann.
- Fixed a compatibility bug with old saves at the bird tower.
- Fixed a bug that allowed the PC to use some sex toys in multiple ways at once. Thanks to Lollipop Scythe.
- Fixed a bug that allowed ear slimes to act when they're meant to be disabled. Thanks to Lollipop Scythe.
- Fixed some issues with awareness checks. Thanks to Lollipop Scythe.
- Thanks to hwp for minor fixes.
- Thanks to Crimson Tide for typo fixes.
Thanks to anonymous for the following fixes:
- Fixed a softlock when fighting a student at the lockers.
- Fixed pronoun issues when performing some hand actions.
- Fixed errors when attempting to free your face.
- Fixed a text issue when rescued in the forest.
- Typo fixes.
## 0.3.12.4
- Fixed broken nurse socks encounter sprite images.
- Fixed a bug that hid accessories on undertops, such as the foreign school swimsuit.
- The zoom feature is once again usable. It can now be found in the OPTIONS menu.
Thanks to anon for the following fixes:
- Fixed a softlock caused by edging during the tutorial encounter.
- Fixed the option to edge an NPC's pussy with your right hand not appearing.
- Fixed the PC's swimming skill being negatively affected by not wearing high heels.
- Bathing in the park's fountain now takes 10 minutes, as advertised.
- Fixed a softlock when drinking with Whitney at midnight.
- Resized the winter jacket's icon.
Thanks to note leven for the following fixes:
- Fixed an issue with heterochromia.
- Fixed a formatting issue for tulip seeds in the park.
- Sydney should no longer insist that you're late for school when classes are over.
- Fixed an issue with Kylar's encounter speech.
- Fixed a bug that allowed the PC to start restoring the cabin at the wrong times, causing bugs.
- Alleviated issues with underwear layers.
- Code improvements.
## 0.3.12.3
- Fixed an issue with the hairdressers. Thanks to note leven.
- Fixed sudden nudity. Thanks to note leven.
- Fixed an error that could appear during beast encounters. Thanks to Stadler76.
- Fixed an issue found when visiting Bailey on the first day.
- It should no longer be possible to endlessly attempt to strip a straightjacket on the dance floor.
- Thanks to note leven for a minor fix.
- The hypnosis attitude will now impact acquiring hypnotic deviancy.
- Removed the non-functioning animation button from Options.
- Fixed an error with the new hand actions and self-targeting in combat. Thanks to anon.
Thanks to note leven for the following fixes:
- Fixed an issue with heterochromia.
- Fixed an issue with parasitic pregnancy.
- Fixed an issue found when certain NPCs took the PC's virginity.
- Code improvements.
- Typo fixes.
## 0.3.12.2
- Fixed an issue with NPC generation during the Whitney maths grope event. Thanks to Jimmy.
- Fixed an issue with Whitney's pronouns during their parasite event. Thanks to TonyFox.
- History scenes where you clean the itching powder off now give delinquency when appropriate. Thanks to TonyFox.
- Fixed an issue with harpy images. Thanks to Jimmy and Stadler76.
- Added demon harpy chimera wings toggle to mirror options. Thanks to Stadler76.
- Hid demon wings when demon harpy wings are enabled. Thanks to Stadler76.
- Thanks to Jimmy and TonyFox for code improvements.
Thanks to note leven for the following fixes:
- Fixed a bug that broke the game on iOS.
- Fixed contain links after Kylar fed the fishes.
- Punished elesif for inappropriate name.
- A debug improvement.
## 0.3.12.1
- Lowered the warmth given by the open shoulder sweater bottom.
- Wearing no underwear will no longer increase the exhibitionism stat.
### Bug Fixes
- Fixed a text bug. Thanks to hwp.
- Improved some code that previously wouldn't run on old browsers. Thanks to Jimmy.
- Fixed a bug that caused the demon harpy chimera wings to appear without the demon transformation. Thanks to Jimmy.
- Prison inmates will no longer watch the PC lift weights after lockdown. Thanks to anonymous.
- Fixed missing image errors for the winter jacket. Thanks to anonymous.
- Fixed a bug that prevented pills working. Thanks to Tipengek.
- Fixed a bug that prevented certain lines from triggering during the brothel bukkake show.
- Fixed an issue with the Harvest Street exhibitionist option encounter. Thanks to Pumping Lemma.
- Fixed a bug that made it impossible to interact with clothes left in the school locker room overnight. Thanks to xao.
- Fixed a bug that made a Whitney event more common than intended> Thanks to TonyFox.
- Thanks to TonyFox and braymann for minor fixes.
- Thanks to anonymous for typo fixes.
## 0.3.12.0
- Added a couple of exhibitionist options to the industrial alleyways, letting you cross to the road out of town while exposed during the day.
- Added a couple of exhibitionist options to Connudatus Street at night, and another to the park at night.
- Added a bukkake show to the brothel, available to demon PCs.
- Added a rare event found when dancing at the strip club, and another found when dancing at the Brothel.
- Added an event to the town's streets, a couple of events to the prison, an event to the storm drains, an event to the landfill, and an event to the forest.
- Added a Whitney scene to maths class, triggered by high arousal. Written by Meat Glacier and coded by hwp.
- Adjusted Sydney code and text at school to prepare for future additions. Thanks to PurityGuy.
- Tentacles can now inflict "Hypnotic Deviancy" on the PC, requiring the PC perform at least one deviant act per day or suffer trauma. Requires bestiality be enabled.
- Added the "Lull" action to tentacle encounters, letting you ward off tentacles attempting to penetrate your mouth, if a chance of additional damage depending on willpower. Unlocked by B tending.
- Added the "Growl" combat action to wolf PCs, a bratty action that can prevent beasts from mounting the PC once per combat.
- Encounter and close up sprite nipple colour, mouth colour, and and body highlights should now suit darker skin tones, and match the sidebar sprite. Thanks to xao.
- You can now equip any dancing clothes directly from the dance studio changing room. Thanks to xao.
- Thanks to xao for many under-the-hood improvements to the clothing system, and quality of life improvements to the school changing rooms.
- Added the "Strut" action to stalk encounters, unlocked with level 2 exhibitionism actions.
- Added the "Wiggle" action to stalk encounters, which is more effective with with high seduction.
- Added a button to the corrupt variable warning that clears corrupted variables. Thanks to TonyFox.
- Asylum pills no longer show their effects when blind stats are enabled. Thanks to note leven.
- On-screen numpad buttons now gray out when associated links are unavailable. Thanks to note leven.
- Hovering a mouse cursor over sidebar stat bars now displays the stat's value. Thanks to Jimmy.
- Added a small event to the underground brothel.
- Added demon harpy chimera wings, for PCs with both the demon and bird transformations. Art courtesy of Sir OniHeimer.
- Thanks to 3hp for adjustments to ruffled hair.
- Added flavour text to several streets, taking weather into account.
- Added the schism scene to the scene viewer. Thanks to PurityGuy.
- If you restore any of your virginities in the cheat menu, clicking "take" will undo the action and set it back to whoever previously took it, as long as you do so before leaving the current passage. Thanks to hwp.
- Using the cheat menu, you can now choose exactly which parasite you want on a given location rather than having to cycle through them. Thanks to hwp.
- Added the hanfu, pink nurse dress, pink nurse hat, plastic nurse dress, plastic nurse hat, and nurse socks to the clothing shop. Art courtesy of Hyomi.
- Added the open shoulder sweater to the clothing shop. Art courtesy of 3hp.
- Added a wolf muzzle, kitty muzzle, bit gag, cloth gag, tape gag, and penis gag, which appear in certain situations. Art courtesy of KG.
- Added the winter jacket to the clothing shop. Art courtesy of MinerDX.
- Added new icons for apples, blood lemons, onions, pears, poppies, potatoes, and tulips. Thanks to Swaggy Bookshelf.
- Thanks to note leven for improved error reporting.
- Toast. Art courtesy of Hyomi.
- Added the "Bewitching Echoes" feat.
- Thanks to Jimmy, TonyFox, Crimson Tide, Höst, hwp, KiraaCorsac, Stadler76 and note leven for code improvements.
Thanks to xao for the following additions and improvements:
- Updated the look of overlay menus and buttons.
- Reworked and reordered Options menu.
- Clicking outside of an overlay menu now closes it.
- Moved several performance settings from the setup screen to the options menu under 'Performance', which can be changed from anywhere
- Closing the options menu now automatically updates your settings, without having to click a link or go to another passage.
- Added a toggle for character lighting, which can turn it off completely.
- Enabled "Visual representation of the player character's skin colour" and" tanning changes" by default. Can be turned off in Performance Settings.
Thanks to anonymous for the following additions and improvements:
- Whitney can now be encountered at the pub on Sunday nights. Written by Mona.
- You can now guide NPC hands to your ass or genitals while holding hands.
- You can now attempt to pull NPC hands away from your ass or genitals.
- Added more outcomes to NPCs reading arrow-based bodywriting, making arrows more functional in same-sex encounters.
- Added edging for oral, tribbing, and handjobs.
- Adjusted a passage at the sex shop.
Thanks to Crimson Tide for the following additions and improvements:
- You can now buy a notebook from the pet shop after birthing enough parasites that records and displays related information. Thanks to feedback from Lollipop Scythe.
- Added the "Broodmother Zoologist" feat, attained by completing the notebook/birthing all possible creatures.
- Flirting with Kylar in the manor now has you lead Kylar to the bed, rather than trekking all the way to the orphanage.
- You can now walk to the manor with Kylar, once 18:00 hits. Written by Kurjutta.
- You can catch Robin masturbating in their room after bedtime at very high lust. Written by YetAnotherUser.
Thanks to Höst for the following additions and improvements:
- Added numerous icons for the various bathroom actions, including different icons for each possible pubic style.
- Added an icon for putting on clothes at the lake, dance school, and swimming pool, and another icon for putting away clothes in the swimming pool changing rooms.
- Added the Push Up Bra to the clothing shop, with a "Push up" trait that makes your breasts appear bigger.
- Mascara smears now persist after tears dry out. Washing or re-applying the mascara will remove the smears.
- Added black waterproof mascara.
- Improved the pepper spray display.
- Added a chance to wake up with ruffled hair. The chance increases the longer you sleep. Fixed automatically when choosing a clothing set with a hairstyle.
- Added a couple of tips.
- Added new art for the thong.
- Formatting improvements.
### Balance Changes
- The Uncontrolled Hallucinations trait now greatly increases the likelihood of hypnotists appearing in the population.
- Stealthy clothing is now more stealthy. This makes you less detectable. Thanks to TonyFox.
- Police now able to learn your patterns. This makes you more detectable. Thanks to TonyFox.
- NPCs now reach orgasm more quickly while watching you dance should they like the type of dance you perform. The line indicating they are masturbating is now highlighted in pink in such cases.
- Reduced the exhibitionism requirement for buying from a service station naked to 4, and in your underwear to 2.
- Grabbing a tentacle during combat will now take your handholding virginity.
- Fixed the option to have sex with Whitney after being rescued appearing as a Promiscuity 4 action when it should've been Promiscuity 1. Thanks to anonymous.
- Angry NPCs are longer rendered powerless by handholding. Thanks to anonymous.
- Kissing during combat is now a Promiscuity 1 action. Thanks to anonymous.
- The PC will now automatically guard with their arms on the first turn of struggle encounters.
- The mansion dance job can now continue to be taken after completing the temple's quest.
- The PC can now receive a free serafuku when unlocking it.
- The ancient threat can no longer give you an ear slime if you've already gotten rid of one that blood moon. Thanks to PurityGuy.
- Pepper spray is now less effective against the ancient threat. Thanks to PurityGuy.
- Whitney may now try to whore out the PC in the park at max dominance regardless of love.
Thanks to Höst for the following balance changes:
- It is no longer possible to harvest crops or shave with your arms bound.
- Chest binders, chest wraps, and swim shirts are now better at concealing larger breasts.
- School swim bottoms are now less warm.
- The corset now has the "Push up" trait, making breasts appear bigger.
- Thongs and striped bras are now less revealing. Tape is very slightly less revealing.
### Bug Fixes
- Fixed a bug that made two Kylar manor scenes impossible to unlock for the scene viewer. Thanks to Anonymous.
- Putting on clothes outside a wardrobe should now properly unequip existing clothes, and prevents outfits tearing into parts. Thanks to xao.
- Fixed a visual glitch with the anal penetration sprite. Thanks to xao.
- Fixed a bug that prevented the dark penis sprite for anal appearing when it was meant to. Thanks to xao.
- Fixed an issue with Robin's Halloween sequence. Thanks to Jimmy.
- Robin won't go back to their room if you sleep for a short duration, and they're sleeping with you, until at least 6 am. Thanks to Jimmy.
- Fixed bugs caused by saving on the first screen, then loading that save on a subsequent update. Thanks to Olaroll.
- Police should now properly track your crime history. Thanks to TonyFox.
- Fixed a bug that made some NPCs reach orgasm faster than intended while watching you dance.
- Fixed some issues with sex toys. Thanks to TonyFox.
- Fixed a couple of instances of imminent penetration not being properly highlighted, and added details about lube. Thanks to Pumping Lemma.
- Fixed a bug that caused breast bodywriting/tattoos to be blocked by all under tops. Thanks to n1ck.
- Fixed a bug that prevented a minor landfill event triggering.
- Fixed some notes that should've been hidden by the "enable blind stats" setting. Thanks to Crimson Tide.
- Made it harder to wreck your game with teleport cheats. Thanks to Crimson Tide.
- Avery will no longer molest you with a foot during the restaurant date if feet are disabled.
- Fixed a bug that caused pepper spray to be more effective against groups than intended. Thanks to PurityGuy.
- Fixed incorrect article usage on Characteristics overlay. Thanks to KiraaCorsac.
- Added mention of the PC's pussy to the Characteristic overlay's short character description. Thanks to KiraaCorsac.
- Fixed a small text issue during combat. Thanks to KiraaCorsac.
- Fixed a bug that could muddle penises when two try to penetrate at once. Thanks to Pumping Lemma.
- Fixed clothes accidentally disappearing from dance studio changing room if they were left there over midnight. Thanks to xao.
- Added back some missing text descriptions when screaming. Thanks to xao.
- Thanks to xao and ChexAndBalances for typo fixes.
Thanks to note leven for the following fixes:
- Fixed a bug that allowed minimum sizes to be set higher than maximum sizes.
- Fixed an issue with milk and semen volume descriptions.
- Fixed a rare bug that could cause purity to stay at max when it shouldn't.
- Fixed a bug that allowed buying in sex shop for negative money.
- Dock pirates won't intercept Robin from going to the landfill if they haven't had their fill yet.
- Fixed some issues with the stat tracking NPC boldness.
- Other fixes.
Thanks to TonyFox for the following fixes:
- Fixed breast/penis growth bug (not growing with being orgasm'd in/orgasming in NPCs, etc)
- You will no longer remove the naked behind a changing screen at the photo studio.
- Cafe blackmail events properly increase defiance/submissiveness as appropriate.
- Talking to servants in the Danube dance job now reduces stress like indicated.
- Finally caught the bug involving the eye lenses and missionary sex images.
- A street flasher now properly gets to see what you're wearing (or not).
- The carriage ride back to town will no longer give you sexual essence.
- Fixed large number of "his/her" where it should have been "him/her".
- Several Whitney events now mess up your hair, as does passing out.
- Fixed an issue with insecurity and acceptance bars not showing.
- Fixed an issue with possessed masturbation breaking variables.
- Breaking into containers at the docks now properly adds crime.
- Hypnotised stat now counts when you're hypnotised in combat.
- Beauty no longer doubly affected by some traumatic events.
- A large number of grammar improvements regarding dialogue.
- The ancient threat can no longer have its gender changed.
- Fixed an issue with prayer room sex corrupting variables.
- Fixed an accidental loop in the dog pound competition.
- Fixed a potentially missing 0 in the sewers safe hint.
- Headband now gender neutral instead of for males.
- Fixed a bug with the check for dancing attire.
- Cafe suspicion now decays a little each day.
- Fixed a broken fight scenario on the UFarm.
- Fixed some Kylar abduction sequence logic.
- Fixed semen volume not increasing hourly.
- Fixed a bad link in the pub crawl quiz.
- Corrected some assorted misgenderings.
- Fixed some locker room clothing names.
- You can no longer vagina your face.
- Fixed some logic when hypnotised.
- Some grammar regarding dialogue.
- Fixed logic in some Alex events.
- Gave Kylar back his second eye.
- Fixed an issue with some pills.
- Fixed a minor bug in combat.
- Wrangled some varmint NPCs!
- Minor code and typo fixes.
Thanks to braymann for the following fixes:
- You can no longer increase your milk or semen volume infinitely using cheats.
- Using both hands to swim away from swarms will no longer make your arms go back to resting by default.
- You will no longer be prevented from leaving the forest lake immediately after making a plant skirt or top.
- Fixed a bug where most named NPCs will lose all virginities after you meet them for the first time, and restored those missing virginities on existing saves.
- Fixed a bug where spa patrons' tips won't actually increase when the game says they raise their offer.
- Fixed a bug where the effectiveness of using your ass to pleasure spa patrons was determined by thigh skill instead.
- Fixed an issue when taking an NPC's virginity when being double penetrated.
- Fixed a bug where it was impossible for Sydney to break their chastity vow.
- Fixed a bug with straddling two dicks at the same time.
- Fixed a bug that made cheating on school exams easier than intended.
- Fixed some line-spacing issues when breaking free from the ancient threat's control.
- Kylar can no longer grow a second penis when they read the "Reserved for Kylar" bodywriting.
Thanks to anonymous for the following fixes:
- Losing to sailors during a pub crawl quiz no longer lowers school status, instead lowering docks status as intended.
- Kylar's owl plush now functions properly after its retrieval from Bailey's office.
- Avery now remembers the player's genitals after seeing them during a date.
- Typo fixes.
Thanks to Höst for the following fixes:
- The second half of the hair colours list in cheats should now be appropriately coloured.
- Fixed a bug that caused smeared mascara to render beneath freckles.
- Fixed an issue with tanning on Linux.
- Femininity will now consider apparent, rather than actual, breast size.
- Wren will now consider the PC's apparent breast size, rather than just the presence of a chest binding top.
- White and yellow school swim bottoms will no longer be so luminous.
- Face masks will now stop leaves getting in your mouth.
- Fixed an incorrect school reminder in the sidebar on the last day of a school season, or holidays, if the day was also a Sunday.
- Fixed a bug allowing long johns and boxers to be pulled to the side in combat.
- A minor under the hood fix.
## 0.3.11.4
- Running in the park can now lead to a stalk encounter.
- Added weather flavour text to various locations.
- Added an event to Alex's farm that can appear once Alex is available as a love interest.
- Added a mouseover note to the watersports toggle. Thanks to xao.
- Disabling images in settings now also disables the combat images toggle. Thanks to xao.
- Thanks to xao for code improvements.
### Balance Changes
- Added plain panties, boxers, briefs, and plain bras to the school clothing shop.
- Some previously instant events now pass time. Thanks to xao.
### Bug Fixes
- Fixed an error found involving Kylar in the orphanage loft.
- Thanks to Chex&Balances for fixing a ton of typos.
- Fixed an error found when ejaculating in an NPC's pussy.
- Fixed an error found when begging Whitney in the park without having unlocked them as a love interest. Thanks to TonyFox.
- Fixed an issue found during a lorry scene. Thanks to TonyFox.
- The encounter hallways during science class should no longer end at once.
- Thanks to definitely_not_a_cop for a typo fix.
- Fixed a broken park location image during winter nights.
- Removed the PC's ability to speak with a gag on during a prison scene.
- Fixed an error found during a scene in English class.
- Fixed a bug that caused the second round against the dog in the compound to end at once, and lead to a broken passage. Fixed a similar bug found during the encounter with the cat on Danube Street.
- Fixed an error found when lurkers and similar creatures cover your thighs in slime.
- Fixed issues with the settings export/import system. Thanks to Jimmy.
Thanks to xao for the following fixes:
- The locker event now damages the correct clothing.
- The PC no longer automatically takes pills while getting molested or raped.
- Message about gender appearance now uses perceived breast size as a factor if chest is exposed
- Fixed text in the temple wolf encounter.
- Fixed a bug that displayed 0% chance to win when entering the science competition with phallus or mushroom projects.
- The dance studio, cafe, strip club, spa, compound, store, docks and school onw always take time to enter from the streets.
- Fixed a broken link, and other errors, found during assaults on Alex's farm.
- Morgan should now correctly attempt to teach history.
- Fixed a broken link during a pharmacy seduction event.
- The cafe blackmail encounter should now be able to end.
- Added time display to a lot of links that were missing them.
- Typo fixes.
## 0.3.11.3
- Connudatus and Cliff Street flavour text now takes rain and snow into account.
- Added more outcomes to the "Search" action at the landfill.
- Thanks to TonyFox for code improvements.
### Bug Fixes
- Fixed a bug that disabled combat images on old saves.
- Fixed a small UI issue in Settings.
- Fixed an issue with settings import. Thanks to Jimmy.
- Fixed time-based errors in the Schism scene. Thanks to PurityGuy.
- Fixed a line that went on one too many times. Thanks to PurityGuy.
- Fixed the daily purity gain so that the Impurity Boost can counteract it again. Thanks to braymann.
- Gaining a point of Demon or Angel transformation will no longer make you lose a point of your animal transformations. Thanks to braymann.
Thanks to TonyFox for the following fixes:
- Fixed many invalid variable maths.
- Ended an instance of clothing communism.
- Corrected logic for mouth rinsing.
- Fixed and improved some logic when encountering a dog in a house on Domus street.
- Fixed a bug with combat images not being enabled properly on new saves.
- Fixed a detention scene ending early.
- Fixed some gender checks in a Kylar event.
- Fixed some location checks for Kylar's manor.
- Fixed several broken variables.
- Typo fixes.
## 0.3.11.2
- The "Start a fire" option at Remy's estate can now appear locked when the other favours are done, but you don't have enough daring. Thanks to definitely_not_a_cop.
### Bug Fixes
- Fixed an issue with the wrong NPC loading for private dances. Thanks to TonyFox.
- Fixed some issues with blackjack betting. Thanks to definitely_not_a_cop.
- Fixed an error found when named NPCs generate. Thanks to TonyFox.
- Fixed an issue found following an interaction with the ancient threat. Thanks to TonyFox.
## 0.3.11.1
- Added the fish hairpin to the clothing shop. Art courtesy of Hyomi.
- Added icons for tendable plants, and honeycomb. Art courtesy of Swaggy Bookshelf.
- Added the option to disable combat images while leaving other images present. Thanks to Crimson Tide.
- Added an error reporting tool. Thanks to TonyFox.
- Added a small addition to the end of the moor youths scene. Thanks to Crimson Tide.
- Some combat flavour text now accounts for nectar. Thanks to Crimson Tide.
- Thanks to TonyFox for code improvements.
### Balance Changes
- Willingly kissing the moor youths now counts as consensual. Being kissed before you can tell them no still counts as assault. Thanks to Crimson Tide.
### Bug Fixes
- Text about guarding yourself in struggle encounters now uses hand skill, rather than feet skill. Thanks to Crimson Tide.
- The new Whitney scene at school now uses Kylar's pronouns to refer to Kylar, rather than Whitney's. Thanks to anonymous.
- Whitney's rescue breakdown sex scene now properly starts. Thanks to anonymous.
- The game will no longer claim your mask broke when you just displaced it Thanks to braymann.
- Fixed a bug that caused the Monster Hoodie's colors to occasionally break Thanks to braymann.
- Fixed a random dog that breaks free when you try to free the Black Dog. Thanks to braymann.
- Fixed a bug with body liquid. Thanks to note leven, TonyFox and Jimmy.
- Thanks to Crimson Tide and anonymous for typo fixes.
Thanks to TonyFox for the following fixes:
- Fixed a number of variables that failed to initialise at a game's start.
- Fixed two icons in the bedroom.
- Sydney is now allowed to stop fucking.
- Dr Harper has retired from the field of Psychiatrist Specialty medicine, to pursue a promising career in Psychiatry, Hypnosis Therapy, and Sexual Pharmacology. We wish them all the best.
- The audience will no longer talk about the beasts waiting their turn during a farm sex show, and instead will focus on the one currently involved with the PC.
- The man beating an orphan on Domus Street will no longer randomly change genders.
- The black hole that was swallowing the dog and preventing you from continuing during a Whitney sequence has been closed.
- Private dances will no longer lose track of your customer.
- Whitney is now allowed to cum in Bailey's office.
- Whitney can now properly get you comfortably naked in Maths class. River will act appropriately.
- School skills properly fixed for those who had them mis-set in previous versions
- Fixed moo'ing during Alex's farm milking. Moo!
- Fixed an issue with cow transformation milk and semen volume caps.
- Remy has stopped using his powers of transfiguration to change his coffee into tea.
- Fixed an error that would appear when loading old saves.
## 0.3.11.0
- Added a Whitney event to the school hallways that can trigger Kylar's manor abduction.
- Dance audience members can now start masturbating as they watch, depending on the location. Semen can land on the PC if they're in the right spot, increasing awe, and lands on the stage otherwise. A cum-drenched stage is slippery, and falling will trigger a gang rape.
- The NPC selected to ask for a private dance is now determined by whoever the PC is dancing closest to, rather than the first to generate.
- Added some dance audience comments.
- Incorporated a system of money betting during blackjack with Wren. Clothing can now be re-bought under certain circumstances. Thanks to definitely_not_a_cop.
- Angel, fallen angel, and demon PCs can now offer to hold the after-meal sermons in prison.
- Holy tattoos now burn when touched by tentacles, hurting them and the PC.
- Added a customisable "spotlight" character lighting for the sidebar and encounter sprites, controlled by sliders in the Options menu. Thanks to Olaroll.
- Added a shadow beneath the encounter sprites when lit by a spotlight. Thanks to xao.
- Added a tooltip when mousing over shop trait icons. Thanks to xao.
- Added a couple of events to the old sewers.
- Students at school will now whisper of your negative fames. Written by Kinky_One and coded by xao.
- Added the "guard" option to struggle encounters, letting you attempt to use your hand skill to bat away creatures as they launch themselves at you.
- Lurkers and similar creatures can now shoot slime at you should you fail to dodge during struggle encounters.
- Added a few events to the moor.
- Added the option to leave money when encountering a poor family on Domus Street. Thanks to Cord.
- Added an event to the orphanage.
- Added an event to the school hallways. Written by Anonymous G and coded by xao.
- Added an event to the school front and rear when school is not in session.
- Combat actions that require a certain awareness level are now advertised as such. Thanks to note leven.
- Added flavour text around the world, taking the time of day and weather into account in more places.
- Added combat flavour text improvements, including the ability for NPCs to differentiate between long and short when mentioning your hair.
- Cow PCs can now moo when being milked at Alex's farm. Thanks to Cord.
- Added a "Help wanted" sign outside the Ocean Breeze for new characters. Thanks to Cord.
- Adjusted the park dusk location image, and added animated park location images for blood moons, and other times of day. Art courtesy of Kami.
- Added the single breasted jacket, double breasted jacket, slacks, and short tie to the clothing shop. Art courtesy of Sir OniHeimer.
- Added the "Free Booze" feat.
- Thanks to TonyFox, Crimson Tide, Perry, xao, Jimmy, note leven, and anonymous for code improvements.
Thanks to Crimson Tide for the following additions and improvements:
- Added the "Hypnotic Flaunting" trait, which can cause the PC to flaunt a body part instead of covering them.
- Added an attitude that makes the PC accept all combat hypnosis effects.
- Added nectar as a third liquid type, alongside semen and slime, carried by plantpeople and plant-based tentacles.
- Adjusted a few scenes to take the presence of nectar into account.
- Added six Kylar scenes to the scene viewer.
Thanks to anonymous for the following additions and improvements:
- Added more interactions with Whitney after they whore the PC out at the park, depending on how the event ends and the PC's relationship with Whitney.
- Added a variant of the possession scene in the underwater prison for players with tentacles disabled.
- Added a scene for climaxing during blackjack if Wren and the PC are female.
- Added a unique hypnosis line for metal tentacles, written by Crimson Tide.
- Added another passout scene to the landfill.
### Balance Changes
- Shackled feet now makes the journey through the rut beneath the prison increase stress.
- Kylar's attempts at sensual dancing now lower arousal. Thanks to Crimson Tide.
- Added the option to resist Eden's rescue at the farm. Thanks to anonymous.
- Added the athletic trait to the sports bra. Thanks to Cord.
- Strip club security will now let PCs who work there use the dressing room at closing time, should they be insufficiently dressed, rather than giving them towels and kicking them out.
- Whitney will now give the PC a cut of the profits after whoring them out at the park if they're dating. Thanks to anonymous.
- Begging not to be whored out by Whitney no longer works if they aren't dating the PC. Thanks to anonymous.
- Fighting Whitney when they attempt to whore the PC out no longer lowers love. Thanks to anonymous.
- The forced masturbation scene in the underwater prison is now accessible to non-lactating female PCs. Thanks to anonymous.
### Bug Fixes
- Exposing Whitney in maths class now succeeds and fails when intended.
- Refusing to bow your head during prayer will now increase inmate respect as advertised.
- Fixed a bug that prevented combat with Whitney during the parasite scene ending when the PC is disabled by pain. Thanks to Anon.
- Taking an eerie tentacle in your mouth at the mirror now increments stats appropriately. Thanks to Anon.
- Chestjobs given will no longer increase every turn while giving a single chestjob. Thanks to Anon.
- The "Urinated on" stat will now increase during beast encounters.
- The pound will now respect the blind stats setting. Thanks to Crimson Tide.
- Allowed a street molester to reach orgasm. Thanks to TonyFox.
- Wrangled an NPC in the farm shopping sequence. Thanks to TonyFox.
- Fixed a bug that prevented applying contact lenses via preset. Thanks to Perry.
- Fixed a furniture error. Thanks to Jimmy.
- The PC's penis size should now be properly disabled when the PC's gender is changed to female. Thanks to xao.
- Fixed a bug that hid a passage in the adult shop. Thanks to hwp.
- Abominations' tentacles now use their owners' pronouns. Thanks to anonymous.
- Your clothes now get fixed after the abduction scenario. Thanks to Crimson Tide.
- Shop icons should now be properly scaled down when the window is reduced on mobile. Thanks to xao.
- Fixed a bug that prevented a small Kylar scene from triggering. Thanks to Anon.
- Fixed a bug with divine transformation parts disappearing after penetration.
- Fixed an issue with Kylar's determination of the PC's gender. Thanks to Jimmy.
- Fixed the leak in the barn roof. Thanks to TonyFox.
- Corrected several gender checks. Thanks to TonyFox.
- Fixed the accessory colour for new characters' school shirt.
- Took the dolphins to a urologist and fixed a soft lock. Thanks to definitely_not_a_cop.
- Fixed a bug that prevented Alex's dominance and love to go negative, preventing certain dialogue from triggering.
- Thanks to Cord for fixing grammar issues.
- Thanks to TonyFox for typo fixes.
- Thanks to anonymous for typo and minor fixes.
Thanks to braymann for the following fixes:
- Fixed plant people becoming contortionists while trying to kiss you.
- Fixed NPCs turning the player into a contortionist in order to make you suck their breast.
- Fixed a typo when plant people retract their tentacles after an encounter.
- You are no longer able to take more pills than intended.
- Fixed an error related to the scene viewer.
- Beauty will no longer increase infinitely.
- Female PCs with strap-ons will now be able to gain Strap-on Use skill again.
- The Black Dog will now appear in the "Persistent NPCs" settings.
- Dolphins will no longer grow legs in order to urinate on the player.
- School status will no longer be able to go into the negatives or above the max.
- Overall School Performance is now able to reach "Exemplary" again, allowing the Perfect Record feat to be obtainable again as well.
- You will no longer earn Distinctions earlier than intended.
- Typo fixes.
## 0.3.10.5
- Added an event to the sea.
- Added an antique.
- Domus and Danube Street flavour text now takes rain and snow into account at dawn, dusk, and night.
- When dancing, you can now choose which watching NPC to dance near, controlling who'll show up for most events. Private dances still use the first NPC for now.
- Added a tooltip to peeking during blackjack. Thanks to definitely_not_a_cop.
- Added the "Storm" theme. Thanks to Perry.
### Bug Fixes
- Fixed an issue with Safari. Thanks to Jimmy.
- Fixed Kylar's confusion about the PC's gender at the manor. Thanks to Jimmy.
- Thanks to Jimmy for minor fixes.
- Improved blackjack code, removing a brief load time. Thanks to definitely_not_a_cop.
- Fixed a bug that removed the option to peek during blackjack. Thanks to definitely_not_a_cop.
- Fixed an error found during blackjack. Thanks to definitely_not_a_cop.
- Kylar should no longer show up in their room when they should be in prison. Thanks to hwp.
- The random clothing feat boost can no longer give you random hoods. Thanks to braymann.
Thanks to TonyFox for the following fixes:
- Fixed a bug that broke Kylar underwear scenes.
- Removed some excess arousal messages.
- Reworded a hallway passage.
- Students no longer wrap arms around waste.
- Clarified a journal entry.
- Typo fixes.
Thanks to anonymous for the following fixes:
- Having sex with Whitney at the orphanage now properly raises Kylar's jealousy if you have their Stockholm syndrome trait.
- Slamming the door in a bully's face at the orphanage is no longer listed as a defiant action if the PC isn't defiant.
- The Traits tab no longer lists Kylar's Stockholm syndrome trait in the prison if you don't actually have the trait.
- Orphans no longer manifest in the deserted living room when bringing Whitney to the orphanage at night.
- Kylar's owl plushie can now be recovered from Bailey's office at night if you chose to give it to an orphan.
- Added a warning that Kylar's owl plushie will replace the current decoration in your room, if applicable.
- Submitting to a street molester is now listed as a promiscuity 2 act, rather than 1.
- Typo fixes.
## 0.3.10.4
- Reduced the size of image files. Thanks to note leven.
- Thanks to Perry for minor improvements to UI styling.
- Thanks to TonyFox for code improvements.
### Bug fixes
- Fixed a bug that caused the love of many NPCs to cap at 50%.
- Fixed some calculation issues with the ancient threat's offspring. Thanks to note leven.
- Fixed a bug that hid some text during the Robin pillory sequence. Thanks to JamesAbrams.
- Reintroduced the succubus sprite for the doggy position. Thanks to Jimmy.
- Separated the chimera parts if disabled in the menu. Thanks to Jimmy.
- Fixed an issue with the save system. Thanks to TonyFox.
- Fixed a couple of issues found when offering vaginal to two NPCs at once. Thanks to JamesAbrams.
- Fixed some rare issues with hoodie save compatibility. Thanks to braymann.
- The swarm encounter in the sex shop will no longer ignore the swarm toggle. Thanks to braymann.
- Fixed a bug where automatic clothing rebuy might use the wrong color when re-buying custom color clothing. Thanks to braymann.
Thanks to TonyFox for the following fixes:
- Fixed some issues with mobile compatibility.
- Fixed a broken link in the smuggler den.
- Unlocked some temple events that were hidden by accident.
- Kylar no longer drags the fountain from the park into the school library to surprise you.
- Shoving Eden off you is now a defiant act.
- Morgan is no longer living in the past (tense).
- Fixed an issue with Kylar's genitalia on old saves. Thanks to hwp.
## 0.3.10.3
- Thanks to Jimmy for code improvements.
- Fixed a pronoun issue when rescuing an orphan as a demon on Domus Street.
- Fixed an error found when loading autosaves from a previous version. Thanks to Jimmy.
- Adjusted the transformation option UI at the mirror. Thanks to Jimmy.
- Removed the outdated watersports hint. Thanks to Jimmy.
- Fixed a bug that would let you restore the hood of a broken hoodie. Thanks to braymann.
- Fixed a couple bugs with hoodies in the clothing shop. Thanks to braymann.
- Fixed misaligned sidebar links on some devices. Thanks to Perry.
Thanks to note leven for the following fixes:
- Fixed an error on the statistics overlay.
- Fixed a compatibility issue with older browsers.
- Fixed an issue with the monster hoodie.
- Consensual sex will no longer increase stress.
- The owl plushie will no longer materialise from the void.
- Caught a thief that stole the towels from the bathroom.
- Deviant behaviour will now be recognised once more.
- Steel blue is no longer red.
- Typo fixes.
## 0.3.10.2
- Hide some stats in the statistics overlay when associated toggles are disabled. Thanks to note leven.
- Fixed an issue with hoods in the wardrobe. Thanks to note leven.
- Fixed an error found during a maths event. Thanks to note leven.
- Fixed a bug where outfits that have a hoodie can cause errors due to the new hood system. Thanks to braymann.
Thanks to Crimson Tide, braymann, and anonymous for the following fixes:
- Prevents some links from appearing when chatting with Kylar when they're leaving.
- Updates some Kylar chats and teases to take the manor into account.
- Kylar no longer abducts you if you already have Stockholm syndrome.
- Kylar's Stockholm syndrome trait no longer shows in the traits menu if Kylar is dismissed.
- Kylar's dominance is set back to 0 when leaving the manor abduction scene.
- Removes repeat text from some results of Kylar's abduction rage scene.
- NPCs no longer piss through strap-ons.
- NPCs no longer piss on you after consensual encounters.
- Resetting an NPC's virginity in the cheats menu now also resets the active NPC's virginity if they're currently active in an event.
- Fixed some dead links.
- Fixed an issue with the farm in backComp.
- Removes a feat earn where it doesn't make sense.
- Fixes an issue with the wardrobe and broken clothing.
- You can no longer ask to be rougher while being choked.
- The landfill compare scene's rng is no longer dependent on the previous rng value.
- Fixed some bad love interest logic in Remy's farm.
- The "Urinated on" stat should now function properly.
- Updates some links to use proper capitalization.
- Typo fixes.
## 0.3.10.1
- Vines in tentacle encounters now hypnotise with pollen rather than light. Thanks to Crimson Tide.
- If Kylar is the PC's love interest and they kept the owl plushie, they now acknowledge it after masturbating in their room.
- Thanks to Crimson Tide and shikiyoku for code improvements.
### Balance Changes
- The manor abduction sequence will no longer begin if the PC already has Stockholm Syndrome: Kylar.
### Bug Fixes
- Fixed a deadlock within mirror reflections. Thanks to Jimmy.
- Fixed an issue with demon transformation colouring on the encounter sprites. Thanks to Jimmy.
- Fixed a combat error. Thanks to Jimmy.
- Fixed a bug where the PC's clothes would get wet while you're inside Kylar's Manor when it's raining outside. Thanks to braymann.
- Kylar will no longer give you an orgasm so good it breaks the game. Thanks to braymann.
- Thanks to braymann for fixing some other variables.
Thanks to Crimson Tide for the following fixes:
- Fixed a few instances of stress failing to change when intended.
- Fixed a number of issues that could break variables.
- Added a missing link in a demon encounter.
- You can now take care of the owl plushie while not wearing underwear.
- The cowled figure from the temple will no longer stalk the PC endlessly.
- Typo fixes.
Thanks to TonyFox for the following fixes:
- Fixed an error with hallucinations.
- Exams now raise grades once again.
- Fixed an issue found when Kylar admires bodywriting.
- Fixed some issues with pain.
- Fixed an issue with Kylar's pronouns.
- Links in the mirror-appearance check now perform as intended.
- Fixed an issue with a clothing widget.
- Fixed an issue with farm wages.
Thanks to hwp for the following fixes:
- Fixed a bug a bug at the pharmacy found if visited on the first day of a playthrough.
- Fixed a wardrobe bug found when trying to equip an outfit after getting out of bed.
- Fixed a bug found when NPCs begin an encounter by trying to give oral.
- Fixed a bug that caused underwear to prevent the sleep clothing bonus.
- Fixed a bug that cause daily corruption gain instead of loss.
- Fixed a bug that prevented the PC from tending the garden.
- Fixed a bug found when buying items from the pharmacy.
- Fixed a bug that gave the ancient threat virginities.
- Fixed a bug found during Kylar encounters.
- Fixed a bug with the deviancy widget.
Thanks to anonymous for the following fixes:
- Fixed errors found when warning Kylar about your love interest in the manor.
- The PC can now bring up Avery as a love interest when warning Kylar about your love interests in the manor.
- Fixed a bug that made demon PCs seduce the wrong NPC on Domus Street.
- NPCs should on longer be able to urinate through strap-ons.
- Typo fixes.
## 0.3.10.0
- Added an abduction scenario involving Kylar.
- Added the Stockholm Syndrome: Kylar, Hypnotic Suggestion, and Hypnotic Yearning traits.
- Kylar can now give the PC a gift at high love.
- Added some other events involving Kylar.
- Demon PCs can now climb through windows at night on Domus Street in search of "prey".
- Added Kylar's manor to Danube Street. Needs to be discovered before it can be visited.
- Added cheating options and suspicion mechanics to Blackjack. You can mark cards, and attempt to peek as cards are dealt. Higher skulduggery makes cheating easier. Being caught can be dangerous. Thanks to definitely_not_a_cop.
- Added a Cheating Guide beneath the Blackjack Guide, explaining mechanics in more detail. Thanks to definitely_not_a_cop.
- Added a couple of Whitney events to the town's streets.
- Added a scene with Morgan to the sewers. Written by Kurjutta, coded by Crimson Tide.
- Added a scene with Whitney to the park. Written by Handsomepaesant, coded by Crimson Tide.
- Angry NPCs can now urinate on the PC after orgasming during non-consensual encounters, if watersports is enabled.
- Added "Urinated on" to statistics.
- Added some text to the pharmacy nurse. Thanks to hwp.
- You can now ask NPCs to be rougher with you. Requires the "Guilty Masochist" or higher trait for consensual encounters, and the "Hardened Masochist" or higher trait for non-consensual encounters.
- The "Hypnotic Yearning" trait can make the PC beg for rougher treatment instead of screaming. The effect can be resisted by willpower. Being hypnotised multiple times will transform the effect into something stronger.
- Some NPCs are now hypnotists, and can hypnotise the PC during combat, inflicting the "Hypnotic Yearning" trait, increasing masochism, or making the PC orgasm at once. Doctor Harper is always a hypnotist, and generic NPCs have a 1% chance of generating as such. Iridescent, incandescent, translucent, blooming, wired, and convulsing tentacles can also hypnotise the PC, and increase sadism instead of masochism.
- Other headwear can now be worn alongside a hoodie if the hood is down. Thanks to braymann.
- You can now hitchhike outside town while in a state of partial undress, such as when wearing exposed underwear or plant clothes, but it's more dangerous.
- Added a rare event to the school hallways. It's more dangerous than most.
- Added an exposure event to the school hallways.
- Added the "Pose for camera" hand action to encounters with audiences, including audience reactions.
- Adjusted the monster hoodie colour, gave it the option of custom colours, and renamed the base colour.
- Adds a confirmation menu when loading a save into an older version. In effect from this version onwards. Reloading the current session into an older version also gives a passage confirming the action. Thanks to Jimmy.
- You can now use the reflective surface of water as a mirror at the wolf cave, lake shore, and Remy's farm. Thanks to Jimmy.
- Added small events to the landfill, moor, sea, and wolf cave.
- Added a Theme switcher control to the "Options" overlay, letting you choose between "Dark", "Nord", "Zenburn", "Monokai" and "System default". "System default" sets a theme depending on system colour preference. Thanks to shikiyoku and February.
- Added some flavour text to Sam at the cafe.
- Added padding to the overlay menu, and adjusted the stats border. Thanks to February.
- Added "hood up/down" and "tuck/untuck shirt" buttons to the clothing shop. Thanks to hwp.
- Added art for 21 bodywriting lines as they appear on the PC, alongside code improvements. Thanks to KiraaCorsac.
- Added the demon-cat tail and demon-cow horns chimera parts. Coded by Jimmy, with sprites and design by Sir OniHeimer, Eleisea Eisenwald, and Aussie.
- Added colour controls to the demon transformation part window. Thanks to Jimmy.
- Performance improvements.
- Thanks to Crimson Tide for more appropriate NPC ejaculations after winning a fight.
- Thanks to Crimson Tide, Jimmy, shikiyoku, February, Rukarin, hwp, and note leven for code improvements.
- Added the "Longing", "Pagan Rite", and "The Value of Pain" feats.
Thanks to lifeAnime for the following additions and improvements:
- Added toggle or cat transformation heterochromia to the mirror options.
- The currently selected hairstyle is now highlighted in yellow when selecting styles at the mirror.
- Added hotkeys to the show/re-equip clothes button at clothing shops.
- Improved the custom colour shop UI, and added import/export buttons for the colour's code.
- Adjusted the random colour option at the clothing shop, making it pick more usable colours.
### Balance Changes
- You can now talk with Robin at max trauma. Thanks to Crimson Tide.
- Some effects that increase submissiveness or defiance are now more powerful.
- The impact on submissiveness from combat actions now differs by action, with more extreme actions having a bigger impact.
- Adjusted the strength of some + and - Pain effects, notably the reduction when protecting yourself in combat.
- Seducing the hospital nurse with a small penis now has a chance of success. Thanks to hwp.
- Prostitution fame now increases allure. Thanks to TonyFox.
- Gwylan is now always active in the forest shop. Thanks to Crimson Tide.
- Stealing in prison now gives you shark's teeth. Thanks to Crimson Tide.
- PCs with decent history are no longer clueless about the sewers. Thanks to Crimson Tide.
- You can now choose to keep your mask on when changing during the dance jobs. Thanks to stalesandwich.
### Bug Fixes
- Fixed a bug that made masochism reduce the impact of - pain effects.
- Wrangled an escaped NPC in the underground brothel.
- Fixed a bug that caused the pharmacy nurse to ignore settings. Thanks to hwp.
- Fixed an issue with eye colour on old saves. Thanks to lifeAnime.
- It's no longer possible to load a separate save in ironman mode, as this would just cause the ironman save to be lost. Thanks to lifeAnime.
- Fixed some dead links.
- Fixed a bug that allowed the PC and Kylar to interact in the park indefinitely.
- Losing virginity during the Raul and Janet story should no longer autosave. Thanks to lifeAnime.