-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSugarySpire.resource_order
2762 lines (2762 loc) · 273 KB
/
SugarySpire.resource_order
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
{
"FolderOrderSettings": [
{"name":"Fonts","order":1,"path":"folders/Fonts.yy",},
{"name":"Notes","order":2,"path":"folders/Notes.yy",},
{"name":"Objects","order":3,"path":"folders/Objects.yy",},
{"name":"Baddie Effects","order":1,"path":"folders/Objects/Baddies/Baddie Effects.yy",},
{"name":"Technical","order":2,"path":"folders/Objects/Baddies/Technical.yy",},
{"name":"Points","order":1,"path":"folders/Objects/Gameplay/Collectables/Points.yy",},
{"name":"UI Related","order":2,"path":"folders/Objects/Gameplay/Collectables/UI Related.yy",},
{"name":"Cultist","order":275,"path":"folders/Objects/Gameplay/Cultist.yy",},
{"name":"Rude Janitor","order":276,"path":"folders/Objects/Gameplay/Rude Janitor.yy",},
{"name":"Music","order":1,"path":"folders/Objects/Technical Stuff/Music.yy",},
{"name":"Options Menu","order":2,"path":"folders/Objects/Technical Stuff/Options Menu.yy",},
{"name":"Pal Swapper","order":3,"path":"folders/Objects/Technical Stuff/Pal Swapper.yy",},
{"name":"Pause","order":4,"path":"folders/Objects/Technical Stuff/Pause.yy",},
{"name":"Rich Presence","order":5,"path":"folders/Objects/Technical Stuff/Rich Presence.yy",},
{"name":"Shell","order":6,"path":"folders/Objects/Technical Stuff/Shell.yy",},
{"name":"UI Related","order":7,"path":"folders/Objects/Technical Stuff/UI Related.yy",},
{"name":"Unorganized","order":397,"path":"folders/Objects/Unorganized.yy",},
{"name":"Rooms","order":4,"path":"folders/Rooms.yy",},
{"name":"UNHAM Testing","order":503,"path":"folders/Rooms/Misc./UNHAM Testing.yy",},
{"name":"New Levels","order":551,"path":"folders/Rooms/New Levels.yy",},
{"name":"Entryway","order":1,"path":"folders/Rooms/New Levels/Entryway.yy",},
{"name":"Steamy","order":2,"path":"folders/Rooms/New Levels/Steamy.yy",},
{"name":"Scripts","order":5,"path":"folders/Scripts.yy",},
{"name":"internal","order":1,"path":"folders/Scripts/Rich Presence/internal.yy",},
{"name":"Coneboy","order":1,"path":"folders/Scripts/State Scripts/Coneboy.yy",},
{"name":"Confecti","order":2,"path":"folders/Scripts/State Scripts/Confecti.yy",},
{"name":"Gumbob","order":3,"path":"folders/Scripts/State Scripts/Gumbob.yy",},
{"name":"Pizzano","order":4,"path":"folders/Scripts/State Scripts/Pizzano.yy",},
{"name":"Sequences","order":6,"path":"folders/Sequences.yy",},
{"name":"Shaders","order":7,"path":"folders/Shaders.yy",},
{"name":"Sounds","order":8,"path":"folders/Sounds.yy",},
{"name":"Sprites","order":9,"path":"folders/Sprites.yy",},
{"name":"Candy Corn","order":1,"path":"folders/Sprites/Baddies/Candy Corn.yy",},
{"name":"Confecti","order":1,"path":"folders/Sprites/Gameplay/Collectables/Confecti.yy",},
{"name":"Candy","order":1,"path":"folders/Sprites/Gameplay/Collectables/Confecti/Candy.yy",},
{"name":"Chocolate","order":2,"path":"folders/Sprites/Gameplay/Collectables/Confecti/Chocolate.yy",},
{"name":"Crack","order":3,"path":"folders/Sprites/Gameplay/Collectables/Confecti/Crack.yy",},
{"name":"Mellow","order":4,"path":"folders/Sprites/Gameplay/Collectables/Confecti/Mellow.yy",},
{"name":"New Cage","order":6,"path":"folders/Sprites/Gameplay/Collectables/Confecti/New Cage.yy",},
{"name":"Worm","order":5,"path":"folders/Sprites/Gameplay/Collectables/Confecti/Worm.yy",},
{"name":"Giant Collects","order":2,"path":"folders/Sprites/Gameplay/Collectables/Giant Collects.yy",},
{"name":"Key","order":3,"path":"folders/Sprites/Gameplay/Collectables/Key.yy",},
{"name":"New Key","order":5,"path":"folders/Sprites/Gameplay/Collectables/New Key.yy",},
{"name":"Small Collects","order":4,"path":"folders/Sprites/Gameplay/Collectables/Small Collects.yy",},
{"name":"Coneball","order":2772,"path":"folders/Sprites/Gameplay/Escape/Coneball.yy",},
{"name":"Timer Bar","order":2771,"path":"folders/Sprites/Gameplay/Escape/Timer Bar.yy",},
{"name":"Gate Backgrounds","order":3000,"path":"folders/Sprites/Gameplay/Gates/Gate Backgrounds.yy",},
{"name":"Entryway","order":5,"path":"folders/Sprites/Gameplay/Gates/Gate Backgrounds/Entryway.yy",},
{"name":"Mines","order":6,"path":"folders/Sprites/Gameplay/Gates/Gate Backgrounds/Mines.yy",},
{"name":"Molasses","order":7,"path":"folders/Sprites/Gameplay/Gates/Gate Backgrounds/Molasses.yy",},
{"name":"Steamy","order":8,"path":"folders/Sprites/Gameplay/Gates/Gate Backgrounds/Steamy.yy",},
{"name":"Lap Portal","order":3245,"path":"folders/Sprites/Gameplay/Lap Portal.yy",},
{"name":"Rude Janitor","order":3243,"path":"folders/Sprites/Gameplay/Rude Janitor.yy",},
{"name":"Bikini Bottom","order":12,"path":"folders/Sprites/Level Specific/Bikini Bottom.yy",},
{"name":"Entryway","order":1,"path":"folders/Sprites/Level Specific/Entryway.yy",},
{"name":"Hub New","order":13,"path":"folders/Sprites/Level Specific/Hub New.yy",},
{"name":"Hub","order":2,"path":"folders/Sprites/Level Specific/Hub.yy",},
{"name":"Mines","order":3,"path":"folders/Sprites/Level Specific/Mines.yy",},
{"name":"Molasses","order":4,"path":"folders/Sprites/Level Specific/Molasses.yy",},
{"name":"NEW Cottontown","order":9,"path":"folders/Sprites/Level Specific/NEW Cottontown.yy",},
{"name":"NEW Entryway","order":10,"path":"folders/Sprites/Level Specific/NEW Entryway.yy",},
{"name":"Assets","order":16,"path":"folders/Sprites/Level Specific/NEW Entryway/Assets.yy",},
{"name":"Gummy Workers","order":4,"path":"folders/Sprites/Level Specific/NEW Entryway/Assets/Gummy Workers.yy",},
{"name":"Backgrounds","order":17,"path":"folders/Sprites/Level Specific/NEW Entryway/Backgrounds.yy",},
{"name":"NEW Mines","order":8,"path":"folders/Sprites/Level Specific/NEW Mines.yy",},
{"name":"NEW Molasses","order":11,"path":"folders/Sprites/Level Specific/NEW Molasses.yy",},
{"name":"Outer Area","order":5,"path":"folders/Sprites/Level Specific/Outer Area.yy",},
{"name":"Secret","order":6,"path":"folders/Sprites/Level Specific/Secret.yy",},
{"name":"Tutorial","order":7,"path":"folders/Sprites/Level Specific/Tutorial.yy",},
{"name":"Hitboxes","order":1,"path":"folders/Sprites/Player/Hitboxes.yy",},
{"name":"Pizzano","order":2,"path":"folders/Sprites/Player/Pizzano.yy",},
{"name":"Candy","order":25,"path":"folders/Sprites/Player/Pizzano/Candy.yy",},
{"name":"Cotton","order":24,"path":"folders/Sprites/Player/Pizzano/Cotton.yy",},
{"name":"Pizzelle","order":3,"path":"folders/Sprites/Player/Pizzelle.yy",},
{"name":"Candy","order":1,"path":"folders/Sprites/Player/Pizzelle/Candy.yy",},
{"name":"Cane","order":2,"path":"folders/Sprites/Player/Pizzelle/Cane.yy",},
{"name":"Cotton","order":3,"path":"folders/Sprites/Player/Pizzelle/Cotton.yy",},
{"name":"Minizelle","order":4,"path":"folders/Sprites/Player/Pizzelle/Minizelle.yy",},
{"name":"New Files","order":3072,"path":"folders/Sprites/Room Specific/Main Menu/New Files.yy",},
{"name":"Rank Score","order":11,"path":"folders/Sprites/Room Specific/Rank Room/Rank Score.yy",},
{"name":"Lapping","order":3449,"path":"folders/Sprites/UI Related/Lapping.yy",},
{"name":"Technical Difficulty","order":3448,"path":"folders/Sprites/UI Related/Technical Difficulty.yy",},
{"name":"Title Cards","order":3447,"path":"folders/Sprites/UI Related/Title Cards.yy",},
{"name":"Cottontown","order":1,"path":"folders/Sprites/UI Related/Title Cards/Cottontown.yy",},
{"name":"Crunchy","order":2,"path":"folders/Sprites/UI Related/Title Cards/Crunchy.yy",},
{"name":"Mines","order":4,"path":"folders/Sprites/UI Related/Title Cards/Mines.yy",},
{"name":"Molasses","order":3,"path":"folders/Sprites/UI Related/Title Cards/Molasses.yy",},
{"name":"Backgrounds","order":1,"path":"folders/Sprites/UI Related/TV/Backgrounds.yy",},
{"name":"Confecti","order":8,"path":"folders/Sprites/UI Related/TV/TV Sprites/Confecti.yy",},
{"name":"Pizzano","order":7,"path":"folders/Sprites/UI Related/TV/TV Sprites/Pizzano.yy",},
{"name":"Pizzelle","order":6,"path":"folders/Sprites/UI Related/TV/TV Sprites/Pizzelle.yy",},
{"name":"Unorganized","order":3548,"path":"folders/Sprites/Unorganized.yy",},
{"name":"Player Sprites","order":1,"path":"folders/Sprites/Unused But Referenced/Player Sprites.yy",},
{"name":"Entryway","order":3217,"path":"folders/Sprites/Unused/Backgrounds/Entryway.yy",},
{"name":"Steamy","order":3216,"path":"folders/Sprites/Unused/Backgrounds/Steamy.yy",},
{"name":"Tile Sets","order":10,"path":"folders/Tile Sets.yy",},
{"name":"Cottontown","order":3645,"path":"folders/Tile Sets/Cottontown.yy",},
{"name":"Entryway","order":3642,"path":"folders/Tile Sets/Entryway.yy",},
{"name":"Hub","order":3646,"path":"folders/Tile Sets/Hub.yy",},
{"name":"Bikini Bottom","order":7,"path":"folders/Tile Sets/Hub/Bikini Bottom.yy",},
{"name":"Mines","order":3643,"path":"folders/Tile Sets/Mines.yy",},
{"name":"Molasses","order":3644,"path":"folders/Tile Sets/Molasses.yy",},
],
"ResourceOrderSettings": [
{"name":"obj_dummycart","order":1,"path":"objects/obj_dummycart/obj_dummycart.yy",},
{"name":"obj_fire_aftereffect","order":3,"path":"objects/obj_fire_aftereffect/obj_fire_aftereffect.yy",},
{"name":"obj_tutorialtrap","order":4,"path":"objects/obj_tutorialtrap/obj_tutorialtrap.yy",},
{"name":"obj_ridetest3","order":5,"path":"objects/obj_ridetest3/obj_ridetest3.yy",},
{"name":"obj_candle_bg","order":6,"path":"objects/obj_candle_bg/obj_candle_bg.yy",},
{"name":"obj_ridetest","order":7,"path":"objects/obj_ridetest/obj_ridetest.yy",},
{"name":"obj_pass","order":8,"path":"objects/obj_pass/obj_pass.yy",},
{"name":"obj_gnome","order":9,"path":"objects/obj_gnome/obj_gnome.yy",},
{"name":"obj_cottonplatform_tiled","order":11,"path":"objects/obj_cottonplatform_tiled/obj_cottonplatform_tiled.yy",},
{"name":"obj_molassesWall","order":12,"path":"objects/obj_molassesWall/obj_molassesWall.yy",},
{"name":"obj_deeznut","order":13,"path":"objects/obj_deeznut/obj_deeznut.yy",},
{"name":"obj_gethat","order":18,"path":"objects/obj_gethat/obj_gethat.yy",},
{"name":"obj_flingFrog","order":15,"path":"objects/obj_flingFrog/obj_flingFrog.yy",},
{"name":"obj_confectitaunt","order":16,"path":"objects/obj_confectitaunt/obj_confectitaunt.yy",},
{"name":"obj_lapportal","order":25,"path":"objects/obj_lapportal/obj_lapportal.yy",},
{"name":"obj_candifiedeffect1","order":18,"path":"objects/obj_candifiedeffect1/obj_candifiedeffect1.yy",},
{"name":"obj_timetrialsign","order":19,"path":"objects/obj_timetrialsign/obj_timetrialsign.yy",},
{"name":"obj_sugarrush","order":20,"path":"objects/obj_sugarrush/obj_sugarrush.yy",},
{"name":"obj_ridetest2","order":21,"path":"objects/obj_ridetest2/obj_ridetest2.yy",},
{"name":"obj_ghostcollectibles","order":19,"path":"objects/obj_ghostcollectibles/obj_ghostcollectibles.yy",},
{"name":"obj_geyser","order":23,"path":"objects/obj_geyser/obj_geyser.yy",},
{"name":"obj_traingo","order":24,"path":"objects/obj_traingo/obj_traingo.yy",},
{"name":"obj_mini","order":25,"path":"objects/obj_mini/obj_mini.yy",},
{"name":"obj_secretdestroyable_tiles2","order":26,"path":"objects/obj_secretdestroyable_tiles2/obj_secretdestroyable_tiles2.yy",},
{"name":"obj_playerhat","order":27,"path":"objects/obj_playerhat/obj_playerhat.yy",},
{"name":"rousr_dissonance_set_match_secret","order":13,"path":"scripts/rousr_dissonance_set_match_secret/rousr_dissonance_set_match_secret.yy",},
{"name":"obj_molasseswater","order":29,"path":"objects/obj_molasseswater/obj_molasseswater.yy",},
{"name":"obj_lap2visual","order":23,"path":"objects/obj_lap2visual/obj_lap2visual.yy",},
{"name":"obj_negativenumber","order":32,"path":"objects/obj_negativenumber/obj_negativenumber.yy",},
{"name":"obj_geyserdestroyable","order":32,"path":"objects/obj_geyserdestroyable/obj_geyserdestroyable.yy",},
{"name":"obj_fakeharrydead","order":33,"path":"objects/obj_fakeharrydead/obj_fakeharrydead.yy",},
{"name":"obj_sluggyparry","order":34,"path":"objects/obj_sluggyparry/obj_sluggyparry.yy",},
{"name":"obj_supertaunteffect","order":35,"path":"objects/obj_supertaunteffect/obj_supertaunteffect.yy",},
{"name":"obj_playerreset","order":37,"path":"objects/obj_playerreset/obj_playerreset.yy",},
{"name":"obj_doorP","order":1,"path":"objects/obj_doorP/obj_doorP.yy",},
{"name":"object_1","order":40,"path":"objects/object_1/object_1.yy",},
{"name":"obj_timesup","order":41,"path":"objects/obj_timesup/obj_timesup.yy",},
{"name":"obj_minecartRail_Slope","order":43,"path":"objects/obj_minecartRail_Slope/obj_minecartRail_Slope.yy",},
{"name":"obj_supertaunthitbox","order":44,"path":"objects/obj_supertaunthitbox/obj_supertaunthitbox.yy",},
{"name":"obj_scootercutscene","order":45,"path":"objects/obj_scootercutscene/obj_scootercutscene.yy",},
{"name":"obj_onewaysolid","order":46,"path":"objects/obj_onewaysolid/obj_onewaysolid.yy",},
{"name":"obj_googlyjuice","order":3,"path":"objects/obj_googlyjuice/obj_googlyjuice.yy",},
{"name":"obj_trash","order":56,"path":"objects/obj_trash/obj_trash.yy",},
{"name":"obj_smallnumber","order":50,"path":"objects/obj_smallnumber/obj_smallnumber.yy",},
{"name":"obj_cameraRegion","order":51,"path":"objects/obj_cameraRegion/obj_cameraRegion.yy",},
{"name":"obj_eventtrigger","order":8,"path":"objects/obj_eventtrigger/obj_eventtrigger.yy",},
{"name":"obj_disclaimer","order":53,"path":"objects/obj_disclaimer/obj_disclaimer.yy",},
{"name":"obj_wow","order":54,"path":"objects/obj_wow/obj_wow.yy",},
{"name":"obj_minipillarsleepcardboard","order":56,"path":"objects/obj_minipillarsleepcardboard/obj_minipillarsleepcardboard.yy",},
{"name":"obj_tutorialsign","order":57,"path":"objects/obj_tutorialsign/obj_tutorialsign.yy",},
{"name":"obj_minecartRail","order":58,"path":"objects/obj_minecartRail/obj_minecartRail.yy",},
{"name":"obj_doortrigger_parent","order":2,"path":"objects/obj_doortrigger_parent/obj_doortrigger_parent.yy",},
{"name":"obj_secretwall","order":9,"path":"objects/obj_secretwall/obj_secretwall.yy",},
{"name":"obj_secretdestroyable_tiles3","order":61,"path":"objects/obj_secretdestroyable_tiles3/obj_secretdestroyable_tiles3.yy",},
{"name":"obj_pickaxeprojectile","order":62,"path":"objects/obj_pickaxeprojectile/obj_pickaxeprojectile.yy",},
{"name":"obj_gumbobprojectile","order":63,"path":"objects/obj_gumbobprojectile/obj_gumbobprojectile.yy",},
{"name":"obj_giantcollect","order":1,"path":"objects/obj_giantcollect/obj_giantcollect.yy",},
{"name":"obj_poofeffectcotton","order":65,"path":"objects/obj_poofeffectcotton/obj_poofeffectcotton.yy",},
{"name":"obj_metalblockHARD","order":66,"path":"objects/obj_metalblockHARD/obj_metalblockHARD.yy",},
{"name":"obj_collectablebox","order":3,"path":"objects/obj_collectablebox/obj_collectablebox.yy",},
{"name":"obj_bombexplosionharmless","order":68,"path":"objects/obj_bombexplosionharmless/obj_bombexplosionharmless.yy",},
{"name":"obj_musicLoopManager","order":69,"path":"objects/obj_musicLoopManager/obj_musicLoopManager.yy",},
{"name":"obj_tauntafterimage","order":70,"path":"objects/obj_tauntafterimage/obj_tauntafterimage.yy",},
{"name":"obj_rosette","order":71,"path":"objects/obj_rosette/obj_rosette.yy",},
{"name":"obj_fouldisgustingcreature","order":73,"path":"objects/obj_fouldisgustingcreature/obj_fouldisgustingcreature.yy",},
{"name":"obj_coneball","order":74,"path":"objects/obj_coneball/obj_coneball.yy",},
{"name":"obj_doorE","order":3,"path":"objects/obj_doorE/obj_doorE.yy",},
{"name":"obj_candifiedeffect2","order":76,"path":"objects/obj_candifiedeffect2/obj_candifiedeffect2.yy",},
{"name":"obj_poofeffectsmall","order":77,"path":"objects/obj_poofeffectsmall/obj_poofeffectsmall.yy",},
{"name":"obj_secretfound","order":10,"path":"objects/obj_secretfound/obj_secretfound.yy",},
{"name":"obj_collectableboxtrigger","order":4,"path":"objects/obj_collectableboxtrigger/obj_collectableboxtrigger.yy",},
{"name":"obj_file1","order":80,"path":"objects/obj_file1/obj_file1.yy",},
{"name":"obj_spraydebris","order":81,"path":"objects/obj_spraydebris/obj_spraydebris.yy",},
{"name":"obj_destroyable2_bigEscape","order":82,"path":"objects/obj_destroyable2_bigEscape/obj_destroyable2_bigEscape.yy",},
{"name":"obj_forkhitbox189","order":83,"path":"objects/obj_forkhitbox189/obj_forkhitbox189.yy",},
{"name":"obj_keydoorclock","order":84,"path":"objects/obj_keydoorclock/obj_keydoorclock.yy",},
{"name":"obj_destroyable3_hard","order":85,"path":"objects/obj_destroyable3_hard/obj_destroyable3_hard.yy",},
{"name":"obj_ranksign","order":86,"path":"objects/obj_ranksign/obj_ranksign.yy",},
{"name":"obj_secretdestroyable_tiles5","order":87,"path":"objects/obj_secretdestroyable_tiles5/obj_secretdestroyable_tiles5.yy",},
{"name":"obj_afterimageoutward","order":88,"path":"objects/obj_afterimageoutward/obj_afterimageoutward.yy",},
{"name":"obj_doorD","order":4,"path":"objects/obj_doorD/obj_doorD.yy",},
{"name":"obj_waterfaucet","order":90,"path":"objects/obj_waterfaucet/obj_waterfaucet.yy",},
{"name":"obj_file2","order":91,"path":"objects/obj_file2/obj_file2.yy",},
{"name":"obj_babybear","order":4,"path":"objects/obj_babybear/obj_babybear.yy",},
{"name":"obj_greenpaint","order":20,"path":"objects/obj_greenpaint/obj_greenpaint.yy",},
{"name":"obj_gnomewall","order":94,"path":"objects/obj_gnomewall/obj_gnomewall.yy",},
{"name":"obj_supercollect","order":95,"path":"objects/obj_supercollect/obj_supercollect.yy",},
{"name":"obj_taunttimer","order":96,"path":"objects/obj_taunttimer/obj_taunttimer.yy",},
{"name":"obj_siren","order":97,"path":"objects/obj_siren/obj_siren.yy",},
{"name":"obj_lolipopminer","order":98,"path":"objects/obj_lolipopminer/obj_lolipopminer.yy",},
{"name":"obj_verify","order":99,"path":"objects/obj_verify/obj_verify.yy",},
{"name":"obj_secretbreakable","order":100,"path":"objects/obj_secretbreakable/obj_secretbreakable.yy",},
{"name":"obj_tauntaftereffectspawner","order":11,"path":"objects/obj_tauntaftereffectspawner/obj_tauntaftereffectspawner.yy",},
{"name":"obj_secretdestroyable_big","order":102,"path":"objects/obj_secretdestroyable_big/obj_secretdestroyable_big.yy",},
{"name":"obj_file3","order":103,"path":"objects/obj_file3/obj_file3.yy",},
{"name":"obj_erasefile","order":104,"path":"objects/obj_erasefile/obj_erasefile.yy",},
{"name":"obj_minigameball","order":105,"path":"objects/obj_minigameball/obj_minigameball.yy",},
{"name":"obj_optionsOLD","order":106,"path":"objects/obj_optionsOLD/obj_optionsOLD.yy",},
{"name":"obj_geyservertical","order":107,"path":"objects/obj_geyservertical/obj_geyservertical.yy",},
{"name":"obj_collecteffect","order":108,"path":"objects/obj_collecteffect/obj_collecteffect.yy",},
{"name":"obj_trainSlowDownTrigger","order":109,"path":"objects/obj_trainSlowDownTrigger/obj_trainSlowDownTrigger.yy",},
{"name":"rousr_dissonance_set_large_image","order":12,"path":"scripts/rousr_dissonance_set_large_image/rousr_dissonance_set_large_image.yy",},
{"name":"obj_destroyableEscape","order":110,"path":"objects/obj_destroyableEscape/obj_destroyableEscape.yy",},
{"name":"obj_minecart","order":111,"path":"objects/obj_minecart/obj_minecart.yy",},
{"name":"par_confecti","order":112,"path":"objects/par_confecti/par_confecti.yy",},
{"name":"obj_vertical_hallway","order":113,"path":"objects/obj_vertical_hallway/obj_vertical_hallway.yy",},
{"name":"obj_cherrycardboard","order":5,"path":"objects/obj_cherrycardboard/obj_cherrycardboard.yy",},
{"name":"par_door","order":115,"path":"objects/par_door/par_door.yy",},
{"name":"obj_geyserstop","order":116,"path":"objects/obj_geyserstop/obj_geyserstop.yy",},
{"name":"rousr_dissonance_handler_on_error","order":4,"path":"scripts/rousr_dissonance_handler_on_error/rousr_dissonance_handler_on_error.yy",},
{"name":"obj_Options_Video","order":1,"path":"objects/obj_Options_Video/obj_Options_Video.yy",},
{"name":"obj_rockcutscene","order":118,"path":"objects/obj_rockcutscene/obj_rockcutscene.yy",},
{"name":"obj_panicchanger","order":119,"path":"objects/obj_panicchanger/obj_panicchanger.yy",},
{"name":"obj_metalblockEscape","order":120,"path":"objects/obj_metalblockEscape/obj_metalblockEscape.yy",},
{"name":"par_follower","order":121,"path":"objects/par_follower/par_follower.yy",},
{"name":"obj_initializer","order":12,"path":"objects/obj_initializer/obj_initializer.yy",},
{"name":"obj_bggear","order":123,"path":"objects/obj_bggear/obj_bggear.yy",},
{"name":"obj_destroyable2Escape","order":124,"path":"objects/obj_destroyable2Escape/obj_destroyable2Escape.yy",},
{"name":"obj_confectibox","order":125,"path":"objects/obj_confectibox/obj_confectibox.yy",},
{"name":"obj_babybeardebris","order":126,"path":"objects/obj_babybeardebris/obj_babybeardebris.yy",},
{"name":"obj_mainfartselect","order":127,"path":"objects/obj_mainfartselect/obj_mainfartselect.yy",},
{"name":"obj_real","order":128,"path":"objects/obj_real/obj_real.yy",},
{"name":"obj_user","order":129,"path":"objects/obj_user/obj_user.yy",},
{"name":"obj_Options_Audio","order":2,"path":"objects/obj_Options_Audio/obj_Options_Audio.yy",},
{"name":"obj_cardboardgummy","order":131,"path":"objects/obj_cardboardgummy/obj_cardboardgummy.yy",},
{"name":"obj_trainSpeedUpTrigger","order":132,"path":"objects/obj_trainSpeedUpTrigger/obj_trainSpeedUpTrigger.yy",},
{"name":"obj_creditsdoor","order":133,"path":"objects/obj_creditsdoor/obj_creditsdoor.yy",},
{"name":"obj_molassesGround","order":134,"path":"objects/obj_molassesGround/obj_molassesGround.yy",},
{"name":"obj_secretdestroyable","order":135,"path":"objects/obj_secretdestroyable/obj_secretdestroyable.yy",},
{"name":"obj_pizzanodebris","order":136,"path":"objects/obj_pizzanodebris/obj_pizzanodebris.yy",},
{"name":"obj_camera","order":137,"path":"objects/obj_camera/obj_camera.yy",},
{"name":"obj_tv","order":138,"path":"objects/obj_tv/obj_tv.yy",},
{"name":"obj_bomb","order":139,"path":"objects/obj_bomb/obj_bomb.yy",},
{"name":"obj_jellyswitch","order":140,"path":"objects/obj_jellyswitch/obj_jellyswitch.yy",},
{"name":"obj_flash","order":16,"path":"objects/obj_flash/obj_flash.yy",},
{"name":"obj_solid","order":142,"path":"objects/obj_solid/obj_solid.yy",},
{"name":"obj_slopeplatform","order":48,"path":"objects/obj_slopeplatform/obj_slopeplatform.yy",},
{"name":"obj_gummyharry","order":144,"path":"objects/obj_gummyharry/obj_gummyharry.yy",},
{"name":"obj_cone","order":7,"path":"objects/obj_cone/obj_cone.yy",},
{"name":"obj_backtostart","order":146,"path":"objects/obj_backtostart/obj_backtostart.yy",},
{"name":"obj_geysersolid","order":147,"path":"objects/obj_geysersolid/obj_geysersolid.yy",},
{"name":"obj_player","order":148,"path":"objects/obj_player/obj_player.yy",},
{"name":"obj_lighting","order":149,"path":"objects/obj_lighting/obj_lighting.yy",},
{"name":"obj_coneball_effect","order":8,"path":"objects/obj_coneball_effect/obj_coneball_effect.yy",},
{"name":"obj_music","order":151,"path":"objects/obj_music/obj_music.yy",},
{"name":"obj_pizzanounlocked","order":38,"path":"objects/obj_pizzanounlocked/obj_pizzanounlocked.yy",},
{"name":"obj_rank","order":153,"path":"objects/obj_rank/obj_rank.yy",},
{"name":"obj_pause","order":154,"path":"objects/obj_pause/obj_pause.yy",},
{"name":"obj_pausefadeout","order":155,"path":"objects/obj_pausefadeout/obj_pausefadeout.yy",},
{"name":"obj_jerald","order":156,"path":"objects/obj_jerald/obj_jerald.yy",},
{"name":"obj_slaphitbox","order":157,"path":"objects/obj_slaphitbox/obj_slaphitbox.yy",},
{"name":"obj_swordhitbox","order":158,"path":"objects/obj_swordhitbox/obj_swordhitbox.yy",},
{"name":"obj_tasershockwave","order":159,"path":"objects/obj_tasershockwave/obj_tasershockwave.yy",},
{"name":"obj_baddie","order":160,"path":"objects/obj_baddie/obj_baddie.yy",},
{"name":"obj_baddiecollisionbox","order":161,"path":"objects/obj_baddiecollisionbox/obj_baddiecollisionbox.yy",},
{"name":"obj_sausageman_dead","order":162,"path":"objects/obj_sausageman_dead/obj_sausageman_dead.yy",},
{"name":"obj_slimedead","order":163,"path":"objects/obj_slimedead/obj_slimedead.yy",},
{"name":"obj_gumslime","order":6,"path":"objects/obj_gumslime/obj_gumslime.yy",},
{"name":"obj_gumballmachine","order":165,"path":"objects/obj_gumballmachine/obj_gumballmachine.yy",},
{"name":"obj_gumball","order":166,"path":"objects/obj_gumball/obj_gumball.yy",},
{"name":"obj_knight","order":7,"path":"objects/obj_knight/obj_knight.yy",},
{"name":"obj_hurtbox","order":1,"path":"objects/obj_hurtbox/obj_hurtbox.yy",},
{"name":"obj_keyfollow","order":6,"path":"objects/obj_keyfollow/obj_keyfollow.yy",},
{"name":"obj_forkhitbox","order":2,"path":"objects/obj_forkhitbox/obj_forkhitbox.yy",},
{"name":"obj_swedishfish","order":8,"path":"objects/obj_swedishfish/obj_swedishfish.yy",},
{"name":"obj_cottonwitch","order":9,"path":"objects/obj_cottonwitch/obj_cottonwitch.yy",},
{"name":"obj_cottonwitchprojectile","order":3,"path":"objects/obj_cottonwitchprojectile/obj_cottonwitchprojectile.yy",},
{"name":"obj_coneboy","order":10,"path":"objects/obj_coneboy/obj_coneboy.yy",},
{"name":"obj_charcherry","order":11,"path":"objects/obj_charcherry/obj_charcherry.yy",},
{"name":"obj_rudejanitor","order":176,"path":"objects/obj_rudejanitor/obj_rudejanitor.yy",},
{"name":"obj_puddle","order":177,"path":"objects/obj_puddle/obj_puddle.yy",},
{"name":"obj_officerwhoopiepie","order":178,"path":"objects/obj_officerwhoopiepie/obj_officerwhoopiepie.yy",},
{"name":"obj_applejim","order":179,"path":"objects/obj_applejim/obj_applejim.yy",},
{"name":"obj_applejimbomb","order":180,"path":"objects/obj_applejimbomb/obj_applejimbomb.yy",},
{"name":"obj_baddiespawner","order":181,"path":"objects/obj_baddiespawner/obj_baddiespawner.yy",},
{"name":"obj_poofeffect","order":182,"path":"objects/obj_poofeffect/obj_poofeffect.yy",},
{"name":"obj_playerhatselect","order":183,"path":"objects/obj_playerhatselect/obj_playerhatselect.yy",},
{"name":"obj_slidecloud","order":184,"path":"objects/obj_slidecloud/obj_slidecloud.yy",},
{"name":"obj_crazyrunothereffect","order":1,"path":"objects/obj_crazyrunothereffect/obj_crazyrunothereffect.yy",},
{"name":"obj_fadeout","order":186,"path":"objects/obj_fadeout/obj_fadeout.yy",},
{"name":"obj_20","order":187,"path":"objects/obj_20/obj_20.yy",},
{"name":"obj_doorT","order":8,"path":"objects/obj_doorT/obj_doorT.yy",},
{"name":"obj_speedlines","order":2,"path":"objects/obj_speedlines/obj_speedlines.yy",},
{"name":"obj_punchdust","order":190,"path":"objects/obj_punchdust/obj_punchdust.yy",},
{"name":"obj_jumpdust","order":3,"path":"objects/obj_jumpdust/obj_jumpdust.yy",},
{"name":"obj_bulletimpact","order":192,"path":"objects/obj_bulletimpact/obj_bulletimpact.yy",},
{"name":"obj_bombexplosion","order":193,"path":"objects/obj_bombexplosion/obj_bombexplosion.yy",},
{"name":"obj_destroyable3Escape","order":194,"path":"objects/obj_destroyable3Escape/obj_destroyable3Escape.yy",},
{"name":"obj_panicPortal","order":195,"path":"objects/obj_panicPortal/obj_panicPortal.yy",},
{"name":"obj_roomnames","order":196,"path":"objects/obj_roomnames/obj_roomnames.yy",},
{"name":"obj_bombexplosioncherry","order":197,"path":"objects/obj_bombexplosioncherry/obj_bombexplosioncherry.yy",},
{"name":"obj_bumpeffect","order":4,"path":"objects/obj_bumpeffect/obj_bumpeffect.yy",},
{"name":"obj_mach3effect","order":199,"path":"objects/obj_mach3effect/obj_mach3effect.yy",},
{"name":"obj_secretdestroyable_metal","order":200,"path":"objects/obj_secretdestroyable_metal/obj_secretdestroyable_metal.yy",},
{"name":"obj_crazyruneffect","order":5,"path":"objects/obj_crazyruneffect/obj_crazyruneffect.yy",},
{"name":"obj_keyeffect","order":202,"path":"objects/obj_keyeffect/obj_keyeffect.yy",},
{"name":"obj_angrycloud","order":203,"path":"objects/obj_angrycloud/obj_angrycloud.yy",},
{"name":"obj_sweat","order":204,"path":"objects/obj_sweat/obj_sweat.yy",},
{"name":"obj_80","order":205,"path":"objects/obj_80/obj_80.yy",},
{"name":"obj_slimedebris","order":206,"path":"objects/obj_slimedebris/obj_slimedebris.yy",},
{"name":"rousr_dissonance_handler_on_join","order":5,"path":"scripts/rousr_dissonance_handler_on_join/rousr_dissonance_handler_on_join.yy",},
{"name":"obj_explosioneffect","order":207,"path":"objects/obj_explosioneffect/obj_explosioneffect.yy",},
{"name":"obj_secretportal","order":46,"path":"objects/obj_secretportal/obj_secretportal.yy",},
{"name":"obj_dashcloud","order":6,"path":"objects/obj_dashcloud/obj_dashcloud.yy",},
{"name":"obj_credits","order":13,"path":"objects/obj_credits/obj_credits.yy",},
{"name":"obj_uparrow","order":211,"path":"objects/obj_uparrow/obj_uparrow.yy",},
{"name":"obj_highjumpcloud2","order":7,"path":"objects/obj_highjumpcloud2/obj_highjumpcloud2.yy",},
{"name":"obj_parentparticle","order":213,"path":"objects/obj_parentparticle/obj_parentparticle.yy",},
{"name":"obj_baddiegibs","order":214,"path":"objects/obj_baddiegibs/obj_baddiegibs.yy",},
{"name":"obj_stompeffect","order":215,"path":"objects/obj_stompeffect/obj_stompeffect.yy",},
{"name":"obj_40","order":216,"path":"objects/obj_40/obj_40.yy",},
{"name":"obj_taunteffect","order":217,"path":"objects/obj_taunteffect/obj_taunteffect.yy",},
{"name":"obj_machalleffect","order":8,"path":"objects/obj_machalleffect/obj_machalleffect.yy",},
{"name":"obj_gmliveblank","order":20,"path":"objects/obj_gmliveblank/obj_gmliveblank.yy",},
{"name":"obj_playeruppercut_hitbox","order":39,"path":"objects/obj_playeruppercut_hitbox/obj_playeruppercut_hitbox.yy",},
{"name":"obj_superdashcloud","order":9,"path":"objects/obj_superdashcloud/obj_superdashcloud.yy",},
{"name":"obj_bangeffect","order":222,"path":"objects/obj_bangeffect/obj_bangeffect.yy",},
{"name":"obj_tile_swapper_start","order":223,"path":"objects/obj_tile_swapper_start/obj_tile_swapper_start.yy",},
{"name":"obj_boxxeddebris","order":224,"path":"objects/obj_boxxeddebris/obj_boxxeddebris.yy",},
{"name":"obj_chargeeffect","order":10,"path":"objects/obj_chargeeffect/obj_chargeeffect.yy",},
{"name":"obj_slapstar","order":226,"path":"objects/obj_slapstar/obj_slapstar.yy",},
{"name":"obj_cloudeffect","order":227,"path":"objects/obj_cloudeffect/obj_cloudeffect.yy",},
{"name":"obj_landcloud","order":11,"path":"objects/obj_landcloud/obj_landcloud.yy",},
{"name":"obj_tile_swapper_end","order":229,"path":"objects/obj_tile_swapper_end/obj_tile_swapper_end.yy",},
{"name":"obj_parallax","order":14,"path":"objects/obj_parallax/obj_parallax.yy",},
{"name":"obj_destructibleplatform","order":231,"path":"objects/obj_destructibleplatform/obj_destructibleplatform.yy",},
{"name":"obj_noisecrusher","order":232,"path":"objects/obj_noisecrusher/obj_noisecrusher.yy",},
{"name":"obj_30","order":233,"path":"objects/obj_30/obj_30.yy",},
{"name":"obj_spikehurteffect","order":234,"path":"objects/obj_spikehurteffect/obj_spikehurteffect.yy",},
{"name":"obj_10","order":235,"path":"objects/obj_10/obj_10.yy",},
{"name":"obj_enemybird","order":236,"path":"objects/obj_enemybird/obj_enemybird.yy",},
{"name":"obj_lock","order":237,"path":"objects/obj_lock/obj_lock.yy",},
{"name":"obj_groundpoundeffect","order":12,"path":"objects/obj_groundpoundeffect/obj_groundpoundeffect.yy",},
{"name":"obj_slope","order":239,"path":"objects/obj_slope/obj_slope.yy",},
{"name":"obj_hallway","order":240,"path":"objects/obj_hallway/obj_hallway.yy",},
{"name":"obj_boxofpizza","order":241,"path":"objects/obj_boxofpizza/obj_boxofpizza.yy",},
{"name":"obj_doorA","order":5,"path":"objects/obj_doorA/obj_doorA.yy",},
{"name":"obj_doorB","order":6,"path":"objects/obj_doorB/obj_doorB.yy",},
{"name":"obj_doorC","order":7,"path":"objects/obj_doorC/obj_doorC.yy",},
{"name":"obj_secretdestroyable_tiles4","order":245,"path":"objects/obj_secretdestroyable_tiles4/obj_secretdestroyable_tiles4.yy",},
{"name":"obj_confectimallow","order":246,"path":"objects/obj_confectimallow/obj_confectimallow.yy",},
{"name":"obj_confectichoco","order":247,"path":"objects/obj_confectichoco/obj_confectichoco.yy",},
{"name":"obj_confecticrack","order":248,"path":"objects/obj_confecticrack/obj_confecticrack.yy",},
{"name":"obj_confecticandy","order":249,"path":"objects/obj_confecticandy/obj_confecticandy.yy",},
{"name":"obj_confectiworm","order":250,"path":"objects/obj_confectiworm/obj_confectiworm.yy",},
{"name":"obj_exitgate","order":251,"path":"objects/obj_exitgate/obj_exitgate.yy",},
{"name":"obj_harrydead","order":252,"path":"objects/obj_harrydead/obj_harrydead.yy",},
{"name":"obj_minipillarwoke","order":253,"path":"objects/obj_minipillarwoke/obj_minipillarwoke.yy",},
{"name":"obj_minipillarsleep","order":254,"path":"objects/obj_minipillarsleep/obj_minipillarsleep.yy",},
{"name":"obj_endlevelfade","order":255,"path":"objects/obj_endlevelfade/obj_endlevelfade.yy",},
{"name":"obj_pizzacutter","order":256,"path":"objects/obj_pizzacutter/obj_pizzacutter.yy",},
{"name":"obj_watertop","order":257,"path":"objects/obj_watertop/obj_watertop.yy",},
{"name":"obj_bushdisguise","order":258,"path":"objects/obj_bushdisguise/obj_bushdisguise.yy",},
{"name":"obj_chocofrogsmall","order":259,"path":"objects/obj_chocofrogsmall/obj_chocofrogsmall.yy",},
{"name":"obj_hotcaramel","order":260,"path":"objects/obj_hotcaramel/obj_hotcaramel.yy",},
{"name":"obj_superspring","order":261,"path":"objects/obj_superspring/obj_superspring.yy",},
{"name":"obj_trainjump","order":262,"path":"objects/obj_trainjump/obj_trainjump.yy",},
{"name":"obj_traindestroy","order":263,"path":"objects/obj_traindestroy/obj_traindestroy.yy",},
{"name":"obj_key","order":5,"path":"objects/obj_key/obj_key.yy",},
{"name":"obj_chocofrogbig","order":265,"path":"objects/obj_chocofrogbig/obj_chocofrogbig.yy",},
{"name":"obj_grabbiehand","order":266,"path":"objects/obj_grabbiehand/obj_grabbiehand.yy",},
{"name":"obj_platform","order":267,"path":"objects/obj_platform/obj_platform.yy",},
{"name":"obj_train","order":268,"path":"objects/obj_train/obj_train.yy",},
{"name":"obj_collect","order":2,"path":"objects/obj_collect/obj_collect.yy",},
{"name":"rousr_dissonance_handler_on_disconnected","order":3,"path":"scripts/rousr_dissonance_handler_on_disconnected/rousr_dissonance_handler_on_disconnected.yy",},
{"name":"obj_cottonplatform","order":270,"path":"objects/obj_cottonplatform/obj_cottonplatform.yy",},
{"name":"obj_cottoncreator","order":271,"path":"objects/obj_cottoncreator/obj_cottoncreator.yy",},
{"name":"obj_checkpoint","order":272,"path":"objects/obj_checkpoint/obj_checkpoint.yy",},
{"name":"obj_keydoor","order":273,"path":"objects/obj_keydoor/obj_keydoor.yy",},
{"name":"obj_ladder","order":274,"path":"objects/obj_ladder/obj_ladder.yy",},
{"name":"obj_cutsceneManager","order":15,"path":"objects/obj_cutsceneManager/obj_cutsceneManager.yy",},
{"name":"obj_railh","order":276,"path":"objects/obj_railh/obj_railh.yy",},
{"name":"obj_secretportalstart","order":47,"path":"objects/obj_secretportalstart/obj_secretportalstart.yy",},
{"name":"obj_charger","order":12,"path":"objects/obj_charger/obj_charger.yy",},
{"name":"obj_exitchar","order":15,"path":"objects/obj_exitchar/obj_exitchar.yy",},
{"name":"obj_railh2","order":280,"path":"objects/obj_railh2/obj_railh2.yy",},
{"name":"obj_grindrail","order":281,"path":"objects/obj_grindrail/obj_grindrail.yy",},
{"name":"obj_exitdoorsign","order":282,"path":"objects/obj_exitdoorsign/obj_exitdoorsign.yy",},
{"name":"obj_destructibles","order":283,"path":"objects/obj_destructibles/obj_destructibles.yy",},
{"name":"obj_bombblockdebris","order":284,"path":"objects/obj_bombblockdebris/obj_bombblockdebris.yy",},
{"name":"obj_destroyable","order":285,"path":"objects/obj_destroyable/obj_destroyable.yy",},
{"name":"obj_destroyable2","order":286,"path":"objects/obj_destroyable2/obj_destroyable2.yy",},
{"name":"obj_debris","order":287,"path":"objects/obj_debris/obj_debris.yy",},
{"name":"obj_debris2","order":288,"path":"objects/obj_debris2/obj_debris2.yy",},
{"name":"obj_bigdestructibles","order":289,"path":"objects/obj_bigdestructibles/obj_bigdestructibles.yy",},
{"name":"obj_destroyable3","order":290,"path":"objects/obj_destroyable3/obj_destroyable3.yy",},
{"name":"obj_geyserdestroydebris","order":291,"path":"objects/obj_geyserdestroydebris/obj_geyserdestroydebris.yy",},
{"name":"obj_oneway","order":292,"path":"objects/obj_oneway/obj_oneway.yy",},
{"name":"obj_destroyable2_big","order":293,"path":"objects/obj_destroyable2_big/obj_destroyable2_big.yy",},
{"name":"obj_metalblock","order":294,"path":"objects/obj_metalblock/obj_metalblock.yy",},
{"name":"obj_metaldebris","order":295,"path":"objects/obj_metaldebris/obj_metaldebris.yy",},
{"name":"obj_cane","order":296,"path":"objects/obj_cane/obj_cane.yy",},
{"name":"obj_rudejanitorfollow","order":2,"path":"objects/obj_rudejanitorfollow/obj_rudejanitorfollow.yy",},
{"name":"obj_spike","order":298,"path":"objects/obj_spike/obj_spike.yy",},
{"name":"obj_door","order":299,"path":"objects/obj_door/obj_door.yy",},
{"name":"obj_sweetwater","order":300,"path":"objects/obj_sweetwater/obj_sweetwater.yy",},
{"name":"obj_bombspawner","order":301,"path":"objects/obj_bombspawner/obj_bombspawner.yy",},
{"name":"obj_pizzano_jumpscare","order":36,"path":"objects/obj_pizzano_jumpscare/obj_pizzano_jumpscare.yy",},
{"name":"obj_talkto","order":303,"path":"objects/obj_talkto/obj_talkto.yy",},
{"name":"obj_collectslice","order":3,"path":"objects/obj_collectslice/obj_collectslice.yy",},
{"name":"obj_railv","order":305,"path":"objects/obj_railv/obj_railv.yy",},
{"name":"obj_pizzaloss","order":306,"path":"objects/obj_pizzaloss/obj_pizzaloss.yy",},
{"name":"obj_dashpad","order":307,"path":"objects/obj_dashpad/obj_dashpad.yy",},
{"name":"obj_stylebar","order":16,"path":"objects/obj_stylebar/obj_stylebar.yy",},
{"name":"obj_escapetest","order":309,"path":"objects/obj_escapetest/obj_escapetest.yy",},
{"name":"obj_startgate","order":310,"path":"objects/obj_startgate/obj_startgate.yy",},
{"name":"obj_onewaywatersolid","order":311,"path":"objects/obj_onewaywatersolid/obj_onewaywatersolid.yy",},
{"name":"obj_taserhitbox","order":312,"path":"objects/obj_taserhitbox/obj_taserhitbox.yy",},
{"name":"obj_doorblocked","order":313,"path":"objects/obj_doorblocked/obj_doorblocked.yy",},
{"name":"obj_palletteswapper","order":314,"path":"objects/obj_palletteswapper/obj_palletteswapper.yy",},
{"name":"obj_baddiethrow","order":315,"path":"objects/obj_baddiethrow/obj_baddiethrow.yy",},
{"name":"obj_null","order":17,"path":"objects/obj_null/obj_null.yy",},
{"name":"obj_statezero","order":317,"path":"objects/obj_statezero/obj_statezero.yy",},
{"name":"obj_attack_aftereffect","order":318,"path":"objects/obj_attack_aftereffect/obj_attack_aftereffect.yy",},
{"name":"obj_noisesatellite","order":319,"path":"objects/obj_noisesatellite/obj_noisesatellite.yy",},
{"name":"obj_boss","order":320,"path":"objects/obj_boss/obj_boss.yy",},
{"name":"obj_saveroom","order":18,"path":"objects/obj_saveroom/obj_saveroom.yy",},
{"name":"obj_pizzaball","order":322,"path":"objects/obj_pizzaball/obj_pizzaball.yy",},
{"name":"obj_bombblock","order":323,"path":"objects/obj_bombblock/obj_bombblock.yy",},
{"name":"obj_player2","order":324,"path":"objects/obj_player2/obj_player2.yy",},
{"name":"obj_parryhitbox","order":325,"path":"objects/obj_parryhitbox/obj_parryhitbox.yy",},
{"name":"obj_palexample","order":326,"path":"objects/obj_palexample/obj_palexample.yy",},
{"name":"obj_crackerkicker","order":13,"path":"objects/obj_crackerkicker/obj_crackerkicker.yy",},
{"name":"obj_disappearingblock","order":328,"path":"objects/obj_disappearingblock/obj_disappearingblock.yy",},
{"name":"obj_crackerkicker_kickhitbox","order":4,"path":"objects/obj_crackerkicker_kickhitbox/obj_crackerkicker_kickhitbox.yy",},
{"name":"obj_Options_Input","order":3,"path":"objects/obj_Options_Input/obj_Options_Input.yy",},
{"name":"obj_combomodestarter","order":331,"path":"objects/obj_combomodestarter/obj_combomodestarter.yy",},
{"name":"obj_geyserspawner","order":332,"path":"objects/obj_geyserspawner/obj_geyserspawner.yy",},
{"name":"obj_sluggy","order":14,"path":"objects/obj_sluggy/obj_sluggy.yy",},
{"name":"obj_coneprojectile","order":334,"path":"objects/obj_coneprojectile/obj_coneprojectile.yy",},
{"name":"Object394","order":65,"path":"objects/Object394/Object394.yy",},
{"name":"obj_shell","order":336,"path":"objects/obj_shell/obj_shell.yy",},
{"name":"obj_startgateconfecti","order":51,"path":"objects/obj_startgateconfecti/obj_startgateconfecti.yy",},
{"name":"obj_pizzanoeffect","order":37,"path":"objects/obj_pizzanoeffect/obj_pizzanoeffect.yy",},
{"name":"obj_wallkick_aftereffect","order":63,"path":"objects/obj_wallkick_aftereffect/obj_wallkick_aftereffect.yy",},
{"name":"obj_combotitle","order":6,"path":"objects/obj_combotitle/obj_combotitle.yy",},
{"name":"obj_menupercent","order":30,"path":"objects/obj_menupercent/obj_menupercent.yy",},
{"name":"obj_sausageman_deadtitle","order":43,"path":"objects/obj_sausageman_deadtitle/obj_sausageman_deadtitle.yy",},
{"name":"obj_cottonwitch_attackhitbox","order":5,"path":"objects/obj_cottonwitch_attackhitbox/obj_cottonwitch_attackhitbox.yy",},
{"name":"obj_trashcan","order":57,"path":"objects/obj_trashcan/obj_trashcan.yy",},
{"name":"obj_cottonvisible","order":11,"path":"objects/obj_cottonvisible/obj_cottonvisible.yy",},
{"name":"obj_spookey","order":50,"path":"objects/obj_spookey/obj_spookey.yy",},
{"name":"obj_rudejanitoranim","order":1,"path":"objects/obj_rudejanitoranim/obj_rudejanitoranim.yy",},
{"name":"obj_rankreset","order":41,"path":"objects/obj_rankreset/obj_rankreset.yy",},
{"name":"obj_treasure","order":59,"path":"objects/obj_treasure/obj_treasure.yy",},
{"name":"obj_comboend","order":5,"path":"objects/obj_comboend/obj_comboend.yy",},
{"name":"obj_cultistdemon","order":1,"path":"objects/obj_cultistdemon/obj_cultistdemon.yy",},
{"name":"obj_trashcandebris","order":58,"path":"objects/obj_trashcandebris/obj_trashcandebris.yy",},
{"name":"obj_clocktrigger","order":4,"path":"objects/obj_clocktrigger/obj_clocktrigger.yy",},
{"name":"obj_scootertaunt","order":45,"path":"objects/obj_scootertaunt/obj_scootertaunt.yy",},
{"name":"obj_technicaldifficulty","order":52,"path":"objects/obj_technicaldifficulty/obj_technicaldifficulty.yy",},
{"name":"obj_tiledestroy","order":53,"path":"objects/obj_tiledestroy/obj_tiledestroy.yy",},
{"name":"obj_doorfromtreasure","order":13,"path":"objects/obj_doorfromtreasure/obj_doorfromtreasure.yy",},
{"name":"obj_punk","order":15,"path":"objects/obj_punk/obj_punk.yy",},
{"name":"obj_popcorn","order":40,"path":"objects/obj_popcorn/obj_popcorn.yy",},
{"name":"obj_molassesbubble","order":31,"path":"objects/obj_molassesbubble/obj_molassesbubble.yy",},
{"name":"obj_barrel","order":1,"path":"objects/obj_barrel/obj_barrel.yy",},
{"name":"obj_pickaxe_effect","order":35,"path":"objects/obj_pickaxe_effect/obj_pickaxe_effect.yy",},
{"name":"obj_chocofrogmid","order":3,"path":"objects/obj_chocofrogmid/obj_chocofrogmid.yy",},
{"name":"obj_logoprop","order":29,"path":"objects/obj_logoprop/obj_logoprop.yy",},
{"name":"obj_escapecollect","order":4,"path":"objects/obj_escapecollect/obj_escapecollect.yy",},
{"name":"obj_saveicon","order":44,"path":"objects/obj_saveicon/obj_saveicon.yy",},
{"name":"obj_cutoff","order":12,"path":"objects/obj_cutoff/obj_cutoff.yy",},
{"name":"obj_ranktime","order":42,"path":"objects/obj_ranktime/obj_ranktime.yy",},
{"name":"obj_spireintro","order":49,"path":"objects/obj_spireintro/obj_spireintro.yy",},
{"name":"obj_chargeeffectwall","order":15,"path":"objects/obj_chargeeffectwall/obj_chargeeffectwall.yy",},
{"name":"obj_escapecollectbig","order":5,"path":"objects/obj_escapecollectbig/obj_escapecollectbig.yy",},
{"name":"obj_Options_Modded","order":4,"path":"objects/obj_Options_Modded/obj_Options_Modded.yy",},
{"name":"obj_chargeeffectsjump","order":13,"path":"objects/obj_chargeeffectsjump/obj_chargeeffectsjump.yy",},
{"name":"obj_enemyhurtexplosion","order":14,"path":"objects/obj_enemyhurtexplosion/obj_enemyhurtexplosion.yy",},
{"name":"obj_layoutselect","order":27,"path":"objects/obj_layoutselect/obj_layoutselect.yy",},
{"name":"obj_cottonsolid","order":10,"path":"objects/obj_cottonsolid/obj_cottonsolid.yy",},
{"name":"obj_gummybear","order":21,"path":"objects/obj_gummybear/obj_gummybear.yy",},
{"name":"obj_oneway2x4","order":33,"path":"objects/obj_oneway2x4/obj_oneway2x4.yy",},
{"name":"obj_transfotip","order":55,"path":"objects/obj_transfotip/obj_transfotip.yy",},
{"name":"obj_warphallway","order":64,"path":"objects/obj_warphallway/obj_warphallway.yy",},
{"name":"obj_lap3sign","order":24,"path":"objects/obj_lap3sign/obj_lap3sign.yy",},
{"name":"obj_treasurestand","order":61,"path":"objects/obj_treasurestand/obj_treasurestand.yy",},
{"name":"obj_treasureeffect","order":60,"path":"objects/obj_treasureeffect/obj_treasureeffect.yy",},
{"name":"obj_chargeeffectslide","order":14,"path":"objects/obj_chargeeffectslide/obj_chargeeffectslide.yy",},
{"name":"obj_boxdebris","order":2,"path":"objects/obj_boxdebris/obj_boxdebris.yy",},
{"name":"obj_cotton_aftereffect","order":9,"path":"objects/obj_cotton_aftereffect/obj_cotton_aftereffect.yy",},
{"name":"obj_titlecard","order":54,"path":"objects/obj_titlecard/obj_titlecard.yy",},
{"name":"obj_walldestroy","order":62,"path":"objects/obj_walldestroy/obj_walldestroy.yy",},
{"name":"obj_lapportalentrance","order":26,"path":"objects/obj_lapportalentrance/obj_lapportalentrance.yy",},
{"name":"obj_levelselect","order":28,"path":"objects/obj_levelselect/obj_levelselect.yy",},
{"name":"obj_parryeffect","order":34,"path":"objects/obj_parryeffect/obj_parryeffect.yy",},
{"name":"obj_closegame","order":19,"path":"objects/obj_closegame/obj_closegame.yy",},
{"name":"obj_generaldestroyable","order":17,"path":"objects/obj_generaldestroyable/obj_generaldestroyable.yy",},
{"name":"obj_janitordoor","order":22,"path":"objects/obj_janitordoor/obj_janitordoor.yy",},
{"name":"rm_initializer","order":397,"path":"rooms/rm_initializer/rm_initializer.yy",},
{"name":"realtitlescreen","order":398,"path":"rooms/realtitlescreen/realtitlescreen.yy",},
{"name":"hub_public","order":1,"path":"rooms/hub_public/hub_public.yy",},
{"name":"outer_room1","order":400,"path":"rooms/outer_room1/outer_room1.yy",},
{"name":"hub_room1OLD","order":3,"path":"rooms/hub_room1OLD/hub_room1OLD.yy",},
{"name":"devroom","order":402,"path":"rooms/devroom/devroom.yy",},
{"name":"tutorial_1","order":403,"path":"rooms/tutorial_1/tutorial_1.yy",},
{"name":"tutorial_2","order":404,"path":"rooms/tutorial_2/tutorial_2.yy",},
{"name":"tutorial_3","order":405,"path":"rooms/tutorial_3/tutorial_3.yy",},
{"name":"tutorial_4","order":406,"path":"rooms/tutorial_4/tutorial_4.yy",},
{"name":"tutorial_5","order":407,"path":"rooms/tutorial_5/tutorial_5.yy",},
{"name":"tutorial_6","order":408,"path":"rooms/tutorial_6/tutorial_6.yy",},
{"name":"hudtest","order":409,"path":"rooms/hudtest/hudtest.yy",},
{"name":"palroom","order":410,"path":"rooms/palroom/palroom.yy",},
{"name":"rank_room","order":411,"path":"rooms/rank_room/rank_room.yy",},
{"name":"timesuproom","order":412,"path":"rooms/timesuproom/timesuproom.yy",},
{"name":"showcase_room","order":413,"path":"rooms/showcase_room/showcase_room.yy",},
{"name":"entryway_2","order":1,"path":"rooms/entryway_2/entryway_2.yy",},
{"name":"entryway_3","order":2,"path":"rooms/entryway_3/entryway_3.yy",},
{"name":"entryway_4","order":3,"path":"rooms/entryway_4/entryway_4.yy",},
{"name":"entryway_5","order":4,"path":"rooms/entryway_5/entryway_5.yy",},
{"name":"entryway_6","order":5,"path":"rooms/entryway_6/entryway_6.yy",},
{"name":"entryway_7","order":6,"path":"rooms/entryway_7/entryway_7.yy",},
{"name":"entryway_8","order":7,"path":"rooms/entryway_8/entryway_8.yy",},
{"name":"entryway_9","order":8,"path":"rooms/entryway_9/entryway_9.yy",},
{"name":"entryway_11","order":9,"path":"rooms/entryway_11/entryway_11.yy",},
{"name":"entrywaysecret_2","order":10,"path":"rooms/entrywaysecret_2/entrywaysecret_2.yy",},
{"name":"entrywaysecret_3","order":11,"path":"rooms/entrywaysecret_3/entrywaysecret_3.yy",},
{"name":"steamy_1","order":1,"path":"rooms/steamy_1/steamy_1.yy",},
{"name":"steamy_2","order":2,"path":"rooms/steamy_2/steamy_2.yy",},
{"name":"steamy_3","order":3,"path":"rooms/steamy_3/steamy_3.yy",},
{"name":"steamy_4","order":4,"path":"rooms/steamy_4/steamy_4.yy",},
{"name":"steamy_5","order":5,"path":"rooms/steamy_5/steamy_5.yy",},
{"name":"steamy_6","order":6,"path":"rooms/steamy_6/steamy_6.yy",},
{"name":"steamy_7","order":7,"path":"rooms/steamy_7/steamy_7.yy",},
{"name":"steamy_8","order":8,"path":"rooms/steamy_8/steamy_8.yy",},
{"name":"steamy_9","order":9,"path":"rooms/steamy_9/steamy_9.yy",},
{"name":"steamy_10","order":10,"path":"rooms/steamy_10/steamy_10.yy",},
{"name":"steamy_11","order":11,"path":"rooms/steamy_11/steamy_11.yy",},
{"name":"steamy_11_1","order":12,"path":"rooms/steamy_11_1/steamy_11_1.yy",},
{"name":"steamy_12","order":13,"path":"rooms/steamy_12/steamy_12.yy",},
{"name":"steamy_13","order":14,"path":"rooms/steamy_13/steamy_13.yy",},
{"name":"steamy_14","order":15,"path":"rooms/steamy_14/steamy_14.yy",},
{"name":"entrywaysecret_1","order":12,"path":"rooms/entrywaysecret_1/entrywaysecret_1.yy",},
{"name":"steamy_secret2","order":16,"path":"rooms/steamy_secret2/steamy_secret2.yy",},
{"name":"steamy_secret3","order":17,"path":"rooms/steamy_secret3/steamy_secret3.yy",},
{"name":"steamy_secret4","order":18,"path":"rooms/steamy_secret4/steamy_secret4.yy",},
{"name":"molasses_2","order":1,"path":"rooms/molasses_2/molasses_2.yy",},
{"name":"molasses_3","order":2,"path":"rooms/molasses_3/molasses_3.yy",},
{"name":"molasses_4","order":3,"path":"rooms/molasses_4/molasses_4.yy",},
{"name":"molasses_5","order":4,"path":"rooms/molasses_5/molasses_5.yy",},
{"name":"molasses_6","order":5,"path":"rooms/molasses_6/molasses_6.yy",},
{"name":"molasses_7","order":6,"path":"rooms/molasses_7/molasses_7.yy",},
{"name":"molasses_8","order":7,"path":"rooms/molasses_8/molasses_8.yy",},
{"name":"molasses_9","order":8,"path":"rooms/molasses_9/molasses_9.yy",},
{"name":"molasses_10","order":9,"path":"rooms/molasses_10/molasses_10.yy",},
{"name":"molasses_11","order":10,"path":"rooms/molasses_11/molasses_11.yy",},
{"name":"molasses_12","order":11,"path":"rooms/molasses_12/molasses_12.yy",},
{"name":"molassessecret_1","order":12,"path":"rooms/molassessecret_1/molassessecret_1.yy",},
{"name":"molassessecret_3","order":13,"path":"rooms/molassessecret_3/molassessecret_3.yy",},
{"name":"molassessecret_2","order":14,"path":"rooms/molassessecret_2/molassessecret_2.yy",},
{"name":"rm_luigisawesometestingroom","order":461,"path":"rooms/rm_luigisawesometestingroom/rm_luigisawesometestingroom.yy",},
{"name":"traintest","order":462,"path":"rooms/traintest/traintest.yy",},
{"name":"scootercutsceneidk","order":463,"path":"rooms/scootercutsceneidk/scootercutsceneidk.yy",},
{"name":"outer_room2","order":464,"path":"rooms/outer_room2/outer_room2.yy",},
{"name":"entryway_10","order":13,"path":"rooms/entryway_10/entryway_10.yy",},
{"name":"rm_blank","order":467,"path":"rooms/rm_blank/rm_blank.yy",},
{"name":"tutorial_7","order":468,"path":"rooms/tutorial_7/tutorial_7.yy",},
{"name":"tutorial_8","order":469,"path":"rooms/tutorial_8/tutorial_8.yy",},
{"name":"tutorial_9","order":470,"path":"rooms/tutorial_9/tutorial_9.yy",},
{"name":"tutorial_10","order":471,"path":"rooms/tutorial_10/tutorial_10.yy",},
{"name":"rm_missing","order":472,"path":"rooms/rm_missing/rm_missing.yy",},
{"name":"molasses_8b","order":15,"path":"rooms/molasses_8b/molasses_8b.yy",},
{"name":"molasses_13","order":16,"path":"rooms/molasses_13/molasses_13.yy",},
{"name":"hub_room1","order":2,"path":"rooms/hub_room1/hub_room1.yy",},
{"name":"mines_1","order":1,"path":"rooms/mines_1/mines_1.yy",},
{"name":"mines_2","order":2,"path":"rooms/mines_2/mines_2.yy",},
{"name":"mines_3","order":3,"path":"rooms/mines_3/mines_3.yy",},
{"name":"mines_5","order":4,"path":"rooms/mines_5/mines_5.yy",},
{"name":"minessecret_1","order":5,"path":"rooms/minessecret_1/minessecret_1.yy",},
{"name":"mines_4","order":6,"path":"rooms/mines_4/mines_4.yy",},
{"name":"mines_6","order":7,"path":"rooms/mines_6/mines_6.yy",},
{"name":"minessecret_2","order":8,"path":"rooms/minessecret_2/minessecret_2.yy",},
{"name":"mines_1B","order":9,"path":"rooms/mines_1B/mines_1B.yy",},
{"name":"secrets_await","order":485,"path":"rooms/secrets_await/secrets_await.yy",},
{"name":"molasses_2b","order":17,"path":"rooms/molasses_2b/molasses_2b.yy",},
{"name":"mines_7B","order":10,"path":"rooms/mines_7B/mines_7B.yy",},
{"name":"mines_8","order":11,"path":"rooms/mines_8/mines_8.yy",},
{"name":"mines_8B","order":12,"path":"rooms/mines_8B/mines_8B.yy",},
{"name":"mines_9","order":13,"path":"rooms/mines_9/mines_9.yy",},
{"name":"mines_10","order":14,"path":"rooms/mines_10/mines_10.yy",},
{"name":"minessecret_3","order":15,"path":"rooms/minessecret_3/minessecret_3.yy",},
{"name":"mines_11","order":16,"path":"rooms/mines_11/mines_11.yy",},
{"name":"mines_12","order":17,"path":"rooms/mines_12/mines_12.yy",},
{"name":"mines_13","order":18,"path":"rooms/mines_13/mines_13.yy",},
{"name":"minigame_testing","order":496,"path":"rooms/minigame_testing/minigame_testing.yy",},
{"name":"rm_verify","order":497,"path":"rooms/rm_verify/rm_verify.yy",},
{"name":"molasses_6c","order":18,"path":"rooms/molasses_6c/molasses_6c.yy",},
{"name":"molasses_6d","order":19,"path":"rooms/molasses_6d/molasses_6d.yy",},
{"name":"molasses_6b","order":20,"path":"rooms/molasses_6b/molasses_6b.yy",},
{"name":"rm_credits","order":501,"path":"rooms/rm_credits/rm_credits.yy",},
{"name":"room_gmliveblank","order":502,"path":"rooms/room_gmliveblank/room_gmliveblank.yy",},
{"name":"entryway_portal","order":14,"path":"rooms/entryway_portal/entryway_portal.yy",},
{"name":"room_treasure","order":504,"path":"rooms/room_treasure/room_treasure.yy",},
{"name":"steamy_portal","order":19,"path":"rooms/steamy_portal/steamy_portal.yy",},
{"name":"molasses_portal","order":21,"path":"rooms/molasses_portal/molasses_portal.yy",},
{"name":"mines_portal","order":19,"path":"rooms/mines_portal/mines_portal.yy",},
{"name":"hub_new","order":3,"path":"rooms/hub_new/hub_new.yy",},
{"name":"hub_start","order":4,"path":"rooms/hub_start/hub_start.yy",},
{"name":"hub_hall","order":2,"path":"rooms/hub_hall/hub_hall.yy",},
{"name":"spireintro","order":511,"path":"rooms/spireintro/spireintro.yy",},
{"name":"entrywaynew_2","order":3,"path":"rooms/entrywaynew_2/entrywaynew_2.yy",},
{"name":"entrywaynew_3","order":4,"path":"rooms/entrywaynew_3/entrywaynew_3.yy",},
{"name":"entrywaynew_5","order":6,"path":"rooms/entrywaynew_5/entrywaynew_5.yy",},
{"name":"entrywaynew_4","order":5,"path":"rooms/entrywaynew_4/entrywaynew_4.yy",},
{"name":"entrywaynew_6","order":7,"path":"rooms/entrywaynew_6/entrywaynew_6.yy",},
{"name":"entrywaynew_8","order":10,"path":"rooms/entrywaynew_8/entrywaynew_8.yy",},
{"name":"entrywaynew_7","order":9,"path":"rooms/entrywaynew_7/entrywaynew_7.yy",},
{"name":"entrywaynew_9","order":11,"path":"rooms/entrywaynew_9/entrywaynew_9.yy",},
{"name":"entrywaynew_10","order":1,"path":"rooms/entrywaynew_10/entrywaynew_10.yy",},
{"name":"entrywaynew_11","order":2,"path":"rooms/entrywaynew_11/entrywaynew_11.yy",},
{"name":"entrywaynew_6b","order":8,"path":"rooms/entrywaynew_6b/entrywaynew_6b.yy",},
{"name":"entrywaynew_portal","order":12,"path":"rooms/entrywaynew_portal/entrywaynew_portal.yy",},
{"name":"room_test3","order":2,"path":"rooms/room_test3/room_test3.yy",},
{"name":"hub_bikinibottomtest","order":1,"path":"rooms/hub_bikinibottomtest/hub_bikinibottomtest.yy",},
{"name":"steamynew_portal","order":16,"path":"rooms/steamynew_portal/steamynew_portal.yy",},
{"name":"steamynew_2","order":7,"path":"rooms/steamynew_2/steamynew_2.yy",},
{"name":"steamynew_3","order":8,"path":"rooms/steamynew_3/steamynew_3.yy",},
{"name":"room_test2","order":1,"path":"rooms/room_test2/room_test2.yy",},
{"name":"steamynew_4","order":9,"path":"rooms/steamynew_4/steamynew_4.yy",},
{"name":"steamynew_5","order":10,"path":"rooms/steamynew_5/steamynew_5.yy",},
{"name":"steamynew_secret1","order":17,"path":"rooms/steamynew_secret1/steamynew_secret1.yy",},
{"name":"steamynew_6","order":11,"path":"rooms/steamynew_6/steamynew_6.yy",},
{"name":"steamynew_7","order":12,"path":"rooms/steamynew_7/steamynew_7.yy",},
{"name":"steamynew_7b","order":13,"path":"rooms/steamynew_7b/steamynew_7b.yy",},
{"name":"room_levelselect","order":539,"path":"rooms/room_levelselect/room_levelselect.yy",},
{"name":"steamynew_8","order":14,"path":"rooms/steamynew_8/steamynew_8.yy",},
{"name":"steamynew_9","order":15,"path":"rooms/steamynew_9/steamynew_9.yy",},
{"name":"steamynew_secret2","order":18,"path":"rooms/steamynew_secret2/steamynew_secret2.yy",},
{"name":"steamynew_10","order":1,"path":"rooms/steamynew_10/steamynew_10.yy",},
{"name":"steamynew_11","order":2,"path":"rooms/steamynew_11/steamynew_11.yy",},
{"name":"steamynew_11_1","order":3,"path":"rooms/steamynew_11_1/steamynew_11_1.yy",},
{"name":"steamynew_12","order":4,"path":"rooms/steamynew_12/steamynew_12.yy",},
{"name":"steamynew_13","order":5,"path":"rooms/steamynew_13/steamynew_13.yy",},
{"name":"steamynew_14","order":6,"path":"rooms/steamynew_14/steamynew_14.yy",},
{"name":"steamynew_secret3","order":19,"path":"rooms/steamynew_secret3/steamynew_secret3.yy",},
{"name":"steamynew_secret3unused","order":20,"path":"rooms/steamynew_secret3unused/steamynew_secret3unused.yy",},
{"name":"scr_ghostcollectibles","order":4,"path":"scripts/scr_ghostcollectibles/scr_ghostcollectibles.yy",},
{"name":"scr_player_hitenemy","order":115,"path":"scripts/scr_player_hitenemy/scr_player_hitenemy.yy",},
{"name":"scr_player_backtohub","order":113,"path":"scripts/scr_player_backtohub/scr_player_backtohub.yy",},
{"name":"scr_enemy_punkattack","order":21,"path":"scripts/scr_enemy_punkattack/scr_enemy_punkattack.yy",},
{"name":"safe_get","order":2,"path":"scripts/safe_get/safe_get.yy",},
{"name":"scr_tvsprites","order":559,"path":"scripts/scr_tvsprites/scr_tvsprites.yy",},
{"name":"scr_basic_functions","order":560,"path":"scripts/scr_basic_functions/scr_basic_functions.yy",},
{"name":"scr_shell_functions","order":561,"path":"scripts/scr_shell_functions/scr_shell_functions.yy",},
{"name":"scr_coneboy_inhale","order":562,"path":"scripts/scr_coneboy_inhale/scr_coneboy_inhale.yy",},
{"name":"scr_sin","order":566,"path":"scripts/scr_sin/scr_sin.yy",},
{"name":"scr_optionFunctions","order":568,"path":"scripts/scr_optionFunctions/scr_optionFunctions.yy",},
{"name":"scr_slopeangle","order":570,"path":"scripts/scr_slopeangle/scr_slopeangle.yy",},
{"name":"scr_player_fling","order":5,"path":"scripts/scr_player_fling/scr_player_fling.yy",},
{"name":"scr_gumbob_mixnbrew","order":573,"path":"scripts/scr_gumbob_mixnbrew/scr_gumbob_mixnbrew.yy",},
{"name":"scr_parallaxDefault","order":1,"path":"scripts/scr_parallaxDefault/scr_parallaxDefault.yy",},
{"name":"scr_hurtplayer","order":1,"path":"scripts/scr_hurtplayer/scr_hurtplayer.yy",},
{"name":"scr_init","order":5,"path":"scripts/scr_init/scr_init.yy",},
{"name":"scr_player_mini","order":6,"path":"scripts/scr_player_mini/scr_player_mini.yy",},
{"name":"scr_cutscene_gnomeMines","order":580,"path":"scripts/scr_cutscene_gnomeMines/scr_cutscene_gnomeMines.yy",},
{"name":"scr_player_machtumble","order":7,"path":"scripts/scr_player_machtumble/scr_player_machtumble.yy",},
{"name":"scr_escapetimes","order":2,"path":"scripts/scr_escapetimes/scr_escapetimes.yy",},
{"name":"scr_enemy_inhaled","order":1,"path":"scripts/scr_enemy_inhaled/scr_enemy_inhaled.yy",},
{"name":"scr_cutoff","order":3,"path":"scripts/scr_cutoff/scr_cutoff.yy",},
{"name":"scr_player_coasterpeep","order":8,"path":"scripts/scr_player_coasterpeep/scr_player_coasterpeep.yy",},
{"name":"scr_pizzano_wallcling","order":1,"path":"scripts/scr_pizzano_wallcling/scr_pizzano_wallcling.yy",},
{"name":"scr_pizzano_shoulderbash","order":2,"path":"scripts/scr_pizzano_shoulderbash/scr_pizzano_shoulderbash.yy",},
{"name":"ReadMe","order":593,"path":"scripts/ReadMe/ReadMe.yy",},
{"name":"scr_player_geyser","order":9,"path":"scripts/scr_player_geyser/scr_player_geyser.yy",},
{"name":"scr_tv_functions","order":595,"path":"scripts/scr_tv_functions/scr_tv_functions.yy",},
{"name":"scr_roomnames","order":3,"path":"scripts/scr_roomnames/scr_roomnames.yy",},
{"name":"scr_enemy_slugjump","order":2,"path":"scripts/scr_enemy_slugjump/scr_enemy_slugjump.yy",},
{"name":"scr_cutscene_rossetteMines","order":598,"path":"scripts/scr_cutscene_rossetteMines/scr_cutscene_rossetteMines.yy",},
{"name":"scr_layer_functions","order":2,"path":"scripts/scr_layer_functions/scr_layer_functions.yy",},
{"name":"scr_shell_commands","order":600,"path":"scripts/scr_shell_commands/scr_shell_commands.yy",},
{"name":"scr_camera_functions","order":601,"path":"scripts/scr_camera_functions/scr_camera_functions.yy",},
{"name":"scr_player_backbreaker","order":10,"path":"scripts/scr_player_backbreaker/scr_player_backbreaker.yy",},
{"name":"scr_player_backkick","order":11,"path":"scripts/scr_player_backkick/scr_player_backkick.yy",},
{"name":"scr_player_barrelcrouch","order":12,"path":"scripts/scr_player_barrelcrouch/scr_player_barrelcrouch.yy",},
{"name":"scr_player_barrelfall","order":13,"path":"scripts/scr_player_barrelfall/scr_player_barrelfall.yy",},
{"name":"scr_player_barrelfloat","order":14,"path":"scripts/scr_player_barrelfloat/scr_player_barrelfloat.yy",},
{"name":"scr_player_barrelmach1","order":15,"path":"scripts/scr_player_barrelmach1/scr_player_barrelmach1.yy",},
{"name":"scr_player_barrelmach2","order":16,"path":"scripts/scr_player_barrelmach2/scr_player_barrelmach2.yy",},
{"name":"scr_player_barrelnormal","order":17,"path":"scripts/scr_player_barrelnormal/scr_player_barrelnormal.yy",},
{"name":"scr_player_barrelroll","order":18,"path":"scripts/scr_player_barrelroll/scr_player_barrelroll.yy",},
{"name":"scr_player_barrelslipnslide","order":19,"path":"scripts/scr_player_barrelslipnslide/scr_player_barrelslipnslide.yy",},
{"name":"scr_player_bombpep","order":20,"path":"scripts/scr_player_bombpep/scr_player_bombpep.yy",},
{"name":"scr_player_bossintro","order":21,"path":"scripts/scr_player_bossintro/scr_player_bossintro.yy",},
{"name":"scr_player_boulder","order":22,"path":"scripts/scr_player_boulder/scr_player_boulder.yy",},
{"name":"scr_player_boxxedpep","order":23,"path":"scripts/scr_player_boxxedpep/scr_player_boxxedpep.yy",},
{"name":"scr_player_bump","order":24,"path":"scripts/scr_player_bump/scr_player_bump.yy",},
{"name":"scr_player_chainsaw","order":25,"path":"scripts/scr_player_chainsaw/scr_player_chainsaw.yy",},
{"name":"scr_player_chainsawbump","order":26,"path":"scripts/scr_player_chainsawbump/scr_player_chainsawbump.yy",},
{"name":"scr_player_chainsawpogo","order":27,"path":"scripts/scr_player_chainsawpogo/scr_player_chainsawpogo.yy",},
{"name":"scr_player_charge","order":28,"path":"scripts/scr_player_charge/scr_player_charge.yy",},
{"name":"rousrDissonance_event_async_social","order":2,"path":"scripts/rousrDissonance_event_async_social/rousrDissonance_event_async_social.yy",},
{"name":"scr_player_cheeseball","order":29,"path":"scripts/scr_player_cheeseball/scr_player_cheeseball.yy",},
{"name":"scr_player_cheesepep","order":30,"path":"scripts/scr_player_cheesepep/scr_player_cheesepep.yy",},
{"name":"rousr_dissonance_set_small_image","order":15,"path":"scripts/rousr_dissonance_set_small_image/rousr_dissonance_set_small_image.yy",},
{"name":"scr_player_cheesepepstick","order":31,"path":"scripts/scr_player_cheesepepstick/scr_player_cheesepepstick.yy",},
{"name":"scr_player_climbwall","order":32,"path":"scripts/scr_player_climbwall/scr_player_climbwall.yy",},
{"name":"scr_player_comingoutdoor","order":33,"path":"scripts/scr_player_comingoutdoor/scr_player_comingoutdoor.yy",},
{"name":"scr_player_crouch","order":34,"path":"scripts/scr_player_crouch/scr_player_crouch.yy",},
{"name":"scr_player_crouchjump","order":35,"path":"scripts/scr_player_crouchjump/scr_player_crouchjump.yy",},
{"name":"scr_player_crouchslide","order":36,"path":"scripts/scr_player_crouchslide/scr_player_crouchslide.yy",},
{"name":"scr_player_current","order":37,"path":"scripts/scr_player_current/scr_player_current.yy",},
{"name":"scr_player_door","order":38,"path":"scripts/scr_player_door/scr_player_door.yy",},
{"name":"scr_player_facestomp","order":39,"path":"scripts/scr_player_facestomp/scr_player_facestomp.yy",},
{"name":"scr_player_freefall","order":40,"path":"scripts/scr_player_freefall/scr_player_freefall.yy",},
{"name":"scr_player_freefallland","order":41,"path":"scripts/scr_player_freefallland/scr_player_freefallland.yy",},
{"name":"scr_player_freefallprep","order":42,"path":"scripts/scr_player_freefallprep/scr_player_freefallprep.yy",},
{"name":"scr_player_gameover","order":43,"path":"scripts/scr_player_gameover/scr_player_gameover.yy",},
{"name":"scr_player_gottreasure","order":44,"path":"scripts/scr_player_gottreasure/scr_player_gottreasure.yy",},
{"name":"scr_player_grab","order":45,"path":"scripts/scr_player_grab/scr_player_grab.yy",},
{"name":"scr_player_grabbing","order":46,"path":"scripts/scr_player_grabbing/scr_player_grabbing.yy",},
{"name":"scr_player_grind","order":47,"path":"scripts/scr_player_grind/scr_player_grind.yy",},
{"name":"scr_player_handstandjump","order":48,"path":"scripts/scr_player_handstandjump/scr_player_handstandjump.yy",},
{"name":"scr_player_hang","order":49,"path":"scripts/scr_player_hang/scr_player_hang.yy",},
{"name":"scr_player_highjump","order":50,"path":"scripts/scr_player_highjump/scr_player_highjump.yy",},
{"name":"scr_player_hurt","order":51,"path":"scripts/scr_player_hurt/scr_player_hurt.yy",},
{"name":"scr_player_jump","order":52,"path":"scripts/scr_player_jump/scr_player_jump.yy",},
{"name":"scr_player_keyget","order":53,"path":"scripts/scr_player_keyget/scr_player_keyget.yy",},
{"name":"scr_player_knightpep","order":54,"path":"scripts/scr_player_knightpep/scr_player_knightpep.yy",},
{"name":"scr_player_knightpepattack","order":55,"path":"scripts/scr_player_knightpepattack/scr_player_knightpepattack.yy",},
{"name":"scr_player_knightpepslopes","order":56,"path":"scripts/scr_player_knightpepslopes/scr_player_knightpepslopes.yy",},
{"name":"scr_player_ladder","order":57,"path":"scripts/scr_player_ladder/scr_player_ladder.yy",},
{"name":"scr_player_mach1","order":58,"path":"scripts/scr_player_mach1/scr_player_mach1.yy",},
{"name":"scr_player_mach2","order":59,"path":"scripts/scr_player_mach2/scr_player_mach2.yy",},
{"name":"rousrDissonance_event_create","order":3,"path":"scripts/rousrDissonance_event_create/rousrDissonance_event_create.yy",},
{"name":"scr_player_mach3","order":60,"path":"scripts/scr_player_mach3/scr_player_mach3.yy",},
{"name":"scr_player_machfreefall","order":61,"path":"scripts/scr_player_machfreefall/scr_player_machfreefall.yy",},
{"name":"scr_player_machroll","order":62,"path":"scripts/scr_player_machroll/scr_player_machroll.yy",},
{"name":"scr_player_machslide","order":63,"path":"scripts/scr_player_machslide/scr_player_machslide.yy",},
{"name":"scr_player_meteorpep","order":64,"path":"scripts/scr_player_meteorpep/scr_player_meteorpep.yy",},
{"name":"scr_player_normal","order":65,"path":"scripts/scr_player_normal/scr_player_normal.yy",},
{"name":"scr_player_pistol","order":66,"path":"scripts/scr_player_pistol/scr_player_pistol.yy",},
{"name":"scr_player_pistolaim","order":67,"path":"scripts/scr_player_pistolaim/scr_player_pistolaim.yy",},
{"name":"scr_player_pizzathrow","order":68,"path":"scripts/scr_player_pizzathrow/scr_player_pizzathrow.yy",},
{"name":"scr_player_portal","order":69,"path":"scripts/scr_player_portal/scr_player_portal.yy",},
{"name":"scr_player_punch","order":70,"path":"scripts/scr_player_punch/scr_player_punch.yy",},
{"name":"scr_player_runonball","order":71,"path":"scripts/scr_player_runonball/scr_player_runonball.yy",},
{"name":"scr_player_secondjump","order":72,"path":"scripts/scr_player_secondjump/scr_player_secondjump.yy",},
{"name":"scr_player_shotgun","order":73,"path":"scripts/scr_player_shotgun/scr_player_shotgun.yy",},
{"name":"scr_player_shotgunjump","order":74,"path":"scripts/scr_player_shotgunjump/scr_player_shotgunjump.yy",},
{"name":"scr_player_shoulder","order":75,"path":"scripts/scr_player_shoulder/scr_player_shoulder.yy",},
{"name":"scr_player_Sjump","order":76,"path":"scripts/scr_player_Sjump/scr_player_Sjump.yy",},
{"name":"scr_player_actor","order":77,"path":"scripts/scr_player_actor/scr_player_actor.yy",},
{"name":"scr_player_Sjumpland","order":78,"path":"scripts/scr_player_Sjumpland/scr_player_Sjumpland.yy",},
{"name":"scr_player_Sjumpprep","order":79,"path":"scripts/scr_player_Sjumpprep/scr_player_Sjumpprep.yy",},
{"name":"scr_player_skateboard","order":80,"path":"scripts/scr_player_skateboard/scr_player_skateboard.yy",},
{"name":"scr_player_slam","order":81,"path":"scripts/scr_player_slam/scr_player_slam.yy",},
{"name":"scr_player_slap","order":82,"path":"scripts/scr_player_slap/scr_player_slap.yy",},
{"name":"scr_player_slipnslide","order":83,"path":"scripts/scr_player_slipnslide/scr_player_slipnslide.yy",},
{"name":"scr_player_smirk","order":84,"path":"scripts/scr_player_smirk/scr_player_smirk.yy",},
{"name":"scr_player_stunned","order":85,"path":"scripts/scr_player_stunned/scr_player_stunned.yy",},
{"name":"scr_player_superslam","order":86,"path":"scripts/scr_player_superslam/scr_player_superslam.yy",},
{"name":"scr_player_tackle","order":87,"path":"scripts/scr_player_tackle/scr_player_tackle.yy",},
{"name":"scr_player_throw","order":88,"path":"scripts/scr_player_throw/scr_player_throw.yy",},
{"name":"scr_player_minecart","order":89,"path":"scripts/scr_player_minecart/scr_player_minecart.yy",},
{"name":"scr_player_timesup","order":90,"path":"scripts/scr_player_timesup/scr_player_timesup.yy",},
{"name":"scr_player_titlescreen","order":91,"path":"scripts/scr_player_titlescreen/scr_player_titlescreen.yy",},
{"name":"scr_player_uppunch","order":92,"path":"scripts/scr_player_uppunch/scr_player_uppunch.yy",},
{"name":"scr_player_victory","order":93,"path":"scripts/scr_player_victory/scr_player_victory.yy",},
{"name":"scr_playerN_hookshot","order":94,"path":"scripts/scr_playerN_hookshot/scr_playerN_hookshot.yy",},
{"name":"scr_playerreset","order":690,"path":"scripts/scr_playerreset/scr_playerreset.yy",},
{"name":"scr_player_bossdefeat","order":95,"path":"scripts/scr_player_bossdefeat/scr_player_bossdefeat.yy",},
{"name":"scr_player_finishingblow","order":96,"path":"scripts/scr_player_finishingblow/scr_player_finishingblow.yy",},
{"name":"scr_player_cotton","order":97,"path":"scripts/scr_player_cotton/scr_player_cotton.yy",},
{"name":"scr_player_talkto","order":98,"path":"scripts/scr_player_talkto/scr_player_talkto.yy",},
{"name":"scr_player_tumble","order":99,"path":"scripts/scr_player_tumble/scr_player_tumble.yy",},
{"name":"scr_player_cottondrill","order":100,"path":"scripts/scr_player_cottondrill/scr_player_cottondrill.yy",},
{"name":"scr_player_cottonroll","order":101,"path":"scripts/scr_player_cottonroll/scr_player_cottonroll.yy",},
{"name":"scr_player_handstand","order":102,"path":"scripts/scr_player_handstand/scr_player_handstand.yy",},
{"name":"scr_sleep","order":699,"path":"scripts/scr_sleep/scr_sleep.yy",},
{"name":"scr_enemy_bounce","order":3,"path":"scripts/scr_enemy_bounce/scr_enemy_bounce.yy",},
{"name":"scr_enemy_charge","order":4,"path":"scripts/scr_enemy_charge/scr_enemy_charge.yy",},
{"name":"scr_enemy_grabbed","order":5,"path":"scripts/scr_enemy_grabbed/scr_enemy_grabbed.yy",},
{"name":"scr_enemy_hit","order":6,"path":"scripts/scr_enemy_hit/scr_enemy_hit.yy",},
{"name":"scr_enemy_idle","order":7,"path":"scripts/scr_enemy_idle/scr_enemy_idle.yy",},
{"name":"scr_enemy_land","order":8,"path":"scripts/scr_enemy_land/scr_enemy_land.yy",},
{"name":"scr_enemy_stun","order":9,"path":"scripts/scr_enemy_stun/scr_enemy_stun.yy",},
{"name":"scr_enemy_turn","order":10,"path":"scripts/scr_enemy_turn/scr_enemy_turn.yy",},
{"name":"scr_enemy_walk","order":11,"path":"scripts/scr_enemy_walk/scr_enemy_walk.yy",},
{"name":"scr_pizzano_twirl","order":3,"path":"scripts/scr_pizzano_twirl/scr_pizzano_twirl.yy",},
{"name":"scr_playersounds","order":710,"path":"scripts/scr_playersounds/scr_playersounds.yy",},
{"name":"scr_enemy_throw","order":12,"path":"scripts/scr_enemy_throw/scr_enemy_throw.yy",},
{"name":"draw_set_blend_mode","order":712,"path":"scripts/draw_set_blend_mode/draw_set_blend_mode.yy",},
{"name":"instance_create","order":713,"path":"scripts/instance_create/instance_create.yy",},
{"name":"object_get_depth","order":714,"path":"scripts/object_get_depth/object_get_depth.yy",},
{"name":"pal_swap_draw_palette","order":715,"path":"scripts/pal_swap_draw_palette/pal_swap_draw_palette.yy",},
{"name":"pal_swap_enable_override","order":716,"path":"scripts/pal_swap_enable_override/pal_swap_enable_override.yy",},
{"name":"pal_swap_get_color_count","order":717,"path":"scripts/pal_swap_get_color_count/pal_swap_get_color_count.yy",},
{"name":"pal_swap_get_pal_color","order":718,"path":"scripts/pal_swap_get_pal_color/pal_swap_get_pal_color.yy",},
{"name":"pal_swap_get_pal_count","order":719,"path":"scripts/pal_swap_get_pal_count/pal_swap_get_pal_count.yy",},
{"name":"pal_swap_index_palette","order":720,"path":"scripts/pal_swap_index_palette/pal_swap_index_palette.yy",},
{"name":"pal_swap_init_system","order":721,"path":"scripts/pal_swap_init_system/pal_swap_init_system.yy",},
{"name":"pal_swap_reset","order":722,"path":"scripts/pal_swap_reset/pal_swap_reset.yy",},
{"name":"pal_swap_set","order":723,"path":"scripts/pal_swap_set/pal_swap_set.yy",},
{"name":"pal_swap_set_tiles","order":724,"path":"scripts/pal_swap_set_tiles/pal_swap_set_tiles.yy",},
{"name":"texture_set_interpolation_ext","order":725,"path":"scripts/texture_set_interpolation_ext/texture_set_interpolation_ext.yy",},
{"name":"tile_layer_delete_at","order":726,"path":"scripts/tile_layer_delete_at/tile_layer_delete_at.yy",},
{"name":"tile_layer_find","order":727,"path":"scripts/tile_layer_find/tile_layer_find.yy",},
{"name":"tile_layer_hide","order":728,"path":"scripts/tile_layer_hide/tile_layer_hide.yy",},
{"name":"tile_layer_show","order":729,"path":"scripts/tile_layer_show/tile_layer_show.yy",},
{"name":"__background_get","order":730,"path":"scripts/__background_get/__background_get.yy",},
{"name":"__background_get_element","order":732,"path":"scripts/__background_get_element/__background_get_element.yy",},
{"name":"scr_changebgs","order":5,"path":"scripts/scr_changebgs/scr_changebgs.yy",},
{"name":"__background_get_internal","order":734,"path":"scripts/__background_get_internal/__background_get_internal.yy",},
{"name":"__background_set","order":735,"path":"scripts/__background_set/__background_set.yy",},
{"name":"__background_set_element","order":736,"path":"scripts/__background_set_element/__background_set_element.yy",},
{"name":"__background_set_internal","order":737,"path":"scripts/__background_set_internal/__background_set_internal.yy",},
{"name":"__global_object_depths","order":738,"path":"scripts/__global_object_depths/__global_object_depths.yy",},
{"name":"__init_action","order":739,"path":"scripts/__init_action/__init_action.yy",},
{"name":"__init_background","order":740,"path":"scripts/__init_background/__init_background.yy",},
{"name":"__init_global","order":741,"path":"scripts/__init_global/__init_global.yy",},
{"name":"__init_view","order":742,"path":"scripts/__init_view/__init_view.yy",},
{"name":"__view_get","order":743,"path":"scripts/__view_get/__view_get.yy",},
{"name":"__view_set","order":744,"path":"scripts/__view_set/__view_set.yy",},
{"name":"__view_set_internal","order":745,"path":"scripts/__view_set_internal/__view_set_internal.yy",},
{"name":"action_kill_object","order":746,"path":"scripts/action_kill_object/action_kill_object.yy",},
{"name":"draw_background_tiled","order":747,"path":"scripts/draw_background_tiled/draw_background_tiled.yy",},
{"name":"scr_solid","order":748,"path":"scripts/scr_solid/scr_solid.yy",},
{"name":"scr_solid_player","order":749,"path":"scripts/scr_solid_player/scr_solid_player.yy",},
{"name":"scr_slope","order":750,"path":"scripts/scr_slope/scr_slope.yy",},
{"name":"scr_characterspr","order":1,"path":"scripts/scr_characterspr/scr_characterspr.yy",},
{"name":"scr_parallaxbg","order":3,"path":"scripts/scr_parallaxbg/scr_parallaxbg.yy",},
{"name":"scr_collide","order":754,"path":"scripts/scr_collide/scr_collide.yy",},
{"name":"scr_collide_player","order":755,"path":"scripts/scr_collide_player/scr_collide_player.yy",},
{"name":"scr_collide_destructibles","order":756,"path":"scripts/scr_collide_destructibles/scr_collide_destructibles.yy",},
{"name":"scr_enemy_prepdead","order":20,"path":"scripts/scr_enemy_prepdead/scr_enemy_prepdead.yy",},
{"name":"scr_pal_swap_draw_palette","order":758,"path":"scripts/scr_pal_swap_draw_palette/scr_pal_swap_draw_palette.yy",},
{"name":"scr_applejim_bash","order":13,"path":"scripts/scr_applejim_bash/scr_applejim_bash.yy",},
{"name":"scr_pal_swap_reset","order":760,"path":"scripts/scr_pal_swap_reset/scr_pal_swap_reset.yy",},
{"name":"scr_pal_swap_index_palette","order":761,"path":"scripts/scr_pal_swap_index_palette/scr_pal_swap_index_palette.yy",},
{"name":"scr_pal_swap_get_pal_color","order":762,"path":"scripts/scr_pal_swap_get_pal_color/scr_pal_swap_get_pal_color.yy",},
{"name":"scr_player_uppercut","order":103,"path":"scripts/scr_player_uppercut/scr_player_uppercut.yy",},
{"name":"scr_pal_swap_set_tiles","order":764,"path":"scripts/scr_pal_swap_set_tiles/scr_pal_swap_set_tiles.yy",},
{"name":"scr_pal_swap_init_system","order":765,"path":"scripts/scr_pal_swap_init_system/scr_pal_swap_init_system.yy",},
{"name":"scr_warp","order":766,"path":"scripts/scr_warp/scr_warp.yy",},
{"name":"scr_player_bushdisguise","order":104,"path":"scripts/scr_player_bushdisguise/scr_player_bushdisguise.yy",},
{"name":"scr_pal_swap_set","order":768,"path":"scripts/scr_pal_swap_set/scr_pal_swap_set.yy",},
{"name":"scr_pal_swap_enable_override","order":769,"path":"scripts/scr_pal_swap_enable_override/scr_pal_swap_enable_override.yy",},
{"name":"scr_player_shocked","order":105,"path":"scripts/scr_player_shocked/scr_player_shocked.yy",},
{"name":"scr_player_pal","order":106,"path":"scripts/scr_player_pal/scr_player_pal.yy",},
{"name":"scr_cutsceneFunctions","order":772,"path":"scripts/scr_cutsceneFunctions/scr_cutsceneFunctions.yy",},
{"name":"scr_pal_swap_get_color_count","order":773,"path":"scripts/scr_pal_swap_get_color_count/scr_pal_swap_get_color_count.yy",},
{"name":"scr_enemy_scared","order":14,"path":"scripts/scr_enemy_scared/scr_enemy_scared.yy",},
{"name":"scr_pal_swap_get_pal_count","order":775,"path":"scripts/scr_pal_swap_get_pal_count/scr_pal_swap_get_pal_count.yy",},
{"name":"scr_texture_set_interpolation_ext","order":776,"path":"scripts/scr_texture_set_interpolation_ext/scr_texture_set_interpolation_ext.yy",},
{"name":"scr_player_puddle","order":107,"path":"scripts/scr_player_puddle/scr_player_puddle.yy",},
{"name":"scr_player_parry","order":108,"path":"scripts/scr_player_parry/scr_player_parry.yy",},
{"name":"scr_enemy_kick","order":15,"path":"scripts/scr_enemy_kick/scr_enemy_kick.yy",},
{"name":"scr_player_breakdance","order":109,"path":"scripts/scr_player_breakdance/scr_player_breakdance.yy",},
{"name":"scr_enemy_cherrywait","order":16,"path":"scripts/scr_enemy_cherrywait/scr_enemy_cherrywait.yy",},
{"name":"scr_enemy_charcherry","order":17,"path":"scripts/scr_enemy_charcherry/scr_enemy_charcherry.yy",},
{"name":"scr_achievement","order":783,"path":"scripts/scr_achievement/scr_achievement.yy",},
{"name":"scr_playerinit","order":785,"path":"scripts/scr_playerinit/scr_playerinit.yy",},
{"name":"scr_player_squished","order":110,"path":"scripts/scr_player_squished/scr_player_squished.yy",},
{"name":"scr_setinput_functions","order":4,"path":"scripts/scr_setinput_functions/scr_setinput_functions.yy",},
{"name":"scr_player_secretportal","order":117,"path":"scripts/scr_player_secretportal/scr_player_secretportal.yy",},
{"name":"scr_confecti_appear","order":790,"path":"scripts/scr_confecti_appear/scr_confecti_appear.yy",},
{"name":"scr_room_updated","order":792,"path":"scripts/scr_room_updated/scr_room_updated.yy",},
{"name":"scr_slope_ext","order":793,"path":"scripts/scr_slope_ext/scr_slope_ext.yy",},
{"name":"scr_rocketfist_pizzano","order":4,"path":"scripts/scr_rocketfist_pizzano/scr_rocketfist_pizzano.yy",},
{"name":"scr_confecti_normal","order":795,"path":"scripts/scr_confecti_normal/scr_confecti_normal.yy",},
{"name":"scr_gumbob_propeller","order":796,"path":"scripts/scr_gumbob_propeller/scr_gumbob_propeller.yy",},
{"name":"scr_tip","order":5,"path":"scripts/scr_tip/scr_tip.yy",},
{"name":"scr_confecti_taunt","order":799,"path":"scripts/scr_confecti_taunt/scr_confecti_taunt.yy",},
{"name":"scr_escapebgs","order":4,"path":"scripts/scr_escapebgs/scr_escapebgs.yy",},
{"name":"scr_soundFunctions","order":802,"path":"scripts/scr_soundFunctions/scr_soundFunctions.yy",},
{"name":"scr_scareenemy","order":18,"path":"scripts/scr_scareenemy/scr_scareenemy.yy",},
{"name":"scr_confecti_init","order":804,"path":"scripts/scr_confecti_init/scr_confecti_init.yy",},
{"name":"scr_secretwall","order":805,"path":"scripts/scr_secretwall/scr_secretwall.yy",},
{"name":"scr_enemy_slugparry","order":19,"path":"scripts/scr_enemy_slugparry/scr_enemy_slugparry.yy",},
{"name":"scr_player_fireass","order":111,"path":"scripts/scr_player_fireass/scr_player_fireass.yy",},
{"name":"scr_keyfunctions","order":6,"path":"scripts/scr_keyfunctions/scr_keyfunctions.yy",},
{"name":"scr_player_addslopemomentum","order":112,"path":"scripts/scr_player_addslopemomentum/scr_player_addslopemomentum.yy",},
{"name":"scr_player_drown","order":114,"path":"scripts/scr_player_drown/scr_player_drown.yy",},
{"name":"scr_instakill","order":23,"path":"scripts/scr_instakill/scr_instakill.yy",},
{"name":"scr_hub_backgrounds","order":6,"path":"scripts/scr_hub_backgrounds/scr_hub_backgrounds.yy",},
{"name":"scr_pause_functions","order":7,"path":"scripts/scr_pause_functions/scr_pause_functions.yy",},
{"name":"scr_enemy_witchattack","order":22,"path":"scripts/scr_enemy_witchattack/scr_enemy_witchattack.yy",},
{"name":"scr_player_noclip","order":116,"path":"scripts/scr_player_noclip/scr_player_noclip.yy",},
{"name":"scr_playerN_minecartspin","order":5,"path":"scripts/scr_playerN_minecartspin/scr_playerN_minecartspin.yy",},
{"name":"frogdeath3","order":91,"path":"sounds/frogdeath3/frogdeath3.yy",},
{"name":"slipnslide4","order":149,"path":"sounds/slipnslide4/slipnslide4.yy",},
{"name":"sfx_voicecollect1PZ","order":138,"path":"sounds/sfx_voicecollect1PZ/sfx_voicecollect1PZ.yy",},
{"name":"sfx_pizzanocollect4","order":118,"path":"sounds/sfx_pizzanocollect4/sfx_pizzanocollect4.yy",},
{"name":"sfx_voicehurt1PZ","order":142,"path":"sounds/sfx_voicehurt1PZ/sfx_voicehurt1PZ.yy",},
{"name":"sound_taunt1","order":162,"path":"sounds/sound_taunt1/sound_taunt1.yy",},
{"name":"sfx_transfo","order":136,"path":"sounds/sfx_transfo/sfx_transfo.yy",},
{"name":"TVswitchback","order":181,"path":"sounds/TVswitchback/TVswitchback.yy",},
{"name":"sound_taunt3","order":164,"path":"sounds/sound_taunt3/sound_taunt3.yy",},
{"name":"sfx_pizzanoscreamstart","order":121,"path":"sounds/sfx_pizzanoscreamstart/sfx_pizzanoscreamstart.yy",},
{"name":"sound_taunt5","order":166,"path":"sounds/sound_taunt5/sound_taunt5.yy",},
{"name":"slipnslideend","order":154,"path":"sounds/slipnslideend/slipnslideend.yy",},
{"name":"slipnslide5","order":150,"path":"sounds/slipnslide5/slipnslide5.yy",},
{"name":"Cheers","order":88,"path":"sounds/Cheers/Cheers.yy",},
{"name":"mu_rankpnew","order":53,"path":"sounds/mu_rankpnew/mu_rankpnew.yy",},
{"name":"mu_lap2_SS","order":34,"path":"sounds/mu_lap2_SS/mu_lap2_SS.yy",},
{"name":"sfx_pizzanohurt","order":119,"path":"sounds/sfx_pizzanohurt/sfx_pizzanohurt.yy",},
{"name":"mu_rankdnew","order":49,"path":"sounds/mu_rankdnew/mu_rankdnew.yy",},
{"name":"sound_beargoooooooal","order":157,"path":"sounds/sound_beargoooooooal/sound_beargoooooooal.yy",},
{"name":"Lap2","order":96,"path":"sounds/Lap2/Lap2.yy",},
{"name":"sfx_pizzanocollect1","order":115,"path":"sounds/sfx_pizzanocollect1/sfx_pizzanocollect1.yy",},
{"name":"froghurt1","order":92,"path":"sounds/froghurt1/froghurt1.yy",},
{"name":"mu_tonewlevel","order":56,"path":"sounds/mu_tonewlevel/mu_tonewlevel.yy",},
{"name":"sound_taunt6","order":167,"path":"sounds/sound_taunt6/sound_taunt6.yy",},
{"name":"sfx_scream4","order":127,"path":"sounds/sfx_scream4/sfx_scream4.yy",},
{"name":"slipnslide3","order":148,"path":"sounds/slipnslide3/slipnslide3.yy",},
{"name":"mu_rankend","order":50,"path":"sounds/mu_rankend/mu_rankend.yy",},
{"name":"spireintroN","order":171,"path":"sounds/spireintroN/spireintroN.yy",},
{"name":"mu_pizzano_secret","order":44,"path":"sounds/mu_pizzano_secret/mu_pizzano_secret.yy",},
{"name":"sfx_electricity","order":112,"path":"sounds/sfx_electricity/sfx_electricity.yy",},
{"name":"sfx_scream3","order":126,"path":"sounds/sfx_scream3/sfx_scream3.yy",},
{"name":"sfx_becomeknight","order":102,"path":"sounds/sfx_becomeknight/sfx_becomeknight.yy",},
{"name":"mu_gummyharry","order":33,"path":"sounds/mu_gummyharry/mu_gummyharry.yy",},
{"name":"sfx_voiceidle2PZ","order":145,"path":"sounds/sfx_voiceidle2PZ/sfx_voiceidle2PZ.yy",},
{"name":"sfx_pizzanoscream","order":120,"path":"sounds/sfx_pizzanoscream/sfx_pizzanoscream.yy",},
{"name":"mu_newlevel","order":38,"path":"sounds/mu_newlevel/mu_newlevel.yy",},
{"name":"sfx_cultist","order":109,"path":"sounds/sfx_cultist/sfx_cultist.yy",},
{"name":"sfx_scream6","order":129,"path":"sounds/sfx_scream6/sfx_scream6.yy",},
{"name":"sfx_pray","order":123,"path":"sounds/sfx_pray/sfx_pray.yy",},
{"name":"mu_crunchytitleloud","order":30,"path":"sounds/mu_crunchytitleloud/mu_crunchytitleloud.yy",},
{"name":"sfx_coneball","order":108,"path":"sounds/sfx_coneball/sfx_coneball.yy",},
{"name":"slipnslide7","order":152,"path":"sounds/slipnslide7/slipnslide7.yy",},
{"name":"sound_paintsplash","order":160,"path":"sounds/sound_paintsplash/sound_paintsplash.yy",},
{"name":"sfx_secretenter","order":130,"path":"sounds/sfx_secretenter/sfx_secretenter.yy",},
{"name":"mu_ranknew","order":51,"path":"sounds/mu_ranknew/mu_ranknew.yy",},
{"name":"titlecard1","order":175,"path":"sounds/titlecard1/titlecard1.yy",},
{"name":"titlecard3","order":177,"path":"sounds/titlecard3/titlecard3.yy",},
{"name":"slipnslide2","order":147,"path":"sounds/slipnslide2/slipnslide2.yy",},
{"name":"mu_rankb","order":1,"path":"sounds/mu_rankb/mu_rankb.yy",},
{"name":"sfx_spicy","order":1,"path":"sounds/sfx_spicy/sfx_spicy.yy",},
{"name":"sfx_meh","order":2,"path":"sounds/sfx_meh/sfx_meh.yy",},
{"name":"mu_swampsecret","order":2,"path":"sounds/mu_swampsecret/mu_swampsecret.yy",},
{"name":"sfx_bloop2","order":3,"path":"sounds/sfx_bloop2/sfx_bloop2.yy",},
{"name":"sound_killenemy","order":4,"path":"sounds/sound_killenemy/sound_killenemy.yy",},
{"name":"sound_rollgetup","order":5,"path":"sounds/sound_rollgetup/sound_rollgetup.yy",},
{"name":"sound_taunt7","order":168,"path":"sounds/sound_taunt7/sound_taunt7.yy",},
{"name":"sfx_cottonjump","order":6,"path":"sounds/sfx_cottonjump/sfx_cottonjump.yy",},
{"name":"sfx_cottondoublejump","order":7,"path":"sounds/sfx_cottondoublejump/sfx_cottondoublejump.yy",},
{"name":"sfx_sweet","order":8,"path":"sounds/sfx_sweet/sfx_sweet.yy",},
{"name":"sound_break","order":9,"path":"sounds/sound_break/sound_break.yy",},
{"name":"sound_killingblow","order":10,"path":"sounds/sound_killingblow/sound_killingblow.yy",},
{"name":"mu_mineshaft1","order":3,"path":"sounds/mu_mineshaft1/mu_mineshaft1.yy",},
{"name":"mu_ranks","order":4,"path":"sounds/mu_ranks/mu_ranks.yy",},
{"name":"sfx_cottongone","order":11,"path":"sounds/sfx_cottongone/sfx_cottongone.yy",},
{"name":"sound_punch","order":12,"path":"sounds/sound_punch/sound_punch.yy",},
{"name":"sound_metaldestroy","order":13,"path":"sounds/sound_metaldestroy/sound_metaldestroy.yy",},
{"name":"rousrDissonance","order":1,"path":"objects/rousrDissonance/rousrDissonance.yy",},
{"name":"sfx_sour","order":14,"path":"sounds/sfx_sour/sfx_sour.yy",},
{"name":"mu_swamp","order":5,"path":"sounds/mu_swamp/mu_swamp.yy",},
{"name":"sound_unlockingdoor","order":15,"path":"sounds/sound_unlockingdoor/sound_unlockingdoor.yy",},
{"name":"harry_impact","order":95,"path":"sounds/harry_impact/harry_impact.yy",},
{"name":"sound_becomeknight","order":16,"path":"sounds/sound_becomeknight/sound_becomeknight.yy",},
{"name":"sound_combo1","order":17,"path":"sounds/sound_combo1/sound_combo1.yy",},
{"name":"sfx_eheheh_ok","order":18,"path":"sounds/sfx_eheheh_ok/sfx_eheheh_ok.yy",},
{"name":"sound_combo2","order":19,"path":"sounds/sound_combo2/sound_combo2.yy",},
{"name":"sound_combo3","order":20,"path":"sounds/sound_combo3/sound_combo3.yy",},
{"name":"sound_combo4","order":21,"path":"sounds/sound_combo4/sound_combo4.yy",},
{"name":"sound_dash1","order":22,"path":"sounds/sound_dash1/sound_dash1.yy",},
{"name":"sound_dash2","order":23,"path":"sounds/sound_dash2/sound_dash2.yy",},
{"name":"sound_destroyblock1","order":24,"path":"sounds/sound_destroyblock1/sound_destroyblock1.yy",},
{"name":"sound_destroyblock2","order":25,"path":"sounds/sound_destroyblock2/sound_destroyblock2.yy",},
{"name":"sound_enemyslap","order":26,"path":"sounds/sound_enemyslap/sound_enemyslap.yy",},
{"name":"sound_enemystomp","order":27,"path":"sounds/sound_enemystomp/sound_enemystomp.yy",},
{"name":"sound_enemythrow","order":28,"path":"sounds/sound_enemythrow/sound_enemythrow.yy",},
{"name":"sound_explosion","order":29,"path":"sounds/sound_explosion/sound_explosion.yy",},
{"name":"mu_paletteselect","order":6,"path":"sounds/mu_paletteselect/mu_paletteselect.yy",},
{"name":"sound_firstescapetheme","order":30,"path":"sounds/sound_firstescapetheme/sound_firstescapetheme.yy",},
{"name":"sound_jump","order":31,"path":"sounds/sound_jump/sound_jump.yy",},
{"name":"sfx_cottonattack","order":32,"path":"sounds/sfx_cottonattack/sfx_cottonattack.yy",},
{"name":"sound_losetransformation","order":33,"path":"sounds/sound_losetransformation/sound_losetransformation.yy",},
{"name":"mu_rankdend","order":48,"path":"sounds/mu_rankdend/mu_rankdend.yy",},
{"name":"sound_machroll","order":34,"path":"sounds/sound_machroll/sound_machroll.yy",},
{"name":"sound_maximumchargestop2","order":35,"path":"sounds/sound_maximumchargestop2/sound_maximumchargestop2.yy",},
{"name":"sound_maximumspeedland","order":36,"path":"sounds/sound_maximumspeedland/sound_maximumspeedland.yy",},
{"name":"mu_crunchytitlenewloud","order":32,"path":"sounds/mu_crunchytitlenewloud/mu_crunchytitlenewloud.yy",},
{"name":"sound_maximumspeedstop","order":37,"path":"sounds/sound_maximumspeedstop/sound_maximumspeedstop.yy",},
{"name":"sound_maxspeed","order":38,"path":"sounds/sound_maxspeed/sound_maxspeed.yy",},
{"name":"mu_void","order":7,"path":"sounds/mu_void/mu_void.yy",},
{"name":"sound_comboend","order":39,"path":"sounds/sound_comboend/sound_comboend.yy",},
{"name":"sound_pizzacoin","order":40,"path":"sounds/sound_pizzacoin/sound_pizzacoin.yy",},
{"name":"sound_pizzagot","order":41,"path":"sounds/sound_pizzagot/sound_pizzagot.yy",},
{"name":"sound_points","order":42,"path":"sounds/sound_points/sound_points.yy",},
{"name":"sound_slaphit","order":43,"path":"sounds/sound_slaphit/sound_slaphit.yy",},
{"name":"sound_slapswipe","order":44,"path":"sounds/sound_slapswipe/sound_slapswipe.yy",},
{"name":"sound_slapswipe1","order":45,"path":"sounds/sound_slapswipe1/sound_slapswipe1.yy",},
{"name":"mu_swamp2","order":55,"path":"sounds/mu_swamp2/mu_swamp2.yy",},
{"name":"sound_slapswipe2","order":46,"path":"sounds/sound_slapswipe2/sound_slapswipe2.yy",},
{"name":"sound_step","order":47,"path":"sounds/sound_step/sound_step.yy",},
{"name":"sound_step2","order":48,"path":"sounds/sound_step2/sound_step2.yy",},
{"name":"sound_stomp","order":49,"path":"sounds/sound_stomp/sound_stomp.yy",},
{"name":"sound_superjumpcharge1","order":50,"path":"sounds/sound_superjumpcharge1/sound_superjumpcharge1.yy",},
{"name":"sound_superjumpcharge2","order":51,"path":"sounds/sound_superjumpcharge2/sound_superjumpcharge2.yy",},
{"name":"sound_superjumprelease","order":52,"path":"sounds/sound_superjumprelease/sound_superjumprelease.yy",},
{"name":"sound_suplex1","order":53,"path":"sounds/sound_suplex1/sound_suplex1.yy",},