-
Notifications
You must be signed in to change notification settings - Fork 29
/
ChapterMaster.yyp
1262 lines (1262 loc) · 124 KB
/
ChapterMaster.yyp
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
{
"resourceType": "GMProject",
"resourceVersion": "1.7",
"name": "ChapterMaster",
"AudioGroups": [
{"resourceType":"GMAudioGroup","resourceVersion":"1.3","name":"audiogroup_default","targets":-1,},
],
"configs": {
"children": [],
"name": "Default",
},
"defaultScriptType": 1,
"Folders": [
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Animation Curves","folderPath":"folders/Animation Curves.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Extensions","folderPath":"folders/Extensions.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Fonts","folderPath":"folders/Fonts.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"New Fonts","folderPath":"folders/Fonts/New Fonts.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Notes","folderPath":"folders/Notes.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Objects","folderPath":"folders/Objects.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Combat_Fleet","folderPath":"folders/Objects/Combat_Fleet.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"New Combat","folderPath":"folders/Objects/New Combat.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"New Ground","folderPath":"folders/Objects/New Ground.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"New UI","folderPath":"folders/Objects/New UI.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Temp","folderPath":"folders/Objects/Temp.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Paths","folderPath":"folders/Paths.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Rooms","folderPath":"folders/Rooms.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Scripts","folderPath":"folders/Scripts.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Combat","folderPath":"folders/Scripts/Combat.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"compatibility","folderPath":"folders/Scripts/compatibility.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"action","folderPath":"folders/Scripts/compatibility/action.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"d3d","folderPath":"folders/Scripts/compatibility/d3d.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"draw","folderPath":"folders/Scripts/compatibility/draw.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"instance","folderPath":"folders/Scripts/compatibility/instance.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"object","folderPath":"folders/Scripts/compatibility/object.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"view","folderPath":"folders/Scripts/compatibility/view.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Diplomacy","folderPath":"folders/Scripts/Diplomacy.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"fleet","folderPath":"folders/Scripts/fleet.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Helpers","folderPath":"folders/Scripts/Helpers.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Draw Shapes","folderPath":"folders/Scripts/Helpers/Draw Shapes.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Files","folderPath":"folders/Scripts/Helpers/Files.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Text","folderPath":"folders/Scripts/Helpers/Text.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Interface Help","folderPath":"folders/Scripts/Interface Help.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Interface","folderPath":"folders/Scripts/Interface.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Names","folderPath":"folders/Scripts/Names.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"save_load","folderPath":"folders/Scripts/save_load.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Sys","folderPath":"folders/Scripts/Sys.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Turn","folderPath":"folders/Scripts/Turn.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"User Interface","folderPath":"folders/Scripts/User Interface.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Components","folderPath":"folders/Scripts/User Interface/Components.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Diplomacy","folderPath":"folders/Scripts/User Interface/Diplomacy.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Common","folderPath":"folders/Scripts/User Interface/Diplomacy/Common.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Render Components","folderPath":"folders/Scripts/User Interface/Render Components.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Sequences","folderPath":"folders/Sequences.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Shaders","folderPath":"folders/Shaders.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Sounds","folderPath":"folders/Sounds.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Themes","folderPath":"folders/Sounds/Themes.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Sprites","folderPath":"folders/Sprites.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Creation","folderPath":"folders/Sprites/Creation.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Groundside","folderPath":"folders/Sprites/Groundside.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Marine Viewer","folderPath":"folders/Sprites/Marine Viewer.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"arms_hands","folderPath":"folders/Sprites/Marine Viewer/arms_hands.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"bionics","folderPath":"folders/Sprites/Marine Viewer/bionics.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"body_types","folderPath":"folders/Sprites/Marine Viewer/body_types.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"specialist","folderPath":"folders/Sprites/Marine Viewer/body_types/specialist.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"dark_angels_specials","folderPath":"folders/Sprites/Marine Viewer/body_types/specialist/dark_angels_specials.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"decorations","folderPath":"folders/Sprites/Marine Viewer/decorations.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"deprecated","folderPath":"folders/Sprites/Marine Viewer/deprecated.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"dreadnought","folderPath":"folders/Sprites/Marine Viewer/dreadnought.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"gear","folderPath":"folders/Sprites/Marine Viewer/gear.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"standards","folderPath":"folders/Sprites/Marine Viewer/gear/standards.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"helms","folderPath":"folders/Sprites/Marine Viewer/helms.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"dark_angels","folderPath":"folders/Sprites/Marine Viewer/helms/dark_angels.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"packs","folderPath":"folders/Sprites/Marine Viewer/packs.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"weapons_terminator","folderPath":"folders/Sprites/Marine Viewer/weapons_terminator.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"weapons","folderPath":"folders/Sprites/Marine Viewer/weapons.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"New Ground","folderPath":"folders/Sprites/New Ground.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"New UI","folderPath":"folders/Sprites/New UI.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Ally Splash","folderPath":"folders/Sprites/New UI/Ally Splash.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"buttons","folderPath":"folders/Sprites/New UI/buttons.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Icons","folderPath":"folders/Sprites/New UI/Icons.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Menu and Load","folderPath":"folders/Sprites/New UI/Menu and Load.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Purge","folderPath":"folders/Sprites/New UI/Purge.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"tooltips","folderPath":"folders/Sprites/New UI/tooltips.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Primary","folderPath":"folders/Sprites/Primary.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Ships","folderPath":"folders/Sprites/Ships.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Chaos","folderPath":"folders/Sprites/Ships/Chaos.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Imperium","folderPath":"folders/Sprites/Ships/Imperium.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Xeno","folderPath":"folders/Sprites/Ships/Xeno.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"textures","folderPath":"folders/Sprites/textures.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"tilesets","folderPath":"folders/Sprites/tilesets.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"UI","folderPath":"folders/Sprites/UI.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Tile Sets","folderPath":"folders/Tile Sets.yy",},
{"resourceType":"GMFolder","resourceVersion":"1.0","name":"Timelines","folderPath":"folders/Timelines.yy",},
],
"IncludedFiles": [
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"custom_icons_help.txt","CopyToMask":153157610357391598,"filePath":"datafiles/icons",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"creation_icons.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"existing1.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"existing2.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"existing3.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"existing4.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"existing5.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"existing7.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"existing8.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"instructions.txt","CopyToMask":9223372036854775807,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"lamenters_alternate.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"main1.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"main2.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"main3.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"main4.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"main5.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"main6.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"main7.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"main8.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"main9.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"other1.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"other3.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"other5.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"other6.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"other7.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"slate1.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"slate2.png","CopyToMask":-1,"filePath":"datafiles/images/creation",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"advisor1.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"advisor11.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"advisor12.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"advisor2.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"advisor3.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"advisor4.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"advisor5.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"advisor6.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"advisor7.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"daemon1.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"daemon2.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"daemon3.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"daemon4.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"daemon5.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"daemon6.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"daemon7.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"daemon8.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"daemon9.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"diplomacy_icons.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"diplomacy10.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"diplomacy11.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"diplomacy12.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"diplomacy2.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"diplomacy3.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"diplomacy4.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"diplomacy5.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"diplomacy6.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"diplomacy7.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"diplomacy8.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"instructions.txt","CopyToMask":9223372036854775807,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"symbol1.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"symbol2.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"symbol3.png","CopyToMask":-1,"filePath":"datafiles/images/diplomacy",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"instructions.txt","CopyToMask":9223372036854775807,"filePath":"datafiles/images",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"instructions.txt","CopyToMask":9223372036854775807,"filePath":"datafiles/images/loading",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"loading1.png","CopyToMask":-1,"filePath":"datafiles/images/loading",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"loading2.png","CopyToMask":-1,"filePath":"datafiles/images/loading",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"loading3.png","CopyToMask":-1,"filePath":"datafiles/images/loading",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"loading4.png","CopyToMask":-1,"filePath":"datafiles/images/loading",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"loading5.png","CopyToMask":-1,"filePath":"datafiles/images/loading",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"instructions.txt","CopyToMask":9223372036854775807,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup1.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup10.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup11.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup12.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup13.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup14.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup15.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup16.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup17.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup18.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup19.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup2.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup20.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup21.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup22.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup23.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup24.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup25.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup26.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup27.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup28.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup29.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup3.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup30.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup31.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup32.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup33.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup34.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup35.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup36.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup37.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup38.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup39.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup4.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup40.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup41.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup42.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup43.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup44.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup45.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup46.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup47.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup48.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup49.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup5.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup50.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup51.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup52.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup53.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup54.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup55.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup56.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup57.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup58.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup59.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup6.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup60.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup61.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup62.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup63.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup64.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup7.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup8.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"popup9.png","CopyToMask":-1,"filePath":"datafiles/images/popup",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"title_splash.png","CopyToMask":-1,"filePath":"datafiles/images",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"attacked1.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"attacked2.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"commander1.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"commander2.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"commander3.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"defeat1.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"defeat2.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"defeat3.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"defeat4.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"event1.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"event2.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"event3.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"event4.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force1.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force10.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force11.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force12.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force13.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force14.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force16.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force2.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force3.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force31.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force4.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force5.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force6.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force7.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force8.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"force9.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"formation1.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"formation10.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"formation11.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"formation12.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"formation13.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"formation14.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"formation15.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"formation2.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"formation3.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"formation4.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"formation5.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"formation6.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"formation7.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"formation8.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"formation9.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"ingame_menu.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"instructions.txt","CopyToMask":9223372036854775807,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet1.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet10.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet11.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet12.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet13.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet14.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet15.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet16.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet17.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet2.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet3.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet4.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet5.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet6.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet7.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet8.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"planet9.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"postbattle1.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"postbattle2.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"postbattle3.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"postspace1.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"postspace2.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"postspace3.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"purge1.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"purge2.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"purge3.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"purge4.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"purge5.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"purge6.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"purge7.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"purge8.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"raid1.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"resources.png","CopyToMask":-1,"filePath":"datafiles/images/ui",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"help.ini","CopyToMask":9223372036854775807,"filePath":"datafiles/main",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"chaos.json","CopyToMask":-1,"filePath":"datafiles/main/names",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"eldar.json","CopyToMask":-1,"filePath":"datafiles/main/names",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"genestealercult.json","CopyToMask":-1,"filePath":"datafiles/main/names",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"hulk.json","CopyToMask":-1,"filePath":"datafiles/main/names",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"imperial_ship.json","CopyToMask":-1,"filePath":"datafiles/main/names",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"imperial.json","CopyToMask":-1,"filePath":"datafiles/main/names",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"ork_ship.json","CopyToMask":-1,"filePath":"datafiles/main/names",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"ork.json","CopyToMask":-1,"filePath":"datafiles/main/names",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"sector.json","CopyToMask":-1,"filePath":"datafiles/main/names",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"space_marine.json","CopyToMask":-1,"filePath":"datafiles/main/names",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"star.json","CopyToMask":-1,"filePath":"datafiles/main/names",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"tau.json","CopyToMask":-1,"filePath":"datafiles/main/names",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"readme.md","CopyToMask":-1,"filePath":"datafiles/main",},
{"resourceType":"GMIncludedFile","resourceVersion":"1.0","name":"version.json","CopyToMask":-1,"filePath":"datafiles/main",},
],
"isEcma": false,
"LibraryEmitters": [],
"MetaData": {
"IDEVersion": "2023.11.1.129",
},
"resources": [
{"id":{"name":"spr_credits_bg","path":"sprites/spr_credits_bg/spr_credits_bg.yy",},},
{"id":{"name":"spr_settings_bg","path":"sprites/spr_settings_bg/spr_settings_bg.yy",},},
{"id":{"name":"spr_blog","path":"sprites/spr_blog/spr_blog.yy",},},
{"id":{"name":"spr_da_chaplain","path":"sprites/spr_da_chaplain/spr_da_chaplain.yy",},},
{"id":{"name":"spr_icon","path":"sprites/spr_icon/spr_icon.yy",},},
{"id":{"name":"spr_icon_chapters","path":"sprites/spr_icon_chapters/spr_icon_chapters.yy",},},
{"id":{"name":"spr_creation_icon","path":"sprites/spr_creation_icon/spr_creation_icon.yy",},},
{"id":{"name":"spr_weapon_boltstorm_gauntlet","path":"sprites/spr_weapon_boltstorm_gauntlet/spr_weapon_boltstorm_gauntlet.yy",},},
{"id":{"name":"spr_cm_specialty","path":"sprites/spr_cm_specialty/spr_cm_specialty.yy",},},
{"id":{"name":"spr_planet_splash","path":"sprites/spr_planet_splash/spr_planet_splash.yy",},},
{"id":{"name":"spr_creation_arrow","path":"sprites/spr_creation_arrow/spr_creation_arrow.yy",},},
{"id":{"name":"spr_creation_check","path":"sprites/spr_creation_check/spr_creation_check.yy",},},
{"id":{"name":"spr_scout_heads","path":"sprites/spr_scout_heads/spr_scout_heads.yy",},},
{"id":{"name":"spr_creation_founding","path":"sprites/spr_creation_founding/spr_creation_founding.yy",},},
{"id":{"name":"spr_creation_existing","path":"sprites/spr_creation_existing/spr_creation_existing.yy",},},
{"id":{"name":"scr_draw_armentarium","path":"scripts/scr_draw_armentarium/scr_draw_armentarium.yy",},},
{"id":{"name":"spr_creation_other","path":"sprites/spr_creation_other/spr_creation_other.yy",},},
{"id":{"name":"spr_generic_sgt_mk4","path":"sprites/spr_generic_sgt_mk4/spr_generic_sgt_mk4.yy",},},
{"id":{"name":"spr_creation_nosplash","path":"sprites/spr_creation_nosplash/spr_creation_nosplash.yy",},},
{"id":{"name":"spr_rg_mk6_helm","path":"sprites/spr_rg_mk6_helm/spr_rg_mk6_helm.yy",},},
{"id":{"name":"spr_creation_slate","path":"sprites/spr_creation_slate/spr_creation_slate.yy",},},
{"id":{"name":"spr_gear_halo","path":"sprites/spr_gear_halo/spr_gear_halo.yy",},},
{"id":{"name":"spr_gear_hood1","path":"sprites/spr_gear_hood1/spr_gear_hood1.yy",},},
{"id":{"name":"spr_gear_hood3","path":"sprites/spr_gear_hood3/spr_gear_hood3.yy",},},
{"id":{"name":"spr_gear_hood2","path":"sprites/spr_gear_hood2/spr_gear_hood2.yy",},},
{"id":{"name":"spr_gear_chap","path":"sprites/spr_gear_chap/spr_gear_chap.yy",},},
{"id":{"name":"spr_marine_cloth_hood","path":"sprites/spr_marine_cloth_hood/spr_marine_cloth_hood.yy",},},
{"id":{"name":"spr_gear_apoth","path":"sprites/spr_gear_apoth/spr_gear_apoth.yy",},},
{"id":{"name":"spr_gear_techb","path":"sprites/spr_gear_techb/spr_gear_techb.yy",},},
{"id":{"name":"spr_strength_icon","path":"sprites/spr_strength_icon/spr_strength_icon.yy",},},
{"id":{"name":"spr_marine_base","path":"sprites/spr_marine_base/spr_marine_base.yy",},},
{"id":{"name":"spr_clothing_colors","path":"sprites/spr_clothing_colors/spr_clothing_colors.yy",},},
{"id":{"name":"spr_facial_colors","path":"sprites/spr_facial_colors/spr_facial_colors.yy",},},
{"id":{"name":"scr_librarium","path":"scripts/scr_librarium/scr_librarium.yy",},},
{"id":{"name":"spr_chaplain_skull_helm","path":"sprites/spr_chaplain_skull_helm/spr_chaplain_skull_helm.yy",},},
{"id":{"name":"spr_aquila_colors","path":"sprites/spr_aquila_colors/spr_aquila_colors.yy",},},
{"id":{"name":"spr_artificer_colors","path":"sprites/spr_artificer_colors/spr_artificer_colors.yy",},},
{"id":{"name":"scr_fleet_advisor","path":"scripts/scr_fleet_advisor/scr_fleet_advisor.yy",},},
{"id":{"name":"spr_beakie_colors","path":"sprites/spr_beakie_colors/spr_beakie_colors.yy",},},
{"id":{"name":"spr_dread_colors","path":"sprites/spr_dread_colors/spr_dread_colors.yy",},},
{"id":{"name":"scr_draw_unit_image","path":"scripts/scr_draw_unit_image/scr_draw_unit_image.yy",},},
{"id":{"name":"spr_errant_colors","path":"sprites/spr_errant_colors/spr_errant_colors.yy",},},
{"id":{"name":"spr_da_mk7_helm","path":"sprites/spr_da_mk7_helm/spr_da_mk7_helm.yy",},},
{"id":{"name":"spr_iron_colors","path":"sprites/spr_iron_colors/spr_iron_colors.yy",},},
{"id":{"name":"Ship_shader","path":"shaders/Ship_shader/Ship_shader.yy",},},
{"id":{"name":"spr_iron2_colors","path":"sprites/spr_iron2_colors/spr_iron2_colors.yy",},},
{"id":{"name":"spr_maximus_colors","path":"sprites/spr_maximus_colors/spr_maximus_colors.yy",},},
{"id":{"name":"spr_noarmour_colors","path":"sprites/spr_noarmour_colors/spr_noarmour_colors.yy",},},
{"id":{"name":"spr_da_mk8","path":"sprites/spr_da_mk8/spr_da_mk8.yy",},},
{"id":{"name":"spr_scout_colors","path":"sprites/spr_scout_colors/spr_scout_colors.yy",},},
{"id":{"name":"spr_tartaros_colors","path":"sprites/spr_tartaros_colors/spr_tartaros_colors.yy",},},
{"id":{"name":"spr_generic_sgt_mk5","path":"sprites/spr_generic_sgt_mk5/spr_generic_sgt_mk5.yy",},},
{"id":{"name":"spr_bionics_leg_3","path":"sprites/spr_bionics_leg_3/spr_bionics_leg_3.yy",},},
{"id":{"name":"spr_tartaros2_colors","path":"sprites/spr_tartaros2_colors/spr_tartaros2_colors.yy",},},
{"id":{"name":"spr_tartaros_wep_fix","path":"sprites/spr_tartaros_wep_fix/spr_tartaros_wep_fix.yy",},},
{"id":{"name":"spr_terminator_colors","path":"sprites/spr_terminator_colors/spr_terminator_colors.yy",},},
{"id":{"name":"spr_terminator2_colors","path":"sprites/spr_terminator2_colors/spr_terminator2_colors.yy",},},
{"id":{"name":"spr_heresy_colors","path":"sprites/spr_heresy_colors/spr_heresy_colors.yy",},},
{"id":{"name":"spr_termi_wep_fix","path":"sprites/spr_termi_wep_fix/spr_termi_wep_fix.yy",},},
{"id":{"name":"spr_honor_helm","path":"sprites/spr_honor_helm/spr_honor_helm.yy",},},
{"id":{"name":"spr_pack_brazier","path":"sprites/spr_pack_brazier/spr_pack_brazier.yy",},},
{"id":{"name":"spr_pack_arm","path":"sprites/spr_pack_arm/spr_pack_arm.yy",},},
{"id":{"name":"spr_pack_arms","path":"sprites/spr_pack_arms/spr_pack_arms.yy",},},
{"id":{"name":"spr_pack_jump","path":"sprites/spr_pack_jump/spr_pack_jump.yy",},},
{"id":{"name":"scr_forge_world_functions","path":"scripts/scr_forge_world_functions/scr_forge_world_functions.yy",},},
{"id":{"name":"spr_weapon_colors","path":"sprites/spr_weapon_colors/spr_weapon_colors.yy",},},
{"id":{"name":"spr_weapon_standard","path":"sprites/spr_weapon_standard/spr_weapon_standard.yy",},},
{"id":{"name":"spr_weapon_blank","path":"sprites/spr_weapon_blank/spr_weapon_blank.yy",},},
{"id":{"name":"scr_draw_rectangle","path":"scripts/scr_draw_rectangle/scr_draw_rectangle.yy",},},
{"id":{"name":"scr_buttons","path":"scripts/scr_buttons/scr_buttons.yy",},},
{"id":{"name":"spr_purity_s","path":"sprites/spr_purity_s/spr_purity_s.yy",},},
{"id":{"name":"spr_weapon_boltpis","path":"sprites/spr_weapon_boltpis/spr_weapon_boltpis.yy",},},
{"id":{"name":"spr_weapon_bolter","path":"sprites/spr_weapon_bolter/spr_weapon_bolter.yy",},},
{"id":{"name":"spr_weapon_sbolter","path":"sprites/spr_weapon_sbolter/spr_weapon_sbolter.yy",},},
{"id":{"name":"spr_weapon_comflamer","path":"sprites/spr_weapon_comflamer/spr_weapon_comflamer.yy",},},
{"id":{"name":"spr_weapon_flamer","path":"sprites/spr_weapon_flamer/spr_weapon_flamer.yy",},},
{"id":{"name":"spr_weapon_missile","path":"sprites/spr_weapon_missile/spr_weapon_missile.yy",},},
{"id":{"name":"spr_weapon_melta","path":"sprites/spr_weapon_melta/spr_weapon_melta.yy",},},
{"id":{"name":"scr_array_functions","path":"scripts/scr_array_functions/scr_array_functions.yy",},},
{"id":{"name":"spr_weapon_hbolt","path":"sprites/spr_weapon_hbolt/spr_weapon_hbolt.yy",},},
{"id":{"name":"spr_weapon_mmelta","path":"sprites/spr_weapon_mmelta/spr_weapon_mmelta.yy",},},
{"id":{"name":"spr_weapon_assca","path":"sprites/spr_weapon_assca/spr_weapon_assca.yy",},},
{"id":{"name":"spr_weapon_lasca","path":"sprites/spr_weapon_lasca/spr_weapon_lasca.yy",},},
{"id":{"name":"spr_generic_sgt_mk7","path":"sprites/spr_generic_sgt_mk7/spr_generic_sgt_mk7.yy",},},
{"id":{"name":"spr_weapon_plasg","path":"sprites/spr_weapon_plasg/spr_weapon_plasg.yy",},},
{"id":{"name":"spr_weapon_plasp","path":"sprites/spr_weapon_plasp/spr_weapon_plasp.yy",},},
{"id":{"name":"spr_sanguin_guard","path":"sprites/spr_sanguin_guard/spr_sanguin_guard.yy",},},
{"id":{"name":"scr_get_diag_integer","path":"scripts/scr_get_diag_integer/scr_get_diag_integer.yy",},},
{"id":{"name":"obj_duel","path":"objects/obj_duel/obj_duel.yy",},},
{"id":{"name":"spr_generic_sgt_mk8","path":"sprites/spr_generic_sgt_mk8/spr_generic_sgt_mk8.yy",},},
{"id":{"name":"spr_da_mk5_helm","path":"sprites/spr_da_mk5_helm/spr_da_mk5_helm.yy",},},
{"id":{"name":"spr_weapon_knife","path":"sprites/spr_weapon_knife/spr_weapon_knife.yy",},},
{"id":{"name":"spr_weapon_chsword","path":"sprites/spr_weapon_chsword/spr_weapon_chsword.yy",},},
{"id":{"name":"scr_imperial_navy_functions","path":"scripts/scr_imperial_navy_functions/scr_imperial_navy_functions.yy",},},
{"id":{"name":"scr_save_controller","path":"scripts/scr_save_controller/scr_save_controller.yy",},},
{"id":{"name":"spr_weapon_sniper","path":"sprites/spr_weapon_sniper/spr_weapon_sniper.yy",},},
{"id":{"name":"spr_weapon_thhammer","path":"sprites/spr_weapon_thhammer/spr_weapon_thhammer.yy",},},
{"id":{"name":"spr_weapon_evisc","path":"sprites/spr_weapon_evisc/spr_weapon_evisc.yy",},},
{"id":{"name":"spr_weapon_powaxe","path":"sprites/spr_weapon_powaxe/spr_weapon_powaxe.yy",},},
{"id":{"name":"spr_weapon_chaxe","path":"sprites/spr_weapon_chaxe/spr_weapon_chaxe.yy",},},
{"id":{"name":"spr_weapon_powswo","path":"sprites/spr_weapon_powswo/spr_weapon_powswo.yy",},},
{"id":{"name":"spr_weapon_powspear","path":"sprites/spr_weapon_powspear/spr_weapon_powspear.yy",},},
{"id":{"name":"spr_weapon_eldsword","path":"sprites/spr_weapon_eldsword/spr_weapon_eldsword.yy",},},
{"id":{"name":"spr_weapon_powfist","path":"sprites/spr_weapon_powfist/spr_weapon_powfist.yy",},},
{"id":{"name":"spr_weapon_powfist2","path":"sprites/spr_weapon_powfist2/spr_weapon_powfist2.yy",},},
{"id":{"name":"spr_weapon_powfist3","path":"sprites/spr_weapon_powfist3/spr_weapon_powfist3.yy",},},
{"id":{"name":"spr_servo_harness","path":"sprites/spr_servo_harness/spr_servo_harness.yy",},},
{"id":{"name":"spr_weapon_powfist_old","path":"sprites/spr_weapon_powfist_old/spr_weapon_powfist_old.yy",},},
{"id":{"name":"spr_weapon_powmaul","path":"sprites/spr_weapon_powmaul/spr_weapon_powmaul.yy",},},
{"id":{"name":"spr_weapon_lightning1","path":"sprites/spr_weapon_lightning1/spr_weapon_lightning1.yy",},},
{"id":{"name":"spr_weapon_lightning2","path":"sprites/spr_weapon_lightning2/spr_weapon_lightning2.yy",},},
{"id":{"name":"spr_weapon_frcstaff","path":"sprites/spr_weapon_frcstaff/spr_weapon_frcstaff.yy",},},
{"id":{"name":"spr_lib_area_pad","path":"sprites/spr_lib_area_pad/spr_lib_area_pad.yy",},},
{"id":{"name":"scr_star_travel_algorithm","path":"scripts/scr_star_travel_algorithm/scr_star_travel_algorithm.yy",},},
{"id":{"name":"spr_weapon_inferno","path":"sprites/spr_weapon_inferno/spr_weapon_inferno.yy",},},
{"id":{"name":"spr_cloth_tabbard","path":"sprites/spr_cloth_tabbard/spr_cloth_tabbard.yy",},},
{"id":{"name":"spr_weapon_relbla","path":"sprites/spr_weapon_relbla/spr_weapon_relbla.yy",},},
{"id":{"name":"spr_weapon_storm","path":"sprites/spr_weapon_storm/spr_weapon_storm.yy",},},
{"id":{"name":"spr_weapon_stalker","path":"sprites/spr_weapon_stalker/spr_weapon_stalker.yy",},},
{"id":{"name":"spr_techpriest","path":"sprites/spr_techpriest/spr_techpriest.yy",},},
{"id":{"name":"spr_mm_butts_small","path":"sprites/spr_mm_butts_small/spr_mm_butts_small.yy",},},
{"id":{"name":"spr_crusader","path":"sprites/spr_crusader/spr_crusader.yy",},},
{"id":{"name":"spr_sororitas","path":"sprites/spr_sororitas/spr_sororitas.yy",},},
{"id":{"name":"scr_choose_weighted","path":"scripts/scr_choose_weighted/scr_choose_weighted.yy",},},
{"id":{"name":"spr_eldar_hire","path":"sprites/spr_eldar_hire/spr_eldar_hire.yy",},},
{"id":{"name":"spr_save_header","path":"sprites/spr_save_header/spr_save_header.yy",},},
{"id":{"name":"spr_save_headers","path":"sprites/spr_save_headers/spr_save_headers.yy",},},
{"id":{"name":"spr_save_footer","path":"sprites/spr_save_footer/spr_save_footer.yy",},},
{"id":{"name":"spr_da_mk6","path":"sprites/spr_da_mk6/spr_da_mk6.yy",},},
{"id":{"name":"spr_save_data","path":"sprites/spr_save_data/spr_save_data.yy",},},
{"id":{"name":"spr_new_mm","path":"sprites/spr_new_mm/spr_new_mm.yy",},},
{"id":{"name":"spr_scout_arms","path":"sprites/spr_scout_arms/spr_scout_arms.yy",},},
{"id":{"name":"spr_rock_bg","path":"sprites/spr_rock_bg/spr_rock_bg.yy",},},
{"id":{"name":"spr_weapon_grav_gun","path":"sprites/spr_weapon_grav_gun/spr_weapon_grav_gun.yy",},},
{"id":{"name":"spr_ingame_menu","path":"sprites/spr_ingame_menu/spr_ingame_menu.yy",},},
{"id":{"name":"spr_sal_mk5_helm","path":"sprites/spr_sal_mk5_helm/spr_sal_mk5_helm.yy",},},
{"id":{"name":"spr_loadbar","path":"sprites/spr_loadbar/spr_loadbar.yy",},},
{"id":{"name":"scr_mission_functions","path":"scripts/scr_mission_functions/scr_mission_functions.yy",},},
{"id":{"name":"spr_loadbar_empty","path":"sprites/spr_loadbar_empty/spr_loadbar_empty.yy",},},
{"id":{"name":"spr_loadbar_cover","path":"sprites/spr_loadbar_cover/spr_loadbar_cover.yy",},},
{"id":{"name":"scr_ground_ai_helpers","path":"scripts/scr_ground_ai_helpers/scr_ground_ai_helpers.yy",},},
{"id":{"name":"spr_load_text","path":"sprites/spr_load_text/spr_load_text.yy",},},
{"id":{"name":"scr_ork_planet_functions","path":"scripts/scr_ork_planet_functions/scr_ork_planet_functions.yy",},},
{"id":{"name":"spr_load_splash","path":"sprites/spr_load_splash/spr_load_splash.yy",},},
{"id":{"name":"spr_formation_bars","path":"sprites/spr_formation_bars/spr_formation_bars.yy",},},
{"id":{"name":"scr_load_controller","path":"scripts/scr_load_controller/scr_load_controller.yy",},},
{"id":{"name":"spr_formation_arrow","path":"sprites/spr_formation_arrow/spr_formation_arrow.yy",},},
{"id":{"name":"scr_player_fleet_functions","path":"scripts/scr_player_fleet_functions/scr_player_fleet_functions.yy",},},
{"id":{"name":"spr_formation_splash","path":"sprites/spr_formation_splash/spr_formation_splash.yy",},},
{"id":{"name":"spr_purge_panel","path":"sprites/spr_purge_panel/spr_purge_panel.yy",},},
{"id":{"name":"spr_purge_buttons","path":"sprites/spr_purge_buttons/spr_purge_buttons.yy",},},
{"id":{"name":"spr_mm_butts","path":"sprites/spr_mm_butts/spr_mm_butts.yy",},},
{"id":{"name":"scr_colour_modifiers","path":"scripts/scr_colour_modifiers/scr_colour_modifiers.yy",},},
{"id":{"name":"spr_mm_glowold","path":"sprites/spr_mm_glowold/spr_mm_glowold.yy",},},
{"id":{"name":"spr_new_ui","path":"sprites/spr_new_ui/spr_new_ui.yy",},},
{"id":{"name":"spr_new_resource","path":"sprites/spr_new_resource/spr_new_resource.yy",},},
{"id":{"name":"spr_warp_level_icon","path":"sprites/spr_warp_level_icon/spr_warp_level_icon.yy",},},
{"id":{"name":"spr_new_banner","path":"sprites/spr_new_banner/spr_new_banner.yy",},},
{"id":{"name":"spr_new_ui_cover","path":"sprites/spr_new_ui_cover/spr_new_ui_cover.yy",},},
{"id":{"name":"scr_unit_spawn_functions","path":"scripts/scr_unit_spawn_functions/scr_unit_spawn_functions.yy",},},
{"id":{"name":"spr_ui_but_1","path":"sprites/spr_ui_but_1/spr_ui_but_1.yy",},},
{"id":{"name":"spr_ui_but_2","path":"sprites/spr_ui_but_2/spr_ui_but_2.yy",},},
{"id":{"name":"spr_ui_but_3","path":"sprites/spr_ui_but_3/spr_ui_but_3.yy",},},
{"id":{"name":"spr_ui_but_4","path":"sprites/spr_ui_but_4/spr_ui_but_4.yy",},},
{"id":{"name":"spr_ui_hov_1","path":"sprites/spr_ui_hov_1/spr_ui_hov_1.yy",},},
{"id":{"name":"spr_ui_hov_2","path":"sprites/spr_ui_hov_2/spr_ui_hov_2.yy",},},
{"id":{"name":"spr_ui_hov_3","path":"sprites/spr_ui_hov_3/spr_ui_hov_3.yy",},},
{"id":{"name":"spr_pa_hands","path":"sprites/spr_pa_hands/spr_pa_hands.yy",},},
{"id":{"name":"scr_image","path":"scripts/scr_image/scr_image.yy",},},
{"id":{"name":"spr_ui_hov_4","path":"sprites/spr_ui_hov_4/spr_ui_hov_4.yy",},},
{"id":{"name":"spr_settings_button","path":"sprites/spr_settings_button/spr_settings_button.yy",},},
{"id":{"name":"spr_help_panel","path":"sprites/spr_help_panel/spr_help_panel.yy",},},
{"id":{"name":"UIRenderComponents","path":"scripts/UIRenderComponents/UIRenderComponents.yy",},},
{"id":{"name":"spr_dread_lascannon","path":"sprites/spr_dread_lascannon/spr_dread_lascannon.yy",},},
{"id":{"name":"spr_help_exit","path":"sprites/spr_help_exit/spr_help_exit.yy",},},
{"id":{"name":"spr_popup_dialogue","path":"sprites/spr_popup_dialogue/spr_popup_dialogue.yy",},},
{"id":{"name":"spr_popup_manage","path":"sprites/spr_popup_manage/spr_popup_manage.yy",},},
{"id":{"name":"spr_popup_large","path":"sprites/spr_popup_large/spr_popup_large.yy",},},
{"id":{"name":"scr_squads","path":"scripts/scr_squads/scr_squads.yy",},},
{"id":{"name":"JsonFileListLoader","path":"scripts/JsonFileListLoader/JsonFileListLoader.yy",},},
{"id":{"name":"spr_popup_medium","path":"sprites/spr_popup_medium/spr_popup_medium.yy",},},
{"id":{"name":"spr_popup_small","path":"sprites/spr_popup_small/spr_popup_small.yy",},},
{"id":{"name":"spr_popup_event","path":"sprites/spr_popup_event/spr_popup_event.yy",},},
{"id":{"name":"spr_pack_devastator","path":"sprites/spr_pack_devastator/spr_pack_devastator.yy",},},
{"id":{"name":"spr_weapon_chainfist_small","path":"sprites/spr_weapon_chainfist_small/spr_weapon_chainfist_small.yy",},},
{"id":{"name":"spr_popup_event_avatar","path":"sprites/spr_popup_event_avatar/spr_popup_event_avatar.yy",},},
{"id":{"name":"spr_scout_colors2","path":"sprites/spr_scout_colors2/spr_scout_colors2.yy",},},
{"id":{"name":"obj_timer","path":"objects/obj_timer/obj_timer.yy",},},
{"id":{"name":"spr_popup_select","path":"sprites/spr_popup_select/spr_popup_select.yy",},},
{"id":{"name":"spr_ih_mk7_helm","path":"sprites/spr_ih_mk7_helm/spr_ih_mk7_helm.yy",},},
{"id":{"name":"spr_company_title","path":"sprites/spr_company_title/spr_company_title.yy",},},
{"id":{"name":"spr_master_title","path":"sprites/spr_master_title/spr_master_title.yy",},},
{"id":{"name":"spr_loc_icon","path":"sprites/spr_loc_icon/spr_loc_icon.yy",},},
{"id":{"name":"spr_diplo_symbols","path":"sprites/spr_diplo_symbols/spr_diplo_symbols.yy",},},
{"id":{"name":"spr_defeat","path":"sprites/spr_defeat/spr_defeat.yy",},},
{"id":{"name":"spr_rectangle","path":"sprites/spr_rectangle/spr_rectangle.yy",},},
{"id":{"name":"sprite245","path":"sprites/sprite245/sprite245.yy",},},
{"id":{"name":"spr_cursor","path":"sprites/spr_cursor/spr_cursor.yy",},},
{"id":{"name":"spr_arrow","path":"sprites/spr_arrow/spr_arrow.yy",},},
{"id":{"name":"spr_build_tiny","path":"sprites/spr_build_tiny/spr_build_tiny.yy",},},
{"id":{"name":"spr_build_tiny2","path":"sprites/spr_build_tiny2/spr_build_tiny2.yy",},},
{"id":{"name":"spr_artifact_button","path":"sprites/spr_artifact_button/spr_artifact_button.yy",},},
{"id":{"name":"dsgsdgsdg","path":"sprites/dsgsdgsdg/dsgsdgsdg.yy",},},
{"id":{"name":"spr_loading","path":"sprites/spr_loading/spr_loading.yy",},},
{"id":{"name":"spr_loading2","path":"sprites/spr_loading2/spr_loading2.yy",},},
{"id":{"name":"spr_penitent_ui","path":"sprites/spr_penitent_ui/spr_penitent_ui.yy",},},
{"id":{"name":"sprite230","path":"sprites/sprite230/sprite230.yy",},},
{"id":{"name":"spr_fast_forward","path":"sprites/spr_fast_forward/spr_fast_forward.yy",},},
{"id":{"name":"spr_psy_hood","path":"sprites/spr_psy_hood/spr_psy_hood.yy",},},
{"id":{"name":"spr_view_small","path":"sprites/spr_view_small/spr_view_small.yy",},},
{"id":{"name":"spr_inspect_small","path":"sprites/spr_inspect_small/spr_inspect_small.yy",},},
{"id":{"name":"spr_cancel_small","path":"sprites/spr_cancel_small/spr_cancel_small.yy",},},
{"id":{"name":"spr_requisition","path":"sprites/spr_requisition/spr_requisition.yy",},},
{"id":{"name":"spr_icon_change","path":"sprites/spr_icon_change/spr_icon_change.yy",},},
{"id":{"name":"spr_bar","path":"sprites/spr_bar/spr_bar.yy",},},
{"id":{"name":"spr_disposition","path":"sprites/spr_disposition/spr_disposition.yy",},},
{"id":{"name":"spr_laurel","path":"sprites/spr_laurel/spr_laurel.yy",},},
{"id":{"name":"spr_disposition_small","path":"sprites/spr_disposition_small/spr_disposition_small.yy",},},
{"id":{"name":"spr_planets","path":"sprites/spr_planets/spr_planets.yy",},},
{"id":{"name":"sprite134","path":"sprites/sprite134/sprite134.yy",},},
{"id":{"name":"spr_star_screen","path":"sprites/spr_star_screen/spr_star_screen.yy",},},
{"id":{"name":"spr_planet_screen","path":"sprites/spr_planet_screen/spr_planet_screen.yy",},},
{"id":{"name":"spr_red_button","path":"sprites/spr_red_button/spr_red_button.yy",},},
{"id":{"name":"spr_popup","path":"sprites/spr_popup/spr_popup.yy",},},
{"id":{"name":"spr_attacked","path":"sprites/spr_attacked/spr_attacked.yy",},},
{"id":{"name":"scr_marine_struct","path":"scripts/scr_marine_struct/scr_marine_struct.yy",},},
{"id":{"name":"spr_raid","path":"sprites/spr_raid/spr_raid.yy",},},
{"id":{"name":"spr_purge_1","path":"sprites/spr_purge_1/spr_purge_1.yy",},},
{"id":{"name":"spr_marine_robes","path":"sprites/spr_marine_robes/spr_marine_robes.yy",},},
{"id":{"name":"spr_purge_2","path":"sprites/spr_purge_2/spr_purge_2.yy",},},
{"id":{"name":"spr_force_icon","path":"sprites/spr_force_icon/spr_force_icon.yy",},},
{"id":{"name":"spr_advisors","path":"sprites/spr_advisors/spr_advisors.yy",},},
{"id":{"name":"spr_diplomacy","path":"sprites/spr_diplomacy/spr_diplomacy.yy",},},
{"id":{"name":"spr_maximus_colors2","path":"sprites/spr_maximus_colors2/spr_maximus_colors2.yy",},},
{"id":{"name":"spr_diplomacy_dae","path":"sprites/spr_diplomacy_dae/spr_diplomacy_dae.yy",},},
{"id":{"name":"sprite267","path":"sprites/sprite267/sprite267.yy",},},
{"id":{"name":"spr_master_splash","path":"sprites/spr_master_splash/spr_master_splash.yy",},},
{"id":{"name":"spr_saveload","path":"sprites/spr_saveload/spr_saveload.yy",},},
{"id":{"name":"spr_sw_mk5_helm","path":"sprites/spr_sw_mk5_helm/spr_sw_mk5_helm.yy",},},
{"id":{"name":"spr_diplomacy_small","path":"sprites/spr_diplomacy_small/spr_diplomacy_small.yy",},},
{"id":{"name":"spr_diplomacy_med","path":"sprites/spr_diplomacy_med/spr_diplomacy_med.yy",},},
{"id":{"name":"spr_diplomacy_defeated","path":"sprites/spr_diplomacy_defeated/spr_diplomacy_defeated.yy",},},
{"id":{"name":"sprite266","path":"sprites/sprite266/sprite266.yy",},},
{"id":{"name":"spr_ship_song","path":"sprites/spr_ship_song/spr_ship_song.yy",},},
{"id":{"name":"sprite235","path":"sprites/sprite235/sprite235.yy",},},
{"id":{"name":"spr_bionics_leg_2","path":"sprites/spr_bionics_leg_2/spr_bionics_leg_2.yy",},},
{"id":{"name":"spr_ship_bb","path":"sprites/spr_ship_bb/spr_ship_bb.yy",},},
{"id":{"name":"spr_ship_stri","path":"sprites/spr_ship_stri/spr_ship_stri.yy",},},
{"id":{"name":"spr_ship_th","path":"sprites/spr_ship_th/spr_ship_th.yy",},},
{"id":{"name":"spr_assault_ram","path":"sprites/spr_assault_ram/spr_assault_ram.yy",},},
{"id":{"name":"spr_technology_icon","path":"sprites/spr_technology_icon/spr_technology_icon.yy",},},
{"id":{"name":"scr_garrison","path":"scripts/scr_garrison/scr_garrison.yy",},},
{"id":{"name":"scr_draw_unit_stat_data","path":"scripts/scr_draw_unit_stat_data/scr_draw_unit_stat_data.yy",},},
{"id":{"name":"spr_ship_glad","path":"sprites/spr_ship_glad/spr_ship_glad.yy",},},
{"id":{"name":"spr_ship_hunt","path":"sprites/spr_ship_hunt/spr_ship_hunt.yy",},},
{"id":{"name":"spr_luck_icon","path":"sprites/spr_luck_icon/spr_luck_icon.yy",},},
{"id":{"name":"spr_ship_apoc","path":"sprites/spr_ship_apoc/spr_ship_apoc.yy",},},
{"id":{"name":"spr_ship_nem","path":"sprites/spr_ship_nem/spr_ship_nem.yy",},},
{"id":{"name":"spr_ship_aven","path":"sprites/spr_ship_aven/spr_ship_aven.yy",},},
{"id":{"name":"DiploBasicNodes","path":"scripts/DiploBasicNodes/DiploBasicNodes.yy",},},
{"id":{"name":"spr_ship_black","path":"sprites/spr_ship_black/spr_ship_black.yy",},},
{"id":{"name":"spr_ship_sword","path":"sprites/spr_ship_sword/spr_ship_sword.yy",},},
{"id":{"name":"spr_def_mine","path":"sprites/spr_def_mine/spr_def_mine.yy",},},
{"id":{"name":"spr_def_silo","path":"sprites/spr_def_silo/spr_def_silo.yy",},},
{"id":{"name":"spr_def_platform","path":"sprites/spr_def_platform/spr_def_platform.yy",},},
{"id":{"name":"spr_def_station","path":"sprites/spr_def_station/spr_def_station.yy",},},
{"id":{"name":"spr_def_fortress","path":"sprites/spr_def_fortress/spr_def_fortress.yy",},},
{"id":{"name":"spr_ship_inter","path":"sprites/spr_ship_inter/spr_ship_inter.yy",},},
{"id":{"name":"DiploCommonComponents","path":"scripts/DiploCommonComponents/DiploCommonComponents.yy",},},
{"id":{"name":"spr_ship_craftworld","path":"sprites/spr_ship_craftworld/spr_ship_craftworld.yy",},},
{"id":{"name":"spr_binders_robes","path":"sprites/spr_binders_robes/spr_binders_robes.yy",},},
{"id":{"name":"spr_helm_decorations","path":"sprites/spr_helm_decorations/spr_helm_decorations.yy",},},
{"id":{"name":"spr_ship_ammer","path":"sprites/spr_ship_ammer/spr_ship_ammer.yy",},},
{"id":{"name":"scr_diplomacy_helpers","path":"scripts/scr_diplomacy_helpers/scr_diplomacy_helpers.yy",},},
{"id":{"name":"spr_dread_iron_clad","path":"sprites/spr_dread_iron_clad/spr_dread_iron_clad.yy",},},
{"id":{"name":"scr_has_adv","path":"scripts/scr_has_adv/scr_has_adv.yy",},},
{"id":{"name":"spr_ship_deth","path":"sprites/spr_ship_deth/spr_ship_deth.yy",},},
{"id":{"name":"spr_ship_gorbag","path":"sprites/spr_ship_gorbag/spr_ship_gorbag.yy",},},
{"id":{"name":"spr_ship_kroozer","path":"sprites/spr_ship_kroozer/spr_ship_kroozer.yy",},},
{"id":{"name":"spr_ship_krool","path":"sprites/spr_ship_krool/spr_ship_krool.yy",},},
{"id":{"name":"spr_ship_ravager","path":"sprites/spr_ship_ravager/spr_ship_ravager.yy",},},
{"id":{"name":"spr_ih_mk6_helm","path":"sprites/spr_ih_mk6_helm/spr_ih_mk6_helm.yy",},},
{"id":{"name":"spr_mk5_colors","path":"sprites/spr_mk5_colors/spr_mk5_colors.yy",},},
{"id":{"name":"spr_ship_slam","path":"sprites/spr_ship_slam/spr_ship_slam.yy",},},
{"id":{"name":"spr_ship_hulk","path":"sprites/spr_ship_hulk/spr_ship_hulk.yy",},},
{"id":{"name":"spr_fighta","path":"sprites/spr_fighta/spr_fighta.yy",},},
{"id":{"name":"spr_weapon_hand_flamer","path":"sprites/spr_weapon_hand_flamer/spr_weapon_hand_flamer.yy",},},
{"id":{"name":"spr_ship_void","path":"sprites/spr_ship_void/spr_ship_void.yy",},},
{"id":{"name":"spr_faith_icon","path":"sprites/spr_faith_icon/spr_faith_icon.yy",},},
{"id":{"name":"spr_mk7_colors","path":"sprites/spr_mk7_colors/spr_mk7_colors.yy",},},
{"id":{"name":"spr_mk4_colors","path":"sprites/spr_mk4_colors/spr_mk4_colors.yy",},},
{"id":{"name":"spr_ship_shadow","path":"sprites/spr_ship_shadow/spr_ship_shadow.yy",},},
{"id":{"name":"spr_ws_mk5_helm","path":"sprites/spr_ws_mk5_helm/spr_ws_mk5_helm.yy",},},
{"id":{"name":"spr_ship_aconite","path":"sprites/spr_ship_aconite/spr_ship_aconite.yy",},},
{"id":{"name":"spr_ship_hellebore","path":"sprites/spr_ship_hellebore/spr_ship_hellebore.yy",},},
{"id":{"name":"spr_darkstar","path":"sprites/spr_darkstar/spr_darkstar.yy",},},
{"id":{"name":"sprite221","path":"sprites/sprite221/sprite221.yy",},},
{"id":{"name":"spr_ship_custodian","path":"sprites/spr_ship_custodian/spr_ship_custodian.yy",},},
{"id":{"name":"spr_ship_protector","path":"sprites/spr_ship_protector/spr_ship_protector.yy",},},
{"id":{"name":"spr_ship_emissary","path":"sprites/spr_ship_emissary/spr_ship_emissary.yy",},},
{"id":{"name":"spr_ship_warden","path":"sprites/spr_ship_warden/spr_ship_warden.yy",},},
{"id":{"name":"spr_ballistic_skill_icon","path":"sprites/spr_ballistic_skill_icon/spr_ballistic_skill_icon.yy",},},
{"id":{"name":"scr_tooltip_draw","path":"scripts/scr_tooltip_draw/scr_tooltip_draw.yy",},},
{"id":{"name":"spr_ship_castellan","path":"sprites/spr_ship_castellan/spr_ship_castellan.yy",},},
{"id":{"name":"spr_manta","path":"sprites/spr_manta/spr_manta.yy",},},
{"id":{"name":"spr_ship_leviathan","path":"sprites/spr_ship_leviathan/spr_ship_leviathan.yy",},},
{"id":{"name":"spr_ship_razorfiend","path":"sprites/spr_ship_razorfiend/spr_ship_razorfiend.yy",},},
{"id":{"name":"scr_wait_and_execute","path":"scripts/scr_wait_and_execute/scr_wait_and_execute.yy",},},
{"id":{"name":"spr_ship_stalker","path":"sprites/spr_ship_stalker/spr_ship_stalker.yy",},},
{"id":{"name":"spr_weapon_plasc","path":"sprites/spr_weapon_plasc/spr_weapon_plasc.yy",},},
{"id":{"name":"spr_ba_mk5_helm","path":"sprites/spr_ba_mk5_helm/spr_ba_mk5_helm.yy",},},
{"id":{"name":"spr_ship_prowler","path":"sprites/spr_ship_prowler/spr_ship_prowler.yy",},},
{"id":{"name":"spr_techmarine_core","path":"sprites/spr_techmarine_core/spr_techmarine_core.yy",},},
{"id":{"name":"scr_player_combat_weapon_stacks","path":"scripts/scr_player_combat_weapon_stacks/scr_player_combat_weapon_stacks.yy",},},
{"id":{"name":"spr_bio_fighter","path":"sprites/spr_bio_fighter/spr_bio_fighter.yy",},},
{"id":{"name":"spr_ship_cairn","path":"sprites/spr_ship_cairn/spr_ship_cairn.yy",},},
{"id":{"name":"spr_dread_claw","path":"sprites/spr_dread_claw/spr_dread_claw.yy",},},
{"id":{"name":"spr_ship_reaper","path":"sprites/spr_ship_reaper/spr_ship_reaper.yy",},},
{"id":{"name":"spr_ship_shroud","path":"sprites/spr_ship_shroud/spr_ship_shroud.yy",},},
{"id":{"name":"spr_ship_jackal","path":"sprites/spr_ship_jackal/spr_ship_jackal.yy",},},
{"id":{"name":"spr_ship_dirge","path":"sprites/spr_ship_dirge/spr_ship_dirge.yy",},},
{"id":{"name":"spr_ship_dese","path":"sprites/spr_ship_dese/spr_ship_dese.yy",},},
{"id":{"name":"spr_ship_veng","path":"sprites/spr_ship_veng/spr_ship_veng.yy",},},
{"id":{"name":"spr_ship_daemon","path":"sprites/spr_ship_daemon/spr_ship_daemon.yy",},},
{"id":{"name":"spr_da_backpack","path":"sprites/spr_da_backpack/spr_da_backpack.yy",},},
{"id":{"name":"spr_ship_carnage","path":"sprites/spr_ship_carnage/spr_ship_carnage.yy",},},
{"id":{"name":"spr_ship_icono","path":"sprites/spr_ship_icono/spr_ship_icono.yy",},},
{"id":{"name":"spr_weapon_powspear2","path":"sprites/spr_weapon_powspear2/spr_weapon_powspear2.yy",},},
{"id":{"name":"scr_boarding_actions","path":"scripts/scr_boarding_actions/scr_boarding_actions.yy",},},
{"id":{"name":"sprite160","path":"sprites/sprite160/sprite160.yy",},},
{"id":{"name":"sprite158","path":"sprites/sprite158/sprite158.yy",},},
{"id":{"name":"spr_ship_dreadclaw","path":"sprites/spr_ship_dreadclaw/spr_ship_dreadclaw.yy",},},
{"id":{"name":"sprite156","path":"sprites/sprite156/sprite156.yy",},},
{"id":{"name":"spr_round","path":"sprites/spr_round/spr_round.yy",},},
{"id":{"name":"spr_torpedo","path":"sprites/spr_torpedo/spr_torpedo.yy",},},
{"id":{"name":"spr_torpedo_board","path":"sprites/spr_torpedo_board/spr_torpedo_board.yy",},},
{"id":{"name":"spr_star_pulse","path":"sprites/spr_star_pulse/spr_star_pulse.yy",},},
{"id":{"name":"spr_explosion","path":"sprites/spr_explosion/spr_explosion.yy",},},
{"id":{"name":"spr_explosion_plas","path":"sprites/spr_explosion_plas/spr_explosion_plas.yy",},},
{"id":{"name":"spr_explosion2","path":"sprites/spr_explosion2/spr_explosion2.yy",},},
{"id":{"name":"spr_explosion3","path":"sprites/spr_explosion3/spr_explosion3.yy",},},
{"id":{"name":"spr_battle_block","path":"sprites/spr_battle_block/spr_battle_block.yy",},},
{"id":{"name":"spr_battle_block2","path":"sprites/spr_battle_block2/spr_battle_block2.yy",},},
{"id":{"name":"spr_weapon_storm2","path":"sprites/spr_weapon_storm2/spr_weapon_storm2.yy",},},
{"id":{"name":"spr_rg_mk7_helm","path":"sprites/spr_rg_mk7_helm/spr_rg_mk7_helm.yy",},},
{"id":{"name":"spr_pa_arms","path":"sprites/spr_pa_arms/spr_pa_arms.yy",},},
{"id":{"name":"spr_ws_mk6_helm","path":"sprites/spr_ws_mk6_helm/spr_ws_mk6_helm.yy",},},
{"id":{"name":"spr_postbattle","path":"sprites/spr_postbattle/spr_postbattle.yy",},},
{"id":{"name":"spr_postbattle_space","path":"sprites/spr_postbattle_space/spr_postbattle_space.yy",},},
{"id":{"name":"spr_hero_skull","path":"sprites/spr_hero_skull/spr_hero_skull.yy",},},
{"id":{"name":"spr_hero","path":"sprites/spr_hero/spr_hero.yy",},},
{"id":{"name":"spr_flame","path":"sprites/spr_flame/spr_flame.yy",},},
{"id":{"name":"spr_flame2","path":"sprites/spr_flame2/spr_flame2.yy",},},
{"id":{"name":"spr_tartaros_arms","path":"sprites/spr_tartaros_arms/spr_tartaros_arms.yy",},},
{"id":{"name":"spr_dread_plasma_cannon","path":"sprites/spr_dread_plasma_cannon/spr_dread_plasma_cannon.yy",},},
{"id":{"name":"spr_melta","path":"sprites/spr_melta/spr_melta.yy",},},
{"id":{"name":"spr_carrion_breath","path":"sprites/spr_carrion_breath/spr_carrion_breath.yy",},},
{"id":{"name":"spr_bullet","path":"sprites/spr_bullet/spr_bullet.yy",},},
{"id":{"name":"spr_tech_area_pad","path":"sprites/spr_tech_area_pad/spr_tech_area_pad.yy",},},
{"id":{"name":"spr_bolt","path":"sprites/spr_bolt/spr_bolt.yy",},},
{"id":{"name":"spr_pulse","path":"sprites/spr_pulse/spr_pulse.yy",},},
{"id":{"name":"spr_railgun","path":"sprites/spr_railgun/spr_railgun.yy",},},
{"id":{"name":"spr_ground_las","path":"sprites/spr_ground_las/spr_ground_las.yy",},},
{"id":{"name":"spr_weapon_standard2","path":"sprites/spr_weapon_standard2/spr_weapon_standard2.yy",},},
{"id":{"name":"spr_green_las","path":"sprites/spr_green_las/spr_green_las.yy",},},
{"id":{"name":"spr_ground_conv","path":"sprites/spr_ground_conv/spr_ground_conv.yy",},},
{"id":{"name":"spr_ground_plasma","path":"sprites/spr_ground_plasma/spr_ground_plasma.yy",},},
{"id":{"name":"spr_glob","path":"sprites/spr_glob/spr_glob.yy",},},
{"id":{"name":"spr_cannon","path":"sprites/spr_cannon/spr_cannon.yy",},},
{"id":{"name":"spr_rocket","path":"sprites/spr_rocket/spr_rocket.yy",},},
{"id":{"name":"spr_rocket_ork","path":"sprites/spr_rocket_ork/spr_rocket_ork.yy",},},
{"id":{"name":"spr_rocket_whirl","path":"sprites/spr_rocket_whirl/spr_rocket_whirl.yy",},},
{"id":{"name":"spr_mahreen","path":"sprites/spr_mahreen/spr_mahreen.yy",},},
{"id":{"name":"spr_mahreen_secondary","path":"sprites/spr_mahreen_secondary/spr_mahreen_secondary.yy",},},
{"id":{"name":"spr_mahreen_visor","path":"sprites/spr_mahreen_visor/spr_mahreen_visor.yy",},},
{"id":{"name":"UIComponents","path":"scripts/UIComponents/UIComponents.yy",},},
{"id":{"name":"spr_mahreen_gun","path":"sprites/spr_mahreen_gun/spr_mahreen_gun.yy",},},
{"id":{"name":"spr_star","path":"sprites/spr_star/spr_star.yy",},},
{"id":{"name":"spr_da_mk5","path":"sprites/spr_da_mk5/spr_da_mk5.yy",},},
{"id":{"name":"spr_dexterity_icon","path":"sprites/spr_dexterity_icon/spr_dexterity_icon.yy",},},
{"id":{"name":"spr_star_hulk","path":"sprites/spr_star_hulk/spr_star_hulk.yy",},},
{"id":{"name":"spr_warp_storm","path":"sprites/spr_warp_storm/spr_warp_storm.yy",},},
{"id":{"name":"sprite205","path":"sprites/sprite205/sprite205.yy",},},
{"id":{"name":"spr_happenings_green","path":"sprites/spr_happenings_green/spr_happenings_green.yy",},},
{"id":{"name":"spr_happenings_red","path":"sprites/spr_happenings_red/spr_happenings_red.yy",},},
{"id":{"name":"spr_happenings_purple","path":"sprites/spr_happenings_purple/spr_happenings_purple.yy",},},
{"id":{"name":"spr_happenings_blue","path":"sprites/spr_happenings_blue/spr_happenings_blue.yy",},},
{"id":{"name":"spr_mk3_colors","path":"sprites/spr_mk3_colors/spr_mk3_colors.yy",},},
{"id":{"name":"spr_happenings_white","path":"sprites/spr_happenings_white/spr_happenings_white.yy",},},
{"id":{"name":"spr_craftworld","path":"sprites/spr_craftworld/spr_craftworld.yy",},},
{"id":{"name":"spr_fleet_tiny","path":"sprites/spr_fleet_tiny/spr_fleet_tiny.yy",},},
{"id":{"name":"spr_pa_arms_ornate","path":"sprites/spr_pa_arms_ornate/spr_pa_arms_ornate.yy",},},
{"id":{"name":"spr_fleet_alert","path":"sprites/spr_fleet_alert/spr_fleet_alert.yy",},},
{"id":{"name":"spr_fleet_civilian","path":"sprites/spr_fleet_civilian/spr_fleet_civilian.yy",},},
{"id":{"name":"spr_ih_mk5_helm","path":"sprites/spr_ih_mk5_helm/spr_ih_mk5_helm.yy",},},
{"id":{"name":"spr_fleet_imperial","path":"sprites/spr_fleet_imperial/spr_fleet_imperial.yy",},},
{"id":{"name":"light_dark_shader","path":"shaders/light_dark_shader/light_dark_shader.yy",},},
{"id":{"name":"spr_fleet_mechanicus","path":"sprites/spr_fleet_mechanicus/spr_fleet_mechanicus.yy",},},
{"id":{"name":"spr_mm_glow","path":"sprites/spr_mm_glow/spr_mm_glow.yy",},},
{"id":{"name":"spr_fleet_inquisition","path":"sprites/spr_fleet_inquisition/spr_fleet_inquisition.yy",},},
{"id":{"name":"spr_tooltip1","path":"sprites/spr_tooltip1/spr_tooltip1.yy",},},
{"id":{"name":"spr_fleet_chaos","path":"sprites/spr_fleet_chaos/spr_fleet_chaos.yy",},},
{"id":{"name":"__init_external","path":"scripts/__init_external/__init_external.yy",},},
{"id":{"name":"spr_fleet_ork","path":"sprites/spr_fleet_ork/spr_fleet_ork.yy",},},
{"id":{"name":"spr_fleet_necron","path":"sprites/spr_fleet_necron/spr_fleet_necron.yy",},},
{"id":{"name":"spr_fleet_tau","path":"sprites/spr_fleet_tau/spr_fleet_tau.yy",},},
{"id":{"name":"spr_fleet_eldar","path":"sprites/spr_fleet_eldar/spr_fleet_eldar.yy",},},
{"id":{"name":"spr_fleet_tyranid","path":"sprites/spr_fleet_tyranid/spr_fleet_tyranid.yy",},},
{"id":{"name":"spr_ork_target","path":"sprites/spr_ork_target/spr_ork_target.yy",},},
{"id":{"name":"sprite269","path":"sprites/sprite269/sprite269.yy",},},
{"id":{"name":"spr_mar_fire_body1","path":"sprites/spr_mar_fire_body1/spr_mar_fire_body1.yy",},},
{"id":{"name":"spr_mar_fire_body2","path":"sprites/spr_mar_fire_body2/spr_mar_fire_body2.yy",},},
{"id":{"name":"spr_mar_fire_body3","path":"sprites/spr_mar_fire_body3/spr_mar_fire_body3.yy",},},
{"id":{"name":"spr_mar_fire_pauldron1","path":"sprites/spr_mar_fire_pauldron1/spr_mar_fire_pauldron1.yy",},},
{"id":{"name":"spr_mar_fire_pauldron2","path":"sprites/spr_mar_fire_pauldron2/spr_mar_fire_pauldron2.yy",},},
{"id":{"name":"spr_mar_walk_body1","path":"sprites/spr_mar_walk_body1/spr_mar_walk_body1.yy",},},
{"id":{"name":"spr_mar_walk_body2","path":"sprites/spr_mar_walk_body2/spr_mar_walk_body2.yy",},},
{"id":{"name":"spr_mar_walk_body3","path":"sprites/spr_mar_walk_body3/spr_mar_walk_body3.yy",},},
{"id":{"name":"spr_mar_walk_pauldron1","path":"sprites/spr_mar_walk_pauldron1/spr_mar_walk_pauldron1.yy",},},
{"id":{"name":"spr_mar_walk_pauldron2","path":"sprites/spr_mar_walk_pauldron2/spr_mar_walk_pauldron2.yy",},},
{"id":{"name":"spr_mar_walk_legs1","path":"sprites/spr_mar_walk_legs1/spr_mar_walk_legs1.yy",},},
{"id":{"name":"spr_mar_walk_legs3","path":"sprites/spr_mar_walk_legs3/spr_mar_walk_legs3.yy",},},
{"id":{"name":"spr_mar_walk_legs4","path":"sprites/spr_mar_walk_legs4/spr_mar_walk_legs4.yy",},},
{"id":{"name":"spr_mar_collision","path":"sprites/spr_mar_collision/spr_mar_collision.yy",},},
{"id":{"name":"spr_flamer_new","path":"sprites/spr_flamer_new/spr_flamer_new.yy",},},
{"id":{"name":"scr_draw_planet_features","path":"scripts/scr_draw_planet_features/scr_draw_planet_features.yy",},},
{"id":{"name":"spr_popup_pic","path":"sprites/spr_popup_pic/spr_popup_pic.yy",},},
{"id":{"name":"spr_wings","path":"sprites/spr_wings/spr_wings.yy",},},
{"id":{"name":"spr_space_bg","path":"sprites/spr_space_bg/spr_space_bg.yy",},},
{"id":{"name":"spr_welcome_bg","path":"sprites/spr_welcome_bg/spr_welcome_bg.yy",},},
{"id":{"name":"bg_space","path":"sprites/bg_space/bg_space.yy",},},
{"id":{"name":"snd_blood","path":"sounds/snd_blood/snd_blood.yy",},},
{"id":{"name":"snd_diboz","path":"sounds/snd_diboz/snd_diboz.yy",},},
{"id":{"name":"snd_legal","path":"sounds/snd_legal/snd_legal.yy",},},
{"id":{"name":"spr_forge_holo","path":"sprites/spr_forge_holo/spr_forge_holo.yy",},},
{"id":{"name":"snd_prologue","path":"sounds/snd_prologue/snd_prologue.yy",},},
{"id":{"name":"spr_weapon_chainfist","path":"sprites/spr_weapon_chainfist/spr_weapon_chainfist.yy",},},
{"id":{"name":"snd_royal","path":"sounds/snd_royal/snd_royal.yy",},},
{"id":{"name":"snd_vode","path":"sounds/snd_vode/snd_vode.yy",},},
{"id":{"name":"snd_battle","path":"sounds/snd_battle/snd_battle.yy",},},
{"id":{"name":"snd_postbattle","path":"sounds/snd_postbattle/snd_postbattle.yy",},},
{"id":{"name":"snd_defeat","path":"sounds/snd_defeat/snd_defeat.yy",},},
{"id":{"name":"snd_buzz","path":"sounds/snd_buzz/snd_buzz.yy",},},
{"id":{"name":"scr_unit_quick_find_pane","path":"scripts/scr_unit_quick_find_pane/scr_unit_quick_find_pane.yy",},},
{"id":{"name":"snd_redownload","path":"sounds/snd_redownload/snd_redownload.yy",},},
{"id":{"name":"snd_click","path":"sounds/snd_click/snd_click.yy",},},
{"id":{"name":"snd_click_small","path":"sounds/snd_click_small/snd_click_small.yy",},},
{"id":{"name":"scr_save_chapter","path":"scripts/scr_save_chapter/scr_save_chapter.yy",},},
{"id":{"name":"spr_weapon_autocannon","path":"sprites/spr_weapon_autocannon/spr_weapon_autocannon.yy",},},
{"id":{"name":"snd_end_turn","path":"sounds/snd_end_turn/snd_end_turn.yy",},},
{"id":{"name":"spr_terminator3_colors","path":"sprites/spr_terminator3_colors/spr_terminator3_colors.yy",},},
{"id":{"name":"spr_if_mk6_helm","path":"sprites/spr_if_mk6_helm/spr_if_mk6_helm.yy",},},
{"id":{"name":"spr_um_mk7_helm","path":"sprites/spr_um_mk7_helm/spr_um_mk7_helm.yy",},},
{"id":{"name":"spr_weapon_hflamer_term","path":"sprites/spr_weapon_hflamer_term/spr_weapon_hflamer_term.yy",},},
{"id":{"name":"snd_error","path":"sounds/snd_error/snd_error.yy",},},
{"id":{"name":"snd_stc","path":"sounds/snd_stc/snd_stc.yy",},},
{"id":{"name":"snd_identify","path":"sounds/snd_identify/snd_identify.yy",},},
{"id":{"name":"mk7_chest_variants","path":"sprites/mk7_chest_variants/mk7_chest_variants.yy",},},
{"id":{"name":"pth_assault","path":"paths/pth_assault/pth_assault.yy",},},
{"id":{"name":"path3","path":"paths/path3/path3.yy",},},
{"id":{"name":"pth_speeder","path":"paths/pth_speeder/pth_speeder.yy",},},
{"id":{"name":"pth_speeder2","path":"paths/pth_speeder2/pth_speeder2.yy",},},
{"id":{"name":"spr_special_helm","path":"sprites/spr_special_helm/spr_special_helm.yy",},},
{"id":{"name":"macros","path":"scripts/macros/macros.yy",},},
{"id":{"name":"spr_weapon_skill_icon","path":"sprites/spr_weapon_skill_icon/spr_weapon_skill_icon.yy",},},
{"id":{"name":"scr_music","path":"scripts/scr_music/scr_music.yy",},},
{"id":{"name":"spr_artificer_colors2","path":"sprites/spr_artificer_colors2/spr_artificer_colors2.yy",},},
{"id":{"name":"spr_bionic_eye_2","path":"sprites/spr_bionic_eye_2/spr_bionic_eye_2.yy",},},
{"id":{"name":"clean_tags","path":"scripts/clean_tags/clean_tags.yy",},},
{"id":{"name":"spr_weapon_powfist4","path":"sprites/spr_weapon_powfist4/spr_weapon_powfist4.yy",},},
{"id":{"name":"is_specialist","path":"scripts/is_specialist/is_specialist.yy",},},
{"id":{"name":"scr_bolt","path":"scripts/scr_bolt/scr_bolt.yy",},},
{"id":{"name":"debugl","path":"scripts/debugl/debugl.yy",},},
{"id":{"name":"scr_void_click","path":"scripts/scr_void_click/scr_void_click.yy",},},
{"id":{"name":"scr_hit","path":"scripts/scr_hit/scr_hit.yy",},},
{"id":{"name":"scr_cheatcode","path":"scripts/scr_cheatcode/scr_cheatcode.yy",},},
{"id":{"name":"spr_weapon_grav_pistol","path":"sprites/spr_weapon_grav_pistol/spr_weapon_grav_pistol.yy",},},
{"id":{"name":"scr_text_hit","path":"scripts/scr_text_hit/scr_text_hit.yy",},},
{"id":{"name":"spr_shutter_button","path":"sprites/spr_shutter_button/spr_shutter_button.yy",},},
{"id":{"name":"scr_json_functions","path":"scripts/scr_json_functions/scr_json_functions.yy",},},
{"id":{"name":"scr_colors_initialize","path":"scripts/scr_colors_initialize/scr_colors_initialize.yy",},},
{"id":{"name":"scr_shader_initialize","path":"scripts/scr_shader_initialize/scr_shader_initialize.yy",},},
{"id":{"name":"spr_sal_mk6_helm","path":"sprites/spr_sal_mk6_helm/spr_sal_mk6_helm.yy",},},
{"id":{"name":"spr_weapon_boarding","path":"sprites/spr_weapon_boarding/spr_weapon_boarding.yy",},},
{"id":{"name":"spr_bionics_hand","path":"sprites/spr_bionics_hand/spr_bionics_hand.yy",},},
{"id":{"name":"explode_script","path":"scripts/explode_script/explode_script.yy",},},
{"id":{"name":"relative_direction","path":"scripts/relative_direction/relative_direction.yy",},},
{"id":{"name":"draw_line_dashed","path":"scripts/draw_line_dashed/draw_line_dashed.yy",},},
{"id":{"name":"turn_towards_point","path":"scripts/turn_towards_point/turn_towards_point.yy",},},
{"id":{"name":"spr_forge_points_icon","path":"sprites/spr_forge_points_icon/spr_forge_points_icon.yy",},},
{"id":{"name":"scr_display_number","path":"scripts/scr_display_number/scr_display_number.yy",},},
{"id":{"name":"scr_count_marines_on_ship","path":"scripts/scr_count_marines_on_ship/scr_count_marines_on_ship.yy",},},
{"id":{"name":"spr_dread_missile","path":"sprites/spr_dread_missile/spr_dread_missile.yy",},},
{"id":{"name":"scr_newtext","path":"scripts/scr_newtext/scr_newtext.yy",},},
{"id":{"name":"scr_line_break","path":"scripts/scr_line_break/scr_line_break.yy",},},
{"id":{"name":"scr_lines","path":"scripts/scr_lines/scr_lines.yy",},},
{"id":{"name":"spr_if_mk7_helm","path":"sprites/spr_if_mk7_helm/spr_if_mk7_helm.yy",},},
{"id":{"name":"scr_lines_increase","path":"scripts/scr_lines_increase/scr_lines_increase.yy",},},
{"id":{"name":"scr_save","path":"scripts/scr_save/scr_save.yy",},},
{"id":{"name":"scr_load","path":"scripts/scr_load/scr_load.yy",},},
{"id":{"name":"file_encrypt","path":"scripts/file_encrypt/file_encrypt.yy",},},
{"id":{"name":"file_decrypt","path":"scripts/file_decrypt/file_decrypt.yy",},},
{"id":{"name":"spr_charisma_icon","path":"sprites/spr_charisma_icon/spr_charisma_icon.yy",},},
{"id":{"name":"spr_weapon_hflamer","path":"sprites/spr_weapon_hflamer/spr_weapon_hflamer.yy",},},
{"id":{"name":"spr_mk8_colors","path":"sprites/spr_mk8_colors/spr_mk8_colors.yy",},},
{"id":{"name":"scr_destroy_planet","path":"scripts/scr_destroy_planet/scr_destroy_planet.yy",},},
{"id":{"name":"scr_crusade","path":"scripts/scr_crusade/scr_crusade.yy",},},
{"id":{"name":"scr_ship_battle","path":"scripts/scr_ship_battle/scr_ship_battle.yy",},},
{"id":{"name":"spr_generic_honor_guard","path":"sprites/spr_generic_honor_guard/spr_generic_honor_guard.yy",},},
{"id":{"name":"scr_unit_detail_text","path":"scripts/scr_unit_detail_text/scr_unit_detail_text.yy",},},
{"id":{"name":"scr_ork_fleet_functions","path":"scripts/scr_ork_fleet_functions/scr_ork_fleet_functions.yy",},},
{"id":{"name":"scr_battle_allies","path":"scripts/scr_battle_allies/scr_battle_allies.yy",},},
{"id":{"name":"spr_servo_arm","path":"sprites/spr_servo_arm/spr_servo_arm.yy",},},
{"id":{"name":"scr_battle_roster","path":"scripts/scr_battle_roster/scr_battle_roster.yy",},},
{"id":{"name":"scr_civil_roster","path":"scripts/scr_civil_roster/scr_civil_roster.yy",},},
{"id":{"name":"spr_constitution_icon","path":"sprites/spr_constitution_icon/spr_constitution_icon.yy",},},
{"id":{"name":"scr_battle_sort","path":"scripts/scr_battle_sort/scr_battle_sort.yy",},},
{"id":{"name":"spr_gear_combat_shield","path":"sprites/spr_gear_combat_shield/spr_gear_combat_shield.yy",},},
{"id":{"name":"spr_um_mk6_helm","path":"sprites/spr_um_mk6_helm/spr_um_mk6_helm.yy",},},
{"id":{"name":"scr_count_forces","path":"scripts/scr_count_forces/scr_count_forces.yy",},},
{"id":{"name":"spr_weapon_powmace","path":"sprites/spr_weapon_powmace/spr_weapon_powmace.yy",},},
{"id":{"name":"scr_dead_marines","path":"scripts/scr_dead_marines/scr_dead_marines.yy",},},
{"id":{"name":"scr_ini_ship_cleanup","path":"scripts/scr_ini_ship_cleanup/scr_ini_ship_cleanup.yy",},},
{"id":{"name":"spr_ultra_honor_guard","path":"sprites/spr_ultra_honor_guard/spr_ultra_honor_guard.yy",},},
{"id":{"name":"scr_punit_combat_heplers","path":"scripts/scr_punit_combat_heplers/scr_punit_combat_heplers.yy",},},
{"id":{"name":"spr_weapon_powspear3","path":"sprites/spr_weapon_powspear3/spr_weapon_powspear3.yy",},},
{"id":{"name":"scr_drop_fiddle","path":"scripts/scr_drop_fiddle/scr_drop_fiddle.yy",},},
{"id":{"name":"scr_target","path":"scripts/scr_target/scr_target.yy",},},
{"id":{"name":"scr_shoot","path":"scripts/scr_shoot/scr_shoot.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":"spr_gear_techa","path":"sprites/spr_gear_techa/spr_gear_techa.yy",},},
{"id":{"name":"scr_imperial_manage_fleet_functions","path":"scripts/scr_imperial_manage_fleet_functions/scr_imperial_manage_fleet_functions.yy",},},
{"id":{"name":"scr_clean","path":"scripts/scr_clean/scr_clean.yy",},},
{"id":{"name":"spr_weapon_boltstorm_gauntlet_small","path":"sprites/spr_weapon_boltstorm_gauntlet_small/spr_weapon_boltstorm_gauntlet_small.yy",},},
{"id":{"name":"scr_powers","path":"scripts/scr_powers/scr_powers.yy",},},
{"id":{"name":"scr_powers_new","path":"scripts/scr_powers_new/scr_powers_new.yy",},},
{"id":{"name":"scr_recruit_data","path":"scripts/scr_recruit_data/scr_recruit_data.yy",},},
{"id":{"name":"scr_weapon","path":"scripts/scr_weapon/scr_weapon.yy",},},
{"id":{"name":"UINodeScripts","path":"scripts/UINodeScripts/UINodeScripts.yy",},},
{"id":{"name":"scr_move_unit_info","path":"scripts/scr_move_unit_info/scr_move_unit_info.yy",},},
{"id":{"name":"scr_en_weapon","path":"scripts/scr_en_weapon/scr_en_weapon.yy",},},
{"id":{"name":"scr_special_weapon","path":"scripts/scr_special_weapon/scr_special_weapon.yy",},},
{"id":{"name":"spr_narthecium_2","path":"sprites/spr_narthecium_2/spr_narthecium_2.yy",},},
{"id":{"name":"scr_vehicle_weapon","path":"scripts/scr_vehicle_weapon/scr_vehicle_weapon.yy",},},
{"id":{"name":"scr_wep_abbreviate","path":"scripts/scr_wep_abbreviate/scr_wep_abbreviate.yy",},},
{"id":{"name":"scr_scrollbar","path":"scripts/scr_scrollbar/scr_scrollbar.yy",},},
{"id":{"name":"scr_thought","path":"scripts/scr_thought/scr_thought.yy",},},
{"id":{"name":"scr_ui_refresh","path":"scripts/scr_ui_refresh/scr_ui_refresh.yy",},},
{"id":{"name":"scr_management","path":"scripts/scr_management/scr_management.yy",},},
{"id":{"name":"spr_sw_mk6_helm","path":"sprites/spr_sw_mk6_helm/spr_sw_mk6_helm.yy",},},
{"id":{"name":"scr_ui_manage","path":"scripts/scr_ui_manage/scr_ui_manage.yy",},},
{"id":{"name":"scr_ui_display_weapons","path":"scripts/scr_ui_display_weapons/scr_ui_display_weapons.yy",},},
{"id":{"name":"scr_company_view","path":"scripts/scr_company_view/scr_company_view.yy",},},
{"id":{"name":"scr_company_order","path":"scripts/scr_company_order/scr_company_order.yy",},},
{"id":{"name":"scr_special_view","path":"scripts/scr_special_view/scr_special_view.yy",},},
{"id":{"name":"spr_p_name_bg","path":"sprites/spr_p_name_bg/spr_p_name_bg.yy",},},
{"id":{"name":"scr_company_load","path":"scripts/scr_company_load/scr_company_load.yy",},},
{"id":{"name":"spr_ba_mk6_helm","path":"sprites/spr_ba_mk6_helm/spr_ba_mk6_helm.yy",},},
{"id":{"name":"scr_load_all","path":"scripts/scr_load_all/scr_load_all.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_popup","path":"scripts/scr_ui_popup/scr_ui_popup.yy",},},
{"id":{"name":"spr_weapon_plasma_cannon_term","path":"sprites/spr_weapon_plasma_cannon_term/spr_weapon_plasma_cannon_term.yy",},},
{"id":{"name":"scr_ui_formation_bars","path":"scripts/scr_ui_formation_bars/scr_ui_formation_bars.yy",},},
{"id":{"name":"scr_ui_settings","path":"scripts/scr_ui_settings/scr_ui_settings.yy",},},
{"id":{"name":"scr_arti_descr","path":"scripts/scr_arti_descr/scr_arti_descr.yy",},},
{"id":{"name":"spr_terminator_chap","path":"sprites/spr_terminator_chap/spr_terminator_chap.yy",},},
{"id":{"name":"spr_sal_mk7_helm","path":"sprites/spr_sal_mk7_helm/spr_sal_mk7_helm.yy",},},
{"id":{"name":"scr_draw_rainbow","path":"scripts/scr_draw_rainbow/scr_draw_rainbow.yy",},},
{"id":{"name":"scr_weapons_equip","path":"scripts/scr_weapons_equip/scr_weapons_equip.yy",},},
{"id":{"name":"spr_chap_area_pad","path":"sprites/spr_chap_area_pad/spr_chap_area_pad.yy",},},
{"id":{"name":"scr_master_loc","path":"scripts/scr_master_loc/scr_master_loc.yy",},},
{"id":{"name":"scr_creation","path":"scripts/scr_creation/scr_creation.yy",},},
{"id":{"name":"scr_unit_size","path":"scripts/scr_unit_size/scr_unit_size.yy",},},
{"id":{"name":"scr_item_count","path":"scripts/scr_item_count/scr_item_count.yy",},},
{"id":{"name":"scr_marine_count","path":"scripts/scr_marine_count/scr_marine_count.yy",},},
{"id":{"name":"scr_role_count","path":"scripts/scr_role_count/scr_role_count.yy",},},
{"id":{"name":"spr_dreadnought_chasis_colors","path":"sprites/spr_dreadnought_chasis_colors/spr_dreadnought_chasis_colors.yy",},},
{"id":{"name":"scr_vehicle_count","path":"scripts/scr_vehicle_count/scr_vehicle_count.yy",},},
{"id":{"name":"scr_bionics_count","path":"scripts/scr_bionics_count/scr_bionics_count.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":"spr_leopard_sprite","path":"sprites/spr_leopard_sprite/spr_leopard_sprite.yy",},},
{"id":{"name":"spr_wisdom_icon","path":"sprites/spr_wisdom_icon/spr_wisdom_icon.yy",},},
{"id":{"name":"scr_event_dudes","path":"scripts/scr_event_dudes/scr_event_dudes.yy",},},
{"id":{"name":"scr_event_newlines","path":"scripts/scr_event_newlines/scr_event_newlines.yy",},},
{"id":{"name":"spr_generic_terminator_sgt","path":"sprites/spr_generic_terminator_sgt/spr_generic_terminator_sgt.yy",},},
{"id":{"name":"scr_event_gossip","path":"scripts/scr_event_gossip/scr_event_gossip.yy",},},
{"id":{"name":"spr_weapon_grav_cannon","path":"sprites/spr_weapon_grav_cannon/spr_weapon_grav_cannon.yy",},},
{"id":{"name":"scr_alert","path":"scripts/scr_alert/scr_alert.yy",},},
{"id":{"name":"scr_popup","path":"scripts/scr_popup/scr_popup.yy",},},
{"id":{"name":"scr_turn_first","path":"scripts/scr_turn_first/scr_turn_first.yy",},},
{"id":{"name":"spr_rg_mk5_helm","path":"sprites/spr_rg_mk5_helm/spr_rg_mk5_helm.yy",},},
{"id":{"name":"scr_event_log","path":"scripts/scr_event_log/scr_event_log.yy",},},
{"id":{"name":"scr_ancient_ruins","path":"scripts/scr_ancient_ruins/scr_ancient_ruins.yy",},},
{"id":{"name":"spr_terminator_hands","path":"sprites/spr_terminator_hands/spr_terminator_hands.yy",},},
{"id":{"name":"scr_recent","path":"scripts/scr_recent/scr_recent.yy",},},
{"id":{"name":"scr_star_ownership","path":"scripts/scr_star_ownership/scr_star_ownership.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":"spr_bionics_leg","path":"sprites/spr_bionics_leg/spr_bionics_leg.yy",},},
{"id":{"name":"spr_bionics_eye","path":"sprites/spr_bionics_eye/spr_bionics_eye.yy",},},
{"id":{"name":"spr_bionics_arm","path":"sprites/spr_bionics_arm/spr_bionics_arm.yy",},},
{"id":{"name":"scr_enemy_ai_c","path":"scripts/scr_enemy_ai_c/scr_enemy_ai_c.yy",},},
{"id":{"name":"spr_ship_back_white","path":"sprites/spr_ship_back_white/spr_ship_back_white.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_mission_reward","path":"scripts/scr_mission_reward/scr_mission_reward.yy",},},
{"id":{"name":"scr_string_functions","path":"scripts/scr_string_functions/scr_string_functions.yy",},},
{"id":{"name":"scr_income","path":"scripts/scr_income/scr_income.yy",},},
{"id":{"name":"scr_apothecary_ship","path":"scripts/scr_apothecary_ship/scr_apothecary_ship.yy",},},
{"id":{"name":"scr_apothecary_ground","path":"scripts/scr_apothecary_ground/scr_apothecary_ground.yy",},},
{"id":{"name":"scr_mission_eta","path":"scripts/scr_mission_eta/scr_mission_eta.yy",},},
{"id":{"name":"obj_garbage_collector","path":"objects/obj_garbage_collector/obj_garbage_collector.yy",},},
{"id":{"name":"scr_fleet_functions","path":"scripts/scr_fleet_functions/scr_fleet_functions.yy",},},
{"id":{"name":"NameGenerator","path":"scripts/NameGenerator/NameGenerator.yy",},},
{"id":{"name":"scr_random_event","path":"scripts/scr_random_event/scr_random_event.yy",},},
{"id":{"name":"obj_planet_map","path":"objects/obj_planet_map/obj_planet_map.yy",},},
{"id":{"name":"scr_khornate_fleet_functions","path":"scripts/scr_khornate_fleet_functions/scr_khornate_fleet_functions.yy",},},
{"id":{"name":"scr_random_find","path":"scripts/scr_random_find/scr_random_find.yy",},},
{"id":{"name":"scr_max_marine","path":"scripts/scr_max_marine/scr_max_marine.yy",},},
{"id":{"name":"scr_random_marine","path":"scripts/scr_random_marine/scr_random_marine.yy",},},
{"id":{"name":"scr_roman","path":"scripts/scr_roman/scr_roman.yy",},},
{"id":{"name":"scr_draw_management_unit","path":"scripts/scr_draw_management_unit/scr_draw_management_unit.yy",},},
{"id":{"name":"scr_gov_disp","path":"scripts/scr_gov_disp/scr_gov_disp.yy",},},
{"id":{"name":"scr_trade","path":"scripts/scr_trade/scr_trade.yy",},},
{"id":{"name":"scr_trade_add","path":"scripts/scr_trade_add/scr_trade_add.yy",},},
{"id":{"name":"scr_trade_dep","path":"scripts/scr_trade_dep/scr_trade_dep.yy",},},
{"id":{"name":"scr_unit_equip_functions","path":"scripts/scr_unit_equip_functions/scr_unit_equip_functions.yy",},},
{"id":{"name":"scr_demand","path":"scripts/scr_demand/scr_demand.yy",},},
{"id":{"name":"spr_if_mk5_helm","path":"sprites/spr_if_mk5_helm/spr_if_mk5_helm.yy",},},
{"id":{"name":"scr_dialogue","path":"scripts/scr_dialogue/scr_dialogue.yy",},},
{"id":{"name":"scr_chaos_alliance_test","path":"scripts/scr_chaos_alliance_test/scr_chaos_alliance_test.yy",},},
{"id":{"name":"scr_quest","path":"scripts/scr_quest/scr_quest.yy",},},
{"id":{"name":"scr_audience","path":"scripts/scr_audience/scr_audience.yy",},},
{"id":{"name":"spr_ba_mk7_helm","path":"sprites/spr_ba_mk7_helm/spr_ba_mk7_helm.yy",},},
{"id":{"name":"spr_intelligence_icon","path":"sprites/spr_intelligence_icon/spr_intelligence_icon.yy",},},
{"id":{"name":"spr_dread_heavy_bolter","path":"sprites/spr_dread_heavy_bolter/spr_dread_heavy_bolter.yy",},},
{"id":{"name":"spr_purity_seal","path":"sprites/spr_purity_seal/spr_purity_seal.yy",},},
{"id":{"name":"scr_zoom","path":"scripts/scr_zoom/scr_zoom.yy",},},
{"id":{"name":"scr_chapter","path":"scripts/scr_chapter/scr_chapter.yy",},},
{"id":{"name":"scr_map_and_warp_functions","path":"scripts/scr_map_and_warp_functions/scr_map_and_warp_functions.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_vehicle_order","path":"scripts/scr_vehicle_order/scr_vehicle_order.yy",},},
{"id":{"name":"scr_icon","path":"scripts/scr_icon/scr_icon.yy",},},
{"id":{"name":"scr_squad_names","path":"scripts/scr_squad_names/scr_squad_names.yy",},},
{"id":{"name":"scr_initialize_custom","path":"scripts/scr_initialize_custom/scr_initialize_custom.yy",},},
{"id":{"name":"scr_roman_numerals","path":"scripts/scr_roman_numerals/scr_roman_numerals.yy",},},
{"id":{"name":"scr_restart_variables","path":"scripts/scr_restart_variables/scr_restart_variables.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_planetary_feature","path":"scripts/scr_planetary_feature/scr_planetary_feature.yy",},},
{"id":{"name":"scr_ruins_reward","path":"scripts/scr_ruins_reward/scr_ruins_reward.yy",},},
{"id":{"name":"scr_return_ship","path":"scripts/scr_return_ship/scr_return_ship.yy",},},
{"id":{"name":"scr_purge_world","path":"scripts/scr_purge_world/scr_purge_world.yy",},},
{"id":{"name":"scr_bomb_world","path":"scripts/scr_bomb_world/scr_bomb_world.yy",},},
{"id":{"name":"spr_ws_mk7_helm","path":"sprites/spr_ws_mk7_helm/spr_ws_mk7_helm.yy",},},
{"id":{"name":"scr_loyalty","path":"scripts/scr_loyalty/scr_loyalty.yy",},},
{"id":{"name":"spr_weapon_crozarc","path":"sprites/spr_weapon_crozarc/spr_weapon_crozarc.yy",},},
{"id":{"name":"scr_check_equip","path":"scripts/scr_check_equip/scr_check_equip.yy",},},
{"id":{"name":"scr_add_corruption","path":"scripts/scr_add_corruption/scr_add_corruption.yy",},},
{"id":{"name":"scr_controller_helpers","path":"scripts/scr_controller_helpers/scr_controller_helpers.yy",},},
{"id":{"name":"scr_add_item","path":"scripts/scr_add_item/scr_add_item.yy",},},
{"id":{"name":"spr_azreal","path":"sprites/spr_azreal/spr_azreal.yy",},},
{"id":{"name":"scr_add_man","path":"scripts/scr_add_man/scr_add_man.yy",},},
{"id":{"name":"scr_add_vehicle","path":"scripts/scr_add_vehicle/scr_add_vehicle.yy",},},
{"id":{"name":"scr_animated_scanline","path":"scripts/scr_animated_scanline/scr_animated_scanline.yy",},},
{"id":{"name":"scr_add_artifact","path":"scripts/scr_add_artifact/scr_add_artifact.yy",},},
{"id":{"name":"scr_add_stc_fragment","path":"scripts/scr_add_stc_fragment/scr_add_stc_fragment.yy",},},