forked from Adeptus-Dominus/ChapterMaster
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChapterMaster.yyp
More file actions
1886 lines (1886 loc) · 228 KB
/
ChapterMaster.yyp
File metadata and controls
1886 lines (1886 loc) · 228 KB
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
{
"$GMProject":"v1",
"%Name":"ChapterMaster",
"AudioGroups":[
{"$GMAudioGroup":"","%Name":"audiogroup_default","name":"audiogroup_default","resourceType":"GMAudioGroup","resourceVersion":"2.0","targets":-1,},
],
"configs":{
"children":[],
"name":"Default",
},
"defaultScriptType":1,
"Folders":[
{"$GMFolder":"","%Name":"Animation Curves","folderPath":"folders/Animation Curves.yy","name":"Animation Curves","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Extensions","folderPath":"folders/Extensions.yy","name":"Extensions","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Fonts","folderPath":"folders/Fonts.yy","name":"Fonts","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"New Fonts","folderPath":"folders/Fonts/New Fonts.yy","name":"New Fonts","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Notes","folderPath":"folders/Notes.yy","name":"Notes","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Objects","folderPath":"folders/Objects.yy","name":"Objects","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Combat_Fleet","folderPath":"folders/Objects/Combat_Fleet.yy","name":"Combat_Fleet","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"New Combat","folderPath":"folders/Objects/New Combat.yy","name":"New Combat","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"New Ground","folderPath":"folders/Objects/New Ground.yy","name":"New Ground","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"New UI","folderPath":"folders/Objects/New UI.yy","name":"New UI","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Temp","folderPath":"folders/Objects/Temp.yy","name":"Temp","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Paths","folderPath":"folders/Paths.yy","name":"Paths","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Rooms","folderPath":"folders/Rooms.yy","name":"Rooms","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Scripts","folderPath":"folders/Scripts.yy","name":"Scripts","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Combat","folderPath":"folders/Scripts/Combat.yy","name":"Combat","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"compatibility","folderPath":"folders/Scripts/compatibility.yy","name":"compatibility","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"action","folderPath":"folders/Scripts/compatibility/action.yy","name":"action","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"d3d","folderPath":"folders/Scripts/compatibility/d3d.yy","name":"d3d","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"draw","folderPath":"folders/Scripts/compatibility/draw.yy","name":"draw","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"instance","folderPath":"folders/Scripts/compatibility/instance.yy","name":"instance","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"object","folderPath":"folders/Scripts/compatibility/object.yy","name":"object","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"view","folderPath":"folders/Scripts/compatibility/view.yy","name":"view","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Diplomacy","folderPath":"folders/Scripts/Diplomacy.yy","name":"Diplomacy","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"events_and_missions","folderPath":"folders/Scripts/events_and_missions.yy","name":"events_and_missions","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"fleet","folderPath":"folders/Scripts/fleet.yy","name":"fleet","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Helpers","folderPath":"folders/Scripts/Helpers.yy","name":"Helpers","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Draw Shapes","folderPath":"folders/Scripts/Helpers/Draw Shapes.yy","name":"Draw Shapes","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Files","folderPath":"folders/Scripts/Helpers/Files.yy","name":"Files","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Text","folderPath":"folders/Scripts/Helpers/Text.yy","name":"Text","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Interface Help","folderPath":"folders/Scripts/Interface Help.yy","name":"Interface Help","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Interface","folderPath":"folders/Scripts/Interface.yy","name":"Interface","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"marines_and_profiles","folderPath":"folders/Scripts/marines_and_profiles.yy","name":"marines_and_profiles","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Names","folderPath":"folders/Scripts/Names.yy","name":"Names","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"save_load","folderPath":"folders/Scripts/save_load.yy","name":"save_load","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Sys","folderPath":"folders/Scripts/Sys.yy","name":"Sys","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Turn","folderPath":"folders/Scripts/Turn.yy","name":"Turn","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"User Interface","folderPath":"folders/Scripts/User Interface.yy","name":"User Interface","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Components","folderPath":"folders/Scripts/User Interface/Components.yy","name":"Components","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Diplomacy","folderPath":"folders/Scripts/User Interface/Diplomacy.yy","name":"Diplomacy","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Common","folderPath":"folders/Scripts/User Interface/Diplomacy/Common.yy","name":"Common","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Render Components","folderPath":"folders/Scripts/User Interface/Render Components.yy","name":"Render Components","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Sequences","folderPath":"folders/Sequences.yy","name":"Sequences","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Shaders","folderPath":"folders/Shaders.yy","name":"Shaders","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Sounds","folderPath":"folders/Sounds.yy","name":"Sounds","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Themes","folderPath":"folders/Sounds/Themes.yy","name":"Themes","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"UI","folderPath":"folders/Sounds/UI.yy","name":"UI","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Unused","folderPath":"folders/Sounds/Unused.yy","name":"Unused","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Sprites","folderPath":"folders/Sprites.yy","name":"Sprites","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Marine Viewer","folderPath":"folders/Sprites/Marine Viewer.yy","name":"Marine Viewer","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"allies","folderPath":"folders/Sprites/Marine Viewer/allies.yy","name":"allies","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"arms_hands","folderPath":"folders/Sprites/Marine Viewer/arms_hands.yy","name":"arms_hands","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"bare_heads","folderPath":"folders/Sprites/Marine Viewer/bare_heads.yy","name":"bare_heads","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"bionics","folderPath":"folders/Sprites/Marine Viewer/bionics.yy","name":"bionics","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"body_types","folderPath":"folders/Sprites/Marine Viewer/body_types.yy","name":"body_types","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"artificer_complex","folderPath":"folders/Sprites/Marine Viewer/body_types/artificer_complex.yy","name":"artificer_complex","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"cata_complex","folderPath":"folders/Sprites/Marine Viewer/body_types/cata_complex.yy","name":"cata_complex","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"indomitus_complex","folderPath":"folders/Sprites/Marine Viewer/body_types/indomitus_complex.yy","name":"indomitus_complex","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"mk_3_complex","folderPath":"folders/Sprites/Marine Viewer/body_types/mk_3_complex.yy","name":"mk_3_complex","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"mk_4_complex","folderPath":"folders/Sprites/Marine Viewer/body_types/mk_4_complex.yy","name":"mk_4_complex","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"mk_5_complex","folderPath":"folders/Sprites/Marine Viewer/body_types/mk_5_complex.yy","name":"mk_5_complex","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"mk_6_complex","folderPath":"folders/Sprites/Marine Viewer/body_types/mk_6_complex.yy","name":"mk_6_complex","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"mk_7_complex","folderPath":"folders/Sprites/Marine Viewer/body_types/mk_7_complex.yy","name":"mk_7_complex","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"mk_8_complex","folderPath":"folders/Sprites/Marine Viewer/body_types/mk_8_complex.yy","name":"mk_8_complex","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"specialist","folderPath":"folders/Sprites/Marine Viewer/body_types/specialist.yy","name":"specialist","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"dark_angels_specials","folderPath":"folders/Sprites/Marine Viewer/body_types/specialist/dark_angels_specials.yy","name":"dark_angels_specials","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"roman_theme","folderPath":"folders/Sprites/Marine Viewer/body_types/specialist/roman_theme.yy","name":"roman_theme","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"white_scars_specials","folderPath":"folders/Sprites/Marine Viewer/body_types/specialist/white_scars_specials.yy","name":"white_scars_specials","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"tartaros_complex","folderPath":"folders/Sprites/Marine Viewer/body_types/tartaros_complex.yy","name":"tartaros_complex","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"techmarine_complex","folderPath":"folders/Sprites/Marine Viewer/body_types/techmarine_complex.yy","name":"techmarine_complex","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"decorations","folderPath":"folders/Sprites/Marine Viewer/decorations.yy","name":"decorations","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"cloaks","folderPath":"folders/Sprites/Marine Viewer/decorations/cloaks.yy","name":"cloaks","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"images","folderPath":"folders/Sprites/Marine Viewer/decorations/cloaks/images.yy","name":"images","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"dreadnought","folderPath":"folders/Sprites/Marine Viewer/dreadnought.yy","name":"dreadnought","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"gear","folderPath":"folders/Sprites/Marine Viewer/gear.yy","name":"gear","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"standards","folderPath":"folders/Sprites/Marine Viewer/gear/standards.yy","name":"standards","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"helms","folderPath":"folders/Sprites/Marine Viewer/helms.yy","name":"helms","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"dark_angels","folderPath":"folders/Sprites/Marine Viewer/helms/dark_angels.yy","name":"dark_angels","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"sergeant","folderPath":"folders/Sprites/Marine Viewer/helms/sergeant.yy","name":"sergeant","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"packs","folderPath":"folders/Sprites/Marine Viewer/packs.yy","name":"packs","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"shoulder_icons","folderPath":"folders/Sprites/Marine Viewer/shoulder_icons.yy","name":"shoulder_icons","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"textures","folderPath":"folders/Sprites/Marine Viewer/textures.yy","name":"textures","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"weapons_terminator","folderPath":"folders/Sprites/Marine Viewer/weapons_terminator.yy","name":"weapons_terminator","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"weapons","folderPath":"folders/Sprites/Marine Viewer/weapons.yy","name":"weapons","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"heavy_ranged","folderPath":"folders/Sprites/Marine Viewer/weapons/heavy_ranged.yy","name":"heavy_ranged","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"melee","folderPath":"folders/Sprites/Marine Viewer/weapons/melee.yy","name":"melee","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"ranged","folderPath":"folders/Sprites/Marine Viewer/weapons/ranged.yy","name":"ranged","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Primary","folderPath":"folders/Sprites/Primary.yy","name":"Primary","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Ships","folderPath":"folders/Sprites/Ships.yy","name":"Ships","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Chaos","folderPath":"folders/Sprites/Ships/Chaos.yy","name":"Chaos","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Imperium","folderPath":"folders/Sprites/Ships/Imperium.yy","name":"Imperium","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Xeno","folderPath":"folders/Sprites/Ships/Xeno.yy","name":"Xeno","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"UI","folderPath":"folders/Sprites/UI.yy","name":"UI","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Creation","folderPath":"folders/Sprites/UI/Creation.yy","name":"Creation","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"New UI","folderPath":"folders/Sprites/UI/New UI.yy","name":"New UI","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"buttons","folderPath":"folders/Sprites/UI/New UI/buttons.yy","name":"buttons","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"data_slate_icons","folderPath":"folders/Sprites/UI/New UI/data_slate_icons.yy","name":"data_slate_icons","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Icons","folderPath":"folders/Sprites/UI/New UI/Icons.yy","name":"Icons","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Menu and Load","folderPath":"folders/Sprites/UI/New UI/Menu and Load.yy","name":"Menu and Load","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Purge","folderPath":"folders/Sprites/UI/New UI/Purge.yy","name":"Purge","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"tooltips","folderPath":"folders/Sprites/UI/New UI/tooltips.yy","name":"tooltips","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"servo_Skull","folderPath":"folders/Sprites/UI/servo_Skull.yy","name":"servo_Skull","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Unused","folderPath":"folders/Sprites/Unused.yy","name":"Unused","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Deprecated","folderPath":"folders/Sprites/Unused/Deprecated.yy","name":"Deprecated","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Groundside","folderPath":"folders/Sprites/Unused/Groundside.yy","name":"Groundside","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"New Ground","folderPath":"folders/Sprites/Unused/Groundside/New Ground.yy","name":"New Ground","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Tile Sets","folderPath":"folders/Tile Sets.yy","name":"Tile Sets","resourceType":"GMFolder","resourceVersion":"2.0",},
{"$GMFolder":"","%Name":"Timelines","folderPath":"folders/Timelines.yy","name":"Timelines","resourceType":"GMFolder","resourceVersion":"2.0",},
],
"ForcedPrefabProjectReferences":[
{"link":"io.gamemaker.sdfshaders-1.0.0","name":"io.gamemaker.sdfshaders-1.0.0","path":"io.gamemaker.sdfshaders-1.0.0.yyp",},
],
"IncludedFiles":[
{"$GMIncludedFile":"","%Name":"sisters.json","CopyToMask":-1,"filePath":"datafiles/data/dialogue","name":"sisters.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"psychic_disciplines.json","CopyToMask":-1,"filePath":"datafiles/data","name":"psychic_disciplines.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"psychic_powers.json","CopyToMask":-1,"filePath":"datafiles/data","name":"psychic_powers.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"traits.json","CopyToMask":-1,"filePath":"datafiles/data","name":"traits.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/images/advisor/splash","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"11.png","CopyToMask":-1,"filePath":"datafiles/images/advisor/splash","name":"11.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"12.png","CopyToMask":-1,"filePath":"datafiles/images/advisor/splash","name":"12.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"2.png","CopyToMask":-1,"filePath":"datafiles/images/advisor/splash","name":"2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"3.png","CopyToMask":-1,"filePath":"datafiles/images/advisor/splash","name":"3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"4.png","CopyToMask":-1,"filePath":"datafiles/images/advisor/splash","name":"4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"5.png","CopyToMask":-1,"filePath":"datafiles/images/advisor/splash","name":"5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"6.png","CopyToMask":-1,"filePath":"datafiles/images/advisor/splash","name":"6.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"7.png","CopyToMask":-1,"filePath":"datafiles/images/advisor/splash","name":"7.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"angry_marines.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"angry_marines.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"black_templars.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"black_templars.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"blood_angels.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"blood_angels.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"blood_ravens.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"blood_ravens.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"carcharodons.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"carcharodons.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"celestial_lions.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"celestial_lions.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"consecrators.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"consecrators.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"conservators.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"conservators.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"crimson_fists.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"crimson_fists.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"dark_angels.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"dark_angels.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"deathwatch.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"deathwatch.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"emperors_nightmare.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"emperors_nightmare.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"flesh_tearers.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"flesh_tearers.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"imperial_fists.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"imperial_fists.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"iron_hands.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"iron_hands.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"lamenters.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"lamenters.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"minotaurs.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"minotaurs.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"raptors.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"raptors.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"raven_guard.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"raven_guard.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"red_scorpions.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"red_scorpions.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"salamanders.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"salamanders.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"soul_drinkers.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"soul_drinkers.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"space_wolves.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"space_wolves.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"star_krakens.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"star_krakens.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"tome_keepers.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"tome_keepers.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"ultramarines.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"ultramarines.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"white_scars.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/icons","name":"white_scars.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"10.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"10.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"11.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"11.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"12.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"12.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"13.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"13.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"14.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"14.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"16.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"16.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"17.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"17.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"19.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"19.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"2.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"22.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"22.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"3.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"32.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"32.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"33.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"33.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"36.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"36.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"4.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"5.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"6.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"6.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"7.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"7.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"8.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"8.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"9.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"9.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"97.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"97.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"98.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"98.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"99.png","CopyToMask":-1,"filePath":"datafiles/images/creation/chapters/splash","name":"99.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"custom_black.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"custom_black.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"custom_white.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"custom_white.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_0.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_0.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_1.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_10.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_10.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_11.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_11.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_12.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_12.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_13.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_13.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_14.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_14.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_15.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_15.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_16.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_16.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_17.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_17.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_18.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_18.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_19.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_19.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_2.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_20.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_20.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_21.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_21.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_22.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_22.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_23.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_23.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_24.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_24.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_25.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_25.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_26.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_26.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_27.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_27.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_28.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_28.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_29.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_29.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_3.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_30.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_30.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_31.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_31.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_32.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_32.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_33.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_33.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_34.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_34.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_35.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_35.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_36.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_36.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_37.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_37.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_38.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_38.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_39.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_39.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_4.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_40.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_40.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_41.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_41.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_42.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_42.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_43.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_43.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_44.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_44.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_45.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_45.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_46.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_46.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_47.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_47.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_48.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_48.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_49.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_49.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_5.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_50.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_50.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_51.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_51.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_52.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_52.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_53.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_53.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_54.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_54.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_55.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_55.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_56.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_56.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_57.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_57.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_58.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_58.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_6.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_6.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_7.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_7.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_8.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_8.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"included_icon_9.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"included_icon_9.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"random.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"random.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"unknown.png","CopyToMask":-1,"filePath":"datafiles/images/creation/customicons","name":"unknown.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"instructions.txt","CopyToMask":9223372036854775807,"filePath":"datafiles/images/creation","name":"instructions.txt","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/images/creation/slate","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"2.png","CopyToMask":-1,"filePath":"datafiles/images/creation/slate","name":"2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"advisor1.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"advisor1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"advisor11.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"advisor11.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"advisor12.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"advisor12.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"advisor2.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"advisor2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"advisor3.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"advisor3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"advisor4.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"advisor4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"advisor5.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"advisor5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"advisor6.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"advisor6.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"advisor7.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"advisor7.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"daemon1.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"daemon1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"daemon2.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"daemon2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"daemon3.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"daemon3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"daemon4.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"daemon4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"daemon5.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"daemon5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"daemon6.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"daemon6.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"daemon7.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"daemon7.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"daemon8.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"daemon8.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"daemon9.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"daemon9.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"diplomacy_icons.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"diplomacy_icons.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"diplomacy10.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"diplomacy10.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"diplomacy11.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"diplomacy11.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"diplomacy12.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"diplomacy12.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"diplomacy2.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"diplomacy2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"diplomacy3.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"diplomacy3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"diplomacy4.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"diplomacy4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"diplomacy5.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"diplomacy5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"diplomacy6.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"diplomacy6.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"diplomacy7.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"diplomacy7.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"diplomacy8.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"diplomacy8.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"10.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"10.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"11.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"11.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"12.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"12.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"13.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"13.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"14.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"14.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"15.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"15.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"16.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"16.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"17.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"17.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"18.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"18.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"19.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"19.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"2.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"20.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"20.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"21.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"21.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"22.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"22.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"23.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"23.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"24.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"24.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"25.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"25.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"26.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"26.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"27.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"27.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"28.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"28.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"3.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"4.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"5.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"6.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"6.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"7.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"7.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"8.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"8.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"9.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"9.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"diplomacy_icons.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/icons","name":"diplomacy_icons.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"instructions.txt","CopyToMask":9223372036854775807,"filePath":"datafiles/images/diplomacy","name":"instructions.txt","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"10.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/splash","name":"10.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"11.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/splash","name":"11.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"12.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/splash","name":"12.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"2.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/splash","name":"2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"3.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/splash","name":"3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"4.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/splash","name":"4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"5.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/splash","name":"5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"6.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/splash","name":"6.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"7.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/splash","name":"7.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"8.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy/splash","name":"8.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"symbol1.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"symbol1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"symbol2.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"symbol2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"symbol3.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy","name":"symbol3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"instructions.txt","CopyToMask":9223372036854775807,"filePath":"datafiles/images","name":"instructions.txt","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"instructions.txt","CopyToMask":9223372036854775807,"filePath":"datafiles/images/loading","name":"instructions.txt","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"loading1.png","CopyToMask":-1,"filePath":"datafiles/images/loading","name":"loading1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"loading2.png","CopyToMask":-1,"filePath":"datafiles/images/loading","name":"loading2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"loading3.png","CopyToMask":-1,"filePath":"datafiles/images/loading","name":"loading3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"loading4.png","CopyToMask":-1,"filePath":"datafiles/images/loading","name":"loading4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"loading5.png","CopyToMask":-1,"filePath":"datafiles/images/loading","name":"loading5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"instructions.txt","CopyToMask":9223372036854775807,"filePath":"datafiles/images/popup","name":"instructions.txt","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup1.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup10.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup10.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup11.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup11.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup12.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup12.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup13.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup13.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup14.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup14.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup15.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup15.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup16.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup16.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup17.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup17.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup18.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup18.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup19.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup19.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup2.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup20.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup20.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup21.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup21.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup22.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup22.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup23.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup23.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup24.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup24.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup25.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup25.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup26.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup26.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup27.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup27.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup28.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup28.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup29.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup29.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup3.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup30.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup30.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup31.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup31.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup32.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup32.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup33.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup33.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup34.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup34.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup35.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup35.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup36.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup36.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup37.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup37.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup38.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup38.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup39.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup39.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup4.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup40.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup40.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup41.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup41.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup42.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup42.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup43.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup43.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup44.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup44.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup45.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup45.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup46.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup46.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup47.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup47.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup48.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup48.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup49.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup49.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup5.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup50.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup50.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup51.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup51.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup52.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup52.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup53.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup53.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup54.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup54.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup55.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup55.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup56.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup56.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup57.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup57.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup58.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup58.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup59.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup59.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup6.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup6.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup60.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup60.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup61.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup61.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup62.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup62.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup63.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup63.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup64.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup64.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup7.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup7.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup8.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup8.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"popup9.png","CopyToMask":-1,"filePath":"datafiles/images/popup","name":"popup9.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"title_splash.png","CopyToMask":-1,"filePath":"datafiles/images","name":"title_splash.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"attacked1.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"attacked1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"attacked2.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"attacked2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"commander1.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"commander1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"commander2.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"commander2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"commander3.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"commander3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"defeat1.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"defeat1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"defeat2.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"defeat2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"defeat3.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"defeat3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"defeat4.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"defeat4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"event1.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"event1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"event2.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"event2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"event3.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"event3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"event4.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"event4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/images/ui/force","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"10.png","CopyToMask":-1,"filePath":"datafiles/images/ui/force","name":"10.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"11.png","CopyToMask":-1,"filePath":"datafiles/images/ui/force","name":"11.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"12.png","CopyToMask":-1,"filePath":"datafiles/images/ui/force","name":"12.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"13.png","CopyToMask":-1,"filePath":"datafiles/images/ui/force","name":"13.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"15.png","CopyToMask":-1,"filePath":"datafiles/images/ui/force","name":"15.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"2.png","CopyToMask":-1,"filePath":"datafiles/images/ui/force","name":"2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"3.png","CopyToMask":-1,"filePath":"datafiles/images/ui/force","name":"3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"30.png","CopyToMask":-1,"filePath":"datafiles/images/ui/force","name":"30.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"4.png","CopyToMask":-1,"filePath":"datafiles/images/ui/force","name":"4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"5.png","CopyToMask":-1,"filePath":"datafiles/images/ui/force","name":"5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"6.png","CopyToMask":-1,"filePath":"datafiles/images/ui/force","name":"6.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"7.png","CopyToMask":-1,"filePath":"datafiles/images/ui/force","name":"7.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"8.png","CopyToMask":-1,"filePath":"datafiles/images/ui/force","name":"8.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"9.png","CopyToMask":-1,"filePath":"datafiles/images/ui/force","name":"9.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force1.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force10.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force10.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force11.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force11.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force12.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force12.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force13.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force13.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force14.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force14.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force16.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force16.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force2.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force3.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force31.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force31.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force4.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force5.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force6.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force6.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force7.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force7.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force8.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force8.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"force9.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"force9.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation1.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation10.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation10.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation11.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation11.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation12.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation12.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation13.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation13.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation14.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation14.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation15.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation15.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation16.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation16.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation17.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation17.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation2.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation3.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation4.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation5.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation6.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation6.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation7.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation7.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation8.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation8.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"formation9.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"formation9.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"ingame_menu.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"ingame_menu.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"instructions.txt","CopyToMask":9223372036854775807,"filePath":"datafiles/images/ui","name":"instructions.txt","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"10.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"10.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"11.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"11.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"12.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"12.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"13.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"13.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"14.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"14.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"15.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"15.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"16.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"16.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"17.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"17.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"2.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"3.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"4.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"5.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"6.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"6.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"7.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"7.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"8.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"8.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"9.png","CopyToMask":-1,"filePath":"datafiles/images/ui/planet","name":"9.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet1.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet10.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet10.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet11.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet11.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet12.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet12.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet13.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet13.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet14.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet14.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet15.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet15.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet16.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet16.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet17.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet17.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet2.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet3.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet4.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet5.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet6.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet6.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet7.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet7.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet8.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet8.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"planet9.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"planet9.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"postbattle1.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"postbattle1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"postbattle2.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"postbattle2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"postbattle3.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"postbattle3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"postspace1.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"postspace1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"postspace2.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"postspace2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"postspace3.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"postspace3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"purge1.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"purge1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"purge2.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"purge2.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"purge3.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"purge3.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"purge4.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"purge4.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"purge5.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"purge5.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"purge6.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"purge6.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"purge7.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"purge7.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"purge8.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"purge8.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"raid1.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"raid1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"resources.png","CopyToMask":-1,"filePath":"datafiles/images/ui","name":"resources.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"pauldron.png","CopyToMask":-1,"filePath":"datafiles/main/chapter_symbols/darkangels","name":"pauldron.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"load_sets.json","CopyToMask":-1,"filePath":"datafiles/main/chapter_symbols","name":"load_sets.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"pauldron.png","CopyToMask":-1,"filePath":"datafiles/main/chapter_symbols/scythesofthemperor","name":"pauldron.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"pauldron.png","CopyToMask":-1,"filePath":"datafiles/main/chapter_symbols/ultramarines","name":"pauldron.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"1.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"10.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"10.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"11.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"11.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"12.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"12.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"13.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"13.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"14.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"14.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"15.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"15.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"16.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"16.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"17.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"17.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"2.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"2.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"3.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"3.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"31.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"31.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"32.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"32.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"33.json","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"33.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"34.json","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"34.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"35.json","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"35.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"36.json","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"36.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"37.json","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"37.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"4.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"4.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"5.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"5.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"6.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"6.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"7.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"7.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"8.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"8.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"9.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"9.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"template.JSON","CopyToMask":-1,"filePath":"datafiles/main/chapters","name":"template.JSON","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"help.ini","CopyToMask":9223372036854775807,"filePath":"datafiles/main","name":"help.ini","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"chaos.json","CopyToMask":-1,"filePath":"datafiles/main/names","name":"chaos.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"eldar.json","CopyToMask":-1,"filePath":"datafiles/main/names","name":"eldar.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"genestealercult.json","CopyToMask":-1,"filePath":"datafiles/main/names","name":"genestealercult.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"hulk.json","CopyToMask":-1,"filePath":"datafiles/main/names","name":"hulk.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"imperial_ship.json","CopyToMask":-1,"filePath":"datafiles/main/names","name":"imperial_ship.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"imperial.json","CopyToMask":-1,"filePath":"datafiles/main/names","name":"imperial.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"ork_ship.json","CopyToMask":-1,"filePath":"datafiles/main/names","name":"ork_ship.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"ork.json","CopyToMask":-1,"filePath":"datafiles/main/names","name":"ork.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"sector.json","CopyToMask":-1,"filePath":"datafiles/main/names","name":"sector.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"space_marine.json","CopyToMask":-1,"filePath":"datafiles/main/names","name":"space_marine.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"star.json","CopyToMask":-1,"filePath":"datafiles/main/names","name":"star.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"tau.json","CopyToMask":-1,"filePath":"datafiles/main/names","name":"tau.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"readme.md","CopyToMask":-1,"filePath":"datafiles/main","name":"readme.md","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"load_sets.json","CopyToMask":-1,"filePath":"datafiles/main/role_markings","name":"load_sets.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"pauldron.png","CopyToMask":-1,"filePath":"datafiles/main/role_markings/ultramarines","name":"pauldron.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"version.json","CopyToMask":-1,"filePath":"datafiles/main","name":"version.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"data.json","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Company_marks_roman_right_knee","name":"data.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"12.png","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Company_marks_roman_right_knee/one","name":"12.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"32.png","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Company_marks_roman_right_knee/three","name":"32.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"22.png","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Company_marks_roman_right_knee/two","name":"22.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"data.json","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Company_marks_roman_right_shoulder","name":"data.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Company_marks_roman_right_shoulder/eight","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Company_marks_roman_right_shoulder/five","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Company_marks_roman_right_shoulder/four","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Company_marks_roman_right_shoulder/nine","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Company_marks_roman_right_shoulder/one","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Company_marks_roman_right_shoulder/seven","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Company_marks_roman_right_shoulder/six","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Company_marks_roman_right_shoulder/ten","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Company_marks_roman_right_shoulder/three","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Company_marks_roman_right_shoulder/two","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/mycrusaderbits/crusader_helm","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"data.json","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/mycrusaderbits","name":"data.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"data.json","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Test_set","name":"data.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"1.png","CopyToMask":-1,"filePath":"datafiles/main/visual_sets/Test_set/test_sprite","name":"1.png","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"use_sets.json","CopyToMask":-1,"filePath":"datafiles/main/visual_sets","name":"use_sets.json","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
{"$GMIncludedFile":"","%Name":"README.md","CopyToMask":-1,"filePath":"datafiles","name":"README.md","resourceType":"GMIncludedFile","resourceVersion":"2.0",},
],
"isEcma":false,
"LibraryEmitters":[],
"MetaData":{
"IDEVersion":"2024.1400.3.974",
},
"name":"ChapterMaster",
"resources":[
{"id":{"name":"fnt_40k_10","path":"fonts/fnt_40k_10/fnt_40k_10.yy",},},
{"id":{"name":"fnt_40k_12","path":"fonts/fnt_40k_12/fnt_40k_12.yy",},},
{"id":{"name":"fnt_40k_12i","path":"fonts/fnt_40k_12i/fnt_40k_12i.yy",},},
{"id":{"name":"fnt_40k_14","path":"fonts/fnt_40k_14/fnt_40k_14.yy",},},
{"id":{"name":"fnt_40k_14b","path":"fonts/fnt_40k_14b/fnt_40k_14b.yy",},},
{"id":{"name":"fnt_40k_14i","path":"fonts/fnt_40k_14i/fnt_40k_14i.yy",},},
{"id":{"name":"fnt_40k_30b","path":"fonts/fnt_40k_30b/fnt_40k_30b.yy",},},
{"id":{"name":"fnt_cul_14","path":"fonts/fnt_cul_14/fnt_cul_14.yy",},},
{"id":{"name":"fnt_cul_18","path":"fonts/fnt_cul_18/fnt_cul_18.yy",},},
{"id":{"name":"fnt_Embossed_metal","path":"fonts/fnt_Embossed_metal/fnt_Embossed_metal.yy",},},
{"id":{"name":"fnt_fancy","path":"fonts/fnt_fancy/fnt_fancy.yy",},},
{"id":{"name":"fnt_info","path":"fonts/fnt_info/fnt_info.yy",},},
{"id":{"name":"fnt_large","path":"fonts/fnt_large/fnt_large.yy",},},
{"id":{"name":"fnt_legal","path":"fonts/fnt_legal/fnt_legal.yy",},},
{"id":{"name":"fnt_menu","path":"fonts/fnt_menu/fnt_menu.yy",},},
{"id":{"name":"fnt_small","path":"fonts/fnt_small/fnt_small.yy",},},
{"id":{"name":"fnt_tiny","path":"fonts/fnt_tiny/fnt_tiny.yy",},},
{"id":{"name":"compatibility_report_040421_2234143414","path":"notes/compatibility_report_040421_2234143414/compatibility_report_040421_2234143414.yy",},},
{"id":{"name":"notes","path":"notes/notes/notes.yy",},},
{"id":{"name":"obj_al_capital","path":"objects/obj_al_capital/obj_al_capital.yy",},},
{"id":{"name":"obj_al_cruiser","path":"objects/obj_al_cruiser/obj_al_cruiser.yy",},},
{"id":{"name":"obj_al_in","path":"objects/obj_al_in/obj_al_in.yy",},},
{"id":{"name":"obj_al_round","path":"objects/obj_al_round/obj_al_round.yy",},},
{"id":{"name":"obj_al_ship","path":"objects/obj_al_ship/obj_al_ship.yy",},},
{"id":{"name":"obj_all_fleet","path":"objects/obj_all_fleet/obj_all_fleet.yy",},},
{"id":{"name":"obj_bomb_select","path":"objects/obj_bomb_select/obj_bomb_select.yy",},},
{"id":{"name":"obj_centerline","path":"objects/obj_centerline/obj_centerline.yy",},},
{"id":{"name":"obj_circular","path":"objects/obj_circular/obj_circular.yy",},},
{"id":{"name":"obj_controller","path":"objects/obj_controller/obj_controller.yy",},},
{"id":{"name":"obj_creation_popup","path":"objects/obj_creation_popup/obj_creation_popup.yy",},},
{"id":{"name":"obj_creation","path":"objects/obj_creation/obj_creation.yy",},},
{"id":{"name":"obj_credits","path":"objects/obj_credits/obj_credits.yy",},},
{"id":{"name":"obj_crusade","path":"objects/obj_crusade/obj_crusade.yy",},},
{"id":{"name":"obj_cursor","path":"objects/obj_cursor/obj_cursor.yy",},},
{"id":{"name":"obj_defeat","path":"objects/obj_defeat/obj_defeat.yy",},},
{"id":{"name":"obj_drop_select","path":"objects/obj_drop_select/obj_drop_select.yy",},},
{"id":{"name":"obj_dropdown_sel","path":"objects/obj_dropdown_sel/obj_dropdown_sel.yy",},},
{"id":{"name":"obj_duel","path":"objects/obj_duel/obj_duel.yy",},},
{"id":{"name":"obj_en_capital","path":"objects/obj_en_capital/obj_en_capital.yy",},},
{"id":{"name":"obj_en_cruiser","path":"objects/obj_en_cruiser/obj_en_cruiser.yy",},},
{"id":{"name":"obj_en_fleet","path":"objects/obj_en_fleet/obj_en_fleet.yy",},},
{"id":{"name":"obj_en_husk","path":"objects/obj_en_husk/obj_en_husk.yy",},},
{"id":{"name":"obj_en_in","path":"objects/obj_en_in/obj_en_in.yy",},},
{"id":{"name":"obj_en_inter","path":"objects/obj_en_inter/obj_en_inter.yy",},},
{"id":{"name":"obj_en_pulse","path":"objects/obj_en_pulse/obj_en_pulse.yy",},},
{"id":{"name":"obj_en_round","path":"objects/obj_en_round/obj_en_round.yy",},},
{"id":{"name":"obj_en_ship","path":"objects/obj_en_ship/obj_en_ship.yy",},},
{"id":{"name":"obj_enemy_leftest","path":"objects/obj_enemy_leftest/obj_enemy_leftest.yy",},},
{"id":{"name":"obj_enunit","path":"objects/obj_enunit/obj_enunit.yy",},},
{"id":{"name":"obj_event_log","path":"objects/obj_event_log/obj_event_log.yy",},},
{"id":{"name":"obj_event","path":"objects/obj_event/obj_event.yy",},},
{"id":{"name":"obj_explosion","path":"objects/obj_explosion/obj_explosion.yy",},},
{"id":{"name":"obj_fade","path":"objects/obj_fade/obj_fade.yy",},},
{"id":{"name":"obj_fleet_controller","path":"objects/obj_fleet_controller/obj_fleet_controller.yy",},},
{"id":{"name":"obj_fleet_select","path":"objects/obj_fleet_select/obj_fleet_select.yy",},},
{"id":{"name":"obj_fleet_show","path":"objects/obj_fleet_show/obj_fleet_show.yy",},},
{"id":{"name":"obj_fleet_spawner","path":"objects/obj_fleet_spawner/obj_fleet_spawner.yy",},},
{"id":{"name":"obj_fleet","path":"objects/obj_fleet/obj_fleet.yy",},},
{"id":{"name":"obj_formation_bar","path":"objects/obj_formation_bar/obj_formation_bar.yy",},},
{"id":{"name":"obj_garbage_collector","path":"objects/obj_garbage_collector/obj_garbage_collector.yy",},},
{"id":{"name":"obj_ground_mission","path":"objects/obj_ground_mission/obj_ground_mission.yy",},},
{"id":{"name":"obj_img","path":"objects/obj_img/obj_img.yy",},},
{"id":{"name":"obj_ingame_menu","path":"objects/obj_ingame_menu/obj_ingame_menu.yy",},},
{"id":{"name":"obj_ini","path":"objects/obj_ini/obj_ini.yy",},},
{"id":{"name":"obj_lol_version","path":"objects/obj_lol_version/obj_lol_version.yy",},},
{"id":{"name":"obj_main_menu_buttons","path":"objects/obj_main_menu_buttons/obj_main_menu_buttons.yy",},},
{"id":{"name":"obj_main_menu","path":"objects/obj_main_menu/obj_main_menu.yy",},},
{"id":{"name":"obj_managment_panel","path":"objects/obj_managment_panel/obj_managment_panel.yy",},},
{"id":{"name":"obj_marine","path":"objects/obj_marine/obj_marine.yy",},},
{"id":{"name":"obj_mass_equip","path":"objects/obj_mass_equip/obj_mass_equip.yy",},},
{"id":{"name":"obj_ncombat","path":"objects/obj_ncombat/obj_ncombat.yy",},},
{"id":{"name":"obj_new_button","path":"objects/obj_new_button/obj_new_button.yy",},},
{"id":{"name":"obj_nfort","path":"objects/obj_nfort/obj_nfort.yy",},},
{"id":{"name":"obj_ork","path":"objects/obj_ork/obj_ork.yy",},},
{"id":{"name":"obj_p_assra","path":"objects/obj_p_assra/obj_p_assra.yy",},},
{"id":{"name":"obj_p_capital","path":"objects/obj_p_capital/obj_p_capital.yy",},},
{"id":{"name":"obj_p_cruiser","path":"objects/obj_p_cruiser/obj_p_cruiser.yy",},},
{"id":{"name":"obj_p_escort","path":"objects/obj_p_escort/obj_p_escort.yy",},},
{"id":{"name":"obj_p_fleet","path":"objects/obj_p_fleet/obj_p_fleet.yy",},},
{"id":{"name":"obj_p_round","path":"objects/obj_p_round/obj_p_round.yy",},},
{"id":{"name":"obj_p_ship","path":"objects/obj_p_ship/obj_p_ship.yy",},},
{"id":{"name":"obj_p_small","path":"objects/obj_p_small/obj_p_small.yy",},},
{"id":{"name":"obj_p_th","path":"objects/obj_p_th/obj_p_th.yy",},},
{"id":{"name":"obj_p1_bullet_miss","path":"objects/obj_p1_bullet_miss/obj_p1_bullet_miss.yy",},},
{"id":{"name":"obj_p1_bullet","path":"objects/obj_p1_bullet/obj_p1_bullet.yy",},},
{"id":{"name":"obj_persistent","path":"objects/obj_persistent/obj_persistent.yy",},},
{"id":{"name":"obj_planet_map","path":"objects/obj_planet_map/obj_planet_map.yy",},},
{"id":{"name":"obj_pnunit","path":"objects/obj_pnunit/obj_pnunit.yy",},},
{"id":{"name":"obj_popup_dialogue","path":"objects/obj_popup_dialogue/obj_popup_dialogue.yy",},},
{"id":{"name":"obj_popup","path":"objects/obj_popup/obj_popup.yy",},},
{"id":{"name":"obj_restart_game","path":"objects/obj_restart_game/obj_restart_game.yy",},},
{"id":{"name":"obj_restart_vars","path":"objects/obj_restart_vars/obj_restart_vars.yy",},},
{"id":{"name":"obj_saveload","path":"objects/obj_saveload/obj_saveload.yy",},},
{"id":{"name":"obj_shop","path":"objects/obj_shop/obj_shop.yy",},},
{"id":{"name":"obj_star_event","path":"objects/obj_star_event/obj_star_event.yy",},},
{"id":{"name":"obj_star_select","path":"objects/obj_star_select/obj_star_select.yy",},},
{"id":{"name":"obj_star","path":"objects/obj_star/obj_star.yy",},},
{"id":{"name":"obj_temp_arti","path":"objects/obj_temp_arti/obj_temp_arti.yy",},},
{"id":{"name":"obj_temp_build","path":"objects/obj_temp_build/obj_temp_build.yy",},},
{"id":{"name":"obj_temp_inq","path":"objects/obj_temp_inq/obj_temp_inq.yy",},},
{"id":{"name":"obj_temp_meeting","path":"objects/obj_temp_meeting/obj_temp_meeting.yy",},},
{"id":{"name":"obj_temp1","path":"objects/obj_temp1/obj_temp1.yy",},},
{"id":{"name":"obj_temp2","path":"objects/obj_temp2/obj_temp2.yy",},},
{"id":{"name":"obj_temp3","path":"objects/obj_temp3/obj_temp3.yy",},},
{"id":{"name":"obj_temp5","path":"objects/obj_temp5/obj_temp5.yy",},},
{"id":{"name":"obj_temp6","path":"objects/obj_temp6/obj_temp6.yy",},},
{"id":{"name":"obj_temp7","path":"objects/obj_temp7/obj_temp7.yy",},},
{"id":{"name":"obj_temp8","path":"objects/obj_temp8/obj_temp8.yy",},},
{"id":{"name":"obj_timer","path":"objects/obj_timer/obj_timer.yy",},},
{"id":{"name":"obj_tooltip","path":"objects/obj_tooltip/obj_tooltip.yy",},},
{"id":{"name":"obj_turn_end","path":"objects/obj_turn_end/obj_turn_end.yy",},},
{"id":{"name":"combat_testing","path":"rooms/combat_testing/combat_testing.yy",},},
{"id":{"name":"Creation","path":"rooms/Creation/Creation.yy",},},
{"id":{"name":"Defeat","path":"rooms/Defeat/Defeat.yy",},},
{"id":{"name":"Game","path":"rooms/Game/Game.yy",},},
{"id":{"name":"Main_Menu","path":"rooms/Main_Menu/Main_Menu.yy",},},
{"id":{"name":"testing_half","path":"rooms/testing_half/testing_half.yy",},},
{"id":{"name":"Testing_newnew","path":"rooms/Testing_newnew/Testing_newnew.yy",},},
{"id":{"name":"Tutorial","path":"rooms/Tutorial/Tutorial.yy",},},
{"id":{"name":"__global_object_depths","path":"scripts/__global_object_depths/__global_object_depths.yy",},},
{"id":{"name":"__init_action","path":"scripts/__init_action/__init_action.yy",},},
{"id":{"name":"__init_d3d","path":"scripts/__init_d3d/__init_d3d.yy",},},
{"id":{"name":"__init_external","path":"scripts/__init_external/__init_external.yy",},},
{"id":{"name":"__init_global","path":"scripts/__init_global/__init_global.yy",},},
{"id":{"name":"__init_view","path":"scripts/__init_view/__init_view.yy",},},
{"id":{"name":"__view_get","path":"scripts/__view_get/__view_get.yy",},},
{"id":{"name":"__view_set_internal","path":"scripts/__view_set_internal/__view_set_internal.yy",},},
{"id":{"name":"__view_set","path":"scripts/__view_set/__view_set.yy",},},
{"id":{"name":"action_another_room","path":"scripts/action_another_room/action_another_room.yy",},},
{"id":{"name":"action_color","path":"scripts/action_color/action_color.yy",},},
{"id":{"name":"action_draw_ellipse","path":"scripts/action_draw_ellipse/action_draw_ellipse.yy",},},
{"id":{"name":"action_if_number","path":"scripts/action_if_number/action_if_number.yy",},},
{"id":{"name":"action_if_variable","path":"scripts/action_if_variable/action_if_variable.yy",},},
{"id":{"name":"action_kill_object","path":"scripts/action_kill_object/action_kill_object.yy",},},
{"id":{"name":"action_restart_game","path":"scripts/action_restart_game/action_restart_game.yy",},},
{"id":{"name":"action_set_alarm","path":"scripts/action_set_alarm/action_set_alarm.yy",},},
{"id":{"name":"action_set_relative","path":"scripts/action_set_relative/action_set_relative.yy",},},
{"id":{"name":"clean_tags","path":"scripts/clean_tags/clean_tags.yy",},},
{"id":{"name":"d3d_set_fog","path":"scripts/d3d_set_fog/d3d_set_fog.yy",},},
{"id":{"name":"DebugView","path":"scripts/DebugView/DebugView.yy",},},
{"id":{"name":"DiploBasicNodes","path":"scripts/DiploBasicNodes/DiploBasicNodes.yy",},},
{"id":{"name":"DiploCommonComponents","path":"scripts/DiploCommonComponents/DiploCommonComponents.yy",},},
{"id":{"name":"draw_line_dashed","path":"scripts/draw_line_dashed/draw_line_dashed.yy",},},
{"id":{"name":"draw_set_blend_mode","path":"scripts/draw_set_blend_mode/draw_set_blend_mode.yy",},},
{"id":{"name":"exp_and_exp_growth","path":"scripts/exp_and_exp_growth/exp_and_exp_growth.yy",},},
{"id":{"name":"explode_script","path":"scripts/explode_script/explode_script.yy",},},
{"id":{"name":"instance_create","path":"scripts/instance_create/instance_create.yy",},},
{"id":{"name":"is_specialist","path":"scripts/is_specialist/is_specialist.yy",},},
{"id":{"name":"JsonFileListLoader","path":"scripts/JsonFileListLoader/JsonFileListLoader.yy",},},
{"id":{"name":"macros","path":"scripts/macros/macros.yy",},},
{"id":{"name":"NameGenerator","path":"scripts/NameGenerator/NameGenerator.yy",},},
{"id":{"name":"object_get_depth","path":"scripts/object_get_depth/object_get_depth.yy",},},
{"id":{"name":"relative_direction","path":"scripts/relative_direction/relative_direction.yy",},},
{"id":{"name":"scr_add_artifact","path":"scripts/scr_add_artifact/scr_add_artifact.yy",},},
{"id":{"name":"scr_add_corruption","path":"scripts/scr_add_corruption/scr_add_corruption.yy",},},
{"id":{"name":"scr_add_item","path":"scripts/scr_add_item/scr_add_item.yy",},},
{"id":{"name":"scr_add_man","path":"scripts/scr_add_man/scr_add_man.yy",},},
{"id":{"name":"scr_add_stc_fragment","path":"scripts/scr_add_stc_fragment/scr_add_stc_fragment.yy",},},
{"id":{"name":"scr_add_vehicle","path":"scripts/scr_add_vehicle/scr_add_vehicle.yy",},},
{"id":{"name":"scr_after_combat","path":"scripts/scr_after_combat/scr_after_combat.yy",},},
{"id":{"name":"scr_alert","path":"scripts/scr_alert/scr_alert.yy",},},
{"id":{"name":"scr_ancient_ruins","path":"scripts/scr_ancient_ruins/scr_ancient_ruins.yy",},},
{"id":{"name":"scr_animated_scanline","path":"scripts/scr_animated_scanline/scr_animated_scanline.yy",},},
{"id":{"name":"scr_apothecarium","path":"scripts/scr_apothecarium/scr_apothecarium.yy",},},
{"id":{"name":"scr_apothecary_ground","path":"scripts/scr_apothecary_ground/scr_apothecary_ground.yy",},},
{"id":{"name":"scr_apothecary_ship","path":"scripts/scr_apothecary_ship/scr_apothecary_ship.yy",},},
{"id":{"name":"scr_array_functions","path":"scripts/scr_array_functions/scr_array_functions.yy",},},
{"id":{"name":"scr_arti_descr","path":"scripts/scr_arti_descr/scr_arti_descr.yy",},},
{"id":{"name":"scr_audience","path":"scripts/scr_audience/scr_audience.yy",},},
{"id":{"name":"scr_battle_allies","path":"scripts/scr_battle_allies/scr_battle_allies.yy",},},
{"id":{"name":"scr_battle_sort","path":"scripts/scr_battle_sort/scr_battle_sort.yy",},},
{"id":{"name":"scr_bionics_count","path":"scripts/scr_bionics_count/scr_bionics_count.yy",},},
{"id":{"name":"scr_boarding_actions","path":"scripts/scr_boarding_actions/scr_boarding_actions.yy",},},
{"id":{"name":"scr_bolt","path":"scripts/scr_bolt/scr_bolt.yy",},},
{"id":{"name":"scr_bomb_world","path":"scripts/scr_bomb_world/scr_bomb_world.yy",},},
{"id":{"name":"scr_buttons","path":"scripts/scr_buttons/scr_buttons.yy",},},
{"id":{"name":"scr_chaos_alliance_test","path":"scripts/scr_chaos_alliance_test/scr_chaos_alliance_test.yy",},},
{"id":{"name":"scr_chapter_managent_events","path":"scripts/scr_chapter_managent_events/scr_chapter_managent_events.yy",},},
{"id":{"name":"scr_chapter_master","path":"scripts/scr_chapter_master/scr_chapter_master.yy",},},
{"id":{"name":"scr_chapter_new","path":"scripts/scr_chapter_new/scr_chapter_new.yy",},},
{"id":{"name":"scr_chapter_random","path":"scripts/scr_chapter_random/scr_chapter_random.yy",},},
{"id":{"name":"scr_ChapterTraits","path":"scripts/scr_ChapterTraits/scr_ChapterTraits.yy",},},
{"id":{"name":"scr_cheatcode","path":"scripts/scr_cheatcode/scr_cheatcode.yy",},},
{"id":{"name":"scr_check_equip","path":"scripts/scr_check_equip/scr_check_equip.yy",},},
{"id":{"name":"scr_choose_weighted","path":"scripts/scr_choose_weighted/scr_choose_weighted.yy",},},
{"id":{"name":"scr_civil_roster","path":"scripts/scr_civil_roster/scr_civil_roster.yy",},},
{"id":{"name":"scr_clean","path":"scripts/scr_clean/scr_clean.yy",},},
{"id":{"name":"scr_colors_initialize","path":"scripts/scr_colors_initialize/scr_colors_initialize.yy",},},
{"id":{"name":"scr_company_load","path":"scripts/scr_company_load/scr_company_load.yy",},},
{"id":{"name":"scr_company_order","path":"scripts/scr_company_order/scr_company_order.yy",},},
{"id":{"name":"scr_company_struct","path":"scripts/scr_company_struct/scr_company_struct.yy",},},
{"id":{"name":"scr_company_view","path":"scripts/scr_company_view/scr_company_view.yy",},},
{"id":{"name":"scr_complex_colour_kit","path":"scripts/scr_complex_colour_kit/scr_complex_colour_kit.yy",},},
{"id":{"name":"scr_ComplexSet","path":"scripts/scr_ComplexSet/scr_ComplexSet.yy",},},
{"id":{"name":"scr_controller_helpers","path":"scripts/scr_controller_helpers/scr_controller_helpers.yy",},},
{"id":{"name":"scr_count_forces","path":"scripts/scr_count_forces/scr_count_forces.yy",},},
{"id":{"name":"scr_count_marines_on_ship","path":"scripts/scr_count_marines_on_ship/scr_count_marines_on_ship.yy",},},
{"id":{"name":"scr_creation_draw_slides","path":"scripts/scr_creation_draw_slides/scr_creation_draw_slides.yy",},},
{"id":{"name":"scr_creation_home_planet_create","path":"scripts/scr_creation_home_planet_create/scr_creation_home_planet_create.yy",},},
{"id":{"name":"scr_creation","path":"scripts/scr_creation/scr_creation.yy",},},
{"id":{"name":"scr_crusade","path":"scripts/scr_crusade/scr_crusade.yy",},},
{"id":{"name":"scr_culture_visuals","path":"scripts/scr_culture_visuals/scr_culture_visuals.yy",},},
{"id":{"name":"scr_DataSlate","path":"scripts/scr_DataSlate/scr_DataSlate.yy",},},
{"id":{"name":"scr_dead_marines","path":"scripts/scr_dead_marines/scr_dead_marines.yy",},},
{"id":{"name":"scr_demand","path":"scripts/scr_demand/scr_demand.yy",},},
{"id":{"name":"scr_destroy_planet","path":"scripts/scr_destroy_planet/scr_destroy_planet.yy",},},
{"id":{"name":"scr_dialogue","path":"scripts/scr_dialogue/scr_dialogue.yy",},},
{"id":{"name":"scr_diplomacy_helpers","path":"scripts/scr_diplomacy_helpers/scr_diplomacy_helpers.yy",},},
{"id":{"name":"scr_display_number","path":"scripts/scr_display_number/scr_display_number.yy",},},
{"id":{"name":"scr_distributions","path":"scripts/scr_distributions/scr_distributions.yy",},},
{"id":{"name":"scr_draw_armentarium","path":"scripts/scr_draw_armentarium/scr_draw_armentarium.yy",},},
{"id":{"name":"scr_draw_management_unit","path":"scripts/scr_draw_management_unit/scr_draw_management_unit.yy",},},
{"id":{"name":"scr_draw_planet_features","path":"scripts/scr_draw_planet_features/scr_draw_planet_features.yy",},},
{"id":{"name":"scr_draw_rainbow","path":"scripts/scr_draw_rainbow/scr_draw_rainbow.yy",},},
{"id":{"name":"scr_draw_rectangle","path":"scripts/scr_draw_rectangle/scr_draw_rectangle.yy",},},
{"id":{"name":"scr_draw_text","path":"scripts/scr_draw_text/scr_draw_text.yy",},},
{"id":{"name":"scr_draw_unit_image","path":"scripts/scr_draw_unit_image/scr_draw_unit_image.yy",},},
{"id":{"name":"scr_draw_unit_stat_data","path":"scripts/scr_draw_unit_stat_data/scr_draw_unit_stat_data.yy",},},
{"id":{"name":"scr_drop_fiddle","path":"scripts/scr_drop_fiddle/scr_drop_fiddle.yy",},},
{"id":{"name":"scr_drop_select_function","path":"scripts/scr_drop_select_function/scr_drop_select_function.yy",},},
{"id":{"name":"scr_en_weapon","path":"scripts/scr_en_weapon/scr_en_weapon.yy",},},
{"id":{"name":"scr_enemy_ai_a","path":"scripts/scr_enemy_ai_a/scr_enemy_ai_a.yy",},},
{"id":{"name":"scr_enemy_ai_b","path":"scripts/scr_enemy_ai_b/scr_enemy_ai_b.yy",},},
{"id":{"name":"scr_enemy_ai_c","path":"scripts/scr_enemy_ai_c/scr_enemy_ai_c.yy",},},
{"id":{"name":"scr_enemy_ai_d","path":"scripts/scr_enemy_ai_d/scr_enemy_ai_d.yy",},},
{"id":{"name":"scr_enemy_ai_e","path":"scripts/scr_enemy_ai_e/scr_enemy_ai_e.yy",},},
{"id":{"name":"scr_equipment_struct","path":"scripts/scr_equipment_struct/scr_equipment_struct.yy",},},
{"id":{"name":"scr_event_code","path":"scripts/scr_event_code/scr_event_code.yy",},},
{"id":{"name":"scr_event_dudes","path":"scripts/scr_event_dudes/scr_event_dudes.yy",},},
{"id":{"name":"scr_event_gossip","path":"scripts/scr_event_gossip/scr_event_gossip.yy",},},
{"id":{"name":"scr_event_log","path":"scripts/scr_event_log/scr_event_log.yy",},},
{"id":{"name":"scr_event_newlines","path":"scripts/scr_event_newlines/scr_event_newlines.yy",},},
{"id":{"name":"scr_flavor","path":"scripts/scr_flavor/scr_flavor.yy",},},
{"id":{"name":"scr_flavor2","path":"scripts/scr_flavor2/scr_flavor2.yy",},},
{"id":{"name":"scr_fleet_advisor","path":"scripts/scr_fleet_advisor/scr_fleet_advisor.yy",},},
{"id":{"name":"scr_fleet_functions","path":"scripts/scr_fleet_functions/scr_fleet_functions.yy",},},
{"id":{"name":"scr_forge_world_functions","path":"scripts/scr_forge_world_functions/scr_forge_world_functions.yy",},},
{"id":{"name":"scr_garrison","path":"scripts/scr_garrison/scr_garrison.yy",},},
{"id":{"name":"scr_general_variable_functions","path":"scripts/scr_general_variable_functions/scr_general_variable_functions.yy",},},
{"id":{"name":"scr_get_diag_integer","path":"scripts/scr_get_diag_integer/scr_get_diag_integer.yy",},},
{"id":{"name":"scr_get_diag_string","path":"scripts/scr_get_diag_string/scr_get_diag_string.yy",},},
{"id":{"name":"scr_get_item_names","path":"scripts/scr_get_item_names/scr_get_item_names.yy",},},
{"id":{"name":"scr_gift_items","path":"scripts/scr_gift_items/scr_gift_items.yy",},},
{"id":{"name":"scr_gov_disp","path":"scripts/scr_gov_disp/scr_gov_disp.yy",},},
{"id":{"name":"scr_ground_ai_helpers","path":"scripts/scr_ground_ai_helpers/scr_ground_ai_helpers.yy",},},
{"id":{"name":"scr_has_adv","path":"scripts/scr_has_adv/scr_has_adv.yy",},},
{"id":{"name":"scr_has_disadv","path":"scripts/scr_has_disadv/scr_has_disadv.yy",},},
{"id":{"name":"scr_hit","path":"scripts/scr_hit/scr_hit.yy",},},
{"id":{"name":"scr_image","path":"scripts/scr_image/scr_image.yy",},},
{"id":{"name":"scr_imperial_manage_fleet_functions","path":"scripts/scr_imperial_manage_fleet_functions/scr_imperial_manage_fleet_functions.yy",},},
{"id":{"name":"scr_imperial_navy_functions","path":"scripts/scr_imperial_navy_functions/scr_imperial_navy_functions.yy",},},
{"id":{"name":"scr_income","path":"scripts/scr_income/scr_income.yy",},},
{"id":{"name":"scr_ini_ship_cleanup","path":"scripts/scr_ini_ship_cleanup/scr_ini_ship_cleanup.yy",},},
{"id":{"name":"scr_initialize_custom","path":"scripts/scr_initialize_custom/scr_initialize_custom.yy",},},
{"id":{"name":"scr_inquisition_fleet_functions","path":"scripts/scr_inquisition_fleet_functions/scr_inquisition_fleet_functions.yy",},},
{"id":{"name":"scr_inquisition_inspection","path":"scripts/scr_inquisition_inspection/scr_inquisition_inspection.yy",},},
{"id":{"name":"scr_inquisition_mission","path":"scripts/scr_inquisition_mission/scr_inquisition_mission.yy",},},
{"id":{"name":"scr_item_count","path":"scripts/scr_item_count/scr_item_count.yy",},},
{"id":{"name":"scr_json_functions","path":"scripts/scr_json_functions/scr_json_functions.yy",},},
{"id":{"name":"scr_keyboard_helpers","path":"scripts/scr_keyboard_helpers/scr_keyboard_helpers.yy",},},
{"id":{"name":"scr_khornate_fleet_functions","path":"scripts/scr_khornate_fleet_functions/scr_khornate_fleet_functions.yy",},},
{"id":{"name":"scr_kill_unit","path":"scripts/scr_kill_unit/scr_kill_unit.yy",},},
{"id":{"name":"scr_librarium","path":"scripts/scr_librarium/scr_librarium.yy",},},
{"id":{"name":"scr_line_break","path":"scripts/scr_line_break/scr_line_break.yy",},},
{"id":{"name":"scr_lines_increase","path":"scripts/scr_lines_increase/scr_lines_increase.yy",},},
{"id":{"name":"scr_lines","path":"scripts/scr_lines/scr_lines.yy",},},
{"id":{"name":"scr_livery_setup","path":"scripts/scr_livery_setup/scr_livery_setup.yy",},},
{"id":{"name":"scr_load_all","path":"scripts/scr_load_all/scr_load_all.yy",},},
{"id":{"name":"scr_load_controller","path":"scripts/scr_load_controller/scr_load_controller.yy",},},
{"id":{"name":"scr_load","path":"scripts/scr_load/scr_load.yy",},},
{"id":{"name":"scr_log","path":"scripts/scr_log/scr_log.yy",},},
{"id":{"name":"scr_loyalty","path":"scripts/scr_loyalty/scr_loyalty.yy",},},
{"id":{"name":"scr_manage_tags","path":"scripts/scr_manage_tags/scr_manage_tags.yy",},},
{"id":{"name":"scr_manage_task_selector","path":"scripts/scr_manage_task_selector/scr_manage_task_selector.yy",},},
{"id":{"name":"scr_management","path":"scripts/scr_management/scr_management.yy",},},
{"id":{"name":"scr_map_and_warp_functions","path":"scripts/scr_map_and_warp_functions/scr_map_and_warp_functions.yy",},},
{"id":{"name":"scr_marine_count","path":"scripts/scr_marine_count/scr_marine_count.yy",},},
{"id":{"name":"scr_marine_struct","path":"scripts/scr_marine_struct/scr_marine_struct.yy",},},
{"id":{"name":"scr_master_loc","path":"scripts/scr_master_loc/scr_master_loc.yy",},},
{"id":{"name":"scr_max_marine","path":"scripts/scr_max_marine/scr_max_marine.yy",},},
{"id":{"name":"scr_mechanicus_missions","path":"scripts/scr_mechanicus_missions/scr_mechanicus_missions.yy",},},
{"id":{"name":"scr_mission_eta","path":"scripts/scr_mission_eta/scr_mission_eta.yy",},},
{"id":{"name":"scr_mission_functions","path":"scripts/scr_mission_functions/scr_mission_functions.yy",},},
{"id":{"name":"scr_mission_reward","path":"scripts/scr_mission_reward/scr_mission_reward.yy",},},
{"id":{"name":"scr_move_unit_info","path":"scripts/scr_move_unit_info/scr_move_unit_info.yy",},},
{"id":{"name":"scr_music","path":"scripts/scr_music/scr_music.yy",},},
{"id":{"name":"scr_necron_tombs","path":"scripts/scr_necron_tombs/scr_necron_tombs.yy",},},
{"id":{"name":"scr_newtext","path":"scripts/scr_newtext/scr_newtext.yy",},},
{"id":{"name":"scr_ork_fleet_functions","path":"scripts/scr_ork_fleet_functions/scr_ork_fleet_functions.yy",},},
{"id":{"name":"scr_ork_planet_functions","path":"scripts/scr_ork_planet_functions/scr_ork_planet_functions.yy",},},
{"id":{"name":"scr_pen_And_paper","path":"scripts/scr_pen_And_paper/scr_pen_And_paper.yy",},},
{"id":{"name":"scr_perils_table","path":"scripts/scr_perils_table/scr_perils_table.yy",},},
{"id":{"name":"scr_planet_heresy","path":"scripts/scr_planet_heresy/scr_planet_heresy.yy",},},
{"id":{"name":"scr_planetary_feature","path":"scripts/scr_planetary_feature/scr_planetary_feature.yy",},},
{"id":{"name":"scr_PlanetData","path":"scripts/scr_PlanetData/scr_PlanetData.yy",},},
{"id":{"name":"scr_player_combat_weapon_stacks","path":"scripts/scr_player_combat_weapon_stacks/scr_player_combat_weapon_stacks.yy",},},
{"id":{"name":"scr_player_fleet_combat_functions","path":"scripts/scr_player_fleet_combat_functions/scr_player_fleet_combat_functions.yy",},},
{"id":{"name":"scr_player_fleet_functions","path":"scripts/scr_player_fleet_functions/scr_player_fleet_functions.yy",},},
{"id":{"name":"scr_player_ship_functions","path":"scripts/scr_player_ship_functions/scr_player_ship_functions.yy",},},
{"id":{"name":"scr_population_influence","path":"scripts/scr_population_influence/scr_population_influence.yy",},},
{"id":{"name":"scr_popup_functions","path":"scripts/scr_popup_functions/scr_popup_functions.yy",},},
{"id":{"name":"scr_popup","path":"scripts/scr_popup/scr_popup.yy",},},
{"id":{"name":"scr_post_battle_events","path":"scripts/scr_post_battle_events/scr_post_battle_events.yy",},},
{"id":{"name":"scr_powers","path":"scripts/scr_powers/scr_powers.yy",},},
{"id":{"name":"scr_promote","path":"scripts/scr_promote/scr_promote.yy",},},
{"id":{"name":"scr_punit_combat_heplers","path":"scripts/scr_punit_combat_heplers/scr_punit_combat_heplers.yy",},},
{"id":{"name":"scr_purge_world","path":"scripts/scr_purge_world/scr_purge_world.yy",},},
{"id":{"name":"scr_quest","path":"scripts/scr_quest/scr_quest.yy",},},
{"id":{"name":"scr_random_event","path":"scripts/scr_random_event/scr_random_event.yy",},},
{"id":{"name":"scr_random_find","path":"scripts/scr_random_find/scr_random_find.yy",},},
{"id":{"name":"scr_random_marine","path":"scripts/scr_random_marine/scr_random_marine.yy",},},
{"id":{"name":"scr_recent","path":"scripts/scr_recent/scr_recent.yy",},},
{"id":{"name":"scr_recruit_data","path":"scripts/scr_recruit_data/scr_recruit_data.yy",},},
{"id":{"name":"scr_reequip_units","path":"scripts/scr_reequip_units/scr_reequip_units.yy",},},
{"id":{"name":"scr_restart_variables","path":"scripts/scr_restart_variables/scr_restart_variables.yy",},},
{"id":{"name":"scr_return_ship","path":"scripts/scr_return_ship/scr_return_ship.yy",},},
{"id":{"name":"scr_role_count","path":"scripts/scr_role_count/scr_role_count.yy",},},
{"id":{"name":"scr_role_setup","path":"scripts/scr_role_setup/scr_role_setup.yy",},},
{"id":{"name":"scr_roman_numerals","path":"scripts/scr_roman_numerals/scr_roman_numerals.yy",},},
{"id":{"name":"scr_roman","path":"scripts/scr_roman/scr_roman.yy",},},
{"id":{"name":"scr_roster","path":"scripts/scr_roster/scr_roster.yy",},},
{"id":{"name":"scr_ruins_reward","path":"scripts/scr_ruins_reward/scr_ruins_reward.yy",},},
{"id":{"name":"scr_save_chapter","path":"scripts/scr_save_chapter/scr_save_chapter.yy",},},
{"id":{"name":"scr_save_controller","path":"scripts/scr_save_controller/scr_save_controller.yy",},},
{"id":{"name":"scr_save","path":"scripts/scr_save/scr_save.yy",},},
{"id":{"name":"scr_scrollbar","path":"scripts/scr_scrollbar/scr_scrollbar.yy",},},
{"id":{"name":"scr_serialization_functions","path":"scripts/scr_serialization_functions/scr_serialization_functions.yy",},},
{"id":{"name":"scr_shader_initialize","path":"scripts/scr_shader_initialize/scr_shader_initialize.yy",},},
{"id":{"name":"scr_ship_battle","path":"scripts/scr_ship_battle/scr_ship_battle.yy",},},
{"id":{"name":"scr_ship_count","path":"scripts/scr_ship_count/scr_ship_count.yy",},},
{"id":{"name":"scr_ship_occupants","path":"scripts/scr_ship_occupants/scr_ship_occupants.yy",},},
{"id":{"name":"scr_shoot","path":"scripts/scr_shoot/scr_shoot.yy",},},
{"id":{"name":"scr_special_view","path":"scripts/scr_special_view/scr_special_view.yy",},},
{"id":{"name":"scr_specialist_point_handler","path":"scripts/scr_specialist_point_handler/scr_specialist_point_handler.yy",},},
{"id":{"name":"scr_specialist_points","path":"scripts/scr_specialist_points/scr_specialist_points.yy",},},
{"id":{"name":"scr_specialist_training","path":"scripts/scr_specialist_training/scr_specialist_training.yy",},},
{"id":{"name":"scr_sprite_functions","path":"scripts/scr_sprite_functions/scr_sprite_functions.yy",},},
{"id":{"name":"scr_sprite_helpers","path":"scripts/scr_sprite_helpers/scr_sprite_helpers.yy",},},
{"id":{"name":"scr_squads","path":"scripts/scr_squads/scr_squads.yy",},},
{"id":{"name":"scr_star_ownership","path":"scripts/scr_star_ownership/scr_star_ownership.yy",},},
{"id":{"name":"scr_star_travel_algorithm","path":"scripts/scr_star_travel_algorithm/scr_star_travel_algorithm.yy",},},
{"id":{"name":"scr_start_allow","path":"scripts/scr_start_allow/scr_start_allow.yy",},},
{"id":{"name":"scr_start_load","path":"scripts/scr_start_load/scr_start_load.yy",},},
{"id":{"name":"scr_string_functions","path":"scripts/scr_string_functions/scr_string_functions.yy",},},
{"id":{"name":"scr_struct_functions","path":"scripts/scr_struct_functions/scr_struct_functions.yy",},},
{"id":{"name":"scr_system_search_helpers","path":"scripts/scr_system_search_helpers/scr_system_search_helpers.yy",},},
{"id":{"name":"scr_system_spawn_functions","path":"scripts/scr_system_spawn_functions/scr_system_spawn_functions.yy",},},
{"id":{"name":"scr_Table","path":"scripts/scr_Table/scr_Table.yy",},},
{"id":{"name":"scr_target","path":"scripts/scr_target/scr_target.yy",},},
{"id":{"name":"scr_text_hit","path":"scripts/scr_text_hit/scr_text_hit.yy",},},
{"id":{"name":"scr_thought","path":"scripts/scr_thought/scr_thought.yy",},},
{"id":{"name":"scr_tooltip_draw","path":"scripts/scr_tooltip_draw/scr_tooltip_draw.yy",},},
{"id":{"name":"scr_trade_dep","path":"scripts/scr_trade_dep/scr_trade_dep.yy",},},
{"id":{"name":"scr_trade","path":"scripts/scr_trade/scr_trade.yy",},},
{"id":{"name":"scr_transfer_marines","path":"scripts/scr_transfer_marines/scr_transfer_marines.yy",},},
{"id":{"name":"scr_turn_first","path":"scripts/scr_turn_first/scr_turn_first.yy",},},
{"id":{"name":"scr_ui_advisors","path":"scripts/scr_ui_advisors/scr_ui_advisors.yy",},},
{"id":{"name":"scr_ui_diplomacy","path":"scripts/scr_ui_diplomacy/scr_ui_diplomacy.yy",},},
{"id":{"name":"scr_ui_display_weapons","path":"scripts/scr_ui_display_weapons/scr_ui_display_weapons.yy",},},
{"id":{"name":"scr_ui_formation_bars","path":"scripts/scr_ui_formation_bars/scr_ui_formation_bars.yy",},},
{"id":{"name":"scr_ui_manage","path":"scripts/scr_ui_manage/scr_ui_manage.yy",},},
{"id":{"name":"scr_ui_popup","path":"scripts/scr_ui_popup/scr_ui_popup.yy",},},
{"id":{"name":"scr_ui_refresh","path":"scripts/scr_ui_refresh/scr_ui_refresh.yy",},},
{"id":{"name":"scr_ui_settings","path":"scripts/scr_ui_settings/scr_ui_settings.yy",},},
{"id":{"name":"scr_unit_detail_text","path":"scripts/scr_unit_detail_text/scr_unit_detail_text.yy",},},
{"id":{"name":"scr_unit_equip_functions","path":"scripts/scr_unit_equip_functions/scr_unit_equip_functions.yy",},},
{"id":{"name":"scr_unit_quick_find_pane","path":"scripts/scr_unit_quick_find_pane/scr_unit_quick_find_pane.yy",},},
{"id":{"name":"scr_unit_size","path":"scripts/scr_unit_size/scr_unit_size.yy",},},
{"id":{"name":"scr_unit_spawn_functions","path":"scripts/scr_unit_spawn_functions/scr_unit_spawn_functions.yy",},},
{"id":{"name":"scr_unit_traits","path":"scripts/scr_unit_traits/scr_unit_traits.yy",},},
{"id":{"name":"scr_uuid_generate","path":"scripts/scr_uuid_generate/scr_uuid_generate.yy",},},
{"id":{"name":"scr_vehicle_count","path":"scripts/scr_vehicle_count/scr_vehicle_count.yy",},},
{"id":{"name":"scr_vehicle_helpers","path":"scripts/scr_vehicle_helpers/scr_vehicle_helpers.yy",},},
{"id":{"name":"scr_vehicle_order","path":"scripts/scr_vehicle_order/scr_vehicle_order.yy",},},
{"id":{"name":"scr_vehicle_weapon","path":"scripts/scr_vehicle_weapon/scr_vehicle_weapon.yy",},},
{"id":{"name":"scr_void_click","path":"scripts/scr_void_click/scr_void_click.yy",},},
{"id":{"name":"scr_wait_and_execute","path":"scripts/scr_wait_and_execute/scr_wait_and_execute.yy",},},
{"id":{"name":"scr_weapon","path":"scripts/scr_weapon/scr_weapon.yy",},},
{"id":{"name":"scr_zoom","path":"scripts/scr_zoom/scr_zoom.yy",},},
{"id":{"name":"turn_towards_point","path":"scripts/turn_towards_point/turn_towards_point.yy",},},
{"id":{"name":"UIComponents","path":"scripts/UIComponents/UIComponents.yy",},},
{"id":{"name":"UINodeScripts","path":"scripts/UINodeScripts/UINodeScripts.yy",},},
{"id":{"name":"UIRenderComponents","path":"scripts/UIRenderComponents/UIRenderComponents.yy",},},
{"id":{"name":"armour_texture","path":"shaders/armour_texture/armour_texture.yy",},},
{"id":{"name":"full_livery_shader","path":"shaders/full_livery_shader/full_livery_shader.yy",},},
{"id":{"name":"helm_shader","path":"shaders/helm_shader/helm_shader.yy",},},
{"id":{"name":"light_dark_shader","path":"shaders/light_dark_shader/light_dark_shader.yy",},},
{"id":{"name":"reverse_draw_shader","path":"shaders/reverse_draw_shader/reverse_draw_shader.yy",},},
{"id":{"name":"right_left_swap_shader","path":"shaders/right_left_swap_shader/right_left_swap_shader.yy",},},
{"id":{"name":"shd_multiply_blend","path":"shaders/shd_multiply_blend/shd_multiply_blend.yy",},},
{"id":{"name":"Ship_shader","path":"shaders/Ship_shader/Ship_shader.yy",},},
{"id":{"name":"skin_tone_shader","path":"shaders/skin_tone_shader/skin_tone_shader.yy",},},
{"id":{"name":"sReplaceColor","path":"shaders/sReplaceColor/sReplaceColor.yy",},},
{"id":{"name":"snd_battle","path":"sounds/snd_battle/snd_battle.yy",},},
{"id":{"name":"snd_blood","path":"sounds/snd_blood/snd_blood.yy",},},
{"id":{"name":"snd_buzz","path":"sounds/snd_buzz/snd_buzz.yy",},},
{"id":{"name":"snd_click_small","path":"sounds/snd_click_small/snd_click_small.yy",},},
{"id":{"name":"snd_click","path":"sounds/snd_click/snd_click.yy",},},
{"id":{"name":"snd_defeat","path":"sounds/snd_defeat/snd_defeat.yy",},},
{"id":{"name":"snd_diboz","path":"sounds/snd_diboz/snd_diboz.yy",},},
{"id":{"name":"snd_end_turn","path":"sounds/snd_end_turn/snd_end_turn.yy",},},
{"id":{"name":"snd_error","path":"sounds/snd_error/snd_error.yy",},},
{"id":{"name":"snd_identify","path":"sounds/snd_identify/snd_identify.yy",},},
{"id":{"name":"snd_legal","path":"sounds/snd_legal/snd_legal.yy",},},
{"id":{"name":"snd_postbattle","path":"sounds/snd_postbattle/snd_postbattle.yy",},},
{"id":{"name":"snd_prologue","path":"sounds/snd_prologue/snd_prologue.yy",},},
{"id":{"name":"snd_redownload","path":"sounds/snd_redownload/snd_redownload.yy",},},
{"id":{"name":"snd_royal","path":"sounds/snd_royal/snd_royal.yy",},},
{"id":{"name":"snd_stc","path":"sounds/snd_stc/snd_stc.yy",},},
{"id":{"name":"snd_vode","path":"sounds/snd_vode/snd_vode.yy",},},
{"id":{"name":"bg_space","path":"sprites/bg_space/bg_space.yy",},},
{"id":{"name":"dsgsdgsdg","path":"sprites/dsgsdgsdg/dsgsdgsdg.yy",},},
{"id":{"name":"mk7_chest_variants","path":"sprites/mk7_chest_variants/mk7_chest_variants.yy",},},