-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMaps.json
More file actions
2042 lines (1802 loc) · 102 KB
/
Copy pathMaps.json
File metadata and controls
2042 lines (1802 loc) · 102 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Custom Maps": [
{"FriendlyName": "Daybreak",
"author": "Cratornugget",
"date": "Aug 27th, 2024",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Daybreak.zip",
"zipsize": "855025818",
"speedrunid": "920jz13d",
"image": "https://live.staticflickr.com/65535/53951068165_a2da18b536_z.jpg",
"Description": "Pretty short/simple map that I've been working on and off for a few years now but I finally finished it.",
"MapFileName": "Daybreak_p"},
{"FriendlyName": "Prelude to a Eulogy",
"author": "Keku",
"date": "Jan 25th, 2024",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Prelude%20to%20a%20Eulogy.zip",
"zipsize": "1610612736",
"speedrunid": "drppxvlw",
"image": "https://media.moddb.com/cache/images/downloads/1/265/264425/thumb_620x2000/maxresdefault.jpg",
"Description": "Set in a parallel universe where Faith from 2008 is in the MEC universe. Faith hacks a computer to get information and must get back to the lair. Features rain, MEC AI models and more!",
"MapFileName": "Prelude_p",
"CheckpointAFriendlyName": "CHECKPOINT A",
"CheckpointAFileName": "Prelude_Start",
"CheckpointADescription": "Start of the adventure.",
"CheckpointBFriendlyName": "CHECKPOINT B",
"CheckpointBFileName": "Office_Bridge",
"CheckpointBDescription": "Server bridge.",
"CheckpointCFriendlyName": "CHECKPOINT C",
"CheckpointCFileName": "Parking_Start",
"CheckpointCDescription": "Parking lot.",
"CheckpointDFriendlyName": "CHECKPOINT D",
"CheckpointDFileName": "Train_Canals_Start",
"CheckpointDDescription": "Train bridge on canals.",
"NumberOfCheckpoints": "4"},
{"FriendlyName": "Retrowave City",
"author": "[RBS] Dominicus",
"date": "Jan 5th, 2024",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Retrowave%20City.zip",
"zipsize": "3344957",
"speedrunid": "95kk5039",
"image": "https://media.moddb.com/cache/images/downloads/1/264/263415/thumb_620x2000/2024-01-0.png",
"Description": "Immerse yourself in the retrowave atmosphere in one of the best parkour games.",
"MapFileName": "Retrowave_City"},
{"FriendlyName": "High Flight",
"author": "[RBS] Dominicus",
"date": "Apr 29th, 2023",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/High%20Flight.zip",
"zipsize": "1793064",
"speedrunid": "dy11gvrd",
"image": "https://media.moddb.com/cache/images/downloads/1/250/249369/thumb_620x2000/2023-04-2.png",
"Description": "Faith must deliver a package to Celeste while running through dangers.",
"MapFileName": "High_Flight"},
{"FriendlyName": "Authority",
"author": "Keko",
"date": "Mar 21st, 2023",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Authority.zip",
"zipsize": "31170000",
"speedrunid": "wlggove9",
"image": "https://media.moddb.com/cache/images/downloads/1/248/247406/thumb_620x2000/Mirrors_Edge_Screenshot_2023.03.4.png",
"Description": "In the authority zone, you've made the decision to retrieve the secret bag that's crucial to all of the runners. Unfortunately a so-called \"Special Unit\" has interrupted the mission before Faith.",
"MapFileName": "Authority_p"},
{"FriendlyName": "Backrooms",
"author": "Keku",
"date": "Dec 8th, 2022",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Backrooms.zip",
"zipsize": "234580000",
"image": "https://live.staticflickr.com/65535/53840796515_7e239cb2da_z.jpg",
"Description": "Faith in the backrooms.",
"MapFileName": "Backrooms_p"},
{"FriendlyName": "Sunrise Countdown",
"author": "Keku",
"date": "Nov 18th, 2022",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Sunrise%20Countdown.zip",
"zipsize": "653986365",
"speedrunid": "9zpp2vgw",
"image": "https://media.moddb.com/cache/images/downloads/1/242/241348/thumb_620x2000/Banner-min.png",
"Description": "My submission for the level design jam by Steeve Lee. Level is finished and can be playable from start to finish, unfortunately I didnt have enough time to finish the background and a few more gameplay sections. The map is highly inspired from MEC with assets used from it too.",
"MapFileName": "Countdown_p",
"CheckpointAFriendlyName": "CHECKPOINT A",
"CheckpointAFileName": "Start",
"CheckpointADescription": "Start of the adventure.",
"CheckpointBFriendlyName": "CHECKPOINT B",
"CheckpointBFileName": "Construction_PT1_1",
"CheckpointBDescription": "Construction side with scaffoldings.",
"CheckpointCFriendlyName": "CHECKPOINT C",
"CheckpointCFileName": "Construction_PT2_2",
"CheckpointCDescription": "Before SWAT ambush.",
"CheckpointDFriendlyName": "CHECKPOINT D",
"CheckpointDFileName": "Construction_PT2_5",
"CheckpointDDescription": "Top of the world.",
"NumberOfCheckpoints": "4"},
{"FriendlyName": "The Ambush",
"author": "Simone Doliana",
"date": "Aug 27th, 2022",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/The%20Ambush.zip",
"zipsize": "7937720",
"image": "https://media.moddb.com/cache/images/downloads/1/238/237395/thumb_620x2000/Img_Cover.jpg",
"Description": "This map is a work in progress. Jump and run over moving platforms to discover information about Icarus! Faith can control crane movements that will allow her to get to the objective and also to leave it, if lucky enough.",
"MapFileName": "MM_p"},
{"FriendlyName": "Mirage",
"author": "Lipticon",
"date": "Aug 16th, 2022",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Mirage.zip",
"zipsize": "88577748",
"speedrunid": "98rjgvpd",
"image": "https://live.staticflickr.com/65535/53991432577_36aaef9cc2_z.jpg",
"Description": "A custom map by Lipticon.",
"MapFileName": "Mirage_p"},
{"FriendlyName": "Prison Break",
"author": "Koce92",
"date": "Jul 15th, 2022",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Prison%20Break.zip",
"zipsize": "2136746229",
"speedrunid": "d0kkqgj9",
"image": "https://media.moddb.com/cache/images/downloads/1/236/235254/thumb_620x2000/PrisonBreakSplash.jpg",
"Description": "Prison level inspired by the concept art.",
"MapFileName": "Prison_p"},
{"FriendlyName": "Into the Abyss",
"author": "FNG_Creepa",
"date": "Jul 12th, 2022",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Into%20the%20Abyss.zip",
"zipsize": "15256780",
"speedrunid": "we22577w",
"image": "https://live.staticflickr.com/65535/53840354756_471590aff0_z.jpg",
"Description": "You're trapped in a glitch world and you need to escape back to the city before YOU get glitched.",
"MapFileName": "FactoryRaid_p"},
{"FriendlyName": "Edgehill",
"author": "Lipticon",
"date": "Dec 31st, 2021",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Edgehill.zip",
"zipsize": "18486394",
"speedrunid": "98rr70pd",
"image": "https://media.moddb.com/cache/images/downloads/1/226/225876/thumb_620x2000/Mirrors_Edge_Screenshot_2021.12.png",
"Description": "Join Faith on an adventure through Down Town to drop off a package.",
"MapFileName": "Edgehill_p"},
{"FriendlyName": "Squid Game Doll",
"author": "Koce92",
"date": "Dec 9th, 2021",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Squid%20Game%20Red%20Light%20Green%20Light.zip",
"zipsize": "37443065",
"speedrunid": "93q0y17w",
"image": "https://live.staticflickr.com/65535/53991269803_61521f36da_z.jpg",
"Description": "The Red Light, Green Light game from Squid Game in Mirror's Edge. You are permitted to move when \"green light\" is called. Reach the end within the two-minute time limit!",
"MapFileName": "Squid_Game_Doll"},
{"FriendlyName": "Squid Game Glass",
"author": "Koce92",
"date": "Dec 4th, 2021",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Squid%20Game%20Glass%20Stepping%20Stones.zip",
"zipsize": "13587789",
"speedrunid": "98rjg37d",
"image": "https://live.staticflickr.com/65535/53991036656_15aa79c581_z.jpg",
"Description": "The Glass Stepping Stones game from Squid Game in Mirror's Edge. Glass pane strength is randomised for each attempt.",
"MapFileName": "Squid_Game_Glass"},
{"FriendlyName": "Feel the Wind",
"author": "Cratornugget",
"date": "Aug 12th, 2021",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Feel%20the%20Wind.zip",
"zipsize": "128964362",
"speedrunid": "9x117n7d",
"image": "https://media.moddb.com/cache/images/downloads/1/219/218554/thumb_620x2000/medg.png",
"Description": "There's no story really, just running.",
"MapFileName": "Feel_The_Wind"},
{"FriendlyName": "Facade",
"author": "NoahFreedom",
"date": "Feb 26th, 2021",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Facade.zip",
"zipsize": "230718177",
"speedrunid": "we22514w",
"image": "https://media.moddb.com/cache/images/downloads/1/210/209545/thumb_620x2000/Mirrors_Edge_Screenshot_2021.02.3.png",
"Description": "Faith has to pickup a bag that was left behind by another runner due to the patrol route the CPF take there everyday.",
"MapFileName": "Facade_p"},
{"FriendlyName": "Clarity",
"author": "Arkathtoo",
"date": "Dec 22th, 2020",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Clarity.zip",
"zipsize": "755110000",
"speedrunid": "dnoozp6w",
"image": "https://live.staticflickr.com/65535/53840708229_5087f3b470_z.jpg",
"Description": "A custom map by Arkathtoo.",
"MapFileName": "Clarity_p"},
{"FriendlyName": "Leap of Faith 2.0",
"author": "Keku",
"date": "Sep 7th, 2020",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Leap%20of%20Faith%202.0.zip",
"zipsize": "436637532",
"speedrunid": "wj77z51w",
"image": "https://media.moddb.com/cache/images/downloads/1/201/200251/thumb_620x2000/1-min.png",
"Description": "Faith's sister goes to jail because of Miller, who set Kate up! Faith finds out and becomes angry at Miller, plotting to kill him. After this, she has to escape the city whilst being chased by the police. Leap of Faith 2.0 is a complete lighting overhaul to the previous version, with minor bug fixes and new content such a custom music tracks made by Nakuhito.",
"MapFileName": "leap_p",
"CheckpointAFriendlyName": "CHECKPOINT A",
"CheckpointAFileName": "Start",
"CheckpointADescription": "Start of the adventure.",
"NumberOfCheckpoints": "1"},
{"FriendlyName": "Armistice (Freeroam)",
"author": "Keku",
"date": "Aug 23rd, 2020",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Armistice.zip",
"zipsize": "488741273",
"speedrunid": "w6qqon6d",
"image": "https://media.moddb.com/cache/images/downloads/1/200/199496/thumb_620x2000/1.png",
"Description": "Faith has to deliver a bag to Celeste in a sunrise city while most of the town is still sleeping.",
"MapFileName": "armistice_p"},
{"FriendlyName": "The Floating City",
"author": "Evan06",
"date": "Jul 17th, 2020",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/The%20Floating%20City.zip",
"zipsize": "53633640",
"speedrunid": "d1jj27yd",
"image": "https://live.staticflickr.com/65535/53938114849_87f9c46524_z.jpg",
"Description": "A custom map by Evan06.",
"MapFileName": "The_Floating_City"},
{"FriendlyName": "The Mysterious City",
"author": "V Wings",
"date": "May 31st, 2020",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/The%20Mysterious%20City.zip",
"zipsize": "7077888",
"speedrunid": "93qq442w",
"image": "https://live.staticflickr.com/65535/53839467197_b0a6fdde74_z.jpg",
"Description": "Traverse the mysterious city and locate the hidden collectibles to progress.",
"MapFileName": "The_Mysterious_City"},
{"FriendlyName": "Pre-Prologue Run",
"author": "Theironlefty",
"date": "May 29th, 2020",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Pre-Prologue%20Run.zip",
"zipsize": "446116659",
"speedrunid": "d4002j89",
"image": "https://live.staticflickr.com/65535/53840627743_6104fe37b3_z.jpg",
"Description": "Typical day for Faith, delivery of the bag pre-Prologue.",
"MapFileName": "Pre-Prologue_Run"},
{"FriendlyName": "Coronao",
"author": "Coronaooo",
"date": "Apr 1st, 2020",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Coronao.zip",
"speedrunid": "dy11gp7d",
"zipsize": "89677214",
"image": "https://media.moddb.com/cache/images/downloads/1/192/191653/thumb_620x2000/coro.PNG",
"Description": "Coronavirus invaded the city of Glass, help Faith to wash her hands.",
"MapFileName": "Coronao_p"},
{"FriendlyName": "Lunch Break",
"author": "TCtully",
"date": "Apr 23rd, 2019",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Lunch%20Break.zip",
"zipsize": "161795276",
"speedrunid": "wo776039",
"image": "https://media.moddb.com/cache/images/downloads/1/178/177387/thumb_620x2000/20190422182854_1.jpg",
"Description": "The client has left their package for pickup in their office, near Westside Commons. Merc puts Faith on the job, once she picks up the package she is to deliver it a few blocks East, but things never go according to plan.",
"MapFileName": "Lunchbreak"},
{"FriendlyName": "Oranga (Freeroam)",
"author": "Glost999",
"date": "Dec 25th, 2018",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Oranga%20(Freeroam).zip",
"zipsize": "16986931",
"speedrunid": "wkkk6jxw",
"image": "https://media.moddb.com/cache/images/downloads/1/173/172579/thumb_620x2000/unknown.png",
"Description": "The freeroam version of Glost999's Oranga map.",
"MapFileName": "Oranga"},
{"packname": "Freedom Modding House Edition",
"packdescription": "Freedom: Modding House Edition is an abandoned project by NostalgiasEdge. Contains morning and night versions.",
"author": "NostalgiasEdge",
"date": "Oct 21st, 2018",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Freedom%20Modding%20House%20Edition.zip",
"zipsize": "78213283",
"image": "https://live.staticflickr.com/65535/53840881990_5a672294d5_z.jpg",
"packedmaps": [
{"FriendlyName": "Freedom: Modding House Edition - Morning",
"Description": "Freedom: Modding House Edition is an abandoned project by NostalgiasEdge. Morning version of the map.",
"MapFileName": "MH_Morning"},
{"FriendlyName": "Freedom: Modding House Edition - Night",
"Description": "Freedom: Modding House Edition is an abandoned project by NostalgiasEdge. Night version of the map.",
"MapFileName": "MH_Night"}
]
},
{"FriendlyName": "The City at Alert",
"author": "steveglowplunk",
"date": "Aug 20th, 2018",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/The%20City%20at%20Alert.zip",
"zipsize": "134301614",
"speedrunid": "dy11gy7d",
"image": "https://media.moddb.com/cache/images/downloads/1/143/142715/thumb_620x2000/trailer_thumb.png",
"Description": "After the events in the main game, Faith hid for months until an anonymous tracker offers her a job to retrieve a runner bag. Running out of money, Faith decides to take on the run despite being wanted by the CPF.",
"MapFileName": "The_City_At_Alert"},
{"FriendlyName": "Celeste and Faith Escape",
"author": "VeryFatFaith",
"date": "Apr 2nd, 2018",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Celeste%20and%20Faith%20Escape.zip",
"zipsize": "2480000",
"speedrunid": "98rr781d",
"image": "https://media.moddb.com/cache/images/downloads/1/136/135890/thumb_620x2000/modimg.jpg",
"Description": "Best map ever. Contains everything you may have wanted from a Mirror's Edge map. Make sure you give triforce Kate a kick.",
"MapFileName": "Edge_Pee"},
{"FriendlyName": "Freedom",
"author": "Foxy4",
"date": "May 8th, 2018",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Freedom.zip",
"zipsize": "87933583",
"speedrunid": "95kk5649",
"image": "https://media.moddb.com/cache/images/downloads/1/133/132014/thumb_620x2000/Freedom_Preview.png",
"Description": "Explore the open world, collect information, help people, find secrets and have fun!",
"MapFileName": "Freedom"},
{"FriendlyName": "AfterFlight",
"author": "Keku",
"date": "Dec 12th, 2017",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/AfterFlight.zip",
"zipsize": "70480000",
"speedrunid": "9200qo6d",
"image": "https://live.staticflickr.com/65535/53840729874_73d967fcd0_z.jpg",
"Description": "The events that follow immediately after the Flight chapter (strays from the established lore).",
"MapFileName": "Afterflight_p"},
{"FriendlyName": "Residential (Freeroam)",
"author": "Artemy",
"date": "Sep 13th, 2017",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Residential%20(Freeroam).zip",
"zipsize": "103179878",
"image": "https://media.moddb.com/cache/images/downloads/1/128/127780/thumb_620x2000/Residential_5.png",
"Description": "The freeroam version of Artemy's Residential map.",
"MapFileName": "Residential_Transition"},
{"FriendlyName": "Prototype Remake",
"author": "steveglowplunk",
"date": "Aug 13th, 2017",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Prototype%20Remake.zip",
"zipsize": "9300869",
"speedrunid": "w6qqo46d",
"image": "https://media.moddb.com/cache/images/downloads/1/127/126369/thumb_620x2000/protothumb.png",
"Description": "steveglowplunk's attempt at recreating the Mirror's Edge prototype.",
"MapFileName": "Prototype_Remake"},
{"FriendlyName": "Twisted Fate",
"author": "Koce92",
"date": "Dec 12th, 2015",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Twisted%20Fate.zip",
"zipsize": "129677393",
"speedrunid": "dnoozz5w",
"image": "https://live.staticflickr.com/65535/53840382646_9dc03822d3_z.jpg",
"Description": "At least 30 minutes of gameplay filled with puzzles, parkour and action. This map also has 7 hidden bags to find.",
"MapFileName": "Twisted_Fate_p"},
{"FriendlyName": "Intrusion",
"author": "Mishkin",
"date": "Jul 10th, 2015",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Intrusion.zip",
"zipsize": "111725772",
"speedrunid": "d7yy4ved",
"image": "https://live.staticflickr.com/65535/53840649698_33da868004_z.jpg",
"Description": "Step into Faith's shoes before the events of Mirror's Edge, and parkour your way through roofs, parking garages, and office buildings as you try to infiltrate a facility that you believe acts as a front against other runners.",
"MapFileName": "Intrusion_p"},
{"FriendlyName": "Rendering World 2.0",
"author": "Keku",
"date": "Dec 27th, 2014",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Rendering%20World%202.0.zip",
"zipsize": "812887572",
"speedrunid": "93qq47rw",
"image": "https://media.moddb.com/images/downloads/1/79/78634/auto/nScMuhu.jpg",
"Description": "Rendering World 2.0 is a reimagined and extended version of the previous one.",
"MapFileName": "Rendering_p",
"CheckpointAFriendlyName": "CHECKPOINT A",
"CheckpointAFileName": "Start.",
"CheckpointADescription": "Start of the adventure.",
"CheckpointBFriendlyName": "CHECKPOINT B",
"CheckpointBFileName": "Rendering_World_10",
"CheckpointBDescription": "Stormdrains.",
"CheckpointCFriendlyName": "CHECKPOINT C",
"CheckpointCFileName": "Rendering_World_39",
"CheckpointCDescription": "Faith dream.",
"CheckpointDFriendlyName": "CHECKPOINT D",
"CheckpointDFileName": "Rendering_World_51",
"CheckpointDDescription": "Jacknife chase.",
"CheckpointEFriendlyName": "CHECKPOINT E",
"CheckpointEFileName": "Rendering_World_66",
"CheckpointEDescription": "Atrium.",
"CheckpointFFriendlyName": "CHECKPOINT F",
"CheckpointFFileName": "Rendering_World_75",
"CheckpointFDescription": "Boat.",
"NumberOfCheckpoints": "6"},
{"FriendlyName": "Rendering World",
"author": "Keku",
"date": "Sep 4th, 2014",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Rendering%20World.zip",
"zipsize": "13170114",
"speedrunid": "w6qv31rd",
"image": "https://media.moddb.com/cache/images/downloads/1/75/74249/thumb_620x2000/me1.jpg",
"Description": "This map contains over 30 minutes of gameplay, 15 hidden bags, a lot of places to explore, and a lot of routes to take.",
"MapFileName": "Rendering_World"},
{"FriendlyName": "Troubles in the Skyscraper",
"author": "Keku",
"date": "Aug 27th, 2014",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Troubles%20in%20the%20Skyscraper.zip",
"zipsize": "79450603",
"speedrunid": "98rr77rd",
"image": "https://media.moddb.com/cache/images/downloads/1/74/73871/thumb_620x2000/me.png",
"Description": "Faith returned to The Shard to pick up a bag, but she gets detected and has to escape from there.",
"MapFileName": "Troubles_In_The_Skyscraper"},
{"FriendlyName": "Enjoy the Movement 2.0",
"author": "Keku",
"date": "Aug 24th, 2014",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Enjoy%20the%20Movement%202.0.zip",
"zipsize": "83865108",
"speedrunid": "wlggolg9",
"image": "https://media.moddb.com/cache/images/downloads/1/74/73773/thumb_620x2000/me1.png",
"Description": "Faith has stolen a bag and she has to give it to Kreeg. Note - you may need to lower the texture detail to avoid crashing.",
"MapFileName": "Enjoy_The_Movement_2"},
{"FriendlyName": "New Stream",
"author": "Artemy",
"date": "May 5th, 2013",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/New%20Stream.zip",
"zipsize": "265593815",
"speedrunid": "wp77xj4w",
"image": "https://live.staticflickr.com/65535/53840654318_51ffe2aea4_z.jpg",
"Description": "This is my first map for Mirror's Edge. Updated to combine parts 1-2.",
"MapFileName": "New_Stream_p"},
{"FriendlyName": "Government Base",
"author": "Artemy",
"date": "Dec 4th, 2013",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Government%20Base.zip",
"zipsize": "54494494",
"image": "https://live.staticflickr.com/65535/53839503522_bd892d7c5f_z.jpg",
"Description": "This was a test map where I learned how to import textures into the editor and how to set up bots. Since this map was very time-consuming, and there wouldn't be much interest in it, I decided not to continue it.",
"MapFileName": "Governamental_Place"},
{"packname": "Faith in Aperture Science",
"packdescription": "Test chambers inspired from Portal 2. Includes Parts 1-3.",
"author": "Stas",
"date": "May 28th, 2012",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Faith%20in%20Aperture%20Science.zip",
"zipsize": "419109796",
"image": "https://i.ytimg.com/vi/xydazg8_GwY/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLD6W2uBzVaSCssN8GZ7OXKz4TYuAw",
"packedmaps": [
{"FriendlyName": "Faith in Aperture Science Part 1",
"Description": "Test chambers inspired from Portal 2.",
"MapFileName": "Aperture_pt1_p"},
{"FriendlyName": "Faith in Aperture Science Part 2",
"Description": "Test chambers inspired from Portal 2.",
"MapFileName": "Aperture_pt2_p"},
{"FriendlyName": "Faith in Aperture Science Part 3",
"Description": "Test chambers inspired from Portal 2.",
"MapFileName": "Aperture_pt3_p"}
]
},
{"FriendlyName": "SpeedX",
"author": "Stas",
"date": "May 1st, 2012",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/SpeedX.zip",
"zipsize": "66626519",
"speedrunid": "dnooz06w",
"image": "https://live.staticflickr.com/65535/53839506972_07f6c07cd6_z.jpg",
"Description": "Based on the 2012 mobile game 'SpeedX'.",
"MapFileName": "SpeedX_p"},
{"packname": "China Modding Community",
"packdescription": "A collection of maps from the Chinese Mirror's Edge Modding forum, originally hosted on the website known as Baidu Tieba. Majority of these maps are combat/gun arenas with no real goal.",
"author": "TheShard, Golden-Haired Sabre, Choking Ace & VictoryKO",
"date": "2012",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/China%20Modding%20Community.zip",
"zipsize": "112378716",
"image": "https://live.staticflickr.com/65535/53992496918_76d76604f3_z.jpg",
"packedmaps": [
{"FriendlyName": "BloodStrike",
"Description": "A survival mode map where you must defeat waves of enemies with increasing difficulty. Made by TheShard (version 1.4).",
"MapFileName": "BloodStrike_p"},
{"FriendlyName": "Faith vs 2 Celestes",
"Description": "A map with not much purpose other than fighting two Celestes at once. Made by Golden-Haired Sabre.",
"MapFileName": "Faith_vs_2_Celestes"},
{"FriendlyName": "Four Walls 1",
"Description": "Try to defeat the five enemy snipers while dealing with limited cover. Made by TheShard.",
"MapFileName": "Four_Walls_1_p"},
{"FriendlyName": "Four Walls 2",
"Description": "A survival mode map with limited cover where you must defeat waves of enemies with increasing difficulty. Made by TheShard.",
"MapFileName": "Four_Walls_2_p"},
{"FriendlyName": "Golden Islands",
"Description": "Parkour across the golden islands while avoiding enemy fire. Made by Choking Ace.",
"MapFileName": "Golden_Islands_p"},
{"FriendlyName": "KO",
"Description": "The entire route from the beginning to the end of this map, with its unique textures, style, and the changes in objects along the way, carries deep life significance. Please take time to comprehend its meaning. Made by VictoryKO.",
"MapFileName": "KO_p"},
{"FriendlyName": "Kojima",
"Description": "A survival mode map where you must defeat waves of enemies with increasing difficulty. Made by Golden-Haired Sabre.",
"MapFileName": "Kojima_p"},
{"FriendlyName": "Sea Training Ground",
"Description": "Parkour across the platforms above the endless sea. Made by Choking Ace.",
"MapFileName": "Sea_Training_Ground_p"},
{"FriendlyName": "Training Ground",
"Description": "A map specifically for practicing glitch skills. Made by TheShard.",
"MapFileName": "Training_Ground_p"}
]
},
{"FriendlyName": "Portal 2 Laboratories",
"author": "Stas",
"date": "Aug 10th, 2011",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Portal%202%20Laboratories.zip",
"zipsize": "95430901",
"speedrunid": "9vmm73x9",
"image": "https://live.staticflickr.com/65535/53840759064_4044f40260_z.jpg",
"Description": "Faith awakens in the Portal 2 test chambers and must escape before the reactor reaches critical temperatures.",
"MapFileName": "Portal2_p"},
{"FriendlyName": "Next, On the Night",
"author": "Stas",
"date": "Apr 13th, 2011",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Next%2C%20On%20the%20Night.zip",
"zipsize": "10485760",
"speedrunid": "9m55xj0d",
"image": "https://media.moddb.com/cache/images/downloads/1/201/200833/thumb_620x2000/Next_1b.jpg",
"Description": "Faith has to carry out a new assignment while on night shift. Merc has received some strange signals from Celeste's mobile phone on one of the rooftops. He wants Faith to investigate this signal. Faith decides to carry this Assignment out at night to avoid being spotted by Blues, but little does she know that Celeste may be planning something rather... unexpected.",
"MapFileName": "Next_On_The_Night_p"},
{"FriendlyName": "The White City",
"author": "MSIP35",
"date": "Apr 11th, 2011",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/The%20White%20City.zip",
"zipsize": "14071889",
"speedrunid": "dy11ggpd",
"image": "https://live.staticflickr.com/65535/53839513282_3ba69bd237_z.jpg",
"Description": "A beautiful, bustling city made in the same style as the stock Mirror's Edge City. This map is huge. NOT free roam. Be prepared to dodge cops and rampage through large interiors including warehouses, offices and building sites.",
"MapFileName": "White_City_p"},
{"FriendlyName": "Overtime",
"author": "Chimeray",
"date": "Apr 9th, 2011",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Overtime.zip",
"zipsize": "9793699",
"speedrunid": "9200qz6d",
"image": "https://media.moddb.com/cache/images/mods/1/18/17576/thumb_620x2000/overtime2.jpg",
"Description": "The level starts off after a long day of work, but it's not over yet because Faith gets a call to do some overtime. You must retrieve a bag inside a building that Celeste hid because she dropped out, so you need to finish her assignment instead.",
"MapFileName": "Overtime_p"},
{"FriendlyName": "Run Away From All",
"author": "Stas",
"date": "Mar 21st, 2011",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Run%20Away%20From%20All.zip",
"zipsize": "26560430",
"speedrunid": "98rr761d",
"image": "https://live.staticflickr.com/65535/53840415981_772cdb3dd7_z.jpg",
"Description": "A custom map by Stas.",
"MapFileName": "Run_away_p"},
{"FriendlyName": "Beautiful World",
"author": "Stas",
"date": "Jan 14th, 2011",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Beautiful%20World.zip",
"zipsize": "18670000",
"speedrunid": "93qq4grw",
"image": "https://live.staticflickr.com/65535/53840684148_96ef1a334e_z.jpg",
"Description": "A custom map by Stas.",
"MapFileName": "Beautiful_World"},
{"FriendlyName": "Dream City",
"author": "Stas",
"date": "Dec 1st, 2010",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Dream%20City.zip",
"zipsize": "21212692",
"speedrunid": "drppxekw",
"image": "https://live.staticflickr.com/65535/53840779604_1044d712fe_z.jpg",
"Description": "A custom map by Stas.",
"MapFileName": "Dream_City_p"},
{"FriendlyName": "Evening Walk",
"author": "Stas",
"date": "Oct 27th, 2010",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Evening%20Walk.zip",
"zipsize": "1499463",
"speedrunid": "dnoozv7w",
"image": "https://live.staticflickr.com/65535/53840690688_ddb0d5db05_z.jpg",
"Description": "A custom map by Stas.",
"MapFileName": "Evening_Walk"},
{"FriendlyName": "Stark Concrete (Freeroam)",
"author": "edgie",
"date": "Jun 27th, 2010",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Stark%20Concrete%20(Freeroam).zip",
"zipsize": "165224120",
"image": "https://media.moddb.com/cache/images/downloads/1/25/24560/thumb_620x2000/Stark00.jpg",
"Description": "The freeroam version of edgie's Stark Concrete map.",
"MapFileName": "Stark_Concrete"},
{"FriendlyName": "Faith Flight",
"author": "MSIP35",
"date": "May 21st, 2010",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Faith%20Flight.zip",
"zipsize": "28447866",
"speedrunid": "9gyy4229",
"image": "https://live.staticflickr.com/65535/53840431371_eb65b8108f_z.jpg",
"Description": "A custom map by MSIP35.",
"MapFileName": "Faith_Flight_p"},
{"FriendlyName": "Playground",
"author": "XPxpanderXP",
"date": "Jan 5th, 2010",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Playground.zip",
"zipsize": "1310720",
"image": "https://live.staticflickr.com/65535/53840696373_c7909cf7de_z.jpg",
"Description": "A custom map by XPxpanderXP.",
"MapFileName": "Playground"},
{"FriendlyName": "Freeway",
"author": "Blueberry_pie",
"date": "Apr 15th, 2009",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Maps/Freeway.zip",
"zipsize": "778270",
"image": "https://media.moddb.com/cache/images/downloads/1/16/15697/thumb_620x2000/mefreeway2.jpg",
"Description": "The map takes place on a small part of a freeway where people drive too fast and too close to each other. There's no goal and not much parkour involved either. You can just run around dodging traffic or go surfing on cars, which can be fun for a while. However, the cars don't damage you, and jumping from one car to another isn't possible, unfortunately.",
"MapFileName": "Freeway"}
],
"Custom Time Trials": [
{"packname": "Pure Time Trials (DLC maps)",
"packdescription": "Mirror's Edge gameplay distilled down to its purest form and its purest vision in nine races across eight all-new and totally redesigned Time Trial maps. No cops, no guns, no city. Pure aesthetics, agility and flow that will challenge any Runner.\n\nNote — DLC maps appear in the regular time trials tab. Includes the PS3-exclusive Synesthesia map.",
"author": "DICE",
"date": "Jan 29th, 2009",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Pure%20Time%20Trials%20(DLC%20Maps).zip",
"image": "https://live.staticflickr.com/65535/53839641837_b30b120e7b_z.jpg",
"zipsize": "8246848",
"packedmaps": [
{"FriendlyName": "ACTINO",
"MapFileName": "TT_Actino",
"StretchNameId": "ETTS_TutorialA01",
"QualifyingTime": "100",
"Rating1Time": "100",
"Rating2Time": "75",
"Rating3Time": "67"},
{"FriendlyName": "ACTINO RISE",
"MapFileName": "TT_Actino_Rise",
"StretchNameId": "ETTS_TutorialA01",
"QualifyingTime": "120",
"Rating1Time": "120",
"Rating2Time": "75",
"Rating3Time": "65"},
{"FriendlyName": "CHROMA",
"MapFileName": "TT_Chroma",
"StretchNameId": "ETTS_TutorialA01",
"QualifyingTime": "85",
"Rating1Time": "85",
"Rating2Time": "68",
"Rating3Time": "62"},
{"FriendlyName": "FLOW",
"MapFileName": "TT_Flow",
"StretchNameId": "ETTS_TutorialA01",
"QualifyingTime": "100",
"Rating1Time": "100",
"Rating2Time": "72",
"Rating3Time": "65"},
{"FriendlyName": "KINETIC",
"MapFileName": "TT_Kinetic",
"StretchNameId": "ETTS_TutorialA01",
"QualifyingTime": "105",
"Rating1Time": "105",
"Rating2Time": "70",
"Rating3Time": "60"},
{"FriendlyName": "RAZZMATAZZ",
"MapFileName": "TT_Razzmatazz",
"StretchNameId": "ETTS_TutorialA01",
"QualifyingTime": "90",
"Rating1Time": "90",
"Rating2Time": "62",
"Rating3Time": "57"},
{"FriendlyName": "REFLEX",
"MapFileName": "TT_Reflex",
"StretchNameId": "ETTS_TutorialA01",
"QualifyingTime": "100",
"Rating1Time": "100",
"Rating2Time": "67",
"Rating3Time": "62"},
{"FriendlyName": "REFLEX REDUX",
"MapFileName": "TT_Reflex_Redux",
"StretchNameId": "ETTS_TutorialA01",
"QualifyingTime": "75",
"Rating1Time": "75",
"Rating2Time": "57",
"Rating3Time": "50"},
{"FriendlyName": "SYNESTHESIA",
"MapFileName": "TT_Synesthesia",
"StretchNameId": "ETTS_TutorialA01",
"QualifyingTime": "70",
"Rating1Time": "70",
"Rating2Time": "58",
"Rating3Time": "53"},
{"FriendlyName": "VELOCITY",
"MapFileName": "TT_Velocity",
"StretchNameId": "ETTS_TutorialA01",
"QualifyingTime": "65",
"Rating1Time": "65",
"Rating2Time": "53",
"Rating3Time": "48"}
]
},
{"packname": "Pure Time Trials Prototypes",
"packdescription": "A collection of prototype Pure Time Trial maps from a leaked Xbox 360 development build (dated October 23, 2008). Ported to PC by Keku.",
"author": "DICE",
"date": "Oct 23rd, 2008",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Time%20Trials/Pure%20Time%20Trials%20Prototypes.zip",
"zipsize": "275590392",
"image": "https://live.staticflickr.com/65535/55111706514_29425d54a5_z.jpg",
"packedmaps": [
{"FriendlyName": "Pure Time Trial Prototype 1",
"Description": "A leaked prototype version of a unique Pure Time Trial map not included in the final DLC release.",
"MapFileName": "TT_PTT_Prototype01_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Pure Time Trial Prototype 2 (Actino)",
"Description": "A leaked prototype version of the Actino Pure Time Trial DLC map.",
"MapFileName": "TT_PTT_Prototype02_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Pure Time Trial Prototype 3 (Actino Rise)",
"Description": "A leaked prototype version of the Actino Rise Pure Time Trial DLC map.",
"MapFileName": "TT_PTT_Prototype03_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Pure Time Trial Prototype 4 (Flow)",
"Description": "A leaked prototype version of the Flow Pure Time Trial DLC map.",
"MapFileName": "TT_PTT_Prototype04_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Pure Time Trial Prototype 5 (Razzmatazz)",
"Description": "A leaked prototype version of the Razzmatazz Pure Time Trial DLC map.",
"MapFileName": "TT_PTT_Prototype05_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Pure Time Trial Prototype 6 (Velocity)",
"Description": "A leaked prototype version of the Velocity Pure Time Trial DLC map.",
"MapFileName": "TT_PTT_Prototype06_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Pure Time Trial Prototype 7",
"Description": "A leaked prototype version of a unique Pure Time Trial map not included in the final DLC release.",
"MapFileName": "TT_PTT_Prototype07_p",
"StretchNameId": "ETTS_TutorialA01"}
]
},
{"packname": "Backwards Time Trials",
"packdescription": "Original time trials, but played in reverse! These trials are not beginner friendly.",
"author": "Toyro98",
"date": "Apr 1st, 2021",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Time%20Trials/Backwards%20Time%20Trials.zip",
"zipsize": "653906",
"image": "https://live.staticflickr.com/65535/53979082511_a6a6586c6d_z.jpg",
"packedmaps": [
{"FriendlyName": "Backwards Playground One",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_TutorialA01_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Playground Two",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_TutorialA02_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Playground Three",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_TutorialA03_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Edge",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_EdgeA01_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Arland",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_EscapeB01_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Flight",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_EscapeA01_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Chase",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_StormdrainA02_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Stormdrains One",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_StormdrainB01_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Stormdrains Two",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_StormdrainB02_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Stormdrains Three",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_StormdrainB03_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Heat",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_CranesA01_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Burfield",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_CranesC01_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Cranes One",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_CranesB02_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Cranes Two",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_CranesB01_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards New Eden",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_MallA01_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Factory",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_FactoryA01_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Office",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_CranesD01_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Convoy One",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_ConvoyB01_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Convoy Two",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_ConvoyB02_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Atrium One",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_ConvoyA01_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Atrium Two",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_ConvoyA02_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Shard One",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_ScraperA01_p",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Backwards Shard Two",
"Description": "Original time trials, but played in reverse! These trials are not beginner friendly. Made by Toyro98.",
"MapFileName": "TT_Backwards_ScraperB01_p",
"StretchNameId": "ETTS_TutorialA01"}
]
},
{"packname": "Classic Time Trials Redux",
"packdescription": "A collection of original maps with custom time trial checkpoint placements.",
"author": "Keku, nulaft & Toyro98.",
"date": "2014-2017",
"url": "https://archive.mirrorsedgearchive.org/Mirror's%20Edge%20(2008)/Mods/unlisted_softsoundd/Mirror's%20Edge%20Map%20Manager/Custom%20Time%20Trials/Classic%20Time%20Trials%20Redux.zip",
"zipsize": "11387535",
"image": "https://live.staticflickr.com/65535/53840983260_97fc951a74_z.jpg",
"packedmaps": [
{"FriendlyName": "Arena",
"Description": "A custom time trial by Keku.",
"MapFileName": "TT_Arena",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Arena 1",
"Description": "A custom time trial by nulaft.",
"MapFileName": "TT_Arena_1",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Arena 2",
"Description": "A custom time trial by nulaft.",
"MapFileName": "TT_Arena_2",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Arland 2",
"Description": "A custom time trial by nulaft.",
"MapFileName": "TT_Arland_2",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Beverage Lift",
"Description": "A custom time trial by nulaft.",
"MapFileName": "TT_Beverage_Lift",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Boat 1 (Keku)",
"Description": "A custom time trial by Keku.",
"MapFileName": "TT_Boat_1_keku",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Boat 1 (nulaft)",
"Description": "A custom time trial by nulaft.",
"MapFileName": "TT_Boat_1_nulaft",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Boat 2",
"Description": "A custom time trial by nulaft.",
"MapFileName": "TT_Boat_2",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Burfield 2",
"Description": "A custom time trial by nulaft.",
"MapFileName": "TT_Burfield_2",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Canals 1",
"Description": "A custom time trial by nulaft.",
"MapFileName": "TT_Canals_1",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Chase 2",
"Description": "A custom time trial by nulaft.",
"MapFileName": "TT_Chase_2",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Convoy 3",
"Description": "A custom time trial by nulaft.",
"MapFileName": "TT_Convoy_3",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Convoy 4",
"Description": "A custom time trial by nulaft.",
"MapFileName": "TT_Convoy_4",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Cranes 3",
"Description": "A custom time trial by nulaft.",
"MapFileName": "TT_Cranes_3",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Edge 2",
"Description": "A custom time trial by nulaft.",
"MapFileName": "TT_Edge_2",
"StretchNameId": "ETTS_TutorialA01"},
{"FriendlyName": "Elevator Lobby",