forked from quisquous/cactbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzone_info.js
7359 lines (7358 loc) · 187 KB
/
zone_info.js
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
// Auto-generated from gen_zone_id_and_info.py
// DO NOT EDIT THIS FILE DIRECTLY
export default {
128: {
'exVersion': 0,
'name': {
'cn': '利姆萨·罗敏萨上层甲板',
'de': 'Obere Decks',
'en': 'Limsa Lominsa Upper Decks',
'fr': 'Limsa Lominsa - Le Tillac',
'ja': 'リムサ・ロミンサ:上甲板層',
'ko': '림사 로민사 상층 갑판',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 14,
},
129: {
'exVersion': 0,
'name': {
'cn': '利姆萨·罗敏萨下层甲板',
'de': 'Untere Decks',
'en': 'Limsa Lominsa Lower Decks',
'fr': 'Limsa Lominsa - L\'Entrepont',
'ja': 'リムサ・ロミンサ:下甲板層',
'ko': '림사 로민사 하층 갑판',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 15,
},
130: {
'exVersion': 0,
'name': {
'cn': '乌尔达哈现世回廊',
'de': 'Nald-Kreuzgang',
'en': 'Ul\'dah - Steps of Nald',
'fr': 'Ul\'dah - Faubourg de Nald',
'ja': 'ウルダハ:ナル回廊',
'ko': '울다하 날 회랑',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 7,
},
131: {
'exVersion': 0,
'name': {
'cn': '乌尔达哈来生回廊',
'de': 'Thal-Kreuzgang',
'en': 'Ul\'dah - Steps of Thal',
'fr': 'Ul\'dah - Faubourg de Thal',
'ja': 'ウルダハ:ザル回廊',
'ko': '울다하 달 회랑',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 8,
},
132: {
'exVersion': 0,
'name': {
'cn': '格里达尼亚新街',
'de': 'Neu-Gridania',
'en': 'New Gridania',
'fr': 'Nouvelle Gridania',
'ja': 'グリダニア:新市街',
'ko': '그리다니아 신시가지',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 1,
},
133: {
'exVersion': 0,
'name': {
'cn': '格里达尼亚旧街',
'de': 'Alt-Gridania',
'en': 'Old Gridania',
'fr': 'Vieille Gridania',
'ja': 'グリダニア:旧市街',
'ko': '그리다니아 구시가지',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 2,
},
134: {
'exVersion': 0,
'name': {
'cn': '中拉诺西亚',
'de': 'Zentrales La Noscea',
'en': 'Middle La Noscea',
'fr': 'Noscea centrale',
'ja': '中央ラノシア',
'ko': '중부 라노시아',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 16,
},
135: {
'exVersion': 0,
'name': {
'cn': '拉诺西亚低地',
'de': 'Unteres La Noscea',
'en': 'Lower La Noscea',
'fr': 'Basse-Noscea',
'ja': '低地ラノシア',
'ko': '저지 라노시아',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 17,
},
136: {
'exVersion': 0,
'name': {
'cn': '海雾村',
'de': 'Dorf des Nebels',
'en': 'Mist',
'fr': 'Brumée',
'ja': 'ミスト・ヴィレッジ',
'ko': '안갯빛 마을',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 14,
},
137: {
'exVersion': 0,
'name': {
'cn': '东拉诺西亚',
'de': 'Östliches La Noscea',
'en': 'Eastern La Noscea',
'fr': 'Noscea orientale',
'ja': '東ラノシア',
'ko': '동부 라노시아',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 18,
},
138: {
'exVersion': 0,
'name': {
'cn': '西拉诺西亚',
'de': 'Westliches La Noscea',
'en': 'Western La Noscea',
'fr': 'Noscea occidentale',
'ja': '西ラノシア',
'ko': '서부 라노시아',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 19,
},
139: {
'exVersion': 0,
'name': {
'cn': '拉诺西亚高地',
'de': 'Oberes La Noscea',
'en': 'Upper La Noscea',
'fr': 'Haute-Noscea',
'ja': '高地ラノシア',
'ko': '고지 라노시아',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 20,
},
140: {
'exVersion': 0,
'name': {
'cn': '西萨纳兰',
'de': 'Westliches Thanalan',
'en': 'Western Thanalan',
'fr': 'Thanalan occidental',
'ja': '西ザナラーン',
'ko': '서부 다날란',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 9,
},
141: {
'exVersion': 0,
'name': {
'cn': '中萨纳兰',
'de': 'Zentrales Thanalan',
'en': 'Central Thanalan',
'fr': 'Thanalan central',
'ja': '中央ザナラーン',
'ko': '중부 다날란',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 10,
},
142: {
'contentType': 4,
'exVersion': 0,
'name': {
'cn': '艾玛吉娜杯斗技大会决赛',
'de': 'Das Drachenhals-Kolosseum',
'en': 'The Dragon\'s Neck',
'fr': 'Le Col du dragon',
'ja': 'アマジナ杯闘技会決勝戦',
'ko': '아마지나배 투기대회 결승전',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 0,
},
143: {
'contentType': 4,
'exVersion': 0,
'name': {
'cn': '皇都伊修加德保卫战',
'de': 'Der Schicksalsweg',
'en': 'The Steps of Faith',
'fr': 'Le Siège de la sainte Cité d\'Ishgard',
'ja': '皇都イシュガルド防衛戦',
'ko': '성도 이슈가르드 방어전',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 28,
},
145: {
'exVersion': 0,
'name': {
'cn': '东萨纳兰',
'de': 'Östliches Thanalan',
'en': 'Eastern Thanalan',
'fr': 'Thanalan oriental',
'ja': '東ザナラーン',
'ko': '동부 다날란',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 11,
},
146: {
'exVersion': 0,
'name': {
'cn': '南萨纳兰',
'de': 'Südliches Thanalan',
'en': 'Southern Thanalan',
'fr': 'Thanalan méridional',
'ja': '南ザナラーン',
'ko': '남부 다날란',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 12,
},
147: {
'exVersion': 0,
'name': {
'cn': '北萨纳兰',
'de': 'Nördliches Thanalan',
'en': 'Northern Thanalan',
'fr': 'Thanalan septentrional',
'ja': '北ザナラーン',
'ko': '북부 다날란',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 13,
},
148: {
'exVersion': 0,
'name': {
'cn': '黑衣森林中央林区',
'de': 'Tiefer Wald',
'en': 'Central Shroud',
'fr': 'Forêt centrale',
'ja': '黒衣森:中央森林',
'ko': '검은장막 숲 중부삼림',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 3,
},
150: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '幻龙残骸密约之塔',
'de': 'Hüter des Sees',
'en': 'The Keeper of the Lake',
'fr': 'Le Gardien du lac',
'ja': '幻龍残骸 黙約の塔',
'ko': '묵약의 탑',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 74,
},
151: {
'contentType': 5,
'exVersion': 0,
'name': {
'cn': '水晶塔 暗之世界',
'de': 'Die Welt der Dunkelheit',
'en': 'The World of Darkness',
'fr': 'La Tour de Cristal - Monde des Ténèbres',
'ja': 'クリスタルタワー:闇の世界',
'ko': '크리스탈 타워: 어둠의 세계',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
152: {
'exVersion': 0,
'name': {
'cn': '黑衣森林东部林区',
'de': 'Ostwald',
'en': 'East Shroud',
'fr': 'Forêt de l\'est',
'ja': '黒衣森:東部森林',
'ko': '검은장막 숲 동부삼림',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 4,
},
153: {
'exVersion': 0,
'name': {
'cn': '黑衣森林南部林区',
'de': 'Südwald',
'en': 'South Shroud',
'fr': 'Forêt du sud',
'ja': '黒衣森:南部森林',
'ko': '검은장막 숲 남부삼림',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 5,
},
154: {
'exVersion': 0,
'name': {
'cn': '黑衣森林北部林区',
'de': 'Nordwald',
'en': 'North Shroud',
'fr': 'Forêt du nord',
'ja': '黒衣森:北部森林',
'ko': '검은장막 숲 북부삼림',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 6,
},
155: {
'exVersion': 0,
'name': {
'cn': '库尔札斯中央高地',
'de': 'Zentrales Hochland von Coerthas',
'en': 'Coerthas Central Highlands',
'fr': 'Hautes terres du Coerthas central',
'ja': 'クルザス中央高地',
'ko': '커르다스 중앙고지',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 21,
},
156: {
'exVersion': 0,
'name': {
'cn': '摩杜纳',
'de': 'Mor Dhona',
'en': 'Mor Dhona',
'fr': 'Mor Dhona',
'ja': 'モードゥナ',
'ko': '모르도나',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 22,
},
157: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '天然要害沙斯塔夏溶洞',
'de': 'Sastasha',
'en': 'Sastasha',
'fr': 'Sastasha',
'ja': '天然要害 サスタシャ浸食洞',
'ko': '사스타샤 침식 동굴',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
158: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '休养胜地布雷福洛克斯野营地',
'de': 'Brüllvolx\' Langrast',
'en': 'Brayflox\'s Longstop',
'fr': 'Le Bivouac de Brayflox',
'ja': '奪還支援 ブレイフロクスの野営地',
'ko': '브레이플록스의 야영지',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
159: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '神灵圣域放浪神古神殿',
'de': 'Palast des Wanderers',
'en': 'The Wanderer\'s Palace',
'fr': 'Le Palais du Vagabond',
'ja': '旅神聖域 ワンダラーパレス',
'ko': '방랑자의 궁전',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
160: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '领航明灯天狼星灯塔',
'de': 'Pharos Sirius',
'en': 'Pharos Sirius',
'fr': 'Le Phare de Sirius',
'ja': '怪鳥巨塔 シリウス大灯台',
'ko': '시리우스 대등대',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 28,
},
161: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '封锁坑道铜铃铜山',
'de': 'Kupferglocken-Mine',
'en': 'Copperbell Mines',
'fr': 'Les Mines de Clochecuivre',
'ja': '封鎖坑道 カッパーベル銅山',
'ko': '구리종 광산',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
162: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '魔兽领域日影地修炼所',
'de': 'Halatali',
'en': 'Halatali',
'fr': 'Halatali',
'ja': '魔獣領域 ハラタリ修練所',
'ko': '할라탈리 수련장',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
163: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '古代遗迹喀恩埋没圣堂',
'de': 'Versunkener Tempel von Qarn',
'en': 'The Sunken Temple of Qarn',
'fr': 'Le Temple enseveli de Qarn',
'ja': '遺跡探索 カルン埋没寺院',
'ko': '카른의 무너진 사원',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
164: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '地下灵殿塔姆·塔拉墓园',
'de': 'Totenacker Tam-Tara',
'en': 'The Tam–Tara Deepcroft',
'fr': 'L\'Hypogée de Tam-Tara',
'ja': '地下霊殿 タムタラの墓所',
'ko': '탐타라 묘소',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 300,
'weatherRate': 0,
},
166: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '名门府邸静语庄园',
'de': 'Haukke-Herrenhaus',
'en': 'Haukke Manor',
'fr': 'Le Manoir des Haukke',
'ja': '名門屋敷 ハウケタ御用邸',
'ko': '하우케타 별궁',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
167: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '邪教驻地无限城古堡',
'de': 'Die Ruinen von Amdapor',
'en': 'Amdapor Keep',
'fr': 'Le Château d\'Amdapor',
'ja': '邪教排撃 古城アムダプール',
'ko': '옛 암다포르 성',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 28,
},
168: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '对龙城塞石卫塔',
'de': 'Steinerne Wacht',
'en': 'The Stone Vigil',
'fr': 'Le Vigile de Pierre',
'ja': '城塞攻略 ストーンヴィジル',
'ko': '돌방패 경계초소',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 27,
},
169: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '监狱废墟托托·拉克千狱',
'de': 'Tausend Löcher von Toto-Rak',
'en': 'The Thousand Maws of Toto–Rak',
'fr': 'Les Mille Gueules de Toto-Rak',
'ja': '監獄廃墟 トトラクの千獄',
'ko': '토토라크 감옥',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
170: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '流沙迷宫樵鸣洞',
'de': 'Sägerschrei',
'en': 'Cutter\'s Cry',
'fr': 'Le Gouffre hurlant',
'ja': '流砂迷宮 カッターズクライ',
'ko': '나무꾼의 비명',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
171: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '山中战线泽梅尔要塞',
'de': 'Die Feste Dzemael',
'en': 'Dzemael Darkhold',
'fr': 'La Forteresse de Dzemael',
'ja': '掃討作戦 ゼーメル要塞',
'ko': '제멜 요새',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
172: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '毒雾洞窟黄金谷',
'de': 'Goldklamm',
'en': 'The Aurum Vale',
'fr': 'Le Val d\'Aurum',
'ja': '霧中行軍 オーラムヴェイル',
'ko': '금빛 골짜기',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
174: {
'contentType': 5,
'exVersion': 0,
'name': {
'cn': '水晶塔 古代人迷宫',
'de': 'Kristallturm - Das Labyrinth der Alten',
'en': 'The Labyrinth of the Ancients',
'fr': 'La Tour de Cristal - Dédale antique',
'ja': 'クリスタルタワー:古代の民の迷宮',
'ko': '크리스탈 타워: 고대인의 미궁',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
180: {
'exVersion': 0,
'name': {
'cn': '拉诺西亚外地',
'de': 'Äußeres La Noscea',
'en': 'Outer La Noscea',
'fr': 'Noscea extérieure',
'ja': '外地ラノシア',
'ko': '외지 라노시아',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 24,
},
188: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '武装圣域放浪神古神殿',
'de': 'Palast des Wanderers (schwer)',
'en': 'The Wanderer\'s Palace (Hard)',
'fr': 'Le Palais du Vagabond (brutal)',
'ja': '武装聖域 ワンダラーパレス (Hard)',
'ko': '방랑자의 궁전(어려움)',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 40,
},
189: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '邪念妖地无限城古堡',
'de': 'Die Ruinen von Amdapor (schwer)',
'en': 'Amdapor Keep (Hard)',
'fr': 'Le Château d\'Amdapor (brutal)',
'ja': '邪念排撃 古城アムダプール (Hard)',
'ko': '옛 암다포르 성(어려움)',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 40,
},
190: {
'contentType': 3,
'exVersion': 0,
'name': {
'cn': '讨伐彷徨死灵!',
'de': 'Bockmanns Gefolge',
'en': 'Under the Armor',
'fr': 'Chasse au fantôme fantoche',
'ja': '彷徨う死霊を討て!',
'ko': '방황하는 사령을 쓰러뜨려라!',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 3,
},
191: {
'contentType': 3,
'exVersion': 0,
'name': {
'cn': '驱除剧毒妖花!',
'de': 'Unkraut jäten',
'en': 'Pulling Poison Posies',
'fr': 'Opération fleurs du mal',
'ja': '有毒妖花を駆除せよ!',
'ko': '독성 요괴꽃을 제거하라!',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 4,
},
192: {
'contentType': 3,
'exVersion': 0,
'name': {
'cn': '消灭恶徒团伙寄生蜂团!',
'de': 'Ins Wespennest stechen',
'en': 'Stinging Back',
'fr': 'Expédition punitive contre les Ventrerouge',
'ja': '無法者「似我蜂団」を撃滅せよ!',
'ko': '무법자 집단 \'나나니단\'을 섬멸하라!',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 5,
},
193: {
'contentType': 5,
'exVersion': 0,
'name': {
'cn': '巴哈姆特大迷宫 真源之章1',
'de': 'Verschlungene Schatten 3 - 1',
'en': 'The Final Coil of Bahamut - Turn 1',
'fr': 'L\'Abîme de Bahamut I',
'ja': '大迷宮バハムート:真成編1',
'ko': '대미궁 바하무트: 진성편 1',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
194: {
'contentType': 5,
'exVersion': 0,
'name': {
'cn': '巴哈姆特大迷宫 真源之章2',
'de': 'Verschlungene Schatten 3 - 2',
'en': 'The Final Coil of Bahamut - Turn 2',
'fr': 'L\'Abîme de Bahamut II',
'ja': '大迷宮バハムート:真成編2',
'ko': '대미궁 바하무트: 진성편 2',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
195: {
'contentType': 5,
'exVersion': 0,
'name': {
'cn': '巴哈姆特大迷宫 真源之章3',
'de': 'Verschlungene Schatten 3 - 3',
'en': 'The Final Coil of Bahamut - Turn 3',
'fr': 'L\'Abîme de Bahamut III',
'ja': '大迷宮バハムート:真成編3',
'ko': '대미궁 바하무트: 진성편 3',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
196: {
'contentType': 5,
'exVersion': 0,
'name': {
'cn': '巴哈姆特大迷宫 真源之章4',
'de': 'Verschlungene Schatten 3 - 4',
'en': 'The Final Coil of Bahamut - Turn 4',
'fr': 'L\'Abîme de Bahamut IV',
'ja': '大迷宮バハムート:真成編4',
'ko': '대미궁 바하무트: 진성편 4',
},
'offsetX': -448,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 44,
},
202: {
'contentType': 4,
'exVersion': 0,
'name': {
'cn': '伊弗利特讨伐战',
'de': 'Das Grab der Lohe',
'en': 'The Bowl of Embers',
'fr': 'Le Cratère des tisons',
'ja': 'イフリート討伐戦',
'ko': '이프리트 토벌전',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 400,
'weatherRate': 25,
},
206: {
'contentType': 4,
'exVersion': 0,
'name': {
'cn': '泰坦讨伐战',
'de': 'Der Nabel',
'en': 'The Navel',
'fr': 'Le Nombril',
'ja': 'タイタン討伐戦',
'ko': '타이탄 토벌전',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 400,
'weatherRate': 23,
},
207: {
'contentType': 4,
'exVersion': 0,
'name': {
'cn': '莫古力贤王歼灭战',
'de': 'Königliche Konfrontation (schwer)',
'en': 'Thornmarch (Hard)',
'fr': 'La Lisière de ronces (brutal)',
'ja': '善王モグル・モグXII世討滅戦',
'ko': '선왕 모그루 모그 XII세 토벌전',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 400,
'weatherRate': 30,
},
208: {
'contentType': 4,
'exVersion': 0,
'name': {
'cn': '迦楼罗讨伐战',
'de': 'Das Tosende Auge',
'en': 'The Howling Eye',
'fr': 'Hurlœil',
'ja': 'ガルーダ討伐戦',
'ko': '가루다 토벌전',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 400,
'weatherRate': 26,
},
214: {
'contentType': 3,
'exVersion': 0,
'name': {
'cn': '完成集团战训练!',
'de': 'Einer für alle, alle für einen',
'en': 'Basic Training: Enemy Parties',
'fr': 'Entraînement<Indent/>: groupes d\'ennemis',
'ja': '集団戦訓練をくぐり抜けろ!',
'ko': '집단전 훈련을 완수하라!',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 16,
},
215: {
'contentType': 3,
'exVersion': 0,
'name': {
'cn': '突破所有关门,讨伐最深处的敌人!',
'de': 'Sturmkommando',
'en': 'Basic Training: Enemy Strongholds',
'fr': 'Entraînement<Indent/>: in<SoftHyphen/>fil<SoftHyphen/>tra<SoftHyphen/>tion en base ennemie',
'ja': '全関門を突破し、最深部の敵を討て!',
'ko': '관문을 돌파하고 최심부의 적을 쓰러뜨려라!',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 9,
},
216: {
'contentType': 3,
'exVersion': 0,
'name': {
'cn': '捕获金币龟!',
'de': 'Gil oder Leben',
'en': 'Hero on the Half Shell',
'fr': 'Reconquête d\'une carapace escamotée',
'ja': 'ギルガメを捕獲せよ!',
'ko': '길거북을 사로잡아라!',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 10,
},
217: {
'contentType': 2,
'exVersion': 0,
'name': {
'cn': '帝国南方堡外围激战',
'de': 'Castrum Meridianum - Außenbereich',
'en': 'Castrum Meridianum',
'fr': 'Castrum Meridianum',
'ja': '外郭攻略 カストルム・メリディアヌム',
'ko': '카스트룸 메리디아눔',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 200,
'weatherRate': 0,
},
219: {
'contentType': 3,
'exVersion': 0,
'name': {
'cn': '击溃哥布林炸弹军团!',
'de': 'Bombige Goblins',
'en': 'Flicking Sticks and Taking Names',
'fr': 'Les Gobelins bombardiers',
'ja': '爆弾魔ゴブリン軍団を撃滅せよ!',
'ko': '폭탄광 고블린 군단을 섬멸하라!',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 3,
},
220: {
'contentType': 3,
'exVersion': 0,
'name': {
'cn': '讨伐梦幻之布拉奇希奥!',
'de': 'Briaxio ausschalten',
'en': 'All\'s Well that Ends in the Well',
'fr': 'Briaxio à bras raccourcis',
'ja': '夢幻のブラキシオを討て!',
'ko': '몽환의 브라크시오를 쓰러뜨려라!',
},
'offsetX': 0,
'offsetY': 0,
'sizeFactor': 100,
'weatherRate': 5,
},
221: {
'contentType': 3,
'exVersion': 0,
'name': {
'cn': '讨伐污染源头魔界花!',
'de': 'Tödliches Rankenspiel',
'en': 'More than a Feeler',
'fr': 'Sus au morbol pollueur',
'ja': '汚染源モルボルを討て!',
'ko': '오염원 몰볼을 쓰러뜨려라!',
},
'offsetX': 0,