-
Notifications
You must be signed in to change notification settings - Fork 10
/
projectA.project.gmx
5359 lines (5359 loc) · 237 KB
/
projectA.project.gmx
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
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
<assets>
<Configs name="configs">
<Config>Configs\Default</Config>
</Configs>
<NewExtensions/>
<sounds name="sound">
<sound>sound\abc_123_a</sound>
<sound>sound\mus_a2</sound>
<sound>sound\mus_alphysfix</sound>
<sound>sound\mus_amalgam</sound>
<sound>sound\mus_ambientwater</sound>
<sound>sound\mus_anothermedium</sound>
<sound>sound\mus_bad</sound>
<sound>sound\mus_badnote1</sound>
<sound>sound\mus_badnote2</sound>
<sound>sound\mus_badnote3</sound>
<sound>sound\mus_barrier</sound>
<sound>sound\mus_battle1</sound>
<sound>sound\mus_battle2</sound>
<sound>sound\mus_bergentruckung</sound>
<sound>sound\mus_bgflameA</sound>
<sound>sound\mus_birdnoise</sound>
<sound>sound\mus_birdsong</sound>
<sound>sound\mus_boss1</sound>
<sound>sound\mus_cast_1</sound>
<sound>sound\mus_cast_2</sound>
<sound>sound\mus_cast_3</sound>
<sound>sound\mus_cast_4</sound>
<sound>sound\mus_cast_5</sound>
<sound>sound\mus_cast_6</sound>
<sound>sound\mus_cast_7</sound>
<sound>sound\mus_chime</sound>
<sound>sound\mus_chokedup</sound>
<sound>sound\mus_churchbell</sound>
<sound>sound\mus_computer</sound>
<sound>sound\mus_confession</sound>
<sound>sound\mus_coolbeat</sound>
<sound>sound\mus_core</sound>
<sound>sound\mus_coretransition</sound>
<sound>sound\mus_core_ambience</sound>
<sound>sound\mus_create</sound>
<sound>sound\mus_creepy_ambience</sound>
<sound>sound\mus_crickets</sound>
<sound>sound\mus_cymbal</sound>
<sound>sound\mus_dance_of_dog</sound>
<sound>sound\mus_date</sound>
<sound>sound\mus_date_fight</sound>
<sound>sound\mus_date_tense</sound>
<sound>sound\mus_deeploop2</sound>
<sound>sound\mus_dialup_0</sound>
<sound>sound\mus_dialup_1</sound>
<sound>sound\mus_dialup_2</sound>
<sound>sound\mus_dialup_3</sound>
<sound>sound\mus_dialup_4</sound>
<sound>sound\mus_dialup_5</sound>
<sound>sound\mus_disturbing</sound>
<sound>sound\mus_dogappear</sound>
<sound>sound\mus_dogmeander</sound>
<sound>sound\mus_dogroom</sound>
<sound>sound\mus_dogsong</sound>
<sound>sound\mus_dontgiveup</sound>
<sound>sound\mus_doorclose</sound>
<sound>sound\mus_dooropen</sound>
<sound>sound\mus_drone</sound>
<sound>sound\mus_drumcuica</sound>
<sound>sound\mus_drumcuica2</sound>
<sound>sound\mus_drumcymbal</sound>
<sound>sound\mus_drumkick</sound>
<sound>sound\mus_drumsnare</sound>
<sound>sound\mus_dummybattle</sound>
<sound>sound\mus_dununnn</sound>
<sound>sound\mus_elevator</sound>
<sound>sound\mus_elevator_last</sound>
<sound>sound\mus_endarea_parta</sound>
<sound>sound\mus_endarea_partb</sound>
<sound>sound\mus_endingexcerpt1</sound>
<sound>sound\mus_endingexcerpt2</sound>
<sound>sound\mus_explosion</sound>
<sound>sound\mus_express_myself</sound>
<sound>sound\mus_fallendown2</sound>
<sound>sound\mus_fearsting</sound>
<sound>sound\mus_flowey</sound>
<sound>sound\mus_f_6s_1</sound>
<sound>sound\mus_f_6s_2</sound>
<sound>sound\mus_f_6s_3</sound>
<sound>sound\mus_f_6s_4</sound>
<sound>sound\mus_f_6s_5</sound>
<sound>sound\mus_f_6s_6</sound>
<sound>sound\mus_f_alarm</sound>
<sound>sound\mus_f_destroyed</sound>
<sound>sound\mus_f_destroyed2</sound>
<sound>sound\mus_f_destroyed3</sound>
<sound>sound\mus_f_endnote</sound>
<sound>sound\mus_f_finale_1</sound>
<sound>sound\mus_f_finale_1_l</sound>
<sound>sound\mus_f_finale_2</sound>
<sound>sound\mus_f_finale_3</sound>
<sound>sound\mus_f_glock</sound>
<sound>sound\mus_f_intro</sound>
<sound>sound\mus_f_laugh</sound>
<sound>sound\mus_f_newlaugh</sound>
<sound>sound\mus_f_newlaugh_low</sound>
<sound>sound\mus_f_noise</sound>
<sound>sound\mus_f_orchhit</sound>
<sound>sound\mus_f_orchhit_l</sound>
<sound>sound\mus_f_part1</sound>
<sound>sound\mus_f_part2</sound>
<sound>sound\mus_f_part3</sound>
<sound>sound\mus_f_saved</sound>
<sound>sound\mus_f_wind1</sound>
<sound>sound\mus_f_wind2</sound>
<sound>sound\mus_gameover</sound>
<sound>sound\mus_ghostbattle</sound>
<sound>sound\mus_harpnoise</sound>
<sound>sound\mus_hereweare</sound>
<sound>sound\mus_hotel</sound>
<sound>sound\mus_hotel_battle</sound>
<sound>sound\mus_house1</sound>
<sound>sound\mus_house2</sound>
<sound>sound\mus_intronoise</sound>
<sound>sound\mus_kingdescription</sound>
<sound>sound\mus_lab</sound>
<sound>sound\mus_leave</sound>
<sound>sound\mus_menu0</sound>
<sound>sound\mus_menu1</sound>
<sound>sound\mus_menu2</sound>
<sound>sound\mus_menu3</sound>
<sound>sound\mus_menu4</sound>
<sound>sound\mus_menu5</sound>
<sound>sound\mus_menu6</sound>
<sound>sound\mus_mettafly</sound>
<sound>sound\mus_mettatonbattle</sound>
<sound>sound\mus_mettaton_ex</sound>
<sound>sound\mus_mettaton_neo</sound>
<sound>sound\mus_mettaton_pretransform</sound>
<sound>sound\mus_mettmusical1</sound>
<sound>sound\mus_mettmusical2</sound>
<sound>sound\mus_mettmusical3</sound>
<sound>sound\mus_mettmusical4</sound>
<sound>sound\mus_mettsad</sound>
<sound>sound\mus_mettsmash</sound>
<sound>sound\mus_mett_applause</sound>
<sound>sound\mus_mett_cheer</sound>
<sound>sound\mus_mode</sound>
<sound>sound\mus_mtgameshow</sound>
<sound>sound\mus_mt_yeah</sound>
<sound>sound\mus_muscle</sound>
<sound>sound\mus_musicbox</sound>
<sound>sound\mus_myemeow</sound>
<sound>sound\mus_mysteriousroom2</sound>
<sound>sound\mus_mystery</sound>
<sound>sound\mus_napstachords</sound>
<sound>sound\mus_napstahouse</sound>
<sound>sound\mus_news</sound>
<sound>sound\mus_news_battle</sound>
<sound>sound\mus_note1</sound>
<sound>sound\mus_note2</sound>
<sound>sound\mus_note3</sound>
<sound>sound\mus_note4</sound>
<sound>sound\mus_note5</sound>
<sound>sound\mus_note6</sound>
<sound>sound\mus_ohyes</sound>
<sound>sound\mus_oogloop</sound>
<sound>sound\mus_operatile</sound>
<sound>sound\mus_options_fall</sound>
<sound>sound\mus_options_summer</sound>
<sound>sound\mus_options_winter</sound>
<sound>sound\mus_papyrus</sound>
<sound>sound\mus_papyrusboss</sound>
<sound>sound\mus_piano</sound>
<sound>sound\mus_piano1</sound>
<sound>sound\mus_piano2</sound>
<sound>sound\mus_piano3</sound>
<sound>sound\mus_piano4</sound>
<sound>sound\mus_piano5</sound>
<sound>sound\mus_piano6</sound>
<sound>sound\mus_piano7</sound>
<sound>sound\mus_piano8</sound>
<sound>sound\mus_piano9</sound>
<sound>sound\mus_pianoA</sound>
<sound>sound\mus_prebattle1</sound>
<sound>sound\mus_predummy</sound>
<sound>sound\mus_race</sound>
<sound>sound\mus_rain</sound>
<sound>sound\mus_rain_deep</sound>
<sound>sound\mus_repeat_1</sound>
<sound>sound\mus_repeat_2</sound>
<sound>sound\mus_reunited</sound>
<sound>sound\mus_rimshot</sound>
<sound>sound\mus_rotate</sound>
<sound>sound\mus_ruins</sound>
<sound>sound\mus_ruinspiano</sound>
<sound>sound\mus_sansdate</sound>
<sound>sound\mus_sfx_abreak</sound>
<sound>sound\mus_sfx_abreak2</sound>
<sound>sound\mus_sfx_ahh</sound>
<sound>sound\mus_sfx_a_bullet</sound>
<sound>sound\mus_sfx_a_gigatalk</sound>
<sound>sound\mus_sfx_a_grab</sound>
<sound>sound\mus_sfx_a_lithit</sound>
<sound>sound\mus_sfx_a_lithit2</sound>
<sound>sound\mus_sfx_a_pullback</sound>
<sound>sound\mus_sfx_a_swipe</sound>
<sound>sound\mus_sfx_a_swordappear</sound>
<sound>sound\mus_sfx_a_target</sound>
<sound>sound\mus_sfx_bookspin</sound>
<sound>sound\mus_sfx_chainsaw</sound>
<sound>sound\mus_sfx_cinematiccut</sound>
<sound>sound\mus_sfx_eyeflash</sound>
<sound>sound\mus_sfx_frypan</sound>
<sound>sound\mus_sfx_generate</sound>
<sound>sound\mus_sfx_gigapunch</sound>
<sound>sound\mus_sfx_gunshot</sound>
<sound>sound\mus_sfx_hypergoner_charge</sound>
<sound>sound\mus_sfx_hypergoner_laugh</sound>
<sound>sound\mus_sfx_oh</sound>
<sound>sound\mus_sfx_rainbowbeam_1</sound>
<sound>sound\mus_sfx_rainbowbeam_hold</sound>
<sound>sound\mus_sfx_segapower</sound>
<sound>sound\mus_sfx_segapower2</sound>
<sound>sound\mus_sfx_sparkles</sound>
<sound>sound\mus_sfx_spellcast</sound>
<sound>sound\mus_sfx_star</sound>
<sound>sound\mus_sfx_swipe</sound>
<sound>sound\mus_sfx_ted</sound>
<sound>sound\mus_sfx_voice_jafe</sound>
<sound>sound\mus_sfx_voice_ted</sound>
<sound>sound\mus_sfx_voice_triple</sound>
<sound>sound\mus_sfx_yowl</sound>
<sound>sound\mus_shop</sound>
<sound>sound\mus_sigh_of_dog</sound>
<sound>sound\mus_silence</sound>
<sound>sound\mus_singF</sound>
<sound>sound\mus_singG</sound>
<sound>sound\mus_singvoice</sound>
<sound>sound\mus_smallshock</sound>
<sound>sound\mus_smile</sound>
<sound>sound\mus_snoresymphony</sound>
<sound>sound\mus_snowwalk</sound>
<sound>sound\mus_snowy</sound>
<sound>sound\mus_spider</sound>
<sound>sound\mus_spoopy</sound>
<sound>sound\mus_spoopy_holiday</sound>
<sound>sound\mus_spoopy_wave</sound>
<sound>sound\mus_star</sound>
<sound>sound\mus_sticksnap</sound>
<sound>sound\mus_story</sound>
<sound>sound\mus_story_stuck</sound>
<sound>sound\mus_st_happytown</sound>
<sound>sound\mus_st_him</sound>
<sound>sound\mus_st_meatfactory</sound>
<sound>sound\mus_st_troubledingle</sound>
<sound>sound\mus_temshop</sound>
<sound>sound\mus_temvillage</sound>
<sound>sound\mus_tension</sound>
<sound>sound\mus_tone2</sound>
<sound>sound\mus_tone3</sound>
<sound>sound\mus_toomuch</sound>
<sound>sound\mus_toriel</sound>
<sound>sound\mus_town</sound>
<sound>sound\mus_tv</sound>
<sound>sound\mus_undyneboss</sound>
<sound>sound\mus_undynefast</sound>
<sound>sound\mus_undynepiano</sound>
<sound>sound\mus_undynescary</sound>
<sound>sound\mus_undynetheme</sound>
<sound>sound\mus_undynetruetheme</sound>
<sound>sound\mus_vsasgore</sound>
<sound>sound\mus_waterfall</sound>
<sound>sound\mus_waterquiet</sound>
<sound>sound\mus_wawa</sound>
<sound>sound\mus_whoopee</sound>
<sound>sound\mus_wind</sound>
<sound>sound\mus_woofenstein</sound>
<sound>sound\mus_woofenstein_loop</sound>
<sound>sound\mus_wrongnumbersong</sound>
<sound>sound\mus_wrongworld</sound>
<sound>sound\mus_xpart</sound>
<sound>sound\mus_xpart_2</sound>
<sound>sound\mus_xpart_a</sound>
<sound>sound\mus_xpart_b</sound>
<sound>sound\mus_xpart_back</sound>
<sound>sound\mus_x_undyne</sound>
<sound>sound\mus_x_undyne_pre</sound>
<sound>sound\mus_yourbestfriend_3</sound>
<sound>sound\mus_zzz_c</sound>
<sound>sound\mus_zzz_c2</sound>
<sound>sound\mus_zz_megalovania</sound>
<sound>sound\mus_z_ending</sound>
<sound>sound\snd_arrow</sound>
<sound>sound\snd_b</sound>
<sound>sound\snd_ballchime</sound>
<sound>sound\snd_battlefall</sound>
<sound>sound\snd_bell</sound>
<sound>sound\snd_bigdoor_open</sound>
<sound>sound\snd_block2</sound>
<sound>sound\snd_bluh</sound>
<sound>sound\snd_bomb</sound>
<sound>sound\snd_bombfall</sound>
<sound>sound\snd_bombsplosion</sound>
<sound>sound\snd_break1</sound>
<sound>sound\snd_break1_c</sound>
<sound>sound\snd_break2</sound>
<sound>sound\snd_break2_c</sound>
<sound>sound\snd_breaka</sound>
<sound>sound\snd_breakb</sound>
<sound>sound\snd_breakc</sound>
<sound>sound\snd_buyitem</sound>
<sound>sound\snd_buzzing</sound>
<sound>sound\snd_catsalad</sound>
<sound>sound\snd_chug</sound>
<sound>sound\snd_credit_s</sound>
<sound>sound\snd_curtgunshot</sound>
<sound>sound\snd_damage</sound>
<sound>sound\snd_damage_c</sound>
<sound>sound\snd_dimbox</sound>
<sound>sound\snd_doghurt1</sound>
<sound>sound\snd_dogresidue</sound>
<sound>sound\snd_dogsalad</sound>
<sound>sound\snd_drumroll</sound>
<sound>sound\snd_dumbvictory</sound>
<sound>sound\snd_ehurt1</sound>
<sound>sound\snd_elecdoor_close</sound>
<sound>sound\snd_elecdoor_open</sound>
<sound>sound\snd_elecdoor_shut</sound>
<sound>sound\snd_elecdoor_shutheavy</sound>
<sound>sound\snd_escaped</sound>
<sound>sound\snd_fall</sound>
<sound>sound\snd_fall2</sound>
<sound>sound\snd_flameloop</sound>
<sound>sound\snd_floweylaugh</sound>
<sound>sound\snd_floweytalk1</sound>
<sound>sound\snd_floweytalk2</sound>
<sound>sound\snd_glassbreak</sound>
<sound>sound\snd_grab</sound>
<sound>sound\snd_grandpatemi</sound>
<sound>sound\snd_heal_c</sound>
<sound>sound\snd_heartshot</sound>
<sound>sound\snd_heavydamage</sound>
<sound>sound\snd_hero</sound>
<sound>sound\snd_hit</sound>
<sound>sound\snd_hurt1</sound>
<sound>sound\snd_hurt1_c</sound>
<sound>sound\snd_hurtbeef</sound>
<sound>sound\snd_hurtbig</sound>
<sound>sound\snd_hurtbuzz</sound>
<sound>sound\snd_hurtdragon</sound>
<sound>sound\snd_hurtgirl</sound>
<sound>sound\snd_hurtlaugh</sound>
<sound>sound\snd_hurtloox</sound>
<sound>sound\snd_hurtsmall</sound>
<sound>sound\snd_impact</sound>
<sound>sound\snd_instanoise</sound>
<sound>sound\snd_item</sound>
<sound>sound\snd_knock</sound>
<sound>sound\snd_laz</sound>
<sound>sound\snd_laz_c</sound>
<sound>sound\snd_levelup</sound>
<sound>sound\snd_lightswitch</sound>
<sound>sound\snd_magicminer</sound>
<sound>sound\snd_movemenu</sound>
<sound>sound\snd_mtt1</sound>
<sound>sound\snd_mtt2</sound>
<sound>sound\snd_mtt3</sound>
<sound>sound\snd_mtt4</sound>
<sound>sound\snd_mtt5</sound>
<sound>sound\snd_mtt6</sound>
<sound>sound\snd_mtt7</sound>
<sound>sound\snd_mtt8</sound>
<sound>sound\snd_mtt9</sound>
<sound>sound\snd_mtt_burst</sound>
<sound>sound\snd_mtt_hit</sound>
<sound>sound\snd_mtt_prebomb</sound>
<sound>sound\snd_mushroomdance</sound>
<sound>sound\snd_mysterygo</sound>
<sound>sound\snd_noise</sound>
<sound>sound\snd_nosound</sound>
<sound>sound\snd_oddtalk1</sound>
<sound>sound\snd_oddtalk2</sound>
<sound>sound\snd_phone</sound>
<sound>sound\snd_pombark</sound>
<sound>sound\snd_power</sound>
<sound>sound\snd_punchstrong</sound>
<sound>sound\snd_punchweak</sound>
<sound>sound\snd_saber3</sound>
<sound>sound\snd_save</sound>
<sound>sound\snd_screenshake</sound>
<sound>sound\snd_select</sound>
<sound>sound\snd_shadowpendant</sound>
<sound>sound\snd_shakerbreaker</sound>
<sound>sound\snd_shock</sound>
<sound>sound\snd_slidewhist</sound>
<sound>sound\snd_sparkle1</sound>
<sound>sound\snd_spearappear</sound>
<sound>sound\snd_spearrise</sound>
<sound>sound\snd_speedup</sound>
<sound>sound\snd_splash</sound>
<sound>sound\SND_SPLASH_2</sound>
<sound>sound\snd_spooky</sound>
<sound>sound\snd_squeak</sound>
<sound>sound\snd_swallow</sound>
<sound>sound\snd_switchpull</sound>
<sound>sound\snd_switchpull_n</sound>
<sound>sound\snd_tearcard</sound>
<sound>sound\snd_tem</sound>
<sound>sound\snd_tem2</sound>
<sound>sound\snd_tem3</sound>
<sound>sound\snd_tem4</sound>
<sound>sound\snd_tem5</sound>
<sound>sound\snd_tem6</sound>
<sound>sound\snd_tempbell</sound>
<sound>sound\snd_test</sound>
<sound>sound\snd_textnoise</sound>
<sound>sound\SND_TXT1</sound>
<sound>sound\SND_TXT2</sound>
<sound>sound\snd_txtal</sound>
<sound>sound\snd_txtasg</sound>
<sound>sound\snd_txtasr</sound>
<sound>sound\snd_txtasr2</sound>
<sound>sound\snd_txtpap</sound>
<sound>sound\snd_txtsans</sound>
<sound>sound\snd_txtsans2</sound>
<sound>sound\snd_txttor</sound>
<sound>sound\snd_txttor2</sound>
<sound>sound\snd_txttor3</sound>
<sound>sound\snd_txtund</sound>
<sound>sound\snd_txtund2</sound>
<sound>sound\snd_txtund3</sound>
<sound>sound\snd_txtund4</sound>
<sound>sound\snd_txtund_hyper</sound>
<sound>sound\snd_undynedis</sound>
<sound>sound\snd_undynestep</sound>
<sound>sound\snd_vaporized</sound>
<sound>sound\snd_victor</sound>
<sound>sound\snd_vulkinhurt</sound>
<sound>sound\snd_wngdng1</sound>
<sound>sound\snd_wngdng2</sound>
<sound>sound\snd_wngdng3</sound>
<sound>sound\snd_wngdng4</sound>
<sound>sound\snd_wngdng5</sound>
<sound>sound\snd_wngdng6</sound>
<sound>sound\snd_wngdng7</sound>
<sound>sound\snd_wonderfulidea</sound>
<sound>sound\snd_wrongvictory</sound>
<sound>sound\snd_yeah</sound>
</sounds>
<sprites name="sprites">
<sprite>sprites\abc_1111</sprite>
<sprite>sprites\obj_hugelavawave</sprite>
<sprite>sprites\sprite1059</sprite>
<sprite>sprites\sprite1099</sprite>
<sprite>sprites\sprite1135</sprite>
<sprite>sprites\sprite65</sprite>
<sprite>sprites\spr_19_2</sprite>
<sprite>sprites\spr_19_3</sprite>
<sprite>sprites\spr_19_4</sprite>
<sprite>sprites\spr_5_coffeeline</sprite>
<sprite>sprites\spr_5_eyes1</sprite>
<sprite>sprites\spr_5_eyes2</sprite>
<sprite>sprites\spr_5_eyes3</sprite>
<sprite>sprites\spr_5_eyes4</sprite>
<sprite>sprites\spr_5_eyes5</sprite>
<sprite>sprites\spr_5_eyes6</sprite>
<sprite>sprites\spr_5_mouth1</sprite>
<sprite>sprites\spr_5_mouth2</sprite>
<sprite>sprites\spr_5_mouth3</sprite>
<sprite>sprites\spr_5_sellface</sprite>
<sprite>sprites\spr_5_sellface_x</sprite>
<sprite>sprites\spr_5_sweat</sprite>
<sprite>sprites\spr_5_tembody</sprite>
<sprite>sprites\spr_5_tembox</sprite>
<sprite>sprites\spr_5_tembrows</sprite>
<sprite>sprites\spr_5_temexampl</sprite>
<sprite>sprites\spr_60_680</sprite>
<sprite>sprites\spr_6bandage_big</sprite>
<sprite>sprites\spr_6book</sprite>
<sprite>sprites\spr_6glove</sprite>
<sprite>sprites\spr_6glove_thumbsup</sprite>
<sprite>sprites\spr_6gun</sprite>
<sprite>sprites\spr_6gun_bullet</sprite>
<sprite>sprites\spr_6gun_crosshair</sprite>
<sprite>sprites\spr_6gun_crosshair_heart</sprite>
<sprite>sprites\spr_6gun_flower</sprite>
<sprite>sprites\spr_6hope</sprite>
<sprite>sprites\spr_6knife</sprite>
<sprite>sprites\spr_6knife_big</sprite>
<sprite>sprites\spr_6pan</sprite>
<sprite>sprites\spr_6pan_egg</sprite>
<sprite>sprites\spr_6pan_fire</sprite>
<sprite>sprites\spr_6shoe</sprite>
<sprite>sprites\spr_6shoe_mask</sprite>
<sprite>sprites\spr_6shoe_musicnote</sprite>
<sprite>sprites\spr_6shoe_star</sprite>
<sprite>sprites\spr_6thumbsup_small</sprite>
<sprite>sprites\spr_98robot</sprite>
<sprite>sprites\spr_aaron</sprite>
<sprite>sprites\spr_aaronbody</sprite>
<sprite>sprites\spr_aaronbody_bull</sprite>
<sprite>sprites\spr_aaronnpc</sprite>
<sprite>sprites\spr_abutton</sprite>
<sprite>sprites\spr_actbt_center</sprite>
<sprite>sprites\spr_actbt_center_hole</sprite>
<sprite>sprites\spr_actionfigures</sprite>
<sprite>sprites\spr_adate_arm</sprite>
<sprite>sprites\spr_adate_atrashbottom</sprite>
<sprite>sprites\spr_adate_atrashtop</sprite>
<sprite>sprites\spr_adate_body</sprite>
<sprite>sprites\spr_adate_bodycoat</sprite>
<sprite>sprites\spr_adate_head</sprite>
<sprite>sprites\spr_adate_head_2</sprite>
<sprite>sprites\spr_adate_intotrash</sprite>
<sprite>sprites\spr_adate_item</sprite>
<sprite>sprites\spr_adate_papyrus</sprite>
<sprite>sprites\spr_adate_smooch</sprite>
<sprite>sprites\spr_adate_smooch_s</sprite>
<sprite>sprites\spr_adate_trashcan_bottom</sprite>
<sprite>sprites\spr_adate_trashcan_top</sprite>
<sprite>sprites\spr_adate_ubody</sprite>
<sprite>sprites\spr_adate_uface</sprite>
<sprite>sprites\spr_adate_uface_2</sprite>
<sprite>sprites\spr_afinal_arm</sprite>
<sprite>sprites\spr_afinal_arm_o</sprite>
<sprite>sprites\spr_afinal_cosmoswing</sprite>
<sprite>sprites\spr_afinal_face</sprite>
<sprite>sprites\spr_afinal_face_cry</sprite>
<sprite>sprites\spr_afinal_face_cry2</sprite>
<sprite>sprites\spr_afinal_orb</sprite>
<sprite>sprites\spr_afinal_orbwing</sprite>
<sprite>sprites\spr_afinal_orb_o</sprite>
<sprite>sprites\spr_afinal_ref</sprite>
<sprite>sprites\spr_afinal_shoulder</sprite>
<sprite>sprites\spr_afinal_stem</sprite>
<sprite>sprites\spr_afinal_stem_o</sprite>
<sprite>sprites\spr_alabdoor_piece</sprite>
<sprite>sprites\spr_alabdoor_piece_r</sprite>
<sprite>sprites\spr_allsoul</sprite>
<sprite>sprites\spr_alphysface_0</sprite>
<sprite>sprites\spr_alphysface_1</sprite>
<sprite>sprites\spr_alphysface_10</sprite>
<sprite>sprites\spr_alphysface_11</sprite>
<sprite>sprites\spr_alphysface_12</sprite>
<sprite>sprites\spr_alphysface_13</sprite>
<sprite>sprites\spr_alphysface_14</sprite>
<sprite>sprites\spr_alphysface_15</sprite>
<sprite>sprites\spr_alphysface_16</sprite>
<sprite>sprites\spr_alphysface_17</sprite>
<sprite>sprites\spr_alphysface_18</sprite>
<sprite>sprites\spr_alphysface_19</sprite>
<sprite>sprites\spr_alphysface_2</sprite>
<sprite>sprites\spr_alphysface_20</sprite>
<sprite>sprites\spr_alphysface_21</sprite>
<sprite>sprites\spr_alphysface_22</sprite>
<sprite>sprites\spr_alphysface_23</sprite>
<sprite>sprites\spr_alphysface_24</sprite>
<sprite>sprites\spr_alphysface_25</sprite>
<sprite>sprites\spr_alphysface_3</sprite>
<sprite>sprites\spr_alphysface_4</sprite>
<sprite>sprites\spr_alphysface_5</sprite>
<sprite>sprites\spr_alphysface_6</sprite>
<sprite>sprites\spr_alphysface_7</sprite>
<sprite>sprites\spr_alphysface_8</sprite>
<sprite>sprites\spr_alphysface_9</sprite>
<sprite>sprites\spr_alphysface_hit</sprite>
<sprite>sprites\spr_alphysface_laugh</sprite>
<sprite>sprites\spr_alphysface_new</sprite>
<sprite>sprites\spr_alphysface_smarmy</sprite>
<sprite>sprites\spr_alphysface_wrap</sprite>
<sprite>sprites\spr_alphyshelper</sprite>
<sprite>sprites\spr_alphyshelper_a</sprite>
<sprite>sprites\spr_alphyshelper_b</sprite>
<sprite>sprites\spr_alphyshelper_c</sprite>
<sprite>sprites\spr_alphyshelper_confused</sprite>
<sprite>sprites\spr_alphyshelper_d</sprite>
<sprite>sprites\spr_alphyshelper_embarrass</sprite>
<sprite>sprites\spr_alphyshelper_excited2</sprite>
<sprite>sprites\spr_alphyshelper_lookup</sprite>
<sprite>sprites\spr_alphyshelper_shakehead</sprite>
<sprite>sprites\spr_alphyshelper_shock</sprite>
<sprite>sprites\spr_alphyshelper_shock2</sprite>
<sprite>sprites\spr_alphyshelper_shockembarrass</sprite>
<sprite>sprites\spr_alphyshelper_thumbsup</sprite>
<sprite>sprites\spr_alphyshelper_tooexcited</sprite>
<sprite>sprites\spr_alphyswrap</sprite>
<sprite>sprites\spr_alphyswrapshock</sprite>
<sprite>sprites\spr_alphys_d</sprite>
<sprite>sprites\spr_alphys_dt</sprite>
<sprite>sprites\spr_alphys_d_dark</sprite>
<sprite>sprites\spr_alphys_d_dark2</sprite>
<sprite>sprites\spr_alphys_freaked</sprite>
<sprite>sprites\spr_alphys_gameboy</sprite>
<sprite>sprites\spr_alphys_l</sprite>
<sprite>sprites\spr_alphys_lt</sprite>
<sprite>sprites\spr_alphys_l_sad2</sprite>
<sprite>sprites\spr_alphys_maxdamage</sprite>
<sprite>sprites\spr_alphys_megamask</sprite>
<sprite>sprites\spr_alphys_r</sprite>
<sprite>sprites\spr_alphys_rt</sprite>
<sprite>sprites\spr_alphys_r_sad</sprite>
<sprite>sprites\spr_alphys_r_sad2</sprite>
<sprite>sprites\spr_alphys_shock_fall</sprite>
<sprite>sprites\spr_alphys_turnred</sprite>
<sprite>sprites\spr_alphys_u</sprite>
<sprite>sprites\spr_alphys_ut</sprite>
<sprite>sprites\spr_amalgam_dogball</sprite>
<sprite>sprites\spr_amalgam_dognpc</sprite>
<sprite>sprites\spr_amalgam_dogpiece</sprite>
<sprite>sprites\spr_amalgam_exc</sprite>
<sprite>sprites\spr_amalgam_eye</sprite>
<sprite>sprites\spr_amalgam_fridge</sprite>
<sprite>sprites\spr_amalgam_fridgenpc</sprite>
<sprite>sprites\spr_amalgam_save</sprite>
<sprite>sprites\spr_amalgam_save_npc</sprite>
<sprite>sprites\spr_amalgam_sink1</sprite>
<sprite>sprites\spr_amalgam_sink2</sprite>
<sprite>sprites\spr_amalgam_sinkless1</sprite>
<sprite>sprites\spr_amalgam_sinkless2</sprite>
<sprite>sprites\spr_amalgam_sinkless3</sprite>
<sprite>sprites\spr_amalgam_tooth</sprite>
<sprite>sprites\spr_amalgam_toothd</sprite>
<sprite>sprites\spr_amalgam_toothmask</sprite>
<sprite>sprites\spr_amalgam_toothmask_d</sprite>
<sprite>sprites\spr_another_heart_placeholder</sprite>
<sprite>sprites\spr_apron</sprite>
<sprite>sprites\spr_asgoreb_arml</sprite>
<sprite>sprites\spr_asgoreb_armor</sprite>
<sprite>sprites\spr_asgoreb_armr</sprite>
<sprite>sprites\spr_asgoreb_ballarm</sprite>
<sprite>sprites\spr_asgoreb_cape</sprite>
<sprite>sprites\spr_asgoreb_dress</sprite>
<sprite>sprites\spr_asgoreb_feet</sprite>
<sprite>sprites\spr_asgoreb_head1</sprite>
<sprite>sprites\spr_asgoreb_legs</sprite>
<sprite>sprites\spr_asgorespear</sprite>
<sprite>sprites\spr_asgorethrone</sprite>
<sprite>sprites\spr_asgore_bface</sprite>
<sprite>sprites\spr_asgore_brandish</sprite>
<sprite>sprites\spr_asgore_d</sprite>
<sprite>sprites\spr_asgore_dt</sprite>
<sprite>sprites\spr_asgore_dt_sad</sprite>
<sprite>sprites\spr_asgore_dt_shock</sprite>
<sprite>sprites\spr_asgore_d_dark</sprite>
<sprite>sprites\spr_asgore_d_shock</sprite>
<sprite>sprites\spr_asgore_eyeflash</sprite>
<sprite>sprites\spr_asgore_eyeflash_old</sprite>
<sprite>sprites\spr_asgore_eyeflash_serious</sprite>
<sprite>sprites\spr_asgore_face0</sprite>
<sprite>sprites\spr_asgore_face0_blink</sprite>
<sprite>sprites\spr_asgore_face1</sprite>
<sprite>sprites\spr_asgore_face2</sprite>
<sprite>sprites\spr_asgore_face3</sprite>
<sprite>sprites\spr_asgore_face4</sprite>
<sprite>sprites\spr_asgore_face5</sprite>
<sprite>sprites\spr_asgore_flashsilhouette</sprite>
<sprite>sprites\spr_asgore_hit</sprite>
<sprite>sprites\spr_asgore_kneel</sprite>
<sprite>sprites\spr_asgore_kneeldeath</sprite>
<sprite>sprites\spr_asgore_l</sprite>
<sprite>sprites\spr_asgore_lastface</sprite>
<sprite>sprites\spr_asgore_lt</sprite>
<sprite>sprites\spr_asgore_prebrandish</sprite>
<sprite>sprites\spr_asgore_r</sprite>
<sprite>sprites\spr_asgore_rt</sprite>
<sprite>sprites\spr_asgore_shears</sprite>
<sprite>sprites\spr_asgore_shears_sad</sprite>
<sprite>sprites\spr_asgore_shockface</sprite>
<sprite>sprites\spr_asgore_swipe_nospear</sprite>
<sprite>sprites\spr_asgore_swipe_spear</sprite>
<sprite>sprites\spr_asgore_u</sprite>
<sprite>sprites\spr_asgore_ut</sprite>
<sprite>sprites\spr_asgore_wrap</sprite>
<sprite>sprites\spr_asgore_wrapface</sprite>
<sprite>sprites\spr_asgore_wrapshock</sprite>
<sprite>sprites\spr_asrielarm_r</sprite>
<sprite>sprites\spr_asrielarm_r_shrug</sprite>
<sprite>sprites\spr_asrielbg</sprite>
<sprite>sprites\spr_asrielcollar</sprite>
<sprite>sprites\spr_asrielfeet</sprite>
<sprite>sprites\spr_asrielhead</sprite>
<sprite>sprites\spr_asriellocket</sprite>
<sprite>sprites\spr_asrielpanels</sprite>
<sprite>sprites\spr_asrielshoulder_r</sprite>
<sprite>sprites\spr_asrieltorso</sprite>
<sprite>sprites\spr_asriel_afterimager</sprite>
<sprite>sprites\spr_asriel_afterimager_full</sprite>
<sprite>sprites\spr_asriel_armcry</sprite>
<sprite>sprites\spr_asriel_d</sprite>
<sprite>sprites\spr_asriel_dt</sprite>
<sprite>sprites\spr_asriel_gunarm</sprite>
<sprite>sprites\spr_asriel_gunarm_meter</sprite>
<sprite>sprites\spr_asriel_gunarm_meter_old</sprite>
<sprite>sprites\spr_asriel_gunarm_shot</sprite>
<sprite>sprites\spr_asriel_gunarm_shot_old</sprite>
<sprite>sprites\spr_asriel_gunarm_smearin</sprite>
<sprite>sprites\spr_asriel_gunarm_unhinge</sprite>
<sprite>sprites\spr_asriel_gunbolt</sprite>
<sprite>sprites\spr_asriel_headshake</sprite>
<sprite>sprites\spr_asriel_headshake_sassy</sprite>
<sprite>sprites\spr_asriel_hug</sprite>
<sprite>sprites\spr_asriel_l</sprite>
<sprite>sprites\spr_asriel_land</sprite>
<sprite>sprites\spr_asriel_lookdown</sprite>
<sprite>sprites\spr_asriel_lt</sprite>
<sprite>sprites\spr_asriel_power</sprite>
<sprite>sprites\spr_asriel_powerdown</sprite>
<sprite>sprites\spr_asriel_r</sprite>
<sprite>sprites\spr_asriel_rsad</sprite>
<sprite>sprites\spr_asriel_rt</sprite>
<sprite>sprites\spr_asriel_rubtears</sprite>
<sprite>sprites\spr_asriel_sword</sprite>
<sprite>sprites\spr_asriel_swordandsmear</sprite>
<sprite>sprites\spr_asriel_swordarm</sprite>
<sprite>sprites\spr_asriel_swordarm_half</sprite>
<sprite>sprites\spr_asriel_swordarm_half_old</sprite>
<sprite>sprites\spr_asriel_swordarm_old</sprite>
<sprite>sprites\spr_asriel_swordarm_power</sprite>
<sprite>sprites\spr_asriel_swordextend</sprite>
<sprite>sprites\spr_asriel_swordextend_old</sprite>
<sprite>sprites\spr_asriel_swordextend_shatter</sprite>
<sprite>sprites\spr_asriel_swordlessarm</sprite>
<sprite>sprites\spr_asriel_swordsmear</sprite>
<sprite>sprites\spr_asriel_swordtwinkle</sprite>
<sprite>sprites\spr_asriel_sword_old</sprite>
<sprite>sprites\spr_asriel_tearsdry</sprite>
<sprite>sprites\spr_asriel_u</sprite>
<sprite>sprites\spr_asriel_ut</sprite>
<sprite>sprites\spr_astigmatismhurt</sprite>
<sprite>sprites\spr_astigmatism_anim</sprite>
<sprite>sprites\spr_astigmatism_anim2</sprite>
<sprite>sprites\spr_astigmatism_handl</sprite>
<sprite>sprites\spr_astigmatism_legl</sprite>
<sprite>sprites\spr_astigmatism_normal</sprite>
<sprite>sprites\spr_awfulshed</sprite>
<sprite>sprites\spr_balancehotdog</sprite>
<sprite>sprites\spr_balletshoes</sprite>
<sprite>sprites\spr_bara01hurt</sprite>
<sprite>sprites\spr_bara02hurt</sprite>
<sprite>sprites\spr_baraarmor</sprite>
<sprite>sprites\spr_baraball</sprite>
<sprite>sprites\spr_barafalchion</sprite>
<sprite>sprites\spr_barafist</sprite>
<sprite>sprites\spr_barafist_bug</sprite>
<sprite>sprites\spr_barafist_cat</sprite>
<sprite>sprites\spr_barahead1</sprite>
<sprite>sprites\spr_barahead2</sprite>
<sprite>sprites\spr_barahead3</sprite>
<sprite>sprites\spr_barahead4</sprite>
<sprite>sprites\spr_baralegs</sprite>
<sprite>sprites\spr_barashirtless</sprite>
<sprite>sprites\spr_barashoes</sprite>
<sprite>sprites\spr_barkbullet</sprite>
<sprite>sprites\spr_barktry</sprite>
<sprite>sprites\spr_barriercut</sprite>
<sprite>sprites\spr_basketball</sprite>
<sprite>sprites\spr_basketball_bomb</sprite>
<sprite>sprites\spr_battlebg</sprite>
<sprite>sprites\spr_battlebomb</sprite>
<sprite>sprites\spr_battlebomb_defuse</sprite>
<sprite>sprites\spr_bball_hoop</sprite>
<sprite>sprites\spr_bball_hoop_back</sprite>
<sprite>sprites\spr_bbutton</sprite>
<sprite>sprites\spr_beachdebris</sprite>
<sprite>sprites\spr_beamcircle</sprite>
<sprite>sprites\spr_bedlump</sprite>
<sprite>sprites\spr_bed_dark</sprite>
<sprite>sprites\spr_bed_dark_nosheet</sprite>
<sprite>sprites\spr_bed_dark_sheet</sprite>
<sprite>sprites\spr_bed_dark_sheet_weird</sprite>
<sprite>sprites\spr_bellblossom</sprite>
<sprite>sprites\spr_bench</sprite>
<sprite>sprites\spr_bgpipe</sprite>
<sprite>sprites\spr_bigbob</sprite>
<sprite>sprites\spr_bigbomb</sprite>
<sprite>sprites\spr_bigcoredoor</sprite>
<sprite>sprites\spr_bigdog_side</sprite>
<sprite>sprites\spr_bigmonitor</sprite>
<sprite>sprites\spr_bigmouth</sprite>
<sprite>sprites\spr_bigpie</sprite>
<sprite>sprites\spr_bigweb</sprite>
<sprite>sprites\spr_blackboxbl</sprite>
<sprite>sprites\spr_blackboxpart</sprite>
<sprite>sprites\spr_blackbox_o</sprite>
<sprite>sprites\spr_blackbox_o_shatter</sprite>
<sprite>sprites\spr_blackbox_pl</sprite>
<sprite>sprites\spr_blconabove</sprite>
<sprite>sprites\spr_blconbelow</sprite>
<sprite>sprites\spr_blconsm</sprite>
<sprite>sprites\spr_blconsm2</sprite>
<sprite>sprites\spr_blconsm2_shrt</sprite>
<sprite>sprites\spr_blconsm_shrt</sprite>
<sprite>sprites\spr_blcontiny</sprite>
<sprite>sprites\spr_blcontinyabove</sprite>
<sprite>sprites\spr_blcontl</sprite>
<sprite>sprites\spr_blconwd</sprite>
<sprite>sprites\spr_blconwdshrt</sprite>
<sprite>sprites\spr_blconwdshrt_l</sprite>
<sprite>sprites\spr_blookhat</sprite>
<sprite>sprites\spr_blookhouses</sprite>
<sprite>sprites\spr_bluedontmove</sprite>
<sprite>sprites\spr_bluejet</sprite>
<sprite>sprites\spr_bluespear</sprite>
<sprite>sprites\spr_bluesword</sprite>
<sprite>sprites\spr_bof_what</sprite>
<sprite>sprites\spr_bombburst</sprite>
<sprite>sprites\spr_bombd</sprite>
<sprite>sprites\spr_bombexplosion</sprite>
<sprite>sprites\spr_bombexplosionmask</sprite>
<sprite>sprites\spr_bonebottom</sprite>
<sprite>sprites\spr_bonebox</sprite>
<sprite>sprites\spr_bonedrawer</sprite>
<sprite>sprites\spr_bonedrawer_improved</sprite>
<sprite>sprites\spr_bonedrawer_note</sprite>
<sprite>sprites\spr_bonepainting</sprite>
<sprite>sprites\spr_bonesaver</sprite>
<sprite>sprites\spr_bonetop</sprite>
<sprite>sprites\spr_book</sprite>
<sprite>sprites\spr_bookshelf</sprite>
<sprite>sprites\spr_booths</sprite>
<sprite>sprites\spr_border</sprite>
<sprite>sprites\spr_bottomtable</sprite>
<sprite>sprites\spr_bouncersteam</sprite>
<sprite>sprites\spr_bpants_arms</sprite>
<sprite>sprites\spr_bpants_bush</sprite>
<sprite>sprites\spr_bpants_cloud</sprite>
<sprite>sprites\spr_bpants_face</sprite>
<sprite>sprites\spr_brattyarm_l</sprite>
<sprite>sprites\spr_brattyarm_r</sprite>
<sprite>sprites\spr_brattybody</sprite>
<sprite>sprites\spr_brattyface</sprite>
<sprite>sprites\spr_bridgeseed</sprite>
<sprite>sprites\spr_brokeboxpart</sprite>
<sprite>sprites\spr_brokenpillar</sprite>
<sprite>sprites\spr_bulletgenmd</sprite>
<sprite>sprites\spr_bulletmd</sprite>
<sprite>sprites\spr_bulletNapstaSad</sprite>
<sprite>sprites\spr_bulletsm</sprite>
<sprite>sprites\spr_bullet_test</sprite>
<sprite>sprites\spr_bullet_testx</sprite>
<sprite>sprites\spr_bullet_testx_arrow</sprite>
<sprite>sprites\spr_bullet_test_d</sprite>
<sprite>sprites\spr_bullet_test_l</sprite>
<sprite>sprites\spr_bullet_test_r</sprite>
<sprite>sprites\spr_bullet_test_u</sprite>
<sprite>sprites\spr_businessdude</sprite>
<sprite>sprites\spr_businessmanticore</sprite>
<sprite>sprites\spr_butterflybllt</sprite>
<sprite>sprites\spr_butterflybullet</sprite>
<sprite>sprites\spr_butterflybullet_green</sprite>
<sprite>sprites\spr_butterfly_bullet2</sprite>
<sprite>sprites\spr_cactus</sprite>
<sprite>sprites\spr_candydish</sprite>
<sprite>sprites\spr_candydish2</sprite>
<sprite>sprites\spr_candydish_bad</sprite>
<sprite>sprites\spr_carbed</sprite>
<sprite>sprites\spr_carrotbullet</sprite>
<sprite>sprites\spr_carrotbullet_gr</sprite>
<sprite>sprites\spr_carrotbullet_snake</sprite>
<sprite>sprites\spr_carrotbullet_snake_gr</sprite>
<sprite>sprites\spr_carrotshot</sprite>
<sprite>sprites\spr_castledog_a</sprite>
<sprite>sprites\spr_catarm</sprite>
<sprite>sprites\spr_cattybody</sprite>
<sprite>sprites\spr_cattyface</sprite>
<sprite>sprites\spr_cbone</sprite>
<sprite>sprites\spr_cbutton</sprite>
<sprite>sprites\spr_centeredhole</sprite>
<sprite>sprites\spr_chairempty</sprite>
<sprite>sprites\spr_chairiel</sprite>
<sprite>sprites\spr_chairielgetup</sprite>
<sprite>sprites\spr_chairiel_grey</sprite>
<sprite>sprites\spr_chairiel_sleep</sprite>
<sprite>sprites\spr_chaosbomb</sprite>
<sprite>sprites\spr_charad</sprite>
<sprite>sprites\spr_charad_fall</sprite>
<sprite>sprites\spr_charahead</sprite>
<sprite>sprites\spr_charal</sprite>
<sprite>sprites\spr_charal_fall</sprite>
<sprite>sprites\spr_charaphoto</sprite>
<sprite>sprites\spr_charar</sprite>
<sprite>sprites\spr_charar_fall</sprite>
<sprite>sprites\spr_charau</sprite>
<sprite>sprites\spr_charau_fall</sprite>
<sprite>sprites\spr_cheesetable</sprite>
<sprite>sprites\spr_chefhat</sprite>
<sprite>sprites\spr_cherrypetal</sprite>
<sprite>sprites\spr_chestbox</sprite>
<sprite>sprites\spr_chewtoy</sprite>
<sprite>sprites\spr_chilldrakenpc</sprite>
<sprite>sprites\spr_chillglasses</sprite>
<sprite>sprites\spr_chimesparkle1</sprite>
<sprite>sprites\spr_chipdoor_chippart</sprite>
<sprite>sprites\spr_chipdoor_green</sprite>
<sprite>sprites\spr_chipdoor_red</sprite>
<sprite>sprites\spr_christmasflake</sprite>
<sprite>sprites\spr_circlebulletb</sprite>
<sprite>sprites\spr_circlebulletlarge_ex</sprite>
<sprite>sprites\spr_circlebulletmd1</sprite>
<sprite>sprites\spr_circlebulletmd1b</sprite>
<sprite>sprites\spr_circlebulletmed2</sprite>
<sprite>sprites\spr_circlebulletmed_ex</sprite>
<sprite>sprites\spr_circlebulletsm</sprite>
<sprite>sprites\spr_circlebulletsm_ex</sprite>
<sprite>sprites\spr_circlebullet_noc</sprite>
<sprite>sprites\spr_clamgirl_a</sprite>
<sprite>sprites\spr_clamgirl_b</sprite>
<sprite>sprites\spr_clamguy_a</sprite>
<sprite>sprites\spr_clamguy_b</sprite>
<sprite>sprites\spr_clawbullet</sprite>
<sprite>sprites\spr_coffin_closed</sprite>
<sprite>sprites\spr_coffin_open</sprite>
<sprite>sprites\spr_cogmed_e</sprite>
<sprite>sprites\spr_cogsmall_e</sprite>
<sprite>sprites\spr_colorswitch</sprite>
<sprite>sprites\spr_computer</sprite>
<sprite>sprites\spr_confetti</sprite>
<sprite>sprites\spr_confuseheart</sprite>
<sprite>sprites\spr_convenientlamp</sprite>
<sprite>sprites\spr_conveyorbelt_d</sprite>
<sprite>sprites\spr_conveyorbelt_dmarker</sprite>
<sprite>sprites\spr_conveyorbelt_d_blue</sprite>
<sprite>sprites\spr_conveyorbelt_d_blue_m</sprite>
<sprite>sprites\spr_conveyorbelt_r</sprite>
<sprite>sprites\spr_conveyorbelt_rmarker</sprite>
<sprite>sprites\spr_conveyorbelt_r_blue</sprite>
<sprite>sprites\spr_conveyorbelt_r_blue_m</sprite>
<sprite>sprites\spr_conveyorbelt_single</sprite>
<sprite>sprites\spr_coolbus</sprite>
<sprite>sprites\spr_coolerpuddle</sprite>
<sprite>sprites\spr_cooler_water</sprite>
<sprite>sprites\spr_corebridgepiece</sprite>
<sprite>sprites\spr_coredoor</sprite>
<sprite>sprites\spr_coreentrance_bright</sprite>
<sprite>sprites\spr_coresign</sprite>
<sprite>sprites\spr_core_glowwall</sprite>
<sprite>sprites\spr_core_lightst_left</sprite>
<sprite>sprites\spr_core_lightst_m</sprite>
<sprite>sprites\spr_core_lightst_r</sprite>
<sprite>sprites\spr_core_linelightstrip</sprite>
<sprite>sprites\spr_core_wallstrip</sprite>
<sprite>sprites\spr_core_wallstrip_l</sprite>
<sprite>sprites\spr_core_wallstrip_m</sprite>
<sprite>sprites\spr_core_wallstrip_r</sprite>
<sprite>sprites\spr_countersegment</sprite>
<sprite>sprites\spr_countertop</sprite>
<sprite>sprites\spr_crackedbeach</sprite>
<sprite>sprites\spr_creditsheart</sprite>
<sprite>sprites\spr_crimegraph</sprite>
<sprite>sprites\spr_croissantl</sprite>
<sprite>sprites\spr_croissantr</sprite>
<sprite>sprites\spr_crosszap</sprite>
<sprite>sprites\spr_crystaltable</sprite>
<sprite>sprites\spr_cupcakebullet</sprite>
<sprite>sprites\spr_cupcakemonster</sprite>
<sprite>sprites\spr_cutetable</sprite>
<sprite>sprites\spr_darkelevator_l</sprite>
<sprite>sprites\spr_darkelevator_r</sprite>
<sprite>sprites\spr_darkhalo</sprite>
<sprite>sprites\spr_darkhalo_big</sprite>
<sprite>sprites\spr_darkman_d</sprite>
<sprite>sprites\spr_darkman_l</sprite>
<sprite>sprites\spr_darkman_laugh</sprite>
<sprite>sprites\spr_darkman_r</sprite>
<sprite>sprites\spr_darknesstotem</sprite>
<sprite>sprites\spr_dbone</sprite>
<sprite>sprites\spr_dbutton</sprite>
<sprite>sprites\spr_defusebox</sprite>
<sprite>sprites\spr_dentata_bottomhalf</sprite>
<sprite>sprites\spr_dentata_none</sprite>
<sprite>sprites\spr_dentata_none_old</sprite>
<sprite>sprites\spr_dentata_tophalf</sprite>
<sprite>sprites\spr_diamondboy</sprite>
<sprite>sprites\spr_diamondtallboy</sprite>
<sprite>sprites\spr_diamond_recep</sprite>
<sprite>sprites\spr_digitalnumber</sprite>
<sprite>sprites\spr_diningtable</sprite>
<sprite>sprites\spr_diningtable_grey</sprite>
<sprite>sprites\spr_dirbullet</sprite>
<sprite>sprites\spr_discoball</sprite>
<sprite>sprites\spr_discoball_invert_pl</sprite>
<sprite>sprites\spr_discoball_pl</sprite>
<sprite>sprites\spr_disembodiedfoxhead</sprite>
<sprite>sprites\spr_djtable</sprite>
<sprite>sprites\spr_dmgmiss_o</sprite>
<sprite>sprites\spr_dmgnum</sprite>
<sprite>sprites\spr_dmgnum_o</sprite>
<sprite>sprites\spr_dockanim</sprite>
<sprite>sprites\spr_dogbed</sprite>
<sprite>sprites\spr_dogboat</sprite>
<sprite>sprites\spr_dogboat_cover</sprite>
<sprite>sprites\spr_dogboredwalk</sprite>
<sprite>sprites\spr_dogbowl</sprite>
<sprite>sprites\spr_dogbowl_empty</sprite>
<sprite>sprites\spr_dogbuttwalk</sprite>
<sprite>sprites\spr_dogeB</sprite>
<sprite>sprites\spr_dogeBtail</sprite>
<sprite>sprites\spr_dogeB_hurt</sprite>
<sprite>sprites\spr_dogfoodbag</sprite>
<sprite>sprites\spr_doghouseback</sprite>
<sprite>sprites\spr_doghousesmall</sprite>
<sprite>sprites\spr_doglick</sprite>