-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMap0079.emu
More file actions
3868 lines (3868 loc) · 116 KB
/
Map0079.emu
File metadata and controls
3868 lines (3868 loc) · 116 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<LMU>
<Map>
<chipset_id>16</chipset_id>
<width>30</width>
<height>15</height>
<scroll_type>0</scroll_type>
<parallax_flag>F</parallax_flag>
<parallax_name></parallax_name>
<parallax_loop_x>F</parallax_loop_x>
<parallax_loop_y>F</parallax_loop_y>
<parallax_auto_loop_x>F</parallax_auto_loop_x>
<parallax_sx>0</parallax_sx>
<parallax_auto_loop_y>F</parallax_auto_loop_y>
<parallax_sy>0</parallax_sy>
<generator_flag>F</generator_flag>
<generator_mode>0</generator_mode>
<top_level>F</top_level>
<generator_tiles>0</generator_tiles>
<generator_width>4</generator_width>
<generator_height>1</generator_height>
<generator_surround>T</generator_surround>
<generator_upper_wall>T</generator_upper_wall>
<generator_floor_b>T</generator_floor_b>
<generator_floor_c>T</generator_floor_c>
<generator_extra_b>T</generator_extra_b>
<generator_extra_c>T</generator_extra_c>
<generator_x></generator_x>
<generator_y></generator_y>
<generator_tile_ids></generator_tile_ids>
<lower_layer>4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4554 4578 4578 4578 4578 4578 4578 4578 4578 4578 4558 4550 4550 4550 4550 4554 4578 4578 4578 4578 4578 4578 4578 4578 4578 4578 4558 4550 4550 4550 4574 5055 5056 5056 5056 5056 5056 5056 5056 5057 4566 4554 4578 4578 4558 4574 5055 5056 5056 5056 5056 5056 5056 5056 5056 5057 4566 4550 4550 4550 4574 5061 5062 5062 5062 5062 5062 5062 5062 5063 4566 4574 5088 5089 4566 4574 5061 5062 5062 5062 5062 5062 5062 5062 5062 5063 4566 4550 4550 4550 4574 5067 5068 5068 5068 5068 5068 5068 5068 5069 4566 4574 5088 5089 4566 4574 5067 5068 5068 5068 5068 5068 5068 5068 5068 5069 4566 4550 4550 4550 4574 5066 5066 5066 5066 5066 5066 5066 5066 5066 4566 4574 5088 5089 4590 4588 4234 4220 4220 4220 4220 4220 4220 4220 4220 4236 4566 4550 4550 4550 4574 5054 5054 5054 5054 5054 5054 5054 5054 5054 4590 4588 4234 4236 5055 5057 4216 4200 4200 4200 4200 4200 4200 4200 4200 4224 4566 4550 4550 4550 4574 5054 5054 5054 5054 5054 5054 5054 5054 5054 5055 5057 4216 4224 5061 5063 4216 4200 4200 4200 4200 4200 4200 4200 4200 4224 4566 4550 4550 4550 4574 5054 5054 5054 5054 5054 5054 5054 5054 5054 5061 5063 4216 4224 5067 5069 4216 4200 4200 4200 4200 4200 4200 4200 4200 4224 4566 4550 4550 4550 4574 5054 5054 5054 5054 5054 5054 5054 5054 5054 5067 5069 4216 4202 4220 4220 4201 4200 4200 4200 4200 4200 4200 4200 4200 4224 4566 4550 4550 4550 4574 5054 5054 5054 5054 5054 5054 5054 5054 5054 5054 5054 4216 4200 4200 4200 4200 4200 4200 4200 4200 4200 4200 4200 4200 4224 4566 4550 4550 4550 4574 5054 5054 5054 5054 5054 5054 5054 5054 5054 5054 5054 4240 4228 4228 4228 4228 4228 4228 4228 4208 4204 4228 4228 4228 4238 4566 4550 4550 4550 4574 5054 5054 5054 5054 5054 5054 5054 5054 5054 4584 4570 4570 4570 4570 4570 4570 4570 4570 4586 4216 4224 4584 4570 4570 4570 4551 4550 4550 4550 4552 4570 4570 4570 4570 4570 4570 4570 4570 4570 4551 4550 4550 4550 4550 4550 4550 4550 4550 4574 4216 4224 4566 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4550 4574 4216 4224 4566 4550 4550 4550 4550 4550 4550</lower_layer>
<upper_layer>10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10019 10049 10034 10049 10019 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10019 10056 10056 10019 10000 10000 10000 10000 10000 10000 10000 10000 10030 10031 10025 10055 10040 10055 10025 10096 10096 10000 10000 10000 10000 10000 10000 10000 10092 10000 10025 10062 10062 10025 10000 10000 10000 10000 10000 10000 10000 10000 10036 10037 10000 10061 10046 10061 10000 10102 10102 10000 10000 10000 10000 10000 10000 10038 10020 10020 10000 10000 10000 10000 10000 10114 10000 10000 10000 10000 10000 10000 10042 10043 10000 10000 10000 10000 10000 10108 10108 10000 10000 10000 10000 10000 10000 10044 10026 10026 10000 10000 10135 10135 10000 10120 10085 10000 10000 10000 10000 10000 10000 10069 10070 10000 10000 10069 10070 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10129 10000 10000 10000 10000 10000 10000 10075 10076 10000 10000 10075 10076 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10129 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10081 10082 10000 10000 10081 10082 10000 10000 10000 10000 10000 10000 10000 10000 10121 10122 10122 10122 10122 10122 10122 10122 10122 10123 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10069 10070 10000 10000 10069 10070 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10075 10076 10000 10000 10075 10076 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10131 10081 10082 10000 10000 10081 10082 10000 10131 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000</upper_layer>
<events>
<Event id="0001">
<name>MapChangeTrigger</name>
<x>0</x>
<y>0</y>
<pages>
<EventPage id="0001">
<condition>
<EventPageCondition>
<flags>
<EventPageCondition_Flags>
<switch_a>T</switch_a>
<switch_b>F</switch_b>
<variable>F</variable>
<item>F</item>
<actor>F</actor>
<timer>F</timer>
<timer2>F</timer2>
</EventPageCondition_Flags>
</flags>
<switch_a_id>2121</switch_a_id>
<switch_b_id>1</switch_b_id>
<variable_id>1</variable_id>
<variable_value>0</variable_value>
<item_id>1</item_id>
<actor_id>1</actor_id>
<timer_sec>0</timer_sec>
<timer2_sec>0</timer2_sec>
<compare_operator>1</compare_operator>
</EventPageCondition>
</condition>
<character_name>CE_Debug</character_name>
<character_index>7</character_index>
<character_direction>0</character_direction>
<character_pattern>1</character_pattern>
<translucent>F</translucent>
<move_type>0</move_type>
<move_frequency>3</move_frequency>
<trigger>3</trigger>
<layer>0</layer>
<overlap_forbidden>F</overlap_forbidden>
<animation_type>4</animation_type>
<move_speed>3</move_speed>
<move_route>
<MoveRoute>
<move_commands></move_commands>
<repeat>T</repeat>
<skippable>F</skippable>
</MoveRoute>
</move_route>
<event_commands>
<EventCommand>
<code>12330</code>
<indent>0</indent>
<string></string>
<parameters>0 3 0</parameters>
</EventCommand>
<EventCommand>
<code>12320</code>
<indent>0</indent>
<string></string>
<parameters></parameters>
</EventCommand>
</event_commands>
</EventPage>
</pages>
</Event>
<Event id="0002">
<name>EV0002</name>
<x>22</x>
<y>8</y>
<pages>
<EventPage id="0001">
<condition>
<EventPageCondition>
<flags>
<EventPageCondition_Flags>
<switch_a>F</switch_a>
<switch_b>F</switch_b>
<variable>F</variable>
<item>F</item>
<actor>F</actor>
<timer>F</timer>
<timer2>F</timer2>
</EventPageCondition_Flags>
</flags>
<switch_a_id>1</switch_a_id>
<switch_b_id>1</switch_b_id>
<variable_id>1</variable_id>
<variable_value>0</variable_value>
<item_id>1</item_id>
<actor_id>1</actor_id>
<timer_sec>0</timer_sec>
<timer2_sec>0</timer2_sec>
<compare_operator>1</compare_operator>
</EventPageCondition>
</condition>
<character_name></character_name>
<character_index>91</character_index>
<character_direction>2</character_direction>
<character_pattern>1</character_pattern>
<translucent>F</translucent>
<move_type>0</move_type>
<move_frequency>3</move_frequency>
<trigger>0</trigger>
<layer>0</layer>
<overlap_forbidden>F</overlap_forbidden>
<animation_type>0</animation_type>
<move_speed>3</move_speed>
<move_route>
<MoveRoute>
<move_commands></move_commands>
<repeat>T</repeat>
<skippable>F</skippable>
</MoveRoute>
</move_route>
<event_commands></event_commands>
</EventPage>
</pages>
</Event>
<Event id="0003">
<name>Inn-Mann</name>
<x>21</x>
<y>7</y>
<pages>
<EventPage id="0001">
<condition>
<EventPageCondition>
<flags>
<EventPageCondition_Flags>
<switch_a>F</switch_a>
<switch_b>F</switch_b>
<variable>F</variable>
<item>F</item>
<actor>F</actor>
<timer>F</timer>
<timer2>F</timer2>
</EventPageCondition_Flags>
</flags>
<switch_a_id>1</switch_a_id>
<switch_b_id>1</switch_b_id>
<variable_id>1</variable_id>
<variable_value>0</variable_value>
<item_id>1</item_id>
<actor_id>1</actor_id>
<timer_sec>0</timer_sec>
<timer2_sec>0</timer2_sec>
<compare_operator>1</compare_operator>
</EventPageCondition>
</condition>
<character_name>modified8</character_name>
<character_index>6</character_index>
<character_direction>2</character_direction>
<character_pattern>1</character_pattern>
<translucent>F</translucent>
<move_type>0</move_type>
<move_frequency>3</move_frequency>
<trigger>0</trigger>
<layer>1</layer>
<overlap_forbidden>F</overlap_forbidden>
<animation_type>0</animation_type>
<move_speed>3</move_speed>
<move_route>
<MoveRoute>
<move_commands></move_commands>
<repeat>T</repeat>
<skippable>F</skippable>
</MoveRoute>
</move_route>
<event_commands>
<EventCommand>
<code>10210</code>
<indent>0</indent>
<string></string>
<parameters>0 2102 2102 0</parameters>
</EventCommand>
<EventCommand>
<code>10220</code>
<indent>0</indent>
<string></string>
<parameters>0 722 722 0 0 125 0</parameters>
</EventCommand>
<EventCommand>
<code>10220</code>
<indent>0</indent>
<string></string>
<parameters>0 723 723 0 0 170 0</parameters>
</EventCommand>
<EventCommand>
<code>12330</code>
<indent>0</indent>
<string></string>
<parameters>0 261 0</parameters>
</EventCommand>
<EventCommand>
<code>12010</code>
<indent>0</indent>
<string></string>
<parameters>0 2117 0 0 0 0</parameters>
</EventCommand>
<EventCommand>
<code>12010</code>
<indent>1</indent>
<string></string>
<parameters>0 2127 0 0 0 0</parameters>
</EventCommand>
<EventCommand>
<code>10130</code>
<indent>2</indent>
<string></string>
<parameters>0 0 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>2</indent>
<string>\>\c[7]Junger Mann:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>2</indent>
<string>HILFEEEEE !!!!</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>2</indent>
<string>MÖRDER ! MONSTER !!!</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>2</indent>
<string>ZOMBIES !!!!</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10210</code>
<indent>2</indent>
<string></string>
<parameters>0 2182 2182 0</parameters>
</EventCommand>
<EventCommand>
<code>12330</code>
<indent>2</indent>
<string></string>
<parameters>0 404 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>2</indent>
<string>\>\c[2]Valnar:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>2</indent>
<string>Zombies ?</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>2</indent>
<string>\.\.Also so wurde ich ja noch nie</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>2</indent>
<string>beschimpft !</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>12310</code>
<indent>2</indent>
<string></string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10</code>
<indent>2</indent>
<string></string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>22011</code>
<indent>1</indent>
<string></string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10130</code>
<indent>1</indent>
<string></string>
<parameters>0 0 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>1</indent>
<string>\>\c[7]Junger Mann:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Hallo !</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Möchten Sie hier übernachten ?</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10210</code>
<indent>1</indent>
<string></string>
<parameters>0 2182 2182 0</parameters>
</EventCommand>
<EventCommand>
<code>12330</code>
<indent>1</indent>
<string></string>
<parameters>0 404 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>1</indent>
<string>\>\c[2]Valnar:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Nein, danke, ich bin nicht müde !</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10130</code>
<indent>1</indent>
<string></string>
<parameters>0 0 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>1</indent>
<string>\>\c[7]Junger Mann:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Na schön !</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Aber wenn Sie müde werden,</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>dann kommen Sie wieder !</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>1</indent>
<string>\>\c[7]Junger Mann:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Hier gibt es die besten Betten der</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Welt !</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10</code>
<indent>1</indent>
<string></string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>22011</code>
<indent>0</indent>
<string></string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>12010</code>
<indent>0</indent>
<string></string>
<parameters>0 2120 0 0 0 0</parameters>
</EventCommand>
<EventCommand>
<code>10320</code>
<indent>1</indent>
<string></string>
<parameters>0 0 80 0 1</parameters>
</EventCommand>
<EventCommand>
<code>12330</code>
<indent>1</indent>
<string></string>
<parameters>0 21 0</parameters>
</EventCommand>
<EventCommand>
<code>10</code>
<indent>1</indent>
<string></string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>22011</code>
<indent>0</indent>
<string></string>
<parameters></parameters>
</EventCommand>
</event_commands>
</EventPage>
<EventPage id="0002">
<condition>
<EventPageCondition>
<flags>
<EventPageCondition_Flags>
<switch_a>T</switch_a>
<switch_b>F</switch_b>
<variable>F</variable>
<item>F</item>
<actor>F</actor>
<timer>F</timer>
<timer2>F</timer2>
</EventPageCondition_Flags>
</flags>
<switch_a_id>1702</switch_a_id>
<switch_b_id>1</switch_b_id>
<variable_id>1</variable_id>
<variable_value>0</variable_value>
<item_id>1</item_id>
<actor_id>1</actor_id>
<timer_sec>0</timer_sec>
<timer2_sec>0</timer2_sec>
<compare_operator>1</compare_operator>
</EventPageCondition>
</condition>
<character_name>modified8</character_name>
<character_index>6</character_index>
<character_direction>2</character_direction>
<character_pattern>1</character_pattern>
<translucent>F</translucent>
<move_type>0</move_type>
<move_frequency>3</move_frequency>
<trigger>0</trigger>
<layer>1</layer>
<overlap_forbidden>F</overlap_forbidden>
<animation_type>0</animation_type>
<move_speed>3</move_speed>
<move_route>
<MoveRoute>
<move_commands></move_commands>
<repeat>T</repeat>
<skippable>F</skippable>
</MoveRoute>
</move_route>
<event_commands>
<EventCommand>
<code>10210</code>
<indent>0</indent>
<string></string>
<parameters>0 2112 2112 0</parameters>
</EventCommand>
<EventCommand>
<code>10210</code>
<indent>0</indent>
<string></string>
<parameters>0 2102 2102 0</parameters>
</EventCommand>
<EventCommand>
<code>10220</code>
<indent>0</indent>
<string></string>
<parameters>0 722 722 0 0 125 0</parameters>
</EventCommand>
<EventCommand>
<code>10210</code>
<indent>0</indent>
<string></string>
<parameters>0 2108 2108 0</parameters>
</EventCommand>
<EventCommand>
<code>12330</code>
<indent>0</indent>
<string></string>
<parameters>0 261 0</parameters>
</EventCommand>
<EventCommand>
<code>12010</code>
<indent>0</indent>
<string></string>
<parameters>0 2117 0 0 0 0</parameters>
</EventCommand>
<EventCommand>
<code>12010</code>
<indent>1</indent>
<string></string>
<parameters>0 104 0 0 0 0</parameters>
</EventCommand>
<EventCommand>
<code>10130</code>
<indent>2</indent>
<string></string>
<parameters>0 0 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>2</indent>
<string>\>\c[7]Junger Mann:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>2</indent>
<string>Falls dein Freund jemals einen</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>2</indent>
<string>Ort zum Bleiben braucht, sag</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>2</indent>
<string>Bescheid. Das kriegen wir hin.</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10210</code>
<indent>2</indent>
<string></string>
<parameters>0 2185 2185 0</parameters>
</EventCommand>
<EventCommand>
<code>12330</code>
<indent>2</indent>
<string></string>
<parameters>0 407 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>2</indent>
<string>\>\c[2]Aysha:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>2</indent>
<string>Das ist sehr großzügig, </string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>2</indent>
<string>vielen Dank.</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>12220</code>
<indent>2</indent>
<string></string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10</code>
<indent>2</indent>
<string></string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>22011</code>
<indent>1</indent>
<string></string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10130</code>
<indent>1</indent>
<string></string>
<parameters>0 0 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>1</indent>
<string>\>\c[7]Junger Mann:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Aysha! \.\.Du bist am leben!</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10210</code>
<indent>1</indent>
<string></string>
<parameters>0 2185 2185 0</parameters>
</EventCommand>
<EventCommand>
<code>12330</code>
<indent>1</indent>
<string></string>
<parameters>0 407 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>1</indent>
<string>\>\c[2]Aysha:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Bin ich.</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10130</code>
<indent>1</indent>
<string></string>
<parameters>0 0 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>1</indent>
<string>\>\c[7]Junger Mann:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Ich bin froh, dass Valnar sich geirrt hat.</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>\.\.Er sah wirklich bestürzt aus, als er es</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>mir erzählte...</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10210</code>
<indent>1</indent>
<string></string>
<parameters>0 2185 2185 0</parameters>
</EventCommand>
<EventCommand>
<code>12330</code>
<indent>1</indent>
<string></string>
<parameters>0 407 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>1</indent>
<string>\>\c[2]Aysha:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Das glaube ich... \.\.Aber keine Sorge, </string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>er hat mich gerettet, und ist gerade</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>außerhalb der Stadt dabei,</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>1</indent>
<string>\>\c[2]Aysha:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>meinen Mör-... uhm, meinen</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Angreifer zu jagen.</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10130</code>
<indent>1</indent>
<string></string>
<parameters>0 0 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>1</indent>
<string>\>\c[7]Junger Mann:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Das klingt gut! \.\.Wir haben uns alle</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>große Sorgen gemacht, als er auch</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>noch verschwand.</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10210</code>
<indent>1</indent>
<string></string>
<parameters>0 2185 2185 0</parameters>
</EventCommand>
<EventCommand>
<code>12330</code>
<indent>1</indent>
<string></string>
<parameters>0 407 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>1</indent>
<string>\>\c[2]Aysha:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Ich werde auch nicht lange bleiben. \.\.</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Valnar wartet schon auf mich.</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10130</code>
<indent>1</indent>
<string></string>
<parameters>0 0 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>1</indent>
<string>\>\c[7]Junger Mann:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Verstehe... \.\.aber wir sind wirklich</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>alle froh, dass du gesund bist.</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10210</code>
<indent>1</indent>
<string></string>
<parameters>0 2185 2185 0</parameters>
</EventCommand>
<EventCommand>
<code>12330</code>
<indent>1</indent>
<string></string>
<parameters>0 407 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>1</indent>
<string>\>\c[2]Aysha:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>Danke! \.\.Ich weiß es zu schätzen,</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>1</indent>
<string>wie sehr sich alle sorgen.</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10210</code>
<indent>1</indent>
<string></string>
<parameters>0 104 104 0</parameters>
</EventCommand>
<EventCommand>
<code>10220</code>
<indent>1</indent>
<string></string>
<parameters>0 636 636 1 0 1 0</parameters>
</EventCommand>
<EventCommand>
<code>10</code>
<indent>1</indent>
<string></string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>22011</code>
<indent>0</indent>
<string></string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>12010</code>
<indent>0</indent>
<string></string>
<parameters>0 2118 0 0 0 0</parameters>
</EventCommand>
<EventCommand>
<code>12010</code>
<indent>1</indent>
<string></string>
<parameters>1 726 0 2 0 1</parameters>
</EventCommand>
<EventCommand>
<code>10210</code>
<indent>2</indent>
<string></string>
<parameters>0 2183 2183 0</parameters>
</EventCommand>
<EventCommand>
<code>12330</code>
<indent>2</indent>
<string></string>
<parameters>0 407 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>2</indent>
<string>\>\c[2]Aysha:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>2</indent>
<string>Valnar! \.\.Ich bitte dich!!</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10210</code>
<indent>2</indent>
<string></string>
<parameters>0 2183 2183 0</parameters>
</EventCommand>
<EventCommand>
<code>12330</code>
<indent>2</indent>
<string></string>
<parameters>0 404 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>2</indent>
<string>\>\c[2]Valnar:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>2</indent>
<string>Sorry...</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10</code>
<indent>2</indent>
<string></string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>22010</code>
<indent>1</indent>
<string></string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10210</code>
<indent>2</indent>
<string></string>
<parameters>0 2184 2184 0</parameters>
</EventCommand>
<EventCommand>
<code>12330</code>
<indent>2</indent>
<string></string>
<parameters>0 407 0</parameters>
</EventCommand>
<EventCommand>
<code>10110</code>
<indent>2</indent>
<string>\>\c[2]Aysha:\c[0]</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>20110</code>
<indent>2</indent>
<string>Valnar! \.\.Ich leg dich übers Knie!</string>
<parameters></parameters>
</EventCommand>
<EventCommand>
<code>10210</code>
<indent>2</indent>
<string></string>
<parameters>0 2183 2183 0</parameters>
</EventCommand>
<EventCommand>
<code>12330</code>
<indent>2</indent>
<string></string>
<parameters>0 404 0</parameters>
</EventCommand>
<EventCommand>