-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrecap02.rpy
1693 lines (998 loc) · 45.5 KB
/
recap02.rpy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2022 CrimsonSky Ltd, All Rights Reserved
#
#
#
#
#
#
#
#
#
# This scene proces the first run pass of the girls and their questions
# Each girl is called sequentially in the following order
#
# Emily
# Aubrey
# Lauren
# Autumn
# Riley
# Nora
# Ms Rose
# Chloe
# Penelope
# Amber
# Samantha
# Lindsey
# Jenny
#
# Jenny sets the recap_first_run variable to false and then calls the recap_girl_overview screen
# where the player can then see a summary of the girls and click on them to change their answers to the questions.
#
label recap_02:
play music track.exciting_5 fadein 2
label recap_emily_questions:
hide screen phone_icon
scene black
call screen recap_girl_summary("emily")
if _return == "Forgive her":
# Set variables here
scene recap02_01 # v5 s411a
u "After forgiving her, she was really clingy and just wouldn't leave me alone."
scene recap02_01a # v8s20 v8arcade7
u "I needed to have a serious think about how far I wanted to take things with her."
scene recap02_01b # v8s20 v8arcade12a
menu:
"Stay friends":
# Set variables for this decision here
# Emily Friend here
hide screen phone_icon
scene recap02_01c # v8s20 v8arcade4h
u "I decided it would be best to just keep her firmly in the friend zone. Much less drama that way!"
if not recap_first_run:
jump recap_girl_overview
else:
jump recap_aubrey_questions
"Start having sex again":
# Set variables for this decision here
# Emily RS here
$ CharacterService.set_relationship(emily, Relationship.FWB)
hide screen phone_icon
scene recap02_01d # v6 em10a
u "I guess I still had feelings for her, and the sex was always great, so why not?"
if not is_CK2:
if not recap_first_run:
jump recap_girl_overview
else:
jump recap_aubrey_questions
scene recap02_01e # v6 s538s
u "Things with Emily were very on and off. She was jealous of the attention I was getting from other girls and she wanted to stop seeing me."
scene recap02_01f # v13s50_19d
u "Then when we were in Europe, all that built-up tension boiled over into potentially having some angry sex."
scene recap02_01g # v13s51_9
menu:
"Have sex":
# Set variables for this decision here
# EmilyRS here
$ viewed_scenes.add(ViewedScene.CK1_V13_EMILY)
hide screen phone_icon
scene recap02_01h # v13s50a_4
pause 1.25
scene recap02_01i # v13s50a_5
pause 1.25
scene recap02_01j # v13s50av4Start
pause 1.25
scene recap02_01k # v13s50av2Start
pause 1.25
scene recap02_01l # v13s50av4bStart
pause 1.25
scene recap02_01m # v13s50a_9
u "Well, it happened. I gave her what she wanted but I don't regret it. That was some hot angry sex!"
"Don't have sex":
# Set variables for this decision here
# Emily Friend here
hide screen phone_icon
scene recap02_01n # v13s51_11a
pause 1.25
scene recap02_01o # v13s51_12b
pause 1.25
scene recap02_01p # v13s51_12c
pause 1.25
scene recap02_01q # v13s51_12d
pause 1.25
scene recap02_01r # v13s51_13a
with dissolve
if not recap_first_run:
jump recap_girl_overview
else: # Don't forgive her
# Set variables here
# Emily friend here
hide screen phone_icon
if not recap_first_run:
jump recap_girl_overview
label recap_aubrey_questions:
hide screen phone_icon
scene black
call screen recap_girl_summary("aubrey")
if _return == "Be friends":
# set variables here
# Aubrey friend here
scene recap02_09 # v6 s571a
u "I wasn't so sure the friends-with-benefits thing was right for me and Aubrey."
scene recap02_09a # v6 sufr3au2a
u "I honestly preferred being friends without the benefits, at least for now."
if not recap_first_run:
jump recap_girl_overview
else:
jump recap_lauren_questions
else: # Have Sex
# set variables here
$ viewed_scenes.add(ViewedScene.CK1_V11_AUBREY)
$ CharacterService.set_relationship(aubrey, Relationship.FWB)
scene recap02_09b # v3 anew8
with dissolve
u "That's the point of college, isn't it?"
scene recap02_09c # v6 naub16a
pause 1.25
scene recap02_09d # naub11start
pause 1.25
scene recap02_09e # v11aub8a
pause 1.25
scene recap02_09f # v11aubllTPP2Start
pause 1.25
scene recap02_09g # v11auanTPP1Start
u "Having sex with hot chicks? And Aubrey was definitely hot."
scene recap02_09y
pause 1.25
scene recap02_09x
pause 1.25
scene recap02_09w
u "Aubrey never thought of herself as the relationship type."
u "I thought I saw a romantic side in her but I didn't know if it would end well if I tried to push her in that direction."
menu:
"Try being romantic":
$ v0s48_canoeing_as_date = True
hide screen phone_icon
scene recap02_09u
u "She didn't take it seriously at first."
scene recap02_09z
u "Though as we became closer, she began to come around to the idea."
scene recap02_09t
u "But this is still new territory for us to explore."
"Stay FWB":
hide screen phone_icon
scene recap02_09v
u "In the end, I didn't go for it. Our relationship wasn't very deep, but I liked what I had."
if not recap_first_run:
jump recap_girl_overview
label recap_lauren_questions:
hide screen phone_icon
scene black
call screen recap_girl_summary("lauren")
if _return != "Be friends": # Pursue a relationship
$ CharacterService.set_relationship(lauren, Relationship.GIRLFRIEND)
scene recap02_04 # s87c
u "The next day, I met up with her..."
scene recap02_04a # s88
u "and we got to talking about the dating game."
scene recap02_04b # s89j
u "That's when she kinda revealed she was still a virgin."
scene recap02_04c # v3 s286
u "We later went on a date to see a movie."
scene recap02_04d # laurenkiss2
u "We kissed and things seemed to be going really well."
scene recap03_04e # v3 s291a
menu:
"Push for more":
$ v0_lauren_too_far = True
$ CharacterService.set_relationship(lauren, Relationship.FRIEND)
scene recap02_04f # v3 s291b
pause 1.25
scene recap02_04g # v3 s291c
pause 1.258
scene recap02_4h # v3 s289f
u "And that's when she broke things off with me right there and then for going too far."
scene recap02_04i # v3 s289g
u "Maybe I'll have another chance in the future, but we'd have to stay friends for a while."
if not is_CK2:
if not recap_first_run:
jump recap_girl_overview
else:
jump recap_autumn_questions
"Don't push it":
# set variables here
# laruen gf here
scene recap02_04j # v3 s289
u "I didn't want to push things too far too soon. We continued watching the movie and had a really nice time together."
scene recap02_04c
u "I knew she was the right girl for me."
if CharacterService.is_fwb(aubrey):
scene recap02_04k # v11aub25
u "We were on the airplane to London for the start of our European vacation..."
scene recap02_04l # v11aub2
pause 1.25
scene recap02_04m # v11aub4
u "and Aubrey wanted me to join her in the bathroom..."
scene recap02_04n # v11aub8a
u "for some mile-high action."
menu:
"Sex with Aubrey":
# Set variables here
$ viewed_scenes.add(ViewedScene.CK1_V11_AUBREY)
$ v0_lauren_caught_aubrey = True
$ CharacterService.set_relationship(lauren, Relationship.FRIEND)
scene recap02_04o # v11aub9
pause 1.25
scene recap02_04p # v11aub10
pause 1.25
scene recap02_04q # v11aublltpp2start
pause 1.25
scene recap02_04r # v11aub17c
pause 1.25
scene recap02_04s # v11aub17a
u "And of course Lauren walked in on us! So that was the end of that relationship!"
if not recap_first_run:
jump recap_girl_overview
else:
jump recap_autumn_questions
"Don't have sex":
$ v0s13_rejected_aubrey = True
scene recap02_04t # v11noch1
u "I didn't take her up on her offer. I'm not going to cheat on Lauren just like that!"
scene recap02_04u # v12las15
u "A little later into the vacation..."
scene recap02_04v # v12las20
pause 1.25
scene recap02_04w # v12las21
with dissolve
u "I had a really nice date with Lauren..."
scene recap02_04x # v12las53
u "and she seemed ready to have sex for the first time."
menu:
"Extra effort":
# set variables here
# lauren GF here
$ viewed_scenes.add(ViewedScene.CK1_V12_LAUREN)
scene recap02_04y # v12las53a
u "I put on some extra charm..."
scene recap02_04z # v12las53b
u "and was proved right."
scene recap02_05 # v12Laucgstart
u "It was slow and sensual..."
scene recap02_05a # v12las65
u "and it felt great to be the one she chose for her first time."
"Take it easy":
# set variables here
# laren GF here
scene recap02_05b # v12las73
u "Maybe I played it wrong, but we ended up not having sex that night."
scene recap02_05c # v12las34
u "When it does eventually happen, I'll make sure it's amazing."
if not recap_first_run:
jump recap_girl_overview
label recap_autumn_questions:
hide screen phone_icon
scene black
call screen recap_girl_summary("autumn")
if _return == "Spend time with her":
# Set variables here
# AutumnFriend
$ v0_visited_shelter = True
$ v0_signs = True
$ v0_protest = True
scene recap02_02 # v7 s722
pause 1.25
scene recap02_02a # v7 s725
u "It wasn't going to hurt anything by hanging out with her..."
scene recap02_02b # v7 sas12a
u "and it was actually quite fun getting to know her better and learning that she's into things like political activism."
else: # Dont spend time with Autumn
scene recap02_02c # v4 s334
u "Who's got time to waste on girls that require this much effort? I'll move on quickly, thanks!"
scene black
if not recap_first_run:
jump recap_girl_overview
label recap_riley_questions:
hide screen phone_icon
scene black
call screen recap_girl_summary("riley")
if _return == "Be friends":
# set variables where
# riley friend here
if not recap_first_run:
jump recap_girl_overview
else: # Pursue a relationship
scene recap02_06 # v7 s710
u "We started hooking up..."
scene recap02_06b # v7 rivid8052
u "and the sex was great..."
scene recap02_06c # v8sopt25
with dissolve
u "then later I found out that she's actually bisexual..."
scene recap02_06d # v8sopt27b
pause 1.25
scene recap02_06e # v11sub4
u "She seemed to be hinting that she'd like some sexual experiences with other girls."
scene recap02_06f # v11ras3
u "I guess, as a guy, you're either into that or you're not."
menu:
"Let be friends":
# set variables here
$ CharacterService.set_relationship(riley, Relationship.FRIEND)
scene recap02_06g # v11ras6
u "I'm just not into that, so it's probably for the best we stay friends."
if not recap_first_run:
jump recap_girl_overview
else:
jump recap_nora_questions
"Continue relationship":
# set variables here
$ CharacterService.set_relationship(riley, Relationship.FWB)
scene recap02_06f
#
u "Maybe I could angle for a threesome at some point! That would be incredible!"
if not is_CK2 or (is_CK2 and recap_choose_threesome):
if not recap_first_run:
jump recap_girl_overview
else:
jump recap_nora_questions
if CharacterService.is_fwb(aubrey):
# Three some question
scene recap02_06h # v13s33_8
u "Fast forward to right near the end of our Europe trip, while we were in Amsterdam..."
scene recap02_06i # v13s62_2g
pause 1.25
scene recap02_06j # v13s62_2i
u "the threesome thing became a real option!"
scene recap02_06k # v13s62_3a
menu:
"Have threesome":
# set variables here
# riley rs here
$ recap_choose_threesome = True
$ viewed_scenes.add(ViewedScene.CK1_V14_THREESOME)
$ v0_threesomeending = True
scene recap02_06l # v14auridoStart
pause 1.25
scene recap02_06m # v14aurircgStart
pause 1.25
scene recap02_06n # v14s01_8
u "Wow! I won't be forgetting that in a hurry!"
"Don't have threesome":
# set variables here
scene recap02_06o # v13s62_1
u "I just wasn't sure that was the right move for me with either of the girls."
if not recap_first_run:
jump recap_girl_overview
label recap_nora_questions:
hide screen phone_icon
scene black
call screen recap_girl_summary("nora")
if _return == "Don't flirt with her":
# set variables here
scene recap02_07 # v1 s55ch3
u "Yeah, actually, even if I am interested, there's no way I'm putting moves on a girl who already has a boyfriend."
scene recap02_07a # v6 s520h
u "Best to stay friends without all the flirting. Plus she might tell Chris!"
else: # Flirt with her
# set variables here
scene recap02_07b # v7 s702a
u "It's just a harmless bit of flirting..."
scene recap02_07c # v7 s702f
u "and every girl appreciates it when a guy lets them know in the most subtle of ways that they're hot."
# second question
scene recap02_07d # v8 v8shal2
u "I also had the chance to help her out with signing people up for the big summer trip to Europe."
scene recap02_07e # v8 v8shal4
menu:
"Help Nora":
# set variables here
# Nora friend here
$ v0_help_nora_freeroam = True
$ v0_chase_robber = True
$ v0_fight_win = True
$ v0_followed_nora = True
scene recap02_07f # v8 v8shal8
u "It'd be interesting to take part, but more than that, it would get Nora to like me more!"
"Don't help Nora":
# set variables here
# Nora friend here
scene recap02_07g # v8 v8shal3e
u "In all honesty, I wasn't that bothered when it came down to it."
scene recap02_07h # v8 v8shal6
u "I'll just let nature take its course. What will be will be!"
if not is_CK2:
if not recap_first_run:
jump recap_girl_overview
else:
jump recap_ms_rose_questions
# question 3
scene recap02_07i # v14s10_1
pause 1.25
scene recap02_07j # v12ncf4e
u "Once we were in Europe, things between Nora and Chris were getting worse."
scene recap02_07k # v11bb3
pause 1.25
scene recap02_07l # v11bb7a
u "I had some alone time sightseeing with her..."
scene recap02_07m # v11bb5
pause 1.25
scene recap02_07n # v11bb9b
pause 1.25
scene recap02_07o # v11bb9c
u "and there was the opportunity to move in for a kiss if I was interested in her, even though there was a huge risk involved and it might backfire."
menu:
"Kiss Nora":
# set variables here
# Nora friend here
$ v0s16_kissnora = True
$ v0_imre_disloyal = True
$ v0_freeroam11.add("nora")
scene recap02_07p # v11bb9d
u "Well that messed everything up!"
scene recap02_07q # v11bb11a
u "She was angry with me for pulling a move like that and it's going to take a while to win back those trust points."
if not recap_first_run:
jump recap_girl_overview
else:
jump recap_ms_rose_questions
"Don't kiss Nora":
# set variables here
$ v0s16_kissnora = False
$ v0_imre_disloyal = False
scene recap02_07r # v11bb9a
u "That was the right thing to do. No need to spoil a good thing!"
# Question 4
scene recap02_07s # v12nos1a
u "The decision not to kiss her meant I could get even closer to her. Later, we were talking in her hotel room."
scene recap02_07t # v12nos7
menu:
"Stay friends":
# set variables here
# Nora friend here
scene recap02_07u # v12nos8
u "We talked about the problems she was going through with Chris..."
scene recap02_07v # v12nos4
u "and she seemed to really appreciate being able to talk it all through with me."
scene recap02_07w # v12nos10
pause 1.25
"Kiss her":
# set variables here
# Nora rs here
$ CharacterService.set_relationship(nora, Relationship.FWB)
scene recap02_07x # v12nos2
pause 1.25
scene recap02_07y # v12nos5
u "She really seemed to enjoy the way I was focusing on her and showing her attention."
scene recap02_07z # # v12nos15a
u "I went in for the kiss and it didn't stop there."
scene recap02_08 # v12nos18
pause 1.25
scene recap02_08a # v12nos19
pause 1.25
scene recap02_08b # v12norst2Start
pause 1.25
scene recap02_08c # v12norsbStart
pause 1.25
scene recap02_08d # v12nos27
u "We ended up having some incredible sex! Sorry, Chris!"
if not recap_first_run:
jump recap_girl_overview
label recap_ms_rose_questions:
hide screen phone_icon
scene black
call screen recap_girl_summary("ms_rose")
# MsRose can have three return values
#
# "continue"
# "Pursue a relationship"
# "Be friends"
if _return == "continue": # MC is on the ape Path
# set variables here
# ms rose friend here
if not recap_first_run:
jump recap_girl_overview
else:
jump recap_chloe_questions
elif _return == "Be friends":
# set variables here
# msrose friend here
scene recap02_03 # v1 s84
u "She's my teacher, so no way is anything happening there. It would only lead to trouble anyway!"
else: # Pursue a relationship
# Set varibles here
scene recap02_03a # v7 shr5e
u "Who doesn't want to bang the hottest teacher at SVC? You just have to believe it's possible."
scene recap02_03b # v10msf5
u "I had the chance to kiss her, but it was a big play with a lot of risk."
scene recap02_03c # v10msf5b
menu:
"Kiss her":
# Set variables here
# msroseRS here
if not is_CK2:
if not recap_first_run:
jump recap_girl_overview
else:
jump recap_chloe_questions
scene recap02_03d # v10msf6
pause 1.25
scene recap02_03e # v11src1a
u "On our Europe trip, the chance came up again."
scene recap02_03f # v11ros2g
u "She wanted to speak alone with me, and I could feel the sexual tension."
scene recap02_03g # v11roc2
menu:
"Kiss her again":
# set variables here
$ CharacterService.set_relationship(ms_rose, Relationship.FWB)
$ viewed_scenes.add(ViewedScene.CK1_V12_ROSE)
scene recap02_03h # v11roc6 Ms Rose and MC kissing in hallway with tongue
u "I wasn't wrong about the sexual tension..."
scene recap02_03i # v11ros6a
u "and that kiss sealed the deal for a couple of amazing sex sessions!"
scene recap02_03j # v11ros9
pause 1.25
scene recap02_03k # v12rossdStart
pause 1.25
scene recap02_03l # v11roc8
u "What happens in Europe stays in Europe!"
"Don't kiss her":
# set variables here
# msrose friend here
scene recap02_03m # v11arrh3c
u "Okay, maybe I didn't feel so confident about that sexual tension after all."
"Don't kiss her":
# Set variables here
# ms rose friend here
scene recap02_03d # v11s43 v11bank28a
u "Yeah, on second thoughts, I figured it would be best to stay out of that one."
if not recap_first_run:
jump recap_girl_overview
label recap_chloe_questions:
hide screen phone_icon
scene black
call screen recap_girl_summary("chloe")
if _return == "Be friends":
# set variables here
# chloe friend here
scene recap02_10 # v1 s114b
u " It was more of a friend vibe for me really..."
scene recap02_10a # v7 sfr4cl18
u "and to be honest, I found at least one other girl more interesting and worthy of my time."
if not recap_first_run:
jump recap_girl_overview
else:
jump recap_penelope_questions
else: # Pursue a relationship
# set variables here
$ v0_hc_girl = "chloe"
$ CharacterService.set_relationship(chloe, Relationship.GIRLFRIEND)
scene recap02_10b # v3 s204
pause 1.25
scene recap02_10c # v6 sfr3cl1a
pause 1.25
scene recap02_10d # v4 s370d
u "I was expecting this to be hard work..."
scene recap02_10e # v7 sfr4cl8
pause 1.25
scene recap02_10f # v7 sfr4cl30
pause 1.25
scene recap02_10g # v8 v8s13
pause 1.25
scene recap02_10h # v11chcgStart
u "but I figured the rewards would be more than worth it!"
# second question
scene recap02_10i # v11clhall1c
pause 1.25
scene recap02_10j # v11chb7
u "I didn't realize I'd be appeasing her ego so much though with all the in-fighting at her sorority."
scene recap02_10k # v10such3b
pause 1.25
scene recap02_10l # v11car9a
pause 1.25
scene recap02_10m # v11car18a
u "Chloe was the president of the Chicks, and it seems other girls in the sorority didn't want her to be."