-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathgraphic inits.rpy
3156 lines (2692 loc) · 110 KB
/
graphic inits.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
init -5:
########################## CHARACTER INIT
define kay = Character('Kayto', who_xalign=0.05)
define ava = Character('Ava', who_xalign=0.05)
define asa = Character('Asaga', who_xalign=0.05)
define chi = Character('Chigara', who_xalign=0.05)
define ica = Character('Icari', who_xalign=0.05)
define kry = Character('Kryska', who_xalign=0.05)
define sol = Character('Sola', who_xalign=0.05)
define cla = Character('Claude', who_xalign=0.05)
define cos = Character('Cosette', who_xalign=0.05)
define gre = Character('Grey', who_xalign=0.05)
define arc = Character('Arcadius', who_xalign=0.05)
define ryu = Character('Jaylor', who_xalign=0.05)
define pi = Character('Pilot', who_xalign=0.05)
define cul = Character('Cullen', who_xalign=0.05)
define sop = Character('Sophita', who_xalign=0.05)
define fon = Character('Fontana', who_xalign=0.05)
define mar = Character('Maray', who_xalign=0.05)
define cen = Character(" ", what_font="Font/PERTILI.TTF", what_size=25, what_xalign=0.5, what_text_align=0.5, what_yalign=0.5)
define e = Character(" ")
define score = Character(" ", what_font="Font/GOTHIC.TTF", what_size=35, what_xalign=0.5, what_yoffset=-500)
define cre = Character(" ", what_font="Font/GOTHIC.TTF", what_size=20, what_xalign=0.5, what_yoffset=-800)
define kyo = Character('Kyoko', who_xalign=0.05)
define pro = Character('Prototype', who_xalign=0.05)
#####################################SIDE CHARACTERS
image sophita:
"Character/Side/sophita.png"
yanchor 0.9 ypos 1.0
xanchor 0.5
zoom 0.6255
subpixel True
image grey:
"Character/Side/grey.png"
yanchor 0.9 ypos 1.0
xanchor 0.5
zoom 0.6255
subpixel True
image king:
"Character/Side/king.png"
yanchor 0.9 ypos 1.0
xanchor 0.5
zoom 0.62
subpixel True
image cullen:
"Character/Side/Cullen.png"
yanchor 0.9 ypos 1.0
xanchor 0.5
zoom 0.62
subpixel True
image cullen smile:
"Character/Side/cullen_smile.png"
yanchor 0.9 ypos 1.0
xanchor 0.5
zoom 0.62
subpixel True
image fontana:
"Character/Side/Fontana.png"
yanchor 0.9 ypos 1.0
xanchor 0.5
zoom 0.62
subpixel True
image arcadius altneutral:
"Character/Side/arcadius_altneutral.png"
yanchor 0.55 ypos 1.0
xanchor 0.5
zoom 0.69
subpixel True
image arcadius neutral:
"Character/Side/arcadius_neutral.png"
yanchor 0.55 ypos 1.0
xanchor 0.5
zoom 0.69
subpixel True
image arcadius laugh:
"Character/Side/arcadius_laugh.png"
yanchor 0.55 ypos 1.0
xanchor 0.5
zoom 0.69
subpixel True
image arcadius fist:
"Character/Side/arcadius_fist.png"
yanchor 0.55 ypos 1.0
xanchor 0.5
zoom 0.69
subpixel True
image arcadius prototype smirk:
"Character/Side/arcadius_neutral_smirk.png"
yanchor 0.55 ypos 1.0
xanchor 0.5
zoom 0.69
subpixel True
image arcadius prototype shot:
"Character/Side/arcadius_neutral_shot.png"
yanchor 0.55 ypos 1.0
xanchor 0.5
zoom 0.69
subpixel True
image arcadiusneutral1:
"Character/Side/arcadius_neutral.png"
yanchor 0.55 ypos 1.0
xanchor 0.5
zoom 0.69
subpixel True
image arcadiusneutral2:
"Character/Side/arcadius_neutral.png"
yanchor 0.55 ypos 1.0
xanchor 0.5
zoom 0.69
subpixel True
image arcadiusneutral3:
"Character/Side/arcadius_neutral.png"
yanchor 0.55 ypos 1.0
xanchor 0.5
zoom 0.69
subpixel True
image arcadiusneutral4:
"Character/Side/arcadius_neutral.png"
yanchor 0.55 ypos 1.0
xanchor 0.5
zoom 0.69
subpixel True
image arcadiusneutral5:
"Character/Side/arcadius_neutral.png"
yanchor 0.55 ypos 1.0
xanchor 0.5
zoom 0.69
subpixel True
image kyoko neutral neutral:
"Character/Side/kyoko_neutral_neutral.png"
yanchor 0.51 ypos 1.0
xanchor 0.5
zoom 0.65
subpixel True
image kyoko neutral sad:
"Character/Side/kyoko_neutral_sad.png"
yanchor 0.51 ypos 1.0
xanchor 0.5
zoom 0.65
subpixel True
image kyoko excited shout:
"Character/Side/kyoko_excited_shout.png"
yanchor 0.51 ypos 1.0
xanchor 0.5
zoom 0.65
subpixel True
image kyoko excited neutralshout:
"Character/Side/kyoko_excited_neutralshout.png"
yanchor 0.51 ypos 1.0
xanchor 0.5
zoom 0.65
subpixel True
image kyoko excited happy:
"Character/Side/kyoko_excited_happy.png"
yanchor 0.51 ypos 1.0
xanchor 0.5
zoom 0.65
subpixel True
image kyoko excited scared:
"Character/Side/kyoko_excited_scared.png"
yanchor 0.51 ypos 1.0
xanchor 0.5
zoom 0.65
subpixel True
image kyoko dead1:
"Character/Side/kyoko_dead1.png"
yanchor 0.51 ypos 1.0
xanchor 0.5
zoom 0.65
subpixel True
image kyoko dead2:
"Character/Side/kyoko_dead2.png"
yanchor 0.51 ypos 1.0
xanchor 0.5
zoom 0.65
subpixel True
image maray dead:
"Character/Maray/neutral_dead.png"
yanchor 0.51 ypos 1.0
xanchor 0.5
zoom 0.6255
subpixel True
image maray neutral neutral:
"Character/Maray/maray_neutral_neutral.png"
yanchor 0 ypos -0.1
xanchor 0.5
zoom 1.0
subpixel True
image maray neutral sad:
"Character/Maray/maray_neutral_sad.png"
yanchor 0 ypos -0.1
xanchor 0.5
zoom 1.0
subpixel True
image maray excited happy:
"Character/Maray/maray_excited_happy.png"
yanchor 0 ypos -0.1
xanchor 0.5
zoom 1.0
subpixel True
image maray neutral frown:
"Character/Maray/maray_neutral_frown.png"
yanchor 0 ypos -0.1
xanchor 0.5
zoom 1.0
subpixel True
image maray lean happy:
"Character/Maray/maray_lean_happy.png"
yanchor 0 ypos -0.1
xanchor 0.5
zoom 1.0
subpixel True
image maray lean curious:
"Character/Maray/maray_lean_curious.png"
yanchor 0 ypos -0.1
xanchor 0.5
zoom 1.0
subpixel True
image maray lean smile:
"Character/Maray/maray_lean_smile.png"
yanchor 0 ypos -0.1
xanchor 0.5
zoom 1.0
subpixel True
image snow1 = SnowBlossom("Background/snow1.png", count=200, border=50, xspeed=(-20, 20), yspeed=(50, 80), start=40, horizontal=False)
image snow2 = SnowBlossom("Background/snow2.png", count=30, border=50, xspeed=(-40, 40), yspeed=(100, 130), start=30, horizontal=False)
image snow3 = SnowBlossom("Background/snow3.png", count=5, border=50, xspeed=(-80, 80), yspeed=(150, 180), start=10, horizontal=False)
#####################################SPACE BACKGROUNDS
image space back1:
"Background/space1.jpg"
yanchor 0.5 xanchor 0.5
xpos 0.5 ypos 0.5
subpixel True
image space back2:
"Background/space2.jpg"
yanchor 0.5 xanchor 0.5
xpos 0.5 ypos 0.5
subpixel True
image space back3:
"Background/space3.jpg"
yanchor 0.5 xanchor 0.5
xpos 0.5 ypos 0.5
subpixel True
image space back4:
"Background/space4.jpg"
yanchor 0.5 xanchor 0.5
xpos 0.5 ypos 0.5
subpixel True
image space back5:
"Background/space5.jpg"
yanchor 0.5 xanchor 0.5
xpos 0.5 ypos 0.5
subpixel True
image space back6:
"Background/space6.jpg"
yanchor 0.5 xanchor 0.5
xpos 0.5 ypos 0.5
subpixel True
image space back7:
"Background/space7.jpg"
yanchor 0.5 xanchor 0.5
xpos 0.5 ypos 0.5
subpixel True
image space back8:
"Background/space8.jpg"
yanchor 0.5 xanchor 0.5
xpos 0.5 ypos 0.5
subpixel True
image space back9:
"Background/space9.jpg"
yanchor 0.5 xanchor 0.5
xpos 0.5 ypos 0.5
subpixel True
image asteroid back1:
"Background/asteroids1.jpg"
yanchor 0.5 xanchor 0.5
xpos 0.5 ypos 0.5
subpixel True
image asteroid back2:
"Background/asteroids2.jpg"
yanchor 0.5 xanchor 0.5
xpos 0.5 ypos 0.5
subpixel True
image asteroid back3:
"Background/asteroids3.jpg"
yanchor 0.5 xanchor 0.5
xpos 0.5 ypos 0.5
subpixel True
##############################BACKGROUNDS
image bg cera = "Space/cera.jpg"
image bg hangar:
"Background/hangar.jpg"
yalign 0.5
xalign 0.5
image bg bridge:
"Background/bridge.jpg"
yalign 0.5
xalign 0.5
image bg captainsloft:
"Background/captainsloft.jpg"
yalign 0.5
xalign 0.5
image bg captainsoffice:
"Background/captainsoffice.jpg"
yalign 0.5
xalign 0.5
image bg engineering:
"Background/engineering.jpg"
yalign 0.5
xalign 0.5
image bg lab:
"Background/lab.jpg"
yalign 0.5
xalign 0.5
image bg messhall:
"Background/messhall.jpg"
yalign 0.5
xalign 0.5
image bg messhallwindows:
"Background/messhallwindows.jpg"
yalign 0.5
xalign 0.5
image bg sickbay:
"Background/sickbay.jpg"
yalign 0.5
xalign 0.5
image bg bridgenest:
"Background/bridgenest.jpg"
yalign 0.5
xalign 0.5
image bg bridgered:
"Background/bridge_red.jpg"
yalign 0.5
xalign 0.5
image bg brig:
"Background/brig.jpg"
yalign 0.5
xalign 0.5
image brigoverlay:
"Background/brig_over.png"
yalign 0.5
xalign 0.5
image bg starpalace:
"Background/starpalace.jpg"
yalign 0.5
xalign 0.5
image bg legionwindows:
"Background/legionwindows.jpg"
yalign 0.5
xalign 0.5
image bg weddinghall:
"Background/starpalace.jpg"
yalign 0.5
xalign 0.5
image bg bridgeredtilt:
"Background/bridge_redtilt.jpg"
yalign 0.5
xalign 0.5
image bridgeredtiltfore:
"Background/bridge_redtiltfore.png"
yalign 0.5
xalign 0.5
image bg beach1_fade:
"Background/beach_fade.jpg"
image beach_over:
"Background/beach_fadeover.png"
image bg beach1:
"Background/beach1.jpg"
image bg beach2:
"Background/beach2.jpg"
image bg beach2_night:
"Background/beach2_night.jpg"
image bg logcabin:
"Background/cabin.jpg"
image bg cabindeck:
"Background/cabindeck.jpg"
image cabindeck_fadeover:
"Background/cabindeck_fadeover.png"
image bg cabinoutside:
"Background/cabinoutside.jpg"
image cabinoutside_fadeover:
"Background/cabinbush_fadeover.png"
image bg cabinday:
"Background/cabinday.jpg"
image bg ongess1:
"Background/ongess1.jpg"
image bg ongess2:
"Background/ongess2.jpg"
image bg ongess3:
"Background/ongess3.jpg"
image bg holdingcell:
"Background/holdingcell.jpg"
image bg captainsoffice2:
"Background/captainsoffice2.jpg"
image bg captainsoffice2_dark:
"Background/captainsoffice2_dark.jpg"
image bg battlegrid = "Gameplay/battlegrid.jpg"
image bg black = "Gameplay/Space/parallax_spacebase.jpg"
image bg black2 = "Menu/black.jpg"
image bg sunriderwarpout = "Space/sunrider_warpout_back.jpg"
image bg captainsoffice_nolights = "Background/captainsoffice_nolights.jpg"
image captainsoffice_nolights_overlay = "Background/captainsoffice_nolightsoverlay.png"
image holding_cell_overlay = "Background/holdingcell_overlay.png"
image bg classroom = "Background/classroom.jpg"
image bg city = "Background/city.jpg"
image bg apartmentfront = "Background/apartmentfront.jpg"
image bg classroomnight = "Background/classroomnight.jpg"
image bg balcony = "Background/balcony.jpg"
image bg avaroom = "Background/avaroom.jpg"
image bg engineroom = "Background/engineroom.jpg"
image bg corebridge = "Background/corebridge.jpg"
###########################CGs
image cg sunrider_drydock = "CG/sunrider_drydock.jpg"
image captain order 1:
"CG/captainorder1.png"
image captain order 2:
"CG/captainorder2.png"
image cg drydockdestroyed 0:
"CG/drydock_destroyed0.jpg"
xalign 0.5 yalign 0.5
image cg drydockdestroyed 1:
"CG/drydock_destroyed1.jpg"
xalign 0.5 yalign 0.5
image cg drydockdestroyed 2:
"CG/drydock_destroyed2.jpg"
xalign 0.5 yalign 0.5
image cg drydockdestroyed 3:
"CG/drydock_destroyed3.jpg"
xalign 0.5 yalign 0.5
image cg drydockdestroyed 4:
"CG/drydock_destroyed4.jpg"
xalign 0.5 yalign 0.5
image cg_legionwarpin_background:
"CG/legionwarpin_background.jpg"
image cg_legionwarpin_missilefrigate1 warp:
"CG/legionwarpin_missilefrigate1_warp.png"
xanchor 0.5 yanchor 0.5
image cg_legionwarpin_missilefrigate1 out:
"CG/legionwarpin_missilefrigate1.png"
xanchor 0.5 yanchor 0.5
image cg_legionwarpin_missilefrigate2 warp:
"CG/legionwarpin_missilefrigate2_warp.png"
xanchor 0.5 yanchor 0.5
image cg_legionwarpin_missilefrigate2 out:
"CG/legionwarpin_missilefrigate2.png"
xanchor 0.5 yanchor 0.5
image cg_legionwarpin_missilefrigate3 warp:
"CG/legionwarpin_missilefrigate3_warp.png"
xanchor 0.5 yanchor 0.5
image cg_legionwarpin_missilefrigate3 out:
"CG/legionwarpin_missilefrigate3.png"
xanchor 0.5 yanchor 0.5
image cg_legionwarpin_legion out:
"CG/legionwarpin_legion.png"
xanchor 0.5 yanchor 0.5
image cg_legionwarpin_legion warp:
"CG/legionwarpin_legion_warp.png"
xanchor 0.5 yanchor 0.5
image cg_legionwarpin_legion_full:
"CG/legionwarpin_full.jpg"
xanchor 0.5 yanchor 0.5
image cg_legionwarpin_missilefrigate_warpflash:
"CG/legionwarpin_missilefrigate_warpflash.png"
xanchor 0.5 yanchor 0.5
linear 0.2 alpha 0
image legion_cera_fleetfire1:
"CG/legion_cera_fleetfire1.jpg"
image legion_cera_fleetfire2:
"CG/legion_cera_fleetfire2.png"
image cerafleet1:
"CG/cerafleet1.jpg"
image cerafleet2:
"CG/cerafleet2.jpg"
image legion_cerafire1:
"CG/legion_cerafire1.jpg"
image legion_cerafire2:
"CG/legion_cerafire2.jpg"
image legion_cerafire3:
"CG/legion_cerafire3.jpg"
image legion_cerafire4:
"CG/legion_cerafire4.jpg"
image legion_cerafire5:
"CG/legion_cerafire5.png"
image legion_cerafire5:
"CG/legion_cerafire5.png"
image legion_cerafire6:
"CG/legion_cerafire6.jpg"
image legion_cerafire7:
"CG/legion_cerafire7.jpg"
image sunrider_warpout 1:
xanchor 0.5 yanchor 0.5
"CG/sunrider_warpout1.png"
image sunrider_warpout_engine:
xanchor 0.5 yanchor 0.5
"CG/sunrider_warpout2.png"
image sunrider_warpout_flash:
xanchor 0.5 yanchor 0.5
"CG/sunrider_warpout3.png"
image sunrider_warpout 3:
xanchor 0.5 yanchor 0.5
"CG/sunrider_warpout4.png"
image havoc_tydaria_miss1:
"CG/havoc_tydaria_miss1.jpg"
image havoc_tydaria_miss2:
"CG/havoc_tydaria_miss2.png"
image havoc_tydaria_miss3:
"CG/havoc_tydaria_miss3.png"
image havoc_tydaria_miss4:
"CG/havoc_tydaria_miss4.png"
image blackjack_tydaria_enter:
"CG/blackjack_tydaria_enter.jpg"
image sunrider_warpout_standard:
"Space/sunrider_warpout.png"
image sunrider_warpout_standard out:
"Space/sunrider_warpout_out.png"
image sunrider_warpout_standard_flash:
"Space/sunrider_warpout_flash.png"
image tydaria_orbit:
"Space/tydaria.jpg"
image item album:
"CG/album.png"
image cg_avateatime:
"CG/avateatime.jpg"
image cg_mochi 1:
"CG/mochi1.jpg"
image cg_mochi 2:
"CG/mochi2.jpg"
image cg_mochi 3:
"CG/mochi3.jpg"
image cg_mochi 4:
"CG/mochi4.jpg"
image cg_mochi 5:
"CG/mochi5.jpg"
image cg_mochi_bianca:
"CG/ep3_bianca.png"
xanchor 0.0 yanchor 0.0
image cg_shojocaptain:
"CG/shoujo captain1.jpg"
image cg_graveyard:
"CG/graveyard.jpg"
image cg_ryuvianbridge:
"CG/ryuvianbridge.jpg"
image cg_ryuvianbridge_red:
"CG/ryuvianbridge_red.jpg"
image cg_ryuvianbridge_empty:
"CG/ryuvianbridge_empty.jpg"
image cg_tobecontinued:
"CG/trollo.jpg"
image cg_sunrider_afterkidnap:
"CG/sunrider_afterkidnap.jpg"
image cg_sunrider_afterkidnap_text:
"CG/sunrider_afterkidnap_text.png"
image cg_weddinghall_ceiling:
"CG/weddinghall_ceiling.png"
image cg_weddinghall_ceilingspace:
"CG/weddinghall_ceilingspace.jpg"
image cg_weddinghall_sunrider:
"CG/weddinghall_sunrider.png"
image cg_weddinghall_sunrider warp:
"CG/weddinghall_sunriderwarp.png"
image cg_weddingcrash1:
"CG/weddingcrash1.jpg"
image cg_weddingcrash2:
"CG/weddingcrash2.jpg"
image cg_crosshairs:
"CG/crosshair.png"
image cg_legionsurprise1:
"CG/legionsurprise1.jpg"
image cg_legionsurprise2:
"CG/legionsurprise2.jpg"
image cg_legionsurprise3:
"CG/legionsurprise3.jpg"
image cg_legionsurprise_sunrider:
"CG/legionsurprise_sunrider.png"
image cg_legionsurprise_sunriderflash:
"CG/legionsurprise_sunrider_flash.png"
image cg_asagakidnap_legion:
"CG/asagakidnap_legion.jpg"
image cg_asagakidnap_legion_text:
"CG/asagakidnap_legion_text.png"
image cg_asagashower1:
"CG/asagashower1.jpg"
image cg_asagashower2:
"CG/asagashower2.jpg"
image cg_chigarateatime_sad:
"CG/chigarateatimesad.jpg"
image cg_chigarateatime_embarassed:
"CG/chigarateatimeembarassed.jpg"
image cg_chigarateatime_happy:
"CG/chigara_teahappy.jpg"
image cg_farport 1:
"CG/farport_map1.jpg"
image cg_farport 2:
"CG/farport_map2.jpg"
image cg_farport 3:
"CG/farport_map3.jpg"
image cg_farport 4:
"CG/farport_map4.jpg"
image cg_farport 5:
"CG/farport_map5.jpg"
image cg_farport 6:
"CG/farport_map6.jpg"
image cg_farport 7:
"CG/farport_map7.jpg"
image cg_ongess 1:
"CG/ongess_map1.jpg"
image cg_ongess 2:
"CG/ongess_map2.jpg"
image cg_ongess 3:
"CG/ongess_map3.jpg"
image cg_farport_charge1:
"CG/farport_charge1.jpg"
image cg_farport_charge2:
"CG/pactfleetfarport.jpg"
image cg_legion_farport_fire1:
"CG/legion_farport_fire1.jpg"
image cg_legion_farport_fire2:
"CG/legion_farport_fire2.jpg"
image cg_legion_farport_fire3:
"CG/legion_farport_fire3.jpg"
image cg_alliancefleet_farport1:
"CG/alliancefleet_farport1.jpg"
image cg_alliancefleet_farport2:
"CG/alliancefleet_farport2.jpg"
image cg_alliancefleet_farport3:
"CG/alliancefleet_farport3.jpg"
image cg_alliancefleet_farport4:
"CG/alliancefleet_farport4.jpg"
image cg_alliancefleet_farport5:
"CG/alliancefleet_farport5.jpg"
image cg_alliancefleet_farport6:
"CG/alliancefleet_farport6.jpg"
image cg_alliancefleet_farport7:
"CG/alliancefleet_farport7.jpg"
image cg_porkdeath1:
"CG/porkdeath.jpg"
image cg_porkdeath2:
"CG/porkdeath2.jpg"
image cg_porkdeath3:
"CG/porkdeath3.jpg"
image cg_blackjack_farport1:
"CG/blackjack_farport.jpg"
image cg_blackjack_farport2:
"CG/blackjack_farport2.png"
image cg_blackjack_farport3:
"CG/blackjack_farport3.jpg"
image cg_blackjack_farport4:
"CG/blackjack_farport4.jpg"
image cg_blackjack_farport5:
"CG/blackjack_farport5.jpg"
image cg_blackjack_farport6:
"CG/blackjack_farport6.jpg"
image cg_blackjack_farportlaser:
"CG/blackjack_farportlaser.png"
xanchor 0.0 yanchor 0.5
image cg_phoenixpaladin:
"CG/phoenixpaladin.jpg"
image cg_emeraldfleet_warpinback:
"CG/emeraldfleet_warpinback.jpg"
xanchor 0.5 yanchor 0.5 xpos 0.5 ypos 0.5
image cg_emeraldfleet_warpin1:
"CG/emeraldfleet_warpin1.png"
xanchor 0.5 yanchor 0.5 xpos 0.5 ypos 0.5
image cg_emeraldfleet_warpin2:
"CG/emeraldfleet_warpin2.png"
xanchor 0.5 yanchor 0.5 xpos 0.5 ypos 0.5
image cg_emeraldfleet_warpin3:
"CG/emeraldfleet_warpin3.png"
xanchor 0.5 yanchor 0.5 xpos 0.5 ypos 0.5
image cg_emeraldfleet_warpin4:
"CG/emeraldfleet_warpin4.png"
xanchor 0.5 yanchor 0.5 xpos 0.5 ypos 0.5
image cg_emeraldfleet_warpin5:
"CG/emeraldfleet_warpin5.png"
xanchor 0.5 yanchor 0.5 xpos 0.5 ypos 0.5
image cg_emeraldfleet_warpin6:
"CG/emeraldfleet_warpin6.png"
xanchor 0.5 yanchor 0.5 xpos 0.5 ypos 0.5
image cg_chigarahug1:
"CG/chigarahug1.jpg"
image cg_chigarahug2:
"CG/chigarahug2.jpg"
image cg_ongess_carrier_back:
"CG/ongess_assaultin_back.jpg"
image cg_ongess_carrier_carrier1:
"CG/ongess_assaultin_carrier1.png"
image cg_ongess_carrier_carrier2:
"CG/ongess_assaultin_carrier2.png"
image cg_ongess_carrier_carrier3:
"CG/ongess_assaultin_carrier3.png"
image cg_ongess_carrier_ryder1:
"CG/ongess_assaultin_ryder1.png"
image cg_ongess_carrier_ryder2:
"CG/ongess_assaultin_ryder2.png"
image cg_ongess_carrier_ryder3:
"CG/ongess_assaultin_ryder3.png"
image cg_ongess_carrier_ryder4:
"CG/ongess_assaultin_ryder4.png"
image cg_bomberline:
"CG/bomberline.jpg"
image cg_bomberline_missiletrail:
"CG/bomberline_missiletrail.png"
image cg_ongessport1:
"CG/ongess_port1.jpg"
image cg_ongessport2:
"CG/ongess_port2.jpg"
image cg_avaclassroom:
"CG/ava_classroom.jpg"
image cg_legionfleetagain:
"CG/legionfleetagain.jpg"
########################################MAP
image galaxymap:
"Map/galaxymap.jpg"
image map_cera:
"Map/cera.jpg"
image map_tydaria:
"Map/tydaria.jpg"
image map_pactstation:
"Map/pactstation.jpg"
image map_astralexpanse:
"Map/astralexpanse.jpg"
image map_nomodorn:
"Map/nomodorn.jpg"
image map_farport:
"Map/farport.jpg"
image map_ryuvia:
"Map/ryuvia.jpg"
image map_ongess:
"Map/ongess.jpg"
image map_occupiedcerainfo:
"Map/occupiedcera_info.png"
image map_tydariainfo:
"Map/tydaria_info.png"
image map_pactstationinfo:
"Map/pactstation1_info.png"
image map_astralexpanse_info:
"Map/astralexpanse_info.png"
image map_versta:
"Map/versta.jpg"
image map_versta_info:
"Map/versta_info.png"
image map_nomodorn_info:
"Map/nomodorn_info.png"
image map_ryuvia_info:
"Map/ryuvia_info.png"
image map_farport_info:
"Map/farport_info.png"
image map_ongess_info:
"Map/ongess_info.png"
########################LOGOS
image logo 1:
"Menu/loveinspace.png"
xalign 0.5
yalign 0.5
image logo 2:
"Menu/melonbunny.png"
xalign 0.5
yalign 0.5
image mainlogo:
"Menu/logo2.png"
xanchor 0.5
yanchor 0.5
#################################STORE
image store_back:
"Menu/unionstore_back.jpg"
image store_missile:
"Menu/unionstore_missiles.png"
image store_rocket:
"Menu/unionstore_rocket.png"
#######################TEXT IMAGES
image introtext0:
"Menu/intro0.png"
alpha 0.0
linear 2.0 alpha 1.0
image introtext1:
"Menu/intro1.png"
alpha 0.0
linear 2.0 alpha 1.0
image introtext2:
"Menu/intro2.png"
alpha 0.0
linear 2.0 alpha 1.0
image introtext3:
"Menu/intro3.png"
alpha 0.0
linear 2.0 alpha 1.0
image intro1 = Text("Humanity has spread to the four corners of the galaxy.{p}Subjugating all life, we have become the dominant species throughout the stars.", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image intro2 = Text("Yet, we are far from secure.", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image intro3 = Text("War brews from the northern quadrant of the galaxy.{p}PACT, the People's Alliance, has toppled the once mighty New Empire.", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image intro4 = Text("Led by a mysterious individual known only as Veniczar Arcadius, PACT seeks to{p}subjugate the galaxy under its new world order.", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image intro5 = Text("Distant from the brewing clouds of war, {p}the neutral world of Cera seemed safe from the approaching PACT war machine.{p}It is on this quiet world where our journey begins...", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image comingsoon = Text("SUNRIDER IS IN CONSTRUCTION", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image miss = Text("MISS", size=60, font="Font/GOTHIC.TTF", text_align=0.5)
image battlewarning:
"gameplay/battlestations.png"
xanchor 0.5
yanchor 0.5
image credits1 = Text("Project Director {p} Sam Yang (Samu-kun)", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits2 = Text("Writer{p} Sam Yang (Samu-kun)", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits3 = Text("Lead Character Artist{p} Ashton Wilson (Melonbunny)", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits5 = Text("Additional Character Design{p} Adrian Ferrer (Sixten)", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits6 = Text("Mechanical Design{p} Sam Yang (Samu-kun)", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits7 = Text("3D Textures{p} CGTextures", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits8 = Text("Background Art{p} Sam Yang (Samu-kun)", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits9 = Text("Lead Programmer{p} Paul Schovers (Vaendryl)", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits10 = Text("Renpy Engine Programmer{p} Tom Rothamel", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits11 = Text("Additional Programming{p} Tom Rothamel, Sam Yang, Endershadow", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits11c = Text("Github Contributors{p} Tom Rothamel, Quickman, Renari, KingRaptor, {p}BlueOrange, DoumanAsh, LongKnight", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits11b = Text("Hex Mod{p} azureflare", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits12 = Text("Cast", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits13 = Text("Ava Crescentia: Amber Lee Connors", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits14 = Text("Asaga di Ryuvia: Kira Buckland", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits15 = Text("Chigara Ashada: Mary Morgan", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits16 = Text("Cosette Cosmos: Jill Harris", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits16b = Text("Icari Isidolde: Aimee Smith", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits16c = Text("Claude Trillo: Sydney P", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits16d = Text("Sola di Ryuvia: Tina Kim", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits16e = Text("Kryska Stares: Cayla Martin", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits16f = Text("Alliance Cruiser Captain: Mike Salyer", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits16g = Text("Union Frigate Captain: Jonathan Cooke", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits16h = Text("Alliance Battleship Captain: Patrick Seymour", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits17 = Text("Captain Kayto Shields: Jonathan Cooke", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits18 = Text("Voice Director{p} Mike Salyer", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits19 = Text("Sound Effects{p} Steve Green", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits20 = Text("Voice Clean Up{p} Steve Green", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits21 = Text("Soundtrack{p} Arnaud Conde, Marc Teichert, Epic Soul Factory{p}Celestrial Aeon Project, Eternal Dream, SAMFREE Music, Amacha Music", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits22 = Text("OP Song{p} |Sora no Senritsu|{p}vocals: lily-an{p}instruments: Keita Takanashi{p}Iced Blade", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits23 = Text("ED Song{p} |Firn -The Pale Sun-|{p}vocals: lily-an, Maya{p}instruments: Keita Takanashi{p}Iced Blade", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits24 = Text("Additional Sound Effects{p} fonogeno, junggle, sandyrb, sarge4267, ryansnook, klerrp,{p}robinhood76, nengisuls, mediapaja2009, shawnyboy,{p}zimbot, lloydevans09, goup, omar-alvarado, roper1911,{p}NEO_Soun, BlackCow, Ivan-8042, Diode111, cgeffex,{p}qudodup, unfa, zeuss, kiddpark, isaac200000, tommccann", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits26 = Text("CC Love in Space, 2013-14", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
image credits25 = Text("Many thanks to those who entered our Fan Fiction contest!{p}The winners are:{p}"
"1: Marx-93 - Home{p}2: Whalecow - Unknown Pilot-kun: Unknown Soldier{p}"
"3: Drath - The Fall of Senna{p}4: Light Mage - Pirate Logs{p}"
"5: Radclive - Lifa and Times of Sola vi Ryuvia", size=30, font="Font/GOTHIC.TTF", text_align=0)
image credits27 = Text("We thank the following Kickstarter backers...", size=30, font="Font/GOTHIC.TTF", text_align=0.5)
########################PARALAX EFFECTS
image parallax_ship1 = SnowBlossom("gameplay/Space/parallax_space1.png", count=200, border=0, xspeed=100, yspeed=-50, start=0, fast=True, horizontal=False)
image parallax_ship2 = SnowBlossom("gameplay/Space/parallax_space2.png", count=100, border=0, xspeed=150, yspeed=-75, start=0, fast=True, horizontal=False)
image parallax_ship3 = SnowBlossom("gameplay/Space/parallax_space3.png", count=60, border=0, xspeed=200, yspeed=-100, start=0, fast=True, horizontal=False)
image parallax_ship1_slow = SnowBlossom("gameplay/Space/parallax_space1.png", count=200, border=0, xspeed=50, yspeed=-25, start=0, fast=True, horizontal=False)
image parallax_ship2_slow = SnowBlossom("gameplay/Space/parallax_space2.png", count=100, border=0, xspeed=75, yspeed=-37, start=0, fast=True, horizontal=False)
image parallax_ship3_slow = SnowBlossom("gameplay/Space/parallax_space3.png", count=60, border=0, xspeed=100, yspeed=-50, start=0, fast=True, horizontal=False)
image parallax_missile1 = SnowBlossom("gameplay/Space/parallax_space1.png", count=300, border=0, xspeed=500, yspeed=-300, start=0, fast=True, horizontal=False)
image parallax_missile2 = SnowBlossom("gameplay/Space/parallax_space2.png", count=120, border=0, xspeed=750, yspeed=-450, start=0, fast=True, horizontal=False)
image parallax_missile3 = SnowBlossom("gameplay/Space/parallax_space3.png", count=80, border=0, xspeed=1000, yspeed=-600, start=0, fast=True, horizontal=False)
################################OTHER STUFF WE MIGHT NEED WHICH I DON'T REMEMBER WHAT THEY DO. o_o
image bg black2 = "Menu/black.jpg"
image bg sunriderwarpout = "Space/sunrider_warpout_back.jpg"
image bg space1 = "Gameplay/Space/space_back1.jpg"
image bg space_red = "Gameplay/Space/space_back2.jpg"
image missileboatdrydock:
"Gameplay/Space/missileboat_drydock.png"
xanchor 0.5 yanchor 0.5
image missileboatmissile1:
"Gameplay/Space/missile_drydock.png"
xanchor 0.5 yanchor 0.5
image missileboatmissile2:
"Gameplay/Space/missile_drydock.png"
xanchor 0.5 yanchor 0.5
image missileboatmissile3:
"Gameplay/Space/missile_drydock.png"
xanchor 0.5 yanchor 0.5
image missileboatmissile4:
"Gameplay/Space/missile_drydock.png"