-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuilds.json
1129 lines (1129 loc) · 45.7 KB
/
builds.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
{
"albedo": {
"element": "geo",
"team": "Itto · Gorou · Zhongli",
"role": "Off-field DPS",
"talent_priority": "Skill > Burst",
"best_con": "C0",
"weapon_type": "sword",
"BIS": "Cinnabar Spindle",
"f2p_option": "Harbringer of Dawn",
"artifact_set": "Husk of Opulent Dreams",
"sands": "DEF%",
"goblet": "Geo DMG",
"circlet": "Crit Rate / DMG · DEF%",
"stats": ["Crit Rate / DMG: 60% / 120%", "DEF: 2600", "ATK: 1200 · Energy Recharge: 140%"],
"notes": [
"Burst can be skipped if your team doesn't benefit from EM buff.",
"Skill damage scales from DEF, ATK and Energy recharge are only valuable if you cast burst."
]
},
"alhaitham": {
"element": "dendro",
"team": "Fischl · Nahida · Zhongli",
"role": "On-field DPS",
"talent_priority": "Skill > Burst > Normal Attack",
"best_con": "C0",
"weapon_type": "sword",
"BIS": "Light of Foliar Incision",
"f2p_option": "Iron Sting",
"artifact_set": "Guilded Dreams",
"sands": "Elemental Mastery",
"goblet": "Dendro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 80% / 160%", "Elemental Mastery: 200", "Energy Recharge: 120%"],
"notes": [
"Should run with Deepwood Memories on another team member.",
"Above stats assume crit weapon for EM weapon follow below:",
"1. Crit Rate / DMG: 75% / 150%",
"2. EM: 400",
"3. ER: 120"
]
},
"aloy": {
"element": "cryo",
"team": "Ayaka · Kokomi · Kazuha",
"role": "Burst Support",
"talent_priority": "Burst > Skill",
"weapon_type": "bow",
"BIS": "Thundering Pulse",
"f2p_option": "Prototype Crescent",
"artifact_set": "Blizzard Strayer",
"sands": "ATK%",
"goblet": "Cryo DMG",
"circlet": "Crit DMG",
"stats": ["Crit Rate / DMG: 45% / 140%", "ATK: 1700", "Energy Recharge: 140-160%"]
},
"amber": {
"element": "pyro",
"team": "On-field DPS · Flex · Flex",
"role": "Support",
"talent_priority": "Burst > Skill",
"best_con": "C4",
"weapon_type": "bow",
"BIS": "Elegy for the End",
"f2p_option": "Favonius Warbow",
"artifact_set": "Noblesse Oblige",
"sands": "ATK% · Energy Recharge",
"goblet": "Pyro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Energy Recharge: 150-160%", "Crit Rate / DMG: 60% / 120%", "ATK: 2300"],
"notes": ["Support Amber provides taunts, shieldbreaks and team buffs."]
},
"itto": {
"element": "geo",
"team": "Gorou · Albedo · Zhongli",
"role": "On-field DPS",
"talent_priority": "Normal Attack > Burst > Skill",
"best_con": "C6",
"weapon_type": "claymore",
"BIS": "Redhorn Stonethresher",
"f2p_option": "Whiteblind",
"artifact_set": "Husk of Opulent Dreams",
"sands": "DEF%",
"goblet": "Geo DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Energy Recharge: 130%", "Crit Rate / DMG: 70% / 230%", "DEF: 2400"],
"notes": ["Takes advantage of Burst's ATK boost and Geo infusion to deal significant damage."]
},
"barbara": {
"element": "hydro",
"team": "Any",
"role": "Support",
"talent_priority": "Skill > Burst",
"best_con": "C2",
"weapon_type": "catalyst",
"BIS": "Thrilling Tales of Dragon Slayers",
"artifact_set": "Maiden Beloved",
"sands": "HP%",
"goblet": "HP%",
"circlet": "Healing Bonus",
"stats": ["Stack HP and Energy Recharge"],
"notes": ["Skill imbues you with Hydro status, can be used for reactions but also freeze you in place.", "Barbara is mostly used for healing but can be used for hydro application (not recommended)"]
},
"bediou": {
"element": "electro",
"team": "Fischl · DMC · Jean",
"role": "On-field DPS",
"talent_priority": "Burst > Skill",
"best_con": "C2",
"weapon_type": "claymore",
"BIS": "Wolf's Gravestone",
"f2p_option": "Prototype Archaic",
"artifact_set": "Emblem of Severed Fate",
"sands": "ATK%",
"goblet": "Electro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 60% / 150%", "Energy Recharge: 150%", "ATK: 1700"],
"notes": ["Optimal artifact set will differ depending on the team."]
},
"bennett": {
"element": "pyro",
"team": "Any",
"role": "Burst Support",
"talent_priority": "Burst > Skill",
"best_con": "C1",
"weapon_type": "sword",
"BIS": "Misplitter Reforged",
"f2p_option": "Sapwood Blade",
"artifact_set": "Noblesse Oblige",
"sands": "ATK% · ER%",
"goblet": "Pyro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Energy Recharge: 240%", "Crit Rate / DMG", "ATK%"],
"notes": ["This build ignores the need for excess healing potential and focuses on burst damage and energy recharge."]
},
"candace": {
"element": "hydro",
"team": "Ayato · Yun Jin · Zhongli",
"role": "Support",
"talent_priority": "Skill = Burst >> Normal Attack",
"best_con": "C1",
"weapon_type": "polearm",
"BIS": "Favonius Lance",
"f2p_option": "Black Tassel",
"artifact_set": "Noblesse Oblige",
"sands": "HP%",
"goblet": "HP%",
"circlet": "HP%",
"stats": ["Energy Recharge: 160%", "Crit Rate: 35-50%", "Stack HP"],
"notes": ["Crit rate is only a priority if you are running Favonius (in that case use a crit rate circlet)."]
},
"chongyun": {
"element": "cryo",
"team": "Bennett · Sucrose · Flex",
"role": "Melt Support",
"talent_priority": "Burst > Skill",
"best_con": "C2",
"weapon_type": "claymore",
"BIS": "Wolf's Gravestone",
"f2p_option": "Prototype Archaic",
"artifact_set": "Noblesse Oblige",
"sands": "Elemental Mastery",
"goblet": "Cryo DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 50% / 130%", "ATK: 2500", "Elemental Mastery"],
"notes": ["C3 is highly recommended before building for damage as it is not worth it prior."]
},
"collei": {
"element": "dendro",
"team": "Any dendro reaction team",
"role": "Support",
"talent_priority": "Burst > Skill > Normal Attack",
"best_con": "C0",
"weapon_type": "bow",
"BIS": "Elegy for the End",
"f2p_option": "Favonius Warbow",
"artifact_set": "Deepwood Memories",
"sands": "Elemental Mastery · Energy Recharge · ATK%" ,
"goblet": "Dendro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Energy Recharge: 180%", "Crit Rate / DMG: 60% / 120%", "ATK: 1900"],
"notes": ["Typical Collei rotation:", "Skill -> Burst -> Swap", "Priortise energy recharge if her requirments aren't met.", "ATK and EM varient builds are equal."]
},
"cyno": {
"element": "electro",
"team": "DMC · Fischl · Zhongli",
"role": "On-field DPS",
"talent_priority": "Burst > Skill",
"best_con": "C2",
"weapon_type": "polearm",
"BIS": "Staff of Scarlet Sands",
"f2p_option": "White Tassel",
"artifact_set": "Guilded Dreams",
"sands": "Elemental Mastery · ATK%",
"goblet": "Electro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Energy Recharge: 120%", "Crit Rate / DMG: 80% / 210%", "ATK: 1800"],
"notes": [
"Level 90 is highly recommended to maximise reaction damage.",
"Sands mainstat depends on team and weapon (test both)",
"Circlet might be better with EM mainstat on Staff of Scarlet Sands."
]
},
"diluc": {
"element": "pyro",
"team": "Xingqui · Bennett · Kazuha",
"role": "On-field DPS",
"talent_priority": "Normal Attack > Skill > Burst",
"best_con": "C6",
"weapon_type": "claymore",
"BIS": "Redhorn Stonethresher",
"f2p_option": "Prototype Archaic",
"artifact_set": "Crimson Witch of Flames",
"sands": "ATK% · Elemental Mastery",
"goblet": "Pyro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 70% / 140%", "ATK: 2200", "Elemental Mastery: 260"],
"notes": ["EM sands will yield more damage if vaproize is avaliable very often (Yelan/Xingqui)."]
},
"diona": {
"element": "cryo",
"team": "Ganyu · Mona · Kazuha",
"role": "Support",
"talent_priority": "Burst = Skill",
"best_con": "C6",
"weapon_type": "bow",
"BIS": "Sacrificial Bow",
"f2p_option": "Favonius Warbow",
"artifact_set": "Noblesse Oblige",
"sands": "Energy Recharge · HP%",
"goblet": "HP%",
"circlet": "HP% · Healing Bonus",
"stats": ["HP: 33000", "Energy Recharge: 170%", "ATK: 1200"],
"notes": ["Crit rate will be required if you are running Favonius."]
},
"dori": {
"element": "electro",
"team": "Any electro reaction team",
"role": "Support",
"talent_priority": "Burst > Skill",
"best_con": "C4",
"weapon_type": "claymore",
"BIS": "Favonius Greatsword",
"f2p_option": "Katsuragikiri Nagamasa",
"artifact_set": "Noblesse Oblige",
"sands": "Energy Recharge · HP%",
"goblet": "HP%",
"circlet": "Healing Bonus · HP%",
"stats": ["Energy Recharge: 180%", "HP: 39000", "Crit Rate: 35%+"],
"notes": ["Crit rate is only useful for Favonius (if so run crit rate circlet)."]
},
"eula": {
"element": "cryo",
"team": "Raiden · Rosaria · Zhongli",
"role": "DPS",
"talent_priority": "Normal Attack = Burst > Skill",
"best_con": "C6",
"weapon_type": "claymore",
"BIS": "Song of Broken Pines",
"f2p_option": "Prototype Archaic",
"artifact_set": "Pale Flame",
"sands": "ATK%",
"goblet": "Physical DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 70% / 150%", "Energy Recharge: 130%", "ATK: 2400"],
"notes": [
"Aim for higher bonus ATK (green) than base on stats screen.",
"For crit fishing playstyle aim for 1:2 crit rate to damage ratio."
]
},
"faruzan": {
"element": "anemo",
"team": "Anemo DPS · Mona · Bennett",
"role": "Support",
"talent_priority": "Burst > Skill > Normal Attack",
"best_con": "C6",
"weapon_type": "bow",
"BIS": "Elegy for the End",
"f2p_option": "Favonius Warbow",
"artifact_set": "Viridescent Venerer",
"sands": "Energy Recharge",
"goblet": "Anemo DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Energy Recharge: 230%", "Crit Rate / DMG: 60% / 120%", "ATK: 2400"],
"notes": [
"Elegy is only better than Favonius at higher constellations [C6].",
"Crit rate takes priority over cirt damage when running Favonius.",
"Charged shots are required as a part of the rotation, unless C6."
]
},
"fischl": {
"element": "electro",
"team": "Any aggravate team",
"role": "Off-field DPS Aggravate",
"talent_priority": "Skill > Burst",
"best_con": "C6",
"weapon_type": "bow",
"BIS": "Aqua Simulacra",
"f2p_option": "Slingshot",
"artifact_set": "Thundering Fury + 80 EM set",
"sands": "ATK% · Elemental Mastery",
"goblet": "Electro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 70% / 150%", "ATK: 2300", "Energy Recharge"]
},
"ganyu": {
"element": "cryo",
"team": "Xiangling · Bennett · Zhongli",
"role": "Melt DPS",
"talent_priority": "Normal Attack > Skill > Burst",
"best_con": "C6",
"weapon_type": "bow",
"BIS": "Hunter's Path",
"f2p_option": "Hamayumi",
"artifact_set": "Wander's Troupe",
"sands": "Elemental Mastery · ATK%",
"goblet": "Cryo DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 50% / 170%", "Elemental Mastery: 270","ATK: 2400"],
"notes": [
"[Shimenawa's Reminisience](https://genshin-impact.fandom.com/wiki/Shimenawa%27s_Reminiscence) will yield more dmaage if you can manage to fire 5 charged attacks during the 10 second buff duration (difficult).",
"It is also more resin efficient to farm."
]
},
"gorou": {
"element": "geo",
"team": "Itto · Albedo · Zhongli",
"role": "Support",
"talent_priority": "Skill",
"best_con": "C6",
"weapon_type": "bow",
"BIS": "Favonius Warbow",
"artifact_set": "The Exile",
"sands": "Energy Recharge",
"goblet": "Geo DMG",
"circlet": "Crit Rate",
"stats": ["Energy Recharge: 250%", "DEF: 1000", "Crit Rate: 60%+"],
"notes": [
"C2 Recommends to use burst as last ability before switching to your DPS.",
"DEF and healing bonus can be considered at C4.",
"Crit rate is only considered when running Favonious Warbow.",
"ER substats can usally be more important than theright mainstat.",
"If you've met th ER requirments then you can run [Nobless Oblige](https://genshin-impact.fandom.com/wiki/Noblesse_Oblige) and non ER sands."
]
},
"hutao": {
"element": "pyro",
"team": "Xingqui · Yelan · Zhongli",
"role": "DPS",
"talent_priority": "Normal Attack > Skill > Burst",
"best_con": "C1",
"weapon_type": "polearm",
"BIS": "Staff of Homa",
"f2p_option": "White Tassel",
"artifact_set": "Crimson Witch of Flames",
"sands": "HP% · Elemental Mastery" ,
"goblet": "Pyro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 70 / 200", "Elemental Mastery: 200", "HP: 35000"],
"notes": ["Elemental mastery has higher priority than crit if you have less than 100 EM."]
},
"jean": {
"element": "anemo",
"team": "Any",
"role": "Burst Support",
"talent_priority": "Burst = Skill",
"best_con": "C6",
"weapon_type": "sword",
"BIS": "Primordial Jade Cutter",
"f2p_option": "Amenoma Kageuchi",
"artifact_set": "Viridescent Venerer",
"sands": "ATK% · ER%",
"goblet": "Anemo DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 60% / 120%", "ATK: 2200", "Energy Recharge: 170%"],
"notes": ["EM mainstats can be used if Bennett is on the team."]
},
"kazuha": {
"element": "anemo",
"team": "Any",
"role": "Burst Support",
"talent_priority": "Burst > Normal Attack > Skill",
"best_con": "C0",
"weapon_type": "sword",
"BIS": "Freedom Sworn",
"f2p_option": "Iron Sting",
"artifact_set": "Viridescent Venerer",
"sands": "Elemental Mastery",
"goblet": "Elemental Mastery",
"circlet": "Elemental Mastery",
"stats": ["Elemental Mastery: 1000", "Energy Recharge: 190%", "ATK: 1400"],
"notes": ["Ultimate goal is to stack as much EM as possible whilst getting enough ER for consistent burst uptime."]
},
"kaeya": {
"element": "cryo",
"team": "Hu Tao · Xingqui · Zhongli",
"role": "Burst Support",
"talent_priority": "Burst > Skill",
"best_con": "C6",
"weapon_type": "sword",
"BIS": "Primordial Jade Cutter",
"f2p_option": "Iron Sting",
"artifact_set": "Emblem of Severed Fate",
"sands": "Energy Recharge · ATK%",
"goblet": "Cryo DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Energy Recharge: 230%", "Crit Rate / DMG: 70% / 180%", "ATK: 1600"],
"notes": ["Elemental mastery assumes reverse melt team."]
},
"ayaka": {
"element": "cryo",
"team": "Shenhe · Kokomi · Kazuha",
"role": "DPS",
"talent_priority": "Burst > Normal Attack > Skill",
"best_con": "C4",
"weapon_type": "sword",
"BIS": "Misplitter Reforged",
"f2p_option": "Amenoma Kageuchi",
"artifact_set": "Blizzard Strayer",
"sands": "TK%",
"goblet": "Cryo DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 40% / 250%", "ATK: 2000", "Energy Recharge: 140%"],
"notes": [
"You can run much less ER if using Anemona Kageuchi (100-110%).",
"Ensure you have dash damage boost for maximum damage."
]
},
"ayato": {
"element": "hydro",
"team": "Bennett · Fischl · Kazuha",
"role": "DPS",
"talent_priority": "Skill > Burst",
"best_con": "C6",
"weapon_type": "sword",
"BIS": "Haran Geppaku Futsu",
"f2p_option": "Kagotsurube Isshin",
"artifact_set": "Heart of Depth",
"sands": "ATK%",
"goblet": "Hydro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 80% / 210%", "ATK: 2100", "Energy Recharge: 140%"],
"notes": ["Ayato can fit into almost any team that requires a hydro unit with both strong single target and AOE damage."]
},
"keqing": {
"element": "electro",
"team": "Collei · Fischl · Kazuha",
"role": "Aggravate DPS",
"talent_priority": "Normal Attack > Burst > Skill",
"best_con": "C4",
"weapon_type": "sword",
"BIS": "Misplitter Reforged",
"f2p_option": "Harbringer of Dawn",
"artifact_set": "Thundering Fury",
"sands": "ATK% · Elemental Mastery",
"goblet": "Electro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 70% / 180%", "ATK: 2100", "Elemental Mastery"],
"notes": [
"Harbinger of Dawn is only recommended if you can maintain full uptime of it's passive. Otherwise [Iron String](https://genshin-impact.fandom.com/wiki/Iron_Sting) is a decent option.",
"Recommended to level Keqing to 90."
]
},
"klee": {
"element": "pyro",
"team": "Xiangling · Bennett · Kazuha",
"role": "DPS",
"talent_priority": "Normal Attack > Burst > Skill",
"best_con": "C2",
"weapon_type": "catalyst",
"BIS": "The Widsith",
"f2p_option": "Mappa Mare",
"artifact_set": "Crimson Witch of Flames + 18% ATK set",
"sands": "ATK%",
"goblet": "Pyro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 80% / 150%", "ATK: 1900", "Elemental Mastery: 80"],
"notes": ["Being extremely squishy and prone to interruptions, Klee requires great positioning. Check out an in-depth guide to learn about Klee's animation cancelling."]
},
"sara": {
"element": "electro",
"team": "Raiden · Bennett · Kazuha",
"role": "Burst Support",
"talent_priority": "Skill > Burst",
"best_con": "C6",
"weapon_type": "bow",
"BIS": "Skyward Harp",
"f2p_option": "Prototype Crescent",
"artifact_set": "Emblem of Severed Fate",
"sands": "Energy Recharge · ATK%",
"goblet": "Electro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Energy Recharge: 220%", "Crit Rate / DMG: 80% / 150%", "ATK: 1600"],
"notes": [
"Sara should use her elemental skill, and shoot a charged shot. You have to maintain in the abilitie's AOE to benefit from Sara's ATK buff.",
"At C2 you can skip the charged shot."
]
},
"kuki": {
"element": "electro",
"team": "Nahida · Xingqui · Fischl",
"role": "Hyperbloom",
"talent_priority": "Skill > Burst",
"best_con": "C0",
"weapon_type": "sword",
"BIS": "Freedom Sworn",
"f2p_option": "Iron Sting",
"artifact_set": "Flower of Paradise Lost",
"sands": "Elemental Mastery",
"goblet": "Elemental Mastery",
"circlet": "Elemental Mastery",
"stats": ["Elemental Mastery: 850"],
"notes": ["Kuki is a reliable trigger for hyperbloom reactions."]
},
"layla": {
"element": "cryo",
"team": "Any Pyro/Cryo teams",
"role": "Support",
"talent_priority": "Skill > Burst",
"best_con": "C0",
"weapon_type": "sword",
"BIS": "Key of Khaj-Nisut",
"f2p_option": "Harbringer of Dawn",
"artifact_set": "Tenacity of the Millelith",
"sands": "HP%",
"goblet": "HP%",
"circlet": "HP%",
"stats": ["Stack HP for shield strength."],
"notes": ["The build prioritises Layla's shiled. To increase her damage run more offensive artifacts."]
},
"lisa": {
"element": "electro",
"team": "Fischl · Nahida · Kazuha",
"role": "Aggravate DPS",
"talent_priority": "Skill ~= Burst > Normal Attack",
"best_con": "C4",
"weapon_type": "catalyst",
"BIS": "Kagura's Verity",
"f2p_option": "Mappa Mare",
"artifact_set": "Thundering Fury",
"sands": "HP%",
"goblet": "HP%",
"circlet": "HP%",
"stats": ["Stack HP for shield strength."],
"notes": ["The build prioritises Layla's shiled. To increase her damage run more offensive artifacts."]
},
"mona": {
"element": "hydro",
"team": "Ayaka · Shenhe · Kazuha",
"role": "Freeze Support",
"talent_priority": "Burst > Skill",
"best_con": "C0",
"weapon_type": "catalyst",
"BIS": "Thrilling Tales of Dragon Slayers",
"artifact_set": "Noblesse Oblige",
"sands": "Energy Recharge · ATK%",
"goblet": "Hydro DMG",
"circlet": "Crit Rate",
"stats": ["Energy Recharge: 210%", "Crit Rate / DMG: 60% / 120%", "ATK: 1300"],
"notes": ["The build prioritises Layla's shiled. To increase her damage run more offensive artifacts."]
},
"nahida": {
"element": "dendro",
"team": "Raiden · Xingqui · Yelan",
"role": "Quicken/Hyperbloom/Burgeon",
"talent_priority": "Skill > Burst > Normal Attack",
"best_con": "C2",
"weapon_type": "catalyst",
"BIS": "A Thousand Floating Dreams",
"f2p_option": "Magic Guide",
"artifact_set": "Deepwood Memories",
"sands": "Elemental Mastery",
"goblet": "Dendro DMG · Elemental Mastery",
"circlet": "Crit Rate / DMG · Elemental Mastery",
"stats": ["Energy Recharge: 130%", "Elemental Mastery: 1000", "Crit Rate / DMG: 50% / 140%"],
"notes": ["Deepwood is her best set if no one else is wearing this set. Otherwise Gilded Dreams."]
},
"nilou": {
"element": "hydro",
"team": "Nahida · DMC · Kokomi",
"role": "Bloom Support",
"talent_priority": "Skill > Burst",
"best_con": "C2",
"weapon_type": "sword",
"BIS": "Key of Khaj-Nisut",
"f2p_option": "Sapwood Blade",
"artifact_set": "Tenacity of the Millelith + [Heart of Depth / Nobless Oblige]",
"sands": "HP% · Energy Recharge",
"goblet": "HP%",
"circlet": "HP%",
"stats": ["HP: 67000"],
"notes": ["Talent levels do not affect Nilou's buff to Bloom damage, so heavy investment is not necessary."]
},
"ningguang": {
"element": "geo",
"team": "Zhongli · Albedo · Bennett",
"role": "DPS",
"talent_priority": "Burst > Normal Attack > Skill",
"best_con": "C0",
"weapon_type": "catalyst",
"BIS": "Lost Prayer to the Sacred Winds",
"f2p_option": "Mappa Mare",
"artifact_set": "Archaic Petra + [Nobless Oblige / 18% ATK set / Emblem of Severed Fate]",
"sands": "ATK%",
"goblet": "Geo DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 80% / 150%", "ATK: 2300", "Energy Recharge: 120%"],
"notes": ["Ningguang has very low base ATK and no ATK conversion mechanics, hence exteneral ATK buffers like Bennett are highly recommended."]
},
"noelle": {
"element": "geo",
"team": "Gorou · Albedo · Fischl",
"role": "DPS",
"talent_priority": "Normal Attack > Burst > Skill",
"best_con": "C6",
"weapon_type": "claymore",
"BIS": "Redhorn Stonethresher",
"f2p_option": "Whiteblind",
"artifact_set": "Husk of Opulent Dreams",
"sands": "DEF%",
"goblet": "Geo DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 70% / 190%", "Energy Recharge", "DEF: 2400"],
"notes": [
"Avoid building a DPS Noelle if she's not C5+.",
"Use ATK% sands when below C6 and below talent level 9 burst."
]
},
"qiqi": {
"element": "cryo",
"team": "Bediou · Fischl · Xingqui",
"role": "Support",
"talent_priority": "Burst > Skill",
"best_con": "C4",
"weapon_type": "sword",
"BIS": "Sacrificial Sword",
"f2p_option": "Kagotsurube Isshin",
"artifact_set": "Tenacity of the Millelith",
"sands": "ATK%",
"goblet": "ATK%",
"circlet": "ATK%",
"stats": ["ATK: 2600"],
"notes": ["Has an 80 energy cost with her skill not generating energy until C1. Only use burst as last resort."]
},
"raiden": {
"element": "electro",
"team": "Sara · Kazuha · Bennett",
"role": "DPS",
"talent_priority": "Burst > Skill",
"best_con": "C2",
"weapon_type": "polearm",
"BIS": "Engulfing Lightning",
"f2p_option": "The Catch",
"artifact_set": "Emblem of Severed Fate",
"sands": "Energy Recharge · ATK%",
"goblet": "Electro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 60% / 120%", "ATK: 2000", "Energy Recharge: 280%"],
"notes": ["Above stat goals are based of Engulfing Lightning, lower ER will be used for The Catch.", "Burst DMG depends on her team's energy consumption prior to her burst."]
},
"razor": {
"element": "electro",
"team": "Fischl · Rosaria · Zhongli",
"role": "DPS",
"talent_priority": "Normal Attack > Burst > Skill",
"best_con": "C4",
"weapon_type": "claymore",
"BIS": "Wolf's Gravestone",
"f2p_option": "Prototype Archaic",
"artifact_set": "Pale Flame",
"sands": "ATK%",
"goblet": "Physical DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 70% / 140%", "ATK: 1800"]
},
"rosaria": {
"element": "cryo",
"team": "Kayea · Xiangling · Bennett",
"role": "Reverse Melt",
"talent_priority": "Burst > Skill",
"best_con": "C2",
"weapon_type": "polearm",
"BIS": "Staff of Scarlet Sands",
"f2p_option": "The Catch",
"artifact_set": "Lavawalker",
"sands": "Elemental Mastery",
"goblet": "Cryo DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate: 70%", "Crit DMG: 100%", "Elemental Mastery"],
"notes": ["Skill and burst do not have an ICD (internal cooldown), allowing melt of all skill and burst procs."]
},
"kokomi": {
"element": "hydro",
"team": "Any",
"role": "Support",
"talent_priority": "Skill > Burst",
"best_con": "C0",
"weapon_type": "catalyst",
"BIS": "Thrilling Tales of Dragon Slayers",
"artifact_set": "Tenacity of the Millelith",
"sands": "Energy Recharge",
"goblet": "HP%",
"circlet": "Healing Bonus · HP%",
"stats": ["Hp: 48000", "Energy Recharge", "ATK: 1100"],
"notes": ["Use elemental burst before her elemental skill's duration ends to refresh her skill duration."]
},
"sayu": {
"element": "anemo",
"team": "Keqing · DMC · Fischl",
"role": "Support",
"talent_priority": "Burst > Skill",
"best_con": "C1",
"weapon_type": "claymore",
"BIS": "Wolf's Gravestone",
"f2p_option": "Katsuragikiri Nagamasa",
"artifact_set": "Viridescent Venerer",
"sands": "Elemental Mastery · Energy Recharge",
"goblet": "Elemental Mastery · ATK%",
"circlet": "Elemental Mastery · Healing Bonus",
"stats": ["Elemental Mastery: 440", "Energy Recharge", "ATK: 2400"],
"notes": [
"Sayu does more damage with EM builds and heals more with ATK hybrid builds.",
"Healing Bonus circlet can be used for better heals while maintaining respectable damage."
]
},
"shenhe": {
"element": "cryo",
"team": "Ayaka · kokomi · Kazuha",
"role": "Support",
"talent_priority": "Skill > Burst",
"best_con": "C2",
"weapon_type": "polearm",
"BIS": "Calamity Queller",
"f2p_option": "Prototype Starglitter",
"artifact_set": "Noblesse Oblige",
"sands": "ATK% · Energy Recharge",
"goblet": "ATK%",
"circlet": "ATK%",
"stats": ["ATK: 4000", "Energy Recharge: 220%"],
"notes": ["If you are equipping an ATK% weapon, try to aim for Energy recharge sands and vice versa."]
},
"heizou": {
"element": "anemo",
"team": "Any Sucrose team",
"role": "Anemo DPS",
"talent_priority": "Skill > Normal Attack > Burst",
"best_con": "C6",
"weapon_type": "catalyst",
"BIS": "Kagura's Verity",
"f2p_option": "Mappa Mare",
"artifact_set": "Viridescent Venerer",
"sands": "ATK%",
"goblet": "Anemo DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 70% / 150%", "ATK: 2200", "Energy Recharge: 140%"],
"notes": ["Roughly equal to EM build assuming he isn't being used in an electro-charged team.", "Very low energy recharge needs, C4 can be run at 100%."]
},
"sucrose": {
"element": "anemo",
"team": "Xingqui · Fischl · Bediou",
"role": "EM build",
"talent_priority": "Skill > Burst",
"best_con": "C1",
"weapon_type": "catalyst",
"BIS": "A Thousand Floating Dreams",
"f2p_option": "Thrilling Tales of Dragon Slayers",
"artifact_set": "Viridescent Venerer",
"sands": "Elemental Mastery",
"goblet": "Elemental Mastery",
"circlet": "Elemental Mastery",
"stats": ["Stack Elemental Mastery"],
"notes": [
"Talent levels are not a necessity.",
"When running VV make sure you don't immediately swap awat after casting, you need to be on field when the swirl reaction happens to trigger 4-set effect."
]
},
"tartaglia": {
"element": "hydro",
"team": "Xiangling · Bennett · Sucrose",
"role": "DPS",
"talent_priority": "Skill > Burst > Normal Attack",
"best_con": "C3",
"weapon_type": "bow",
"BIS": "Polar Star",
"f2p_option": "Prototype Crescent",
"artifact_set": "Heart of Depth",
"sands": "ATK%",
"goblet": "Hydro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 80% / 150%", "ATK: 2200", "Elemental Mastery: 80"]
},
"thoma": {
"element": "pyro",
"team": "Ayato · Nahida · DMC",
"role": "Burgeon",
"talent_priority": "Skill > Burst",
"best_con": "C4",
"weapon_type": "polearm",
"BIS": "Kitain Cross Spear",
"artifact_set": "Flower of Paradise Lost",
"sands": "Energy Recharge · Elemental Mastery",
"goblet": "Elemental Mastery",
"circlet": "Elemental Mastery",
"stats": ["???"],
"notes": [
"This build focuses on Thoma as the trigger unit for Burgeon reactions.",
"For an EM-focuses build, upgrading Thoma's talent levels isn't a necessity."
]
},
"tighnari": {
"element": "dendro",
"team": "Fischl · Kuki Shinobu · Kazuha",
"role": "Quick Swap DPS",
"talent_priority": "Normal Attack > Burst > Skill",
"best_con": "C6",
"weapon_type": "bow",
"BIS": "Hunter's Path",
"f2p_option": "Slingshot",
"artifact_set": "Wander's Troupe",
"sands": "ATK% · Elemental Mastery",
"goblet": "Dendro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 80% / 170%", "Elemental Mastery: 350", "ATK: 1200"],
"notes": ["Standard build revolves around him doing his Elemental Skill, Three Clusterbloom Arrows, an Elemental Burst and promptly swapping out to another character."]
},
"traveler_anemo": {
"element": "anemo",
"team": "Bennett · Chongyun · Flex",
"role": "Anemo DPS",
"talent_priority": "Skill > Burst",
"best_con": "C6",
"weapon_type": "sword",
"BIS": "Freedom Sworn",
"f2p_option": "Iron Sting",
"artifact_set": "Viridescent Venerer",
"sands": "Elemental Mastery · Energy Recharge · ATK%",
"goblet": "Elemental Mastery · Anemo DMG",
"circlet": "Elemental Mastery · Crit Rate / DMG",
"stats": ["Elemental Mastery: 720", "Energy Recharge", "ATK: 1300"],
"notes": ["Full EM build is almost equal to ATK/Crit build. Crit Rate / DMG will have higher priority for a full Crit build."]
},
"traveler_dendro": {
"element": "dendro",
"team": "Any dendro reaction team",
"role": "Support",
"talent_priority": "Burst > Skill",
"best_con": "C2",
"weapon_type": "sword",
"BIS": "Freedom Sworn",
"f2p_option": "Iron Sting",
"artifact_set": "Deepwood Memories",
"sands": "Energy Recharge · ATK% · Elemental Mastery",
"goblet": "Dendro DMG · Elemental Mastery",
"circlet": "Crit Rate / DMG · Elemental Mastery",
"stats": ["Elemental Mastery: 180", "Crit Rate / DMG: 60% / 120%", "ATK: 1300"],
"notes": [
"Main stats depend on which reaction you are aiming for, still prioritise ER as it is important for burst uptime.",
"Pure bloom prefers full EM, whist Hyperbloom and burgeon don't need EM. Quicken can opt for EM or ATK."
]
},
"traveler_electro": {
"element": "electro",
"team": "Tartaglia · Beidou · Bennett",
"role": "Support",
"talent_priority": "Skill > Burst",
"best_con": "C1",
"weapon_type": "sword",
"BIS": "Favonius Sword",
"f2p_option": "Skyrider Sword",
"artifact_set": "Noblesse Oblige",
"sands": "Energy Recharge",
"goblet": "Electro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Energy Recharge: 250%", "ATK: 1300", "Crit Rate / DMG: 60% / 120%"],
"notes": [
"Artifact main stats aren't as important as stacking energy recharge for comfortable burst uptime.",
"Due to low damage scaling on Electro Traveler's Elemental skill and burst, its recommended to just stack energy recharge to amplfiy the batterying power."
]
},
"traveler_geo": {
"element": "geo",
"team": "Zhongli · Xiangling · Bennett",
"role": "Geo DPS",
"talent_priority": "Skill = Burst",
"best_con": "C1",
"weapon_type": "sword",
"BIS": "Primordial Jade Cutter",
"f2p_option": "Amenoma Kageuchi",
"artifact_set": "Noblesse Oblige + Archaic Petra",
"sands": "ATK%",
"goblet": "Geo DMG",
"circlet": "Crit Rate / DMG",
"stats": ["???"],
"notes": ["As their elemental skill and burst have high multiplers, short cooldowns and require very little field time, the Traveler is recommended to be played as quickswap style sub-DPS."]
},
"venti": {
"element": "anemo",
"team": "Ganyu · Mona · Diona",
"role": "Off-field DPS",
"talent_priority": "Burst > Skill",
"best_con": "C0",
"weapon_type": "bow",
"BIS": "Elegy for the End",
"f2p_option": "Raven Bow",
"artifact_set": "Viridescent Venerer",
"sands": "Elemental Mastery",
"goblet": "Elemental Mastery",
"circlet": "Elemental Mastery",
"stats": ["Elemental Mastery: 780", "Energy Recharge: 210%", "ATK: 1400"],
"notes": [
"This build focuses on damage over ER because of his ER ascension stat.",
"For an EM-focused build, upgrading Venti's talent levels isn't a necessity.",
"Don't immediately swap away after burst, wait for swirl to prov VV 4-set perk."
]
},
"wanderer": {
"element": "anemo",
"team": "Faruzan · Xiangling · Bennett",
"role": "DPS",
"talent_priority": "Normal Attack > Skill > Burst",
"best_con": "C2",
"weapon_type": "catalyst",
"BIS": "Tullaytullah's Remembrance",
"f2p_option": "Mappa Mare",
"artifact_set": "Desert Pavillion Chronicles",
"sands": "ATK%",
"goblet": "Anemo DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 80% / 190%", "ATK: 2100"],
"notes": [
"Wanderer focuses on doing damage by activating his elemental skill and performing boosted Normal Attacks.",
"A shield is recommended.",
"It is not worth building ER to bust every rotation, every other rotation is prefered.",
"If Wanderer is C2+, prioritise burst over skill."
]
},
"xiangling": {
"element": "pyro",
"team": "Xingqui · Sucrose · Bennett",
"role": "Off-field DPS",
"talent_priority": "Burst > Skill",
"best_con": "C4",
"weapon_type": "polearm",
"BIS": "Staff of Scarlet Sands",
"f2p_option": "The Catch",
"artifact_set": "Emblem of Severed Fate",
"sands": "Energy Recharge · ATK% · Elemental Mastery",
"goblet": "Pyro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Energy Recharge: 170%", "Crit Rate / DMG: 60% / 130%", "ATK: 1900"],
"notes": ["In team comps where you can trigger both Vaporize and Overload at the same time (i.e. Raiden National), EM has more value."]
},
"xiao": {
"element": "anemo",
"team": "Faruzan · Zhongli · Bennett",
"role": "DPS",
"talent_priority": "Normal Attack > Burst > Skill",
"best_con": "C6",
"weapon_type": "polearm",
"BIS": "Primordial Jade Winged-Spear",
"f2p_option": "White Tassel",
"artifact_set": "Vermillion Hereafter",
"sands": "ATK%",
"goblet": "Anemo DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 80% / 180%", "ATK: 2400", "Energy Recharge: 140%"],
"notes": ["Xiao has issues with energy regeneration because he cannot generate any particles with his elemental skill while his burst is active, so it is not suggested to use his skill during burst."]
},
"xingqui": {
"element": "hydro",
"team": "Flexible",
"role": "Off-field DPS",
"talent_priority": "Burst > Skill",
"best_con": "C6",
"weapon_type": "sword",
"BIS": "Primordial Jade Cutter",
"f2p_option": "Amenoma Kageuchi",
"artifact_set": "Emblem of Severed Fate",
"sands": "ATK%",
"goblet": "Hydro DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 80% / 170%", "ATK: 1700", "Energy Recharge: 190%"],
"notes": ["Prioritise energy recharge if you can't burst off cooldown, consider running ER sands."]
},
"xinyan": {
"element": "pyro",
"team": "Bennett · Fischl · Rosaria",
"role": "Physical DPS",
"talent_priority": "Normal Attack >= Burst >= Skill",
"best_con": "C2",
"weapon_type": "claymore",
"BIS": "Redhorn Stonethresher",
"f2p_option": "Snow-Tombed Starsilver",
"artifact_set": "Pale Flame + Bloodstained Chivalry",
"sands": "ATK% · Energy Recharge",
"goblet": "Physical DMG",
"circlet": "Crit Rate / DMG",
"stats": ["Crit Rate / DMG: 60% / 120%", "ATK: 2800", "Energy Recharge"],
"notes": ["[Prototype Archaic[R5]](https://genshin-impact.fandom.com/wiki/Prototype_Archaic) will outperform Snow-Tombed Starsilver.", "At C2 she can ultilise a 1:3 Crit Rate:Crit DMG ratio, instead of the usual 1:2."]
},