This repository has been archived by the owner on Mar 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformation.json
12526 lines (12526 loc) · 392 KB
/
formation.json
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
[
{
"flavor_text": "各々自由に戦うスタンダードな陣形。<br>補正効果は特にないが、どんなパーティでもくせのない戦い方ができる。",
"flavor_text_en": "Default formation where members fight freely.<br>Grants no bonuses, but works for any party without a specific strategy.",
"flavor_text_en_src": "gl",
"id": 1001,
"name": "フリーファイト",
"name_en": "Free For All",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1001,
"x": 30,
"y": 25
},
{
"formation_bonus_id": 1001,
"x": 30,
"y": 15
},
{
"formation_bonus_id": 1001,
"x": 30,
"y": 35
},
{
"formation_bonus_id": 1001,
"x": 25,
"y": 6
},
{
"formation_bonus_id": 1001,
"x": 25,
"y": 44
}
]
},
{
"flavor_text": "前衛メンバーの腕力を上昇させる攻撃陣形。<br>剣、大剣、斧、棍棒、体術、槍を重視するパーティにおすすめ。",
"flavor_text_en": "Attack formation that boosts the front line's STR.<br>For parties who mainly use Swords, G. Swords, Axes, Clubs, M. Arts and Spears.",
"flavor_text_en_src": "gl",
"id": 1002,
"name": "アマゾンストライク",
"name_en": "Amazon Raid",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1002,
"x": 8,
"y": 25
},
{
"formation_bonus_id": 1003,
"x": 16,
"y": 17
},
{
"formation_bonus_id": 1003,
"x": 16,
"y": 33
},
{
"formation_bonus_id": 1004,
"x": 38,
"y": 8
},
{
"formation_bonus_id": 1004,
"x": 38,
"y": 42
}
]
},
{
"flavor_text": "前衛メンバーの腕力と素早さを上昇させる速攻陣形。<br>体術を主体とするパーティにおすすめ。",
"flavor_text_en": "Quick-strike formation that boosts the front line's STR and AGI.<br>For parties who mainly use M. Arts.",
"flavor_text_en_src": "gl",
"id": 1003,
"name": "スペキュレイション",
"name_en": "Speculation",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1005,
"x": 8,
"y": 25
},
{
"formation_bonus_id": 1006,
"x": 23,
"y": 16
},
{
"formation_bonus_id": 1006,
"x": 23,
"y": 34
},
{
"formation_bonus_id": 1007,
"x": 38,
"y": 8
},
{
"formation_bonus_id": 1007,
"x": 38,
"y": 42
}
]
},
{
"flavor_text": "前衛4人の素早さがアップする速攻陣形。<br>後衛メンバーの器用さが強化されるので、小剣、弓、銃を重視するパーティにおすすめ。",
"flavor_text_en": "Quick-strike formation that boosts the AGI of the front four.<br>Enhances the back line's DEX. For parties who mainly use S. Swords, Bows, and Guns.",
"flavor_text_en_src": "gl",
"id": 1004,
"name": "ハンターシフト",
"name_en": "Hunter's Gambit",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1008,
"x": 43,
"y": 25
},
{
"formation_bonus_id": 1009,
"x": 8,
"y": 17
},
{
"formation_bonus_id": 1009,
"x": 8,
"y": 34
},
{
"formation_bonus_id": 1010,
"x": 28,
"y": 7
},
{
"formation_bonus_id": 1010,
"x": 28,
"y": 44
}
]
},
{
"flavor_text": "前衛メンバーの体力を上昇させる防御陣形。前衛が敵の攻撃を引きつけ、パーティ全体の生存率を上げる。<br>体力が高いメンバーを軸にしたパーティにおすすめ。",
"flavor_text_en": "Defensive formation that boosts the front line's END. The front line also draws enemy attacks, improving party survival.<br>For parties based on a member with high END.",
"flavor_text_en_src": "gl",
"id": 1005,
"name": "インペリアルクロス",
"name_en": "Imperial Cross",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1001,
"x": 25,
"y": 25
},
{
"formation_bonus_id": 1012,
"x": 42,
"y": 25
},
{
"formation_bonus_id": 1011,
"x": 8,
"y": 25
},
{
"formation_bonus_id": 1001,
"x": 25,
"y": 10
},
{
"formation_bonus_id": 1001,
"x": 25,
"y": 40
}
]
},
{
"flavor_text": "中衛メンバーの体力・知力・精神とパーティ全体の精神が強化される防御陣形。中衛が敵の攻撃を引きつけ、パーティ全体の生存率を上げる。<br>強力な術攻撃に対抗したい場合におすすめ。",
"flavor_text_en": "Defensive formation that boosts the center's END, INT and the entire party's WIL. The center draws enemy attacks, improving party survival.<br>For fighting against powerful spells.",
"flavor_text_en_src": "gl",
"id": 1006,
"name": "鳳天舞の陣",
"name_en": "Rising Phoenix",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1013,
"x": 25,
"y": 25
},
{
"formation_bonus_id": 1014,
"x": 8,
"y": 10
},
{
"formation_bonus_id": 1014,
"x": 8,
"y": 40
},
{
"formation_bonus_id": 1015,
"x": 42,
"y": 10
},
{
"formation_bonus_id": 1015,
"x": 42,
"y": 40
}
]
},
{
"flavor_text": "前衛メンバーを集中的に強化する防御陣形。敵の攻撃を前衛が引きつけ、パーティ全体の生存率を上げる。<br>後衛メンバーの素早さ低下を引き替えに、前衛の攻防双方の能力を強化する。被弾をコントロールしつつ、カウンターで戦いたい場合におすすめ。",
"flavor_text_en": "Defensive formation that enhances the front line, who draws enemy attacks, improving party survival. The back line's AGI is lowered, but the front line's offensive and defensive attributes are enhanced. Good for counterattacks while mitigating damage.",
"flavor_text_en_src": "gl",
"id": 1007,
"name": "デザートランス",
"name_en": "Desert Lance",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1042,
"x": 15,
"y": 25
},
{
"formation_bonus_id": 1043,
"x": 40,
"y": 20
},
{
"formation_bonus_id": 1043,
"x": 40,
"y": 30
},
{
"formation_bonus_id": 1043,
"x": 30,
"y": 10
},
{
"formation_bonus_id": 1043,
"x": 30,
"y": 40
}
]
},
{
"flavor_text": "後衛メンバーの知力を上昇させる攻撃陣形。前衛両翼のメンバーの素早さがアップする。<br>術攻撃を主体とするパーティに向いている。全体的に精神強化がかかるため、敵の術攻撃や状態異常に対抗したいときにもおすすめ。",
"flavor_text_en": "Attack formation that boosts the back member's INT. Boosts the front line's AGI.<br>For parties who mainly use spells. Enhanced WIL allows the party to stand up to the enemy's spells and status ailments.",
"flavor_text_en_src": "gl",
"id": 1008,
"name": "パワーレイズ",
"name_en": "Seer's Focus",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1044,
"x": 42,
"y": 25
},
{
"formation_bonus_id": 1045,
"x": 17,
"y": 8
},
{
"formation_bonus_id": 1045,
"x": 17,
"y": 42
},
{
"formation_bonus_id": 1046,
"x": 32,
"y": 16
},
{
"formation_bonus_id": 1046,
"x": 32,
"y": 34
}
]
},
{
"flavor_text": "パーティ全体の素早さがアップする速攻陣形。素早さと引き替えに体力はわずかに低下する。<br>武器種を問わず、先手を取って戦いたいときにおすすめ。",
"flavor_text_en": "Quick-strike formation that boosts the party's AGI but lowers its END.<br>For parties which want to strike first, regardless of weapon type.",
"flavor_text_en_src": "gl",
"id": 1009,
"name": "ラピッドストリーム",
"name_en": "Rapid Stream",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1021,
"x": 20,
"y": 25
},
{
"formation_bonus_id": 1021,
"x": 30,
"y": 16
},
{
"formation_bonus_id": 1021,
"x": 30,
"y": 34
},
{
"formation_bonus_id": 1021,
"x": 30,
"y": 6
},
{
"formation_bonus_id": 1021,
"x": 30,
"y": 44
}
]
},
{
"flavor_text": "先頭メンバーを集中的に強化する特殊陣形。前衛・中衛の素早さが上昇する。<br>特定のメンバーを中心に戦闘を組み立てたい場合におすすめ。",
"flavor_text_en": "Special formation that focuses on enhancing its lead member. Boosts the middle and front lines' AGI.<br>For building strategies based on a specific member.",
"flavor_text_en_src": "gl",
"id": 1010,
"name": "龍陣",
"name_en": "Dragon Stance",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1022,
"x": 8,
"y": 22
},
{
"formation_bonus_id": 1023,
"x": 16,
"y": 8
},
{
"formation_bonus_id": 1023,
"x": 25,
"y": 17
},
{
"formation_bonus_id": 1024,
"x": 33,
"y": 26
},
{
"formation_bonus_id": 1024,
"x": 42,
"y": 35
}
]
},
{
"flavor_text": "後衛2人の知力が強化される術士特化の攻撃陣形。中央のメンバーを中心に前衛3人で敵の攻撃を引き受け、後衛への被弾を軽減する。<br>後衛メンバーは知力が強化されるので、術攻撃を重視するパーティにおすすめ。",
"flavor_text_en": "Attack formation for mages which boosts the two back line members' INT. The three members in front draw enemy attacks, reducing chance of back line getting attacked.<br>The back's INT boost is perfect for parties who mainly use spells.",
"flavor_text_en_src": "gl",
"id": 1011,
"name": "マジカルシャワー",
"name_en": "Magical Shower",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1032,
"x": 20,
"y": 25
},
{
"formation_bonus_id": 1033,
"x": 8,
"y": 8
},
{
"formation_bonus_id": 1033,
"x": 8,
"y": 42
},
{
"formation_bonus_id": 1034,
"x": 34,
"y": 14
},
{
"formation_bonus_id": 1034,
"x": 34,
"y": 36
}
]
},
{
"flavor_text": "前衛3人で敵の攻撃を引き受けつつ、後衛の攻撃でダメージを稼ぐ攻防一体の陣形。<br>後衛メンバーは器用さが強化されるので、小剣、弓、銃を攻撃の主軸とする編成におすすめ。",
"flavor_text_en": "Balanced formation for both offense and defense. The front line draws enemy attacks while the back line inflicts damage. Enhances the back line's DEX. For parties who mainly use S. Swords, Bows, and Guns.",
"flavor_text_en_src": "gl",
"id": 1012,
"name": "ホーリーウォール",
"name_en": "Divine Wall",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1035,
"x": 8,
"y": 25
},
{
"formation_bonus_id": 1036,
"x": 8,
"y": 8
},
{
"formation_bonus_id": 1036,
"x": 8,
"y": 42
},
{
"formation_bonus_id": 1037,
"x": 38,
"y": 16
},
{
"formation_bonus_id": 1037,
"x": 38,
"y": 34
}
]
},
{
"flavor_text": "腕力と知力の両方が上昇する特殊陣形。<br>前衛の素早さ上昇と後衛の素早さ低下により、行動順をコントロールしやすい。",
"flavor_text_en": "Special formation that boosts both STR/INT. Boosts front's AGI while lowering back's AGI. Good for controlling action order.",
"flavor_text_en_src": "gl",
"id": 1013,
"name": "シグモイドフォーム",
"name_en": "Sigmoid Form",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1040,
"x": 8,
"y": 6
},
{
"formation_bonus_id": 1041,
"x": 8,
"y": 16
},
{
"formation_bonus_id": 1067,
"x": 25,
"y": 25
},
{
"formation_bonus_id": 1065,
"x": 42,
"y": 34
},
{
"formation_bonus_id": 1066,
"x": 42,
"y": 44
}
]
},
{
"flavor_text": "3人陣形。<br>縦一列に展開して敵の攻撃を均等に散らす。補正効果は特にない。",
"flavor_text_en": "Three-member formation.<br>Spread out in a vertical line that evenly disperses enemy attacks. Grants no bonuses.",
"flavor_text_en_src": "gl",
"id": 1014,
"name": "フリーファイト",
"name_en": "Free For All",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1001,
"x": 25,
"y": 10
},
{
"formation_bonus_id": 1001,
"x": 28,
"y": 25
},
{
"formation_bonus_id": 1001,
"x": 25,
"y": 40
}
]
},
{
"flavor_text": "3人陣形。<br>前衛2人が敵の攻撃を引きつける扇型陣形。補正効果は特にない。",
"flavor_text_en": "Three-member, fan-shaped formation in which the two front line members draw enemy attacks. Grants no bonuses.",
"flavor_text_en_src": "gl",
"id": 1015,
"name": "オープンデルタ",
"name_en": "Open Delta",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1047,
"x": 12,
"y": 12
},
{
"formation_bonus_id": 1048,
"x": 36,
"y": 25
},
{
"formation_bonus_id": 1047,
"x": 12,
"y": 40
}
]
},
{
"flavor_text": "3人陣形。<br>前衛1人が敵の攻撃を引きつける凸型陣形。補正効果は特にない。",
"flavor_text_en": "Three-member, fan-shaped formation in which the single front line member draws enemy attacks. Grants no bonuses.",
"flavor_text_en_src": "gl",
"id": 1016,
"name": "クローズデルタ",
"name_en": "Closed Delta",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1050,
"x": 36,
"y": 12
},
{
"formation_bonus_id": 1049,
"x": 12,
"y": 25
},
{
"formation_bonus_id": 1050,
"x": 36,
"y": 38
}
]
},
{
"flavor_text": "3人陣形。<br>横一列の突撃陣形。前衛ほど狙われやすい。補正効果は特にない。",
"flavor_text_en": "Three-member, single file assault formation in which the front member is more likely to be targeted. Grants no bonuses.",
"flavor_text_en_src": "gl",
"id": 1017,
"name": "シングルライン",
"name_en": "Single File",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1051,
"x": 5,
"y": 25
},
{
"formation_bonus_id": 1001,
"x": 25,
"y": 25
},
{
"formation_bonus_id": 1052,
"x": 45,
"y": 25
}
]
},
{
"flavor_text": "速度と耐久性を犠牲にして攻撃力を高めた攻撃陣形。<br>前衛1人と中衛3人の器用さが強化されるのが特長。",
"flavor_text_en": "Attack formation that sacrifices speed and durability to focus on offense.<br>The front and middle lines' DEX are enhanced.",
"flavor_text_en_src": "gl",
"id": 1018,
"name": "デッドリーピアス",
"name_en": "Deadly Pierce",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1016,
"x": 6,
"y": 25
},
{
"formation_bonus_id": 1017,
"x": 20,
"y": 10
},
{
"formation_bonus_id": 1017,
"x": 20,
"y": 40
},
{
"formation_bonus_id": 1018,
"x": 25,
"y": 25
},
{
"formation_bonus_id": 1019,
"x": 44,
"y": 25
}
]
},
{
"flavor_text": "前衛4人の知力を強化する術士特化の攻撃陣形。<br>防御と回復に難がある一方、パーティの術攻撃力が大幅に強化される。術士による先制攻撃が期待できる点もメリット。",
"flavor_text_en": "Attack mage formation that boosts front four's INT. Weakens defense and recovery, yet greatly enhances spell attacks. Advantage lies in mages being able to strike first.",
"flavor_text_en_src": "gl",
"id": 1019,
"name": "アニマストリーム",
"name_en": "Anima Stream",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1070,
"x": 8,
"y": 11
},
{
"formation_bonus_id": 1070,
"x": 8,
"y": 39
},
{
"formation_bonus_id": 1068,
"x": 20,
"y": 20
},
{
"formation_bonus_id": 1068,
"x": 20,
"y": 30
},
{
"formation_bonus_id": 1071,
"x": 42,
"y": 25
}
]
},
{
"flavor_text": "中衛2人を中心に腕力が強化される攻撃陣形。アタッカーを敵の攻撃から守りやすい。<br>剣、大剣、斧、棍棒、体術、槍を重視するパーティにおすすめ。",
"flavor_text_en": "Attack formation which enhances the middle line's STR and can help defend Attacker-type members by making them less likely to be targeted by enemies. For parties who mainly use Swords, G. Swords, Axes, Clubs, M. Arts and Spears.",
"flavor_text_en_src": "gl",
"id": 1020,
"name": "ドラグーンストライク",
"name_en": "Dragoon Strike",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1056,
"x": 8,
"y": 18
},
{
"formation_bonus_id": 1056,
"x": 8,
"y": 32
},
{
"formation_bonus_id": 1057,
"x": 30,
"y": 11
},
{
"formation_bonus_id": 1057,
"x": 30,
"y": 39
},
{
"formation_bonus_id": 1058,
"x": 42,
"y": 25
}
]
},
{
"flavor_text": "<special_effect=800000077>行動前防御強化</special_effect>が全員に付与される専守防衛の陣形。敵の全体攻撃に対抗しやすい。防御力アップの引き換えに行動速度が低下する。",
"flavor_text_en": "Defensive formation that grants all members <special_effect=800000077>Pre-Action Defense Boost</special_effect>. Great against enemies' all-range attacks, but must sacrifice action priority for defense boost.",
"flavor_text_en_src": "gl",
"id": 1021,
"name": "虎穴陣",
"name_en": "Tiger's Den",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1059,
"x": 39,
"y": 25
},
{
"formation_bonus_id": 1060,
"x": 32,
"y": 15
},
{
"formation_bonus_id": 1060,
"x": 32,
"y": 35
},
{
"formation_bonus_id": 1060,
"x": 25,
"y": 6
},
{
"formation_bonus_id": 1060,
"x": 25,
"y": 44
}
]
},
{
"flavor_text": "被弾コントロールと攻撃強化を兼ね揃えた特殊陣形。<br>前衛メンバーが敵の攻撃を引きつける。前衛、後衛共に攻撃重視の能力強化になっているのが特長。",
"flavor_text_en": "Special formation that controls damage taken and boosts attack damage. Front draws enemy attacks, while front and back line's attack attributes are enhanced.",
"flavor_text_en_src": "gl",
"id": 1022,
"name": "タイガーシャーク",
"name_en": "Tiger Shark",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1061,
"x": 12,
"y": 25
},
{
"formation_bonus_id": 1062,
"x": 25,
"y": 12
},
{
"formation_bonus_id": 1063,
"x": 25,
"y": 38
},
{
"formation_bonus_id": 1064,
"x": 45,
"y": 12
},
{
"formation_bonus_id": 1064,
"x": 45,
"y": 38
}
]
},
{
"flavor_text": "各メンバーの個性を活かす特殊陣形。<br>ポジションごとに違った能力が強化されるのが特長。特定の武器種や攻撃属性にこだわらない混成パーティにおすすめ。",
"flavor_text_en": "Special formation that optimizes use of each member's attributes. Positions determine what's boosted. For mixed parties using a variety of weapon types or attack elements.",
"flavor_text_en_src": "gl",
"id": 1023,
"name": "カラフルレンジャーズ",
"name_en": "Rainbow Rangers",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1077,
"x": 18,
"y": 25
},
{
"formation_bonus_id": 1078,
"x": 25,
"y": 15
},
{
"formation_bonus_id": 1079,
"x": 25,
"y": 35
},
{
"formation_bonus_id": 1080,
"x": 32,
"y": 6
},
{
"formation_bonus_id": 1081,
"x": 32,
"y": 44
}
]
},
{
"flavor_text": "器用さと知力の両方が上昇する特殊陣形。<br>前衛の素早さ上昇と後衛の素早さ低下により、行動順をコントロールしやすい。",
"flavor_text_en": "Special formation that boosts DEX and INT. Front line gets AGI boost while back line has AGI lowered. Good for controlling action order.",
"flavor_text_en_src": "gl",
"id": 1024,
"name": "インバースシグモイド",
"name_en": "Inverse Sigmoid",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1072,
"x": 8,
"y": 44
},
{
"formation_bonus_id": 1073,
"x": 8,
"y": 34
},
{
"formation_bonus_id": 1076,
"x": 25,
"y": 25
},
{
"formation_bonus_id": 1074,
"x": 42,
"y": 16
},
{
"formation_bonus_id": 1075,
"x": 42,
"y": 6
}
]
},
{
"flavor_text": "フリーファイトの発展形。前衛の素早さが上昇する速攻陣形。<br>前衛4人が敵の攻撃を引き受け、後衛への被弾を軽減する。後衛メンバーは知力・愛が強化されるので、攻撃役と支援役の役割分担がしやすい。",
"flavor_text_en": "Advanced FFA. Quick-strike formation. Boosts AGI for front who draws attacks, and INT/LOV for back who's less likely to be targeted. Good for assigning attack and support roles.",
"flavor_text_en_src": "gl",
"id": 1025,
"name": "フリーファイト-1",
"name_en": "Free For All 1",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1053,
"x": 34,
"y": 25
},
{
"formation_bonus_id": 1054,
"x": 20,
"y": 18
},
{
"formation_bonus_id": 1054,
"x": 20,
"y": 32
},
{
"formation_bonus_id": 1054,
"x": 20,
"y": 9
},
{
"formation_bonus_id": 1054,
"x": 20,
"y": 41
}
]
},
{
"flavor_text": "デッドリーピアスを攻撃面・防御面共に強化した陣形。<br>先頭のメンバーに<special_effect=800000077>行動前防御強化</special_effect>が付与され、両翼のメンバーの行動速度が上昇する。",
"flavor_text_en": "Improved Deadly Pierce formation that boosts attack and defense. The front member gains <special_effect=800000077>Pre-Action Defense Boost</special_effect>, and the action order of the outer wings is increased.",
"flavor_text_en_src": "gl",
"id": 1028,
"name": "デッドリーピアス・改",
"name_en": "Deadly Pierce EX",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1092,
"x": 6,
"y": 25
},
{
"formation_bonus_id": 1088,
"x": 20,
"y": 10
},
{
"formation_bonus_id": 1088,
"x": 20,
"y": 40
},
{
"formation_bonus_id": 1087,
"x": 25,
"y": 25
},
{
"formation_bonus_id": 1019,
"x": 44,
"y": 25
}
]
},
{
"flavor_text": "前衛2人と中衛1人の体術技ダメージを強化する体術特化の攻撃陣形。<br>前衛の素早さ上昇と中衛・後衛の行動速度低下により、行動順をコントロールしやすい。",
"flavor_text_en": "Attack formation that boosts M. Arts skill damage for the front and middle. Front line gets AGI boost while the action order for middle and back is lowered. Good for controlling action order.",
"flavor_text_en_src": "gl",
"id": 1029,
"name": "飛散陣",
"name_en": "Scattered",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1089,
"x": 8,
"y": 20
},
{
"formation_bonus_id": 1089,
"x": 8,
"y": 30
},
{
"formation_bonus_id": 1090,
"x": 32,
"y": 25
},
{
"formation_bonus_id": 1091,
"x": 45,
"y": 8
},
{
"formation_bonus_id": 1091,
"x": 45,
"y": 42
}
]
},
{
"flavor_text": "前衛2人のカウンター攻撃のダメージを強化するカウンター特化陣形。前衛2人が敵の攻撃を引きつけ、中衛メンバーは知力・愛が強化されるので、役割分担がしやすい。",
"flavor_text_en": "Counter formation that raises counterattack damage for front two who draw enemy attacks. Boosts middle line's INT/LOV. Good for assigning roles.",
"flavor_text_en_src": "gl",
"id": 1030,
"name": "マルチカウンター",
"name_en": "Multi-Counter",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1093,
"x": 8,
"y": 12
},
{
"formation_bonus_id": 1093,
"x": 8,
"y": 38
},
{
"formation_bonus_id": 1096,
"x": 30,
"y": 12
},
{
"formation_bonus_id": 1096,
"x": 30,
"y": 38
},
{
"formation_bonus_id": 1094,
"x": 45,
"y": 25
}
]
},
{
"flavor_text": "アマゾンストライクの攻撃面をさらに強化した陣形。<br>剣、大剣、斧、棍棒、体術、槍を重視するパーティにおすすめ。",
"flavor_text_en": "Improved Amazon Raid formation that boosts attack further. For parties who mainly use Swords, G. Swords, Axes, Clubs, M. Arts and Spears.",
"flavor_text_en_src": "gl",
"id": 1031,
"name": "アマゾンストライク・改",
"name_en": "Amazon Raid EX",
"name_en_src": "gl",
"positions": [
{
"formation_bonus_id": 1098,
"x": 8,
"y": 25
},
{
"formation_bonus_id": 1099,
"x": 16,
"y": 17
},
{
"formation_bonus_id": 1099,
"x": 16,
"y": 33
},
{
"formation_bonus_id": 1004,
"x": 38,
"y": 8
},
{
"formation_bonus_id": 1004,