ezomyte 0.0.2

Path of Exile API client library
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
[
  {
    "type": "enchant",
    "text": "#% increased Attack and Cast Speed if you've Killed Recently",
    "id": "enchant.stat_4135304575"
  },
  {
    "type": "enchant",
    "text": "#% of Damage Leeched as Life and Mana if you've Killed Recently",
    "id": "enchant.stat_2165542662"
  },
  {
    "type": "enchant",
    "text": "#% increased Movement Speed if you haven't been Hit Recently",
    "id": "enchant.stat_308396001"
  },
  {
    "type": "enchant",
    "text": "Regenerate #% of Life and Mana per second if you were Hit Recently",
    "id": "enchant.stat_2420287129"
  },
  {
    "type": "enchant",
    "text": "#% increased Critical Strike Chance if you haven't Crit Recently",
    "id": "enchant.stat_3010587200"
  },
  {
    "type": "enchant",
    "text": "#% chance to Avoid being Stunned if you've Killed Recently",
    "id": "enchant.stat_412905518"
  },
  {
    "type": "enchant",
    "text": "#% chance to Dodge Spell Damage if you've\ntaken Spell Damage Recently",
    "id": "enchant.stat_1222329688"
  },
  {
    "type": "enchant",
    "text": "Adds # to # Lightning Damage if you haven't Killed Recently",
    "id": "enchant.stat_1293597434"
  },
  {
    "type": "enchant",
    "text": "Adds # to # Fire Damage if you've Killed Recently",
    "id": "enchant.stat_3077703716"
  },
  {
    "type": "enchant",
    "text": "#% Chance to Dodge if you've taken a Critical Strike Recently",
    "id": "enchant.stat_3414398924"
  },
  {
    "type": "enchant",
    "text": "Adds # to # Cold Damage if you've been Hit Recently",
    "id": "enchant.stat_884399432"
  },
  {
    "type": "enchant",
    "text": "#% chance to Freeze, Shock and Ignite if you haven't Crit Recently",
    "id": "enchant.stat_3915210550"
  },
  {
    "type": "enchant",
    "text": "#% increased Mana Cost of Skills if you've been Hit Recently",
    "id": "enchant.stat_3693451031"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Word of Fury on Hit",
    "id": "enchant.stat_3012437250"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Word of Spite when Hit",
    "id": "enchant.stat_3992962185"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Word of Reflection when Hit",
    "id": "enchant.stat_2634094270"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Word of War on Kill",
    "id": "enchant.stat_1906144841"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Word of Force on Hit",
    "id": "enchant.stat_1162506883"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Word of Inferno on Kill",
    "id": "enchant.stat_3901337328"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Word of Blades on Hit",
    "id": "enchant.stat_756653426"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Word of Flames on Hit",
    "id": "enchant.stat_891161612"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Word of Light when you take a Critical Strike",
    "id": "enchant.stat_3111060801"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Word of Winter when Hit",
    "id": "enchant.stat_1354248411"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Word of Frost on Kill",
    "id": "enchant.stat_3302747233"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Word of the Tempest on Hit",
    "id": "enchant.stat_3610104224"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Word of Thunder on Kill",
    "id": "enchant.stat_1350605126"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Word of Ire when Hit",
    "id": "enchant.stat_2472584898"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Word of the Grave when your Skills or Minions Kill",
    "id": "enchant.stat_2527140156"
  },
  {
    "type": "enchant",
    "text": "Damage Penetrates #% of Enemy Elemental Resistances if you haven't Killed Recently",
    "id": "enchant.stat_281254371"
  },
  {
    "type": "enchant",
    "text": "# additional Barrage Projectile",
    "id": "enchant.stat_3009270704"
  },
  {
    "type": "enchant",
    "text": "Adds # to # Chaos Damage if you've taken a Critical Strike Recently",
    "id": "enchant.stat_391609701"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Edict of Fury on Hit",
    "id": "enchant.stat_1153637043"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Edict of Reflection when Hit",
    "id": "enchant.stat_4228580629"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Edict of Thunder on Kill",
    "id": "enchant.stat_603658709"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Edict of Spite when Hit",
    "id": "enchant.stat_257027296"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Edict of Force on Hit",
    "id": "enchant.stat_2760193888"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Edict of Winter when Hit",
    "id": "enchant.stat_147678606"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Edict of Frost on Kill",
    "id": "enchant.stat_90942364"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Edict of Light when you take a Critical Strike",
    "id": "enchant.stat_271342637"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Edict of Blades on Hit",
    "id": "enchant.stat_2160886943"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Edict of the Tempest on Hit",
    "id": "enchant.stat_1711789839"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Edict of War on Kill",
    "id": "enchant.stat_2033463878"
  },
  {
    "type": "enchant",
    "text": "#% increased Blade Vortex Spell Damage",
    "id": "enchant.stat_4221797807"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Edict of Inferno on Kill",
    "id": "enchant.stat_2246143608"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Edict of Flames on Hit",
    "id": "enchant.stat_786149615"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Edict of the Grave when your Skills or Minions Kill",
    "id": "enchant.stat_308154324"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Edict of Ire when Hit",
    "id": "enchant.stat_3285719520"
  },
  {
    "type": "enchant",
    "text": "#% increased Blade Flurry Damage",
    "id": "enchant.stat_754797886"
  },
  {
    "type": "enchant",
    "text": "#% increased Spectral Throw Damage",
    "id": "enchant.stat_3755794090"
  },
  {
    "type": "enchant",
    "text": "Kinetic Blast has a #% chance for an additional explosion",
    "id": "enchant.stat_3105097589"
  },
  {
    "type": "enchant",
    "text": "# secondary Tornado Shot Projectile",
    "id": "enchant.stat_1580810115"
  },
  {
    "type": "enchant",
    "text": "# additional Spark Projectile",
    "id": "enchant.stat_186513618"
  },
  {
    "type": "enchant",
    "text": "#% increased Barrage Damage",
    "id": "enchant.stat_3685345485"
  },
  {
    "type": "enchant",
    "text": "#% increased Ethereal Knives Damage",
    "id": "enchant.stat_3514973342"
  },
  {
    "type": "enchant",
    "text": "Lightning Arrow hits an additional Enemy",
    "id": "enchant.stat_1901955093"
  },
  {
    "type": "enchant",
    "text": "#% increased Ancestral Warchief Totem Damage",
    "id": "enchant.stat_78239163"
  },
  {
    "type": "enchant",
    "text": "# additional Split Arrow Projectile",
    "id": "enchant.stat_2278715446"
  },
  {
    "type": "enchant",
    "text": "#% increased Kinetic Blast Damage",
    "id": "enchant.stat_1007135105"
  },
  {
    "type": "enchant",
    "text": "#% increased Cyclone Damage",
    "id": "enchant.stat_1454162553"
  },
  {
    "type": "enchant",
    "text": "#% increased Blade Vortex Duration",
    "id": "enchant.stat_3024867180"
  },
  {
    "type": "enchant",
    "text": "#% increased Earthquake Duration",
    "id": "enchant.stat_3917881666"
  },
  {
    "type": "enchant",
    "text": "#% increased Tornado Shot Damage",
    "id": "enchant.stat_3555919553"
  },
  {
    "type": "enchant",
    "text": "#% increased Earthquake Damage",
    "id": "enchant.stat_1697080607"
  },
  {
    "type": "enchant",
    "text": "#% increased Cyclone Attack Speed",
    "id": "enchant.stat_835592326"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Decree of Fury on Hit",
    "id": "enchant.stat_2252338738"
  },
  {
    "type": "enchant",
    "text": "#% chance for Discharge not to consume Charges",
    "id": "enchant.stat_1833626118"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Decree of Spite when Hit",
    "id": "enchant.stat_889695873"
  },
  {
    "type": "enchant",
    "text": "#% increased Blade Flurry Area of Effect",
    "id": "enchant.stat_2746213081"
  },
  {
    "type": "enchant",
    "text": "#% increased Blade Vortex Area of Effect",
    "id": "enchant.stat_2748553775"
  },
  {
    "type": "enchant",
    "text": "#% increased Tornado Shot Critical Strike Chance",
    "id": "enchant.stat_1815368527"
  },
  {
    "type": "enchant",
    "text": "#% increased Lightning Arrow Damage",
    "id": "enchant.stat_2896672990"
  },
  {
    "type": "enchant",
    "text": "#% increased Barrage Attack Speed",
    "id": "enchant.stat_2523298357"
  },
  {
    "type": "enchant",
    "text": "# additional Lightning Strike Projectile",
    "id": "enchant.stat_1213035889"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Decree of Blades on Hit",
    "id": "enchant.stat_165958462"
  },
  {
    "type": "enchant",
    "text": "#% increased Discharge Damage",
    "id": "enchant.stat_1935930829"
  },
  {
    "type": "enchant",
    "text": "Blast Rain has a #% chance for an additional blast",
    "id": "enchant.stat_297308603"
  },
  {
    "type": "enchant",
    "text": "#% increased Bladefall Damage",
    "id": "enchant.stat_3069740560"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Decree of Reflection when Hit",
    "id": "enchant.stat_1792647120"
  },
  {
    "type": "enchant",
    "text": "#% increased Flicker Strike Damage",
    "id": "enchant.stat_464448327"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Decree of Force on Hit",
    "id": "enchant.stat_2925650365"
  },
  {
    "type": "enchant",
    "text": "#% increased Reave Damage",
    "id": "enchant.stat_862824495"
  },
  {
    "type": "enchant",
    "text": "#% increased Explosive Arrow Damage",
    "id": "enchant.stat_3628984170"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Decree of Flames on Hit",
    "id": "enchant.stat_990408262"
  },
  {
    "type": "enchant",
    "text": "#% increased Ethereal Knives Projectile Speed",
    "id": "enchant.stat_760994068"
  },
  {
    "type": "enchant",
    "text": "#% increased Frost Blades Damage",
    "id": "enchant.stat_3449510470"
  },
  {
    "type": "enchant",
    "text": "#% increased Spectral Throw Projectile Speed",
    "id": "enchant.stat_1062615953"
  },
  {
    "type": "enchant",
    "text": "# additional Molten Strike Projectile",
    "id": "enchant.stat_995860222"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Decree of War on Kill",
    "id": "enchant.stat_1106926438"
  },
  {
    "type": "enchant",
    "text": "#% increased Righteous Fire Damage",
    "id": "enchant.stat_3359178310"
  },
  {
    "type": "enchant",
    "text": "#% increased Sunder Damage",
    "id": "enchant.stat_4033078288"
  },
  {
    "type": "enchant",
    "text": "#% increased Molten Strike Damage",
    "id": "enchant.stat_2038865857"
  },
  {
    "type": "enchant",
    "text": "#% increased Hatred Mana Reservation",
    "id": "enchant.stat_3835483564"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Decree of Thunder on Kill",
    "id": "enchant.stat_4152292551"
  },
  {
    "type": "enchant",
    "text": "#% increased Spark Damage",
    "id": "enchant.stat_1208019382"
  },
  {
    "type": "enchant",
    "text": "#% increased Vulnerability Curse Effect",
    "id": "enchant.stat_1065909420"
  },
  {
    "type": "enchant",
    "text": "Ancestral Warchief Totem grants #% increased Melee Damage while Active",
    "id": "enchant.stat_3543257184"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Decree of the Tempest on Hit",
    "id": "enchant.stat_1671985305"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Decree of Frost on Kill",
    "id": "enchant.stat_1268512925"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Decree of Light when you take a Critical Strike",
    "id": "enchant.stat_3641868987"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Decree of Inferno on Kill",
    "id": "enchant.stat_1366391108"
  },
  {
    "type": "enchant",
    "text": "#% increased Ice Shot Damage",
    "id": "enchant.stat_3026752303"
  },
  {
    "type": "enchant",
    "text": "Raging Spirits have #% increased Damage",
    "id": "enchant.stat_2085855914"
  },
  {
    "type": "enchant",
    "text": "#% increased Lacerate Damage",
    "id": "enchant.stat_1844721010"
  },
  {
    "type": "enchant",
    "text": "#% increased Flameblast Damage",
    "id": "enchant.stat_169405468"
  },
  {
    "type": "enchant",
    "text": "#% increased Blast Rain Damage",
    "id": "enchant.stat_4014289250"
  },
  {
    "type": "enchant",
    "text": "#% increased Effect of the Buff granted by your Lightning Golems",
    "id": "enchant.stat_2527931375"
  },
  {
    "type": "enchant",
    "text": "#% increased Spectral Throw Projectile Deceleration",
    "id": "enchant.stat_444686294"
  },
  {
    "type": "enchant",
    "text": "#% increased Shrapnel Shot Damage",
    "id": "enchant.stat_2634945088"
  },
  {
    "type": "enchant",
    "text": "Wild Strike Chains an additional time",
    "id": "enchant.stat_2447447843"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Decree of Winter when Hit",
    "id": "enchant.stat_2515273888"
  },
  {
    "type": "enchant",
    "text": "#% increased Bladefall Critical Strike Chance",
    "id": "enchant.stat_2833482311"
  },
  {
    "type": "enchant",
    "text": "#% increased Sunder Attack Speed",
    "id": "enchant.stat_1999307054"
  },
  {
    "type": "enchant",
    "text": "#% increased Split Arrow Damage",
    "id": "enchant.stat_2555469486"
  },
  {
    "type": "enchant",
    "text": "#% increased Wrath Mana Reservation",
    "id": "enchant.stat_3600749521"
  },
  {
    "type": "enchant",
    "text": "#% increased Effect of the Buff granted by your Ice Golems",
    "id": "enchant.stat_2250111474"
  },
  {
    "type": "enchant",
    "text": "#% increased Dark Pact Area of Effect",
    "id": "enchant.stat_957864706"
  },
  {
    "type": "enchant",
    "text": "#% increased Dark Pact Damage",
    "id": "enchant.stat_1573799461"
  },
  {
    "type": "enchant",
    "text": "#% increased Sunder Area of Effect",
    "id": "enchant.stat_3316767657"
  },
  {
    "type": "enchant",
    "text": "#% increased Kinetic Blast Area of Effect",
    "id": "enchant.stat_1660758870"
  },
  {
    "type": "enchant",
    "text": "Blood Rage grants additional #% increased Attack Speed",
    "id": "enchant.stat_3418033798"
  },
  {
    "type": "enchant",
    "text": "#% increased Lacerate Critical Strike Chance",
    "id": "enchant.stat_578067404"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Decree of the Grave when your Skills or Minions Kill",
    "id": "enchant.stat_2187415468"
  },
  {
    "type": "enchant",
    "text": "#% increased Flicker Strike Damage per Frenzy Charge",
    "id": "enchant.stat_3701991680"
  },
  {
    "type": "enchant",
    "text": "#% increased Temporal Chains Curse Effect",
    "id": "enchant.stat_1662974426"
  },
  {
    "type": "enchant",
    "text": "#% increased Effect of the Buff granted by your Flame Golems",
    "id": "enchant.stat_269930125"
  },
  {
    "type": "enchant",
    "text": "Spectres have #% increased Damage",
    "id": "enchant.stat_3645693773"
  },
  {
    "type": "enchant",
    "text": "#% increased Enfeeble Curse Effect",
    "id": "enchant.stat_3293830776"
  },
  {
    "type": "enchant",
    "text": "Righteous Fire grants #% increased Spell Damage",
    "id": "enchant.stat_3316822388"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Decree of Ire when Hit",
    "id": "enchant.stat_1818525360"
  },
  {
    "type": "enchant",
    "text": "#% increased Fireball Damage",
    "id": "enchant.stat_2600498881"
  },
  {
    "type": "enchant",
    "text": "#% increased Herald of Ice Mana Reservation",
    "id": "enchant.stat_3537762266"
  },
  {
    "type": "enchant",
    "text": "#% increased Reave Radius",
    "id": "enchant.stat_1486490067"
  },
  {
    "type": "enchant",
    "text": "#% increased Glacial Cascade Damage",
    "id": "enchant.stat_451037529"
  },
  {
    "type": "enchant",
    "text": "#% increased Spark Projectile Speed",
    "id": "enchant.stat_103922739"
  },
  {
    "type": "enchant",
    "text": "#% increased Vortex Damage",
    "id": "enchant.stat_200942664"
  },
  {
    "type": "enchant",
    "text": "#% increased Essence Drain Damage",
    "id": "enchant.stat_3469967347"
  },
  {
    "type": "enchant",
    "text": "#% increased Burning Arrow Damage",
    "id": "enchant.stat_696995312"
  },
  {
    "type": "enchant",
    "text": "#% increased Shield Charge Attack Speed",
    "id": "enchant.stat_648343221"
  },
  {
    "type": "enchant",
    "text": "#% increased Earthquake Area of Effect",
    "id": "enchant.stat_684174846"
  },
  {
    "type": "enchant",
    "text": "#% increased Molten Strike Area of Effect",
    "id": "enchant.stat_2524620107"
  },
  {
    "type": "enchant",
    "text": "#% increased Herald of Ash Mana Reservation",
    "id": "enchant.stat_2328234364"
  },
  {
    "type": "enchant",
    "text": "#% increased Whirling Blades Attack Speed",
    "id": "enchant.stat_1902197291"
  },
  {
    "type": "enchant",
    "text": "#% increased Caustic Arrow Damage",
    "id": "enchant.stat_1496334795"
  },
  {
    "type": "enchant",
    "text": "#% increased Wild Strike Damage",
    "id": "enchant.stat_1666713639"
  },
  {
    "type": "enchant",
    "text": "#% increased Explosive Arrow Attack Speed",
    "id": "enchant.stat_3949159285"
  },
  {
    "type": "enchant",
    "text": "#% increased Dark Pact Cast Speed",
    "id": "enchant.stat_1549594869"
  },
  {
    "type": "enchant",
    "text": "#% of Shrapnel Shot Physical Damage gained as extra Lightning Damage",
    "id": "enchant.stat_1943147282"
  },
  {
    "type": "enchant",
    "text": "Flame Golems have #% increased Damage",
    "id": "enchant.stat_1575282859"
  },
  {
    "type": "enchant",
    "text": "#% increased Herald of Ice Damage",
    "id": "enchant.stat_3910961021"
  },
  {
    "type": "enchant",
    "text": "#% increased Frost Blades Projectile Speed",
    "id": "enchant.stat_1087923932"
  },
  {
    "type": "enchant",
    "text": "# additional Flame Totem Projectile",
    "id": "enchant.stat_775200811"
  },
  {
    "type": "enchant",
    "text": "#% increased Lacerate Area of Effect",
    "id": "enchant.stat_3854723321"
  },
  {
    "type": "enchant",
    "text": "#% increased Haste Mana Reservation",
    "id": "enchant.stat_91821600"
  },
  {
    "type": "enchant",
    "text": "#% increased Rain of Arrows Damage",
    "id": "enchant.stat_3432170876"
  },
  {
    "type": "enchant",
    "text": "#% increased Herald of Ash Damage",
    "id": "enchant.stat_767884542"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Commandment of Spite when Hit",
    "id": "enchant.stat_1259277978"
  },
  {
    "type": "enchant",
    "text": "#% increased Elemental Weakness Curse Effect",
    "id": "enchant.stat_3348324479"
  },
  {
    "type": "enchant",
    "text": "#% increased Explosive Arrow Area of Effect",
    "id": "enchant.stat_1041365824"
  },
  {
    "type": "enchant",
    "text": "#% increased Magma Orb Damage",
    "id": "enchant.stat_600891507"
  },
  {
    "type": "enchant",
    "text": "#% increased Frenzy Damage per Frenzy Charge",
    "id": "enchant.stat_1255310381"
  },
  {
    "type": "enchant",
    "text": "#% increased Cleave Damage",
    "id": "enchant.stat_1359058534"
  },
  {
    "type": "enchant",
    "text": "#% increased Ancestral Warchief Totem Area of Effect",
    "id": "enchant.stat_3320271130"
  },
  {
    "type": "enchant",
    "text": "#% increased Anger Mana Reservation",
    "id": "enchant.stat_2003753577"
  },
  {
    "type": "enchant",
    "text": "#% increased Firestorm Damage",
    "id": "enchant.stat_2201904285"
  },
  {
    "type": "enchant",
    "text": "Arc Chains an additional time",
    "id": "enchant.stat_2461552986"
  },
  {
    "type": "enchant",
    "text": "Magma Orb Chains an additional time",
    "id": "enchant.stat_2589980605"
  },
  {
    "type": "enchant",
    "text": "#% increased Infernal Blow Damage",
    "id": "enchant.stat_242838571"
  },
  {
    "type": "enchant",
    "text": "#% increased Heavy Strike Damage",
    "id": "enchant.stat_954135826"
  },
  {
    "type": "enchant",
    "text": "#% increased Discipline Mana Reservation",
    "id": "enchant.stat_2200030809"
  },
  {
    "type": "enchant",
    "text": "#% increased Herald of Thunder Mana Reservation",
    "id": "enchant.stat_966400988"
  },
  {
    "type": "enchant",
    "text": "#% increased Flicker Strike Cooldown Recovery Speed",
    "id": "enchant.stat_1398394628"
  },
  {
    "type": "enchant",
    "text": "#% increased Righteous Fire Area of Effect",
    "id": "enchant.stat_2430635444"
  },
  {
    "type": "enchant",
    "text": "#% increased Double Strike Damage",
    "id": "enchant.stat_1809965314"
  },
  {
    "type": "enchant",
    "text": "Ancestral Protector Totem deals #% increased Damage",
    "id": "enchant.stat_2596239449"
  },
  {
    "type": "enchant",
    "text": "#% increased Flameblast Critical Strike Chance",
    "id": "enchant.stat_3053448465"
  },
  {
    "type": "enchant",
    "text": "#% increased Ice Crash Damage",
    "id": "enchant.stat_1794090421"
  },
  {
    "type": "enchant",
    "text": "#% increased Immortal Call Duration",
    "id": "enchant.stat_1336543283"
  },
  {
    "type": "enchant",
    "text": "#% of Glacial Cascade Physical Damage Converted to Cold Damage",
    "id": "enchant.stat_1154155584"
  },
  {
    "type": "enchant",
    "text": "#% increased Arc Damage",
    "id": "enchant.stat_2740567252"
  },
  {
    "type": "enchant",
    "text": "#% increased Shield Charge Damage",
    "id": "enchant.stat_3490662882"
  },
  {
    "type": "enchant",
    "text": "Summon Raging Spirit has #% chance to summon an extra Minion",
    "id": "enchant.stat_1381908541"
  },
  {
    "type": "enchant",
    "text": "#% increased Assassin's Mark Curse Effect",
    "id": "enchant.stat_1961975107"
  },
  {
    "type": "enchant",
    "text": "#% increased Scorching Ray Damage",
    "id": "enchant.stat_3395096718"
  },
  {
    "type": "enchant",
    "text": "#% increased Ground Slam Damage",
    "id": "enchant.stat_108883700"
  },
  {
    "type": "enchant",
    "text": "#% increased Frenzy Damage",
    "id": "enchant.stat_522780692"
  },
  {
    "type": "enchant",
    "text": "#% increased Power Siphon Damage",
    "id": "enchant.stat_78767457"
  },
  {
    "type": "enchant",
    "text": "#% increased Detonate Dead Damage",
    "id": "enchant.stat_3087527696"
  },
  {
    "type": "enchant",
    "text": "Zombies deal #% increased Damage",
    "id": "enchant.stat_2228518621"
  },
  {
    "type": "enchant",
    "text": "#% increased Cleave Attack Speed",
    "id": "enchant.stat_3106577499"
  },
  {
    "type": "enchant",
    "text": "Fire Nova Mine repeats an additional # times",
    "id": "enchant.stat_2614099660"
  },
  {
    "type": "enchant",
    "text": "#% increased Glacial Cascade Area of Effect",
    "id": "enchant.stat_88796379"
  },
  {
    "type": "enchant",
    "text": "#% increased Freezing Pulse Damage",
    "id": "enchant.stat_819852672"
  },
  {
    "type": "enchant",
    "text": "#% increased Summon Raging Spirit Duration",
    "id": "enchant.stat_38715141"
  },
  {
    "type": "enchant",
    "text": "#% increased Split Arrow Critical Strike Chance",
    "id": "enchant.stat_1028884162"
  },
  {
    "type": "enchant",
    "text": "#% of Infernal Blow Physical Damage gained as Extra Fire Damage",
    "id": "enchant.stat_2484188706"
  },
  {
    "type": "enchant",
    "text": "#% increased Bladefall Area of Effect",
    "id": "enchant.stat_2413715772"
  },
  {
    "type": "enchant",
    "text": "#% of Burning Arrow Physical Damage gained as Extra Fire Damage",
    "id": "enchant.stat_3229580299"
  },
  {
    "type": "enchant",
    "text": "#% increased Effect of the Buff granted by your Stone Golems",
    "id": "enchant.stat_2284801675"
  },
  {
    "type": "enchant",
    "text": "#% increased Double Strike Critical Strike Chance",
    "id": "enchant.stat_1201942540"
  },
  {
    "type": "enchant",
    "text": "#% increased Frostbolt Damage",
    "id": "enchant.stat_2078274993"
  },
  {
    "type": "enchant",
    "text": "#% increased Wild Strike Area of Effect",
    "id": "enchant.stat_524936200"
  },
  {
    "type": "enchant",
    "text": "#% increased Herald of Thunder Damage",
    "id": "enchant.stat_558298545"
  },
  {
    "type": "enchant",
    "text": "#% increased Grace Mana Reservation",
    "id": "enchant.stat_1549898151"
  },
  {
    "type": "enchant",
    "text": "#% increased Incinerate Damage for each stage",
    "id": "enchant.stat_4151555126"
  },
  {
    "type": "enchant",
    "text": "#% chance to create an additional Animate Weapon copy",
    "id": "enchant.stat_3711386843"
  },
  {
    "type": "enchant",
    "text": "#% increased Viper Strike Damage",
    "id": "enchant.stat_2585271359"
  },
  {
    "type": "enchant",
    "text": "#% increased Ball Lightning Damage",
    "id": "enchant.stat_3152812191"
  },
  {
    "type": "enchant",
    "text": "#% increased Essence Drain Duration",
    "id": "enchant.stat_3698833303"
  },
  {
    "type": "enchant",
    "text": "#% increased Lightning Tendrils Damage",
    "id": "enchant.stat_39356080"
  },
  {
    "type": "enchant",
    "text": "#% increased Lightning Arrow Area of Effect",
    "id": "enchant.stat_4129421630"
  },
  {
    "type": "enchant",
    "text": "#% increased Ice Shot Area of Effect",
    "id": "enchant.stat_1962401751"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Commandment of Fury on Hit",
    "id": "enchant.stat_1554500307"
  },
  {
    "type": "enchant",
    "text": "#% increased Lightning Strike Damage",
    "id": "enchant.stat_3630274354"
  },
  {
    "type": "enchant",
    "text": "Animated Weapons deal #% increased Damage",
    "id": "enchant.stat_1819674879"
  },
  {
    "type": "enchant",
    "text": "#% increased Sweep Damage",
    "id": "enchant.stat_253870897"
  },
  {
    "type": "enchant",
    "text": "#% increased Puncture Damage",
    "id": "enchant.stat_3496292484"
  },
  {
    "type": "enchant",
    "text": "#% increased Static Strike Damage",
    "id": "enchant.stat_551375258"
  },
  {
    "type": "enchant",
    "text": "#% increased Cleave Area of Effect",
    "id": "enchant.stat_3172519570"
  },
  {
    "type": "enchant",
    "text": "#% increased Flammability Curse Effect",
    "id": "enchant.stat_282417259"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Commandment of Blades on Hit",
    "id": "enchant.stat_147952811"
  },
  {
    "type": "enchant",
    "text": "#% increased Dual Strike Critical Strike Chance",
    "id": "enchant.stat_2729530556"
  },
  {
    "type": "enchant",
    "text": "Detonate Dead has a #% chance to detonate an additional Corpse",
    "id": "enchant.stat_1539846779"
  },
  {
    "type": "enchant",
    "text": "#% increased Leap Slam Attack Speed",
    "id": "enchant.stat_3730999759"
  },
  {
    "type": "enchant",
    "text": "Ancestral Protector Totem grants #% increased Attack Speed while Active",
    "id": "enchant.stat_1303996723"
  },
  {
    "type": "enchant",
    "text": "#% increased Arctic Armour Mana Reservation",
    "id": "enchant.stat_2233726619"
  },
  {
    "type": "enchant",
    "text": "#% increased Blast Rain Area of Effect",
    "id": "enchant.stat_574378310"
  },
  {
    "type": "enchant",
    "text": "#% increased Flame Totem Damage",
    "id": "enchant.stat_2801853811"
  },
  {
    "type": "enchant",
    "text": "#% increased Projectile Weakness Curse Effect",
    "id": "enchant.stat_2789561878"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Commandment of Force on Hit",
    "id": "enchant.stat_2666843091"
  },
  {
    "type": "enchant",
    "text": "#% increased Freezing Pulse Projectile Speed",
    "id": "enchant.stat_2003026405"
  },
  {
    "type": "enchant",
    "text": "#% increased Dual Strike Damage",
    "id": "enchant.stat_2094069860"
  },
  {
    "type": "enchant",
    "text": "#% increased Glacial Hammer Damage",
    "id": "enchant.stat_2732675053"
  },
  {
    "type": "enchant",
    "text": "#% increased Siege Ballista Damage",
    "id": "enchant.stat_840189382"
  },
  {
    "type": "enchant",
    "text": "#% increased Firestorm Duration",
    "id": "enchant.stat_1691710359"
  },
  {
    "type": "enchant",
    "text": "#% increased Elemental Hit Damage",
    "id": "enchant.stat_4109038270"
  },
  {
    "type": "enchant",
    "text": "#% increased Volatile Dead Damage",
    "id": "enchant.stat_1212590278"
  },
  {
    "type": "enchant",
    "text": "#% increased Arctic Armour Buff Effect",
    "id": "enchant.stat_3995612171"
  },
  {
    "type": "enchant",
    "text": "#% increased Viper Strike Critical Strike Chance",
    "id": "enchant.stat_3734756042"
  },
  {
    "type": "enchant",
    "text": "#% increased Discharge Radius",
    "id": "enchant.stat_1743954272"
  },
  {
    "type": "enchant",
    "text": "#% increased Static Strike Duration",
    "id": "enchant.stat_2906742892"
  },
  {
    "type": "enchant",
    "text": "#% increased Incinerate Damage",
    "id": "enchant.stat_2246425134"
  },
  {
    "type": "enchant",
    "text": "#% chance for Immortal Call to not consume Endurance Charges",
    "id": "enchant.stat_1953644681"
  },
  {
    "type": "enchant",
    "text": "#% increased Flameblast Area of Effect",
    "id": "enchant.stat_1532964880"
  },
  {
    "type": "enchant",
    "text": "#% increased Purity of Fire Mana Reservation",
    "id": "enchant.stat_3215042347"
  },
  {
    "type": "enchant",
    "text": "#% of Ice Crash Physical Damage gained as Extra Cold Damage",
    "id": "enchant.stat_3465202861"
  },
  {
    "type": "enchant",
    "text": "#% increased Vortex Duration",
    "id": "enchant.stat_4074562940"
  },
  {
    "type": "enchant",
    "text": "#% increased Heavy Strike Attack Speed",
    "id": "enchant.stat_343849491"
  },
  {
    "type": "enchant",
    "text": "Blood Rage grants additional #% chance to gain a Frenzy Charge on Kill",
    "id": "enchant.stat_3152806535"
  },
  {
    "type": "enchant",
    "text": "#% increased Caustic Arrow Area of Effect",
    "id": "enchant.stat_3854556792"
  },
  {
    "type": "enchant",
    "text": "Spectres have #% increased Attack and Cast Speed",
    "id": "enchant.stat_4137556603"
  },
  {
    "type": "enchant",
    "text": "#% increased Shockwave Totem Damage",
    "id": "enchant.stat_2440551805"
  },
  {
    "type": "enchant",
    "text": "Spirit Offering grants #% of Physical Damage as Extra Chaos Damage",
    "id": "enchant.stat_3229261553"
  },
  {
    "type": "enchant",
    "text": "#% increased Magma Orb Area of Effect",
    "id": "enchant.stat_1646093658"
  },
  {
    "type": "enchant",
    "text": "#% increased Contagion Damage",
    "id": "enchant.stat_277116504"
  },
  {
    "type": "enchant",
    "text": "#% increased Storm Call Damage",
    "id": "enchant.stat_3359777583"
  },
  {
    "type": "enchant",
    "text": "#% increased Double Strike Attack Speed",
    "id": "enchant.stat_2779309910"
  },
  {
    "type": "enchant",
    "text": "#% increased Cremation Damage",
    "id": "enchant.stat_4175469673"
  },
  {
    "type": "enchant",
    "text": "#% increased Warlord's Mark Curse Effect",
    "id": "enchant.stat_1528965411"
  },
  {
    "type": "enchant",
    "text": "#% increased Effect of the Buff granted by your Chaos Golems",
    "id": "enchant.stat_1648511635"
  },
  {
    "type": "enchant",
    "text": "#% increased Ice Crash Area of Effect",
    "id": "enchant.stat_3930497977"
  },
  {
    "type": "enchant",
    "text": "#% increased Dual Strike Attack Speed",
    "id": "enchant.stat_1917107304"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Commandment of Reflection when Hit",
    "id": "enchant.stat_3036365740"
  },
  {
    "type": "enchant",
    "text": "Desecrate summons an additional corpse",
    "id": "enchant.stat_3655654928"
  },
  {
    "type": "enchant",
    "text": "#% increased Storm Call Duration",
    "id": "enchant.stat_1843506018"
  },
  {
    "type": "enchant",
    "text": "#% increased Ice Nova Damage",
    "id": "enchant.stat_1086309398"
  },
  {
    "type": "enchant",
    "text": "#% increased Blight Damage",
    "id": "enchant.stat_1623552446"
  },
  {
    "type": "enchant",
    "text": "#% increased Vitality Mana Reservation",
    "id": "enchant.stat_1122074043"
  },
  {
    "type": "enchant",
    "text": "#% Chance to gain an additional Power Charge on Kill with Power Siphon",
    "id": "enchant.stat_3609207587"
  },
  {
    "type": "enchant",
    "text": "#% increased Lightning Tendrils Critical Strike Chance",
    "id": "enchant.stat_12756171"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Commandment of War on Kill",
    "id": "enchant.stat_494477497"
  },
  {
    "type": "enchant",
    "text": "#% increased Shrapnel Shot Area of Effect",
    "id": "enchant.stat_354556858"
  },
  {
    "type": "enchant",
    "text": "#% increased Ice Spear Critical Strike Chance in second form",
    "id": "enchant.stat_3510848926"
  },
  {
    "type": "enchant",
    "text": "#% increased Molten Shell Damage",
    "id": "enchant.stat_815390778"
  },
  {
    "type": "enchant",
    "text": "#% increased Ice Trap Damage",
    "id": "enchant.stat_4224384031"
  },
  {
    "type": "enchant",
    "text": "#% of Glacial Hammer Physical Damage gained as Extra Cold Damage",
    "id": "enchant.stat_2555366825"
  },
  {
    "type": "enchant",
    "text": "#% increased Abyssal Cry Damage",
    "id": "enchant.stat_780453137"
  },
  {
    "type": "enchant",
    "text": "#% increased Flame Surge Damage",
    "id": "enchant.stat_1491182794"
  },
  {
    "type": "enchant",
    "text": "#% increased Rain of Arrows Area of Effect",
    "id": "enchant.stat_2205814812"
  },
  {
    "type": "enchant",
    "text": "#% increased Rain of Arrows Attack Speed",
    "id": "enchant.stat_3825617457"
  },
  {
    "type": "enchant",
    "text": "#% increased Fire Nova Mine Damage",
    "id": "enchant.stat_2575601188"
  },
  {
    "type": "enchant",
    "text": "#% increased Orb of Storms Critical Strike Chance",
    "id": "enchant.stat_168538372"
  },
  {
    "type": "enchant",
    "text": "#% increased Incinerate Projectile Speed",
    "id": "enchant.stat_488494964"
  },
  {
    "type": "enchant",
    "text": "Animated Guardians deal #% increased Damage",
    "id": "enchant.stat_4157143640"
  },
  {
    "type": "enchant",
    "text": "Dominated Minions deal #% increased Damage",
    "id": "enchant.stat_4040760803"
  },
  {
    "type": "enchant",
    "text": "#% Chance on Frenzy to gain an additional Frenzy Charge",
    "id": "enchant.stat_4243904146"
  },
  {
    "type": "enchant",
    "text": "#% increased Scorching Ray Cast Speed",
    "id": "enchant.stat_3279758713"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Commandment of Light when you take a Critical Strike",
    "id": "enchant.stat_3109915337"
  },
  {
    "type": "enchant",
    "text": "Ground Slam has a #% increased angle",
    "id": "enchant.stat_648647905"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Commandment of Winter when Hit",
    "id": "enchant.stat_3222886961"
  },
  {
    "type": "enchant",
    "text": "#% chance to Dodge Attacks at Maximum Blade Flurry stages",
    "id": "enchant.stat_1433838252"
  },
  {
    "type": "enchant",
    "text": "#% increased Siege Ballista Attack Speed",
    "id": "enchant.stat_444858149"
  },
  {
    "type": "enchant",
    "text": "#% increased Freezing Pulse Cast Speed",
    "id": "enchant.stat_1894493605"
  },
  {
    "type": "enchant",
    "text": "Converted Enemies have #% increased Damage",
    "id": "enchant.stat_131320052"
  },
  {
    "type": "enchant",
    "text": "#% increased Caustic Arrow Duration",
    "id": "enchant.stat_387490713"
  },
  {
    "type": "enchant",
    "text": "#% increased Firestorm explosion Area of Effect",
    "id": "enchant.stat_3931013900"
  },
  {
    "type": "enchant",
    "text": "Skeletons deal #% increased Damage",
    "id": "enchant.stat_3059357595"
  },
  {
    "type": "enchant",
    "text": "#% increased Shock Nova Damage",
    "id": "enchant.stat_3948894096"
  },
  {
    "type": "enchant",
    "text": "Mirror Arrow and Mirror Arrow Clones deal #% increased Damage",
    "id": "enchant.stat_4136186767"
  },
  {
    "type": "enchant",
    "text": "#% increased Flesh Offering Duration",
    "id": "enchant.stat_101788216"
  },
  {
    "type": "enchant",
    "text": "#% increased Lightning Trap Damage",
    "id": "enchant.stat_3131492956"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Commandment of Inferno on Kill",
    "id": "enchant.stat_2020183428"
  },
  {
    "type": "enchant",
    "text": "#% increased Purity of Elements Mana Reservation",
    "id": "enchant.stat_1849664701"
  },
  {
    "type": "enchant",
    "text": "#% increased Infernal Blow Area of Effect",
    "id": "enchant.stat_4031295671"
  },
  {
    "type": "enchant",
    "text": "#% increased Detonate Dead Area of Effect",
    "id": "enchant.stat_482660590"
  },
  {
    "type": "enchant",
    "text": "#% increased Power Siphon Attack Speed",
    "id": "enchant.stat_2753191013"
  },
  {
    "type": "enchant",
    "text": "#% increased Determination Mana Reservation",
    "id": "enchant.stat_3072232736"
  },
  {
    "type": "enchant",
    "text": "#% increased Fire Trap Damage",
    "id": "enchant.stat_181307038"
  },
  {
    "type": "enchant",
    "text": "#% increased Animate Weapon Duration",
    "id": "enchant.stat_3338074370"
  },
  {
    "type": "enchant",
    "text": "#% increased Molten Shell Buff Effect",
    "id": "enchant.stat_1949390531"
  },
  {
    "type": "enchant",
    "text": "#% Chance for Puncture to Maim on hit",
    "id": "enchant.stat_244125450"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Commandment of Thunder on Kill",
    "id": "enchant.stat_1988467615"
  },
  {
    "type": "enchant",
    "text": "#% increased Contagion Duration",
    "id": "enchant.stat_2565809961"
  },
  {
    "type": "enchant",
    "text": "Lightning Strike pierces an additional Target",
    "id": "enchant.stat_3134777190"
  },
  {
    "type": "enchant",
    "text": "#% increased Puncture Duration",
    "id": "enchant.stat_3186938438"
  },
  {
    "type": "enchant",
    "text": "#% increased Vortex Area of Effect",
    "id": "enchant.stat_1730614496"
  },
  {
    "type": "enchant",
    "text": "#% increased Clarity Mana Reservation",
    "id": "enchant.stat_3738398726"
  },
  {
    "type": "enchant",
    "text": "#% increased Wither Duration",
    "id": "enchant.stat_447560345"
  },
  {
    "type": "enchant",
    "text": "Burning Arrow Always Ignites",
    "id": "enchant.stat_2226973351"
  },
  {
    "type": "enchant",
    "text": "#% increased Arctic Breath Damage",
    "id": "enchant.stat_2846773529"
  },
  {
    "type": "enchant",
    "text": "#% increased Contagion Area of Effect",
    "id": "enchant.stat_1056396846"
  },
  {
    "type": "enchant",
    "text": "Tempest Shield chains an additional time",
    "id": "enchant.stat_3096183736"
  },
  {
    "type": "enchant",
    "text": "#% increased Ice Spear Damage",
    "id": "enchant.stat_2423221070"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Commandment of Flames on Hit",
    "id": "enchant.stat_3703722637"
  },
  {
    "type": "enchant",
    "text": "Shock Nova ring deals #% increased Damage",
    "id": "enchant.stat_3652051346"
  },
  {
    "type": "enchant",
    "text": "#% increased Flame Surge Damage against Burning Enemies",
    "id": "enchant.stat_430890565"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Commandment of Ire when Hit",
    "id": "enchant.stat_620045439"
  },
  {
    "type": "enchant",
    "text": "#% increased Storm Call Area of Effect",
    "id": "enchant.stat_2070247068"
  },
  {
    "type": "enchant",
    "text": "#% Chance to gain a Power Charge on Critical Strike with Ice Spear",
    "id": "enchant.stat_3232905239"
  },
  {
    "type": "enchant",
    "text": "Zombies have #% increased Attack Speed",
    "id": "enchant.stat_2499559911"
  },
  {
    "type": "enchant",
    "text": "#% increased Flame Totem Projectile Speed",
    "id": "enchant.stat_4082863126"
  },
  {
    "type": "enchant",
    "text": "#% increased Fire Nova Cast Speed",
    "id": "enchant.stat_3211417111"
  },
  {
    "type": "enchant",
    "text": "#% increased Vigilant Strike Damage",
    "id": "enchant.stat_2287764959"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Commandment of the Tempest on Hit",
    "id": "enchant.stat_4203647216"
  },
  {
    "type": "enchant",
    "text": "#% increased Vengeance Damage",
    "id": "enchant.stat_1972101281"
  },
  {
    "type": "enchant",
    "text": "#% increased Bone Offering Duration",
    "id": "enchant.stat_1607493537"
  },
  {
    "type": "enchant",
    "text": "#% increased Dominating Blow Damage",
    "id": "enchant.stat_2661979205"
  },
  {
    "type": "enchant",
    "text": "#% increased Searing Bond Damage",
    "id": "enchant.stat_2298223148"
  },
  {
    "type": "enchant",
    "text": "#% increased Reckoning Damage",
    "id": "enchant.stat_308326229"
  },
  {
    "type": "enchant",
    "text": "#% increased Fire Trap Burning Damage",
    "id": "enchant.stat_345703394"
  },
  {
    "type": "enchant",
    "text": "#% increased Ball Lightning Projectile Speed",
    "id": "enchant.stat_1243906675"
  },
  {
    "type": "enchant",
    "text": "#% increased Poacher's Mark Curse Effect",
    "id": "enchant.stat_3278819254"
  },
  {
    "type": "enchant",
    "text": "Heavy Strike has a #% chance to deal Double Damage",
    "id": "enchant.stat_3760588941"
  },
  {
    "type": "enchant",
    "text": "#% increased Elemental Hit Attack Speed",
    "id": "enchant.stat_1151217691"
  },
  {
    "type": "enchant",
    "text": "#% increased Enduring Cry Buff Effect",
    "id": "enchant.stat_241781316"
  },
  {
    "type": "enchant",
    "text": "#% increased Phase Run Duration",
    "id": "enchant.stat_2556095677"
  },
  {
    "type": "enchant",
    "text": "#% increased Viper Strike Duration",
    "id": "enchant.stat_3869217625"
  },
  {
    "type": "enchant",
    "text": "#% increased Conductivity Curse Effect",
    "id": "enchant.stat_3395908304"
  },
  {
    "type": "enchant",
    "text": "Flesh Offering grants an additional #% increased Attack Speed",
    "id": "enchant.stat_513715594"
  },
  {
    "type": "enchant",
    "text": "Arc Always Shocks",
    "id": "enchant.stat_195463427"
  },
  {
    "type": "enchant",
    "text": "#% increased Flame Surge Critical Strike Chance",
    "id": "enchant.stat_1030003515"
  },
  {
    "type": "enchant",
    "text": "#% increased Fireball Cast Speed",
    "id": "enchant.stat_2231403318"
  },
  {
    "type": "enchant",
    "text": "#% increased Scorching Ray beam length",
    "id": "enchant.stat_702909553"
  },
  {
    "type": "enchant",
    "text": "#% increased Whirling Blades Damage",
    "id": "enchant.stat_3723124286"
  },
  {
    "type": "enchant",
    "text": "#% increased Frostbite Curse Effect",
    "id": "enchant.stat_1443215722"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Commandment of Frost on Kill",
    "id": "enchant.stat_1877374369"
  },
  {
    "type": "enchant",
    "text": "#% increased Purity of Lightning Mana Reservation",
    "id": "enchant.stat_1285430327"
  },
  {
    "type": "enchant",
    "text": "#% increased Ground Slam Area of Effect",
    "id": "enchant.stat_3061969105"
  },
  {
    "type": "enchant",
    "text": "#% increased Siege Ballista Totem Placement Speed",
    "id": "enchant.stat_2896357741"
  },
  {
    "type": "enchant",
    "text": "#% increased Purity of Ice Mana Reservation",
    "id": "enchant.stat_3192966873"
  },
  {
    "type": "enchant",
    "text": "#% increased Static Strike Area of Effect",
    "id": "enchant.stat_2685860927"
  },
  {
    "type": "enchant",
    "text": "Elemental Hit Always Freezes, Shocks and Ignites",
    "id": "enchant.stat_3205997967"
  },
  {
    "type": "enchant",
    "text": "#% increased Sweep Area of Effect",
    "id": "enchant.stat_4202548383"
  },
  {
    "type": "enchant",
    "text": "#% increased Cold Snap Damage",
    "id": "enchant.stat_3729006707"
  },
  {
    "type": "enchant",
    "text": "#% increased Frost Bomb Damage",
    "id": "enchant.stat_2380598805"
  },
  {
    "type": "enchant",
    "text": "#% increased Ice Trap Cooldown Recovery Speed",
    "id": "enchant.stat_1050563950"
  },
  {
    "type": "enchant",
    "text": "#% increased Temporal Chains Duration",
    "id": "enchant.stat_888039248"
  },
  {
    "type": "enchant",
    "text": "#% increased Orb of Storms Damage",
    "id": "enchant.stat_4084540709"
  },
  {
    "type": "enchant",
    "text": "#% increased Ice Shot Duration",
    "id": "enchant.stat_2600949388"
  },
  {
    "type": "enchant",
    "text": "#% increased Blight Area of Effect",
    "id": "enchant.stat_2511915418"
  },
  {
    "type": "enchant",
    "text": "#% increased Spirit Offering Duration",
    "id": "enchant.stat_1063173946"
  },
  {
    "type": "enchant",
    "text": "Blink Arrow and Blink Arrow Clones have #% increased Attack Speed",
    "id": "enchant.stat_1554597333"
  },
  {
    "type": "enchant",
    "text": "Ice Golems deal #% increased Damage",
    "id": "enchant.stat_3816405721"
  },
  {
    "type": "enchant",
    "text": "#% increased Flammability Duration",
    "id": "enchant.stat_2166622264"
  },
  {
    "type": "enchant",
    "text": "#% increased Assassin's Mark Duration",
    "id": "enchant.stat_1609523492"
  },
  {
    "type": "enchant",
    "text": "#% increased Vengeance Cooldown Recovery Speed",
    "id": "enchant.stat_1447427508"
  },
  {
    "type": "enchant",
    "text": "#% increased Lightning Tendrils Area of Effect",
    "id": "enchant.stat_1230050013"
  },
  {
    "type": "enchant",
    "text": "Lightning Golems deal #% increased Damage",
    "id": "enchant.stat_3280107027"
  },
  {
    "type": "enchant",
    "text": "Glacial Hammer Always Freezes",
    "id": "enchant.stat_288248772"
  },
  {
    "type": "enchant",
    "text": "Chaos Golems deal #% increased Damage",
    "id": "enchant.stat_2505115650"
  },
  {
    "type": "enchant",
    "text": "#% increased Lightning Trap Cooldown Recovery Speed",
    "id": "enchant.stat_1322030222"
  },
  {
    "type": "enchant",
    "text": "#% increased Punishment Curse Effect",
    "id": "enchant.stat_2844206732"
  },
  {
    "type": "enchant",
    "text": "#% increased Frostbolt Cast Speed",
    "id": "enchant.stat_4231484190"
  },
  {
    "type": "enchant",
    "text": "#% increased Ice Nova Area of Effect",
    "id": "enchant.stat_68809719"
  },
  {
    "type": "enchant",
    "text": "#% increased Projectile Weakness Duration",
    "id": "enchant.stat_1654191578"
  },
  {
    "type": "enchant",
    "text": "#% increased Ice Trap Area of Effect",
    "id": "enchant.stat_3367298564"
  },
  {
    "type": "enchant",
    "text": "#% increased Leap Slam Damage",
    "id": "enchant.stat_3850775143"
  },
  {
    "type": "enchant",
    "text": "#% increased Enduring Cry Cooldown Recovery Speed",
    "id": "enchant.stat_3617955571"
  },
  {
    "type": "enchant",
    "text": "#% to Raised Spectre Elemental Resistances",
    "id": "enchant.stat_27640220"
  },
  {
    "type": "enchant",
    "text": "#% increased Rallying Cry Buff Effect",
    "id": "enchant.stat_4147277532"
  },
  {
    "type": "enchant",
    "text": "#% increased Mirror Arrow Cooldown Recovery Speed",
    "id": "enchant.stat_1781106044"
  },
  {
    "type": "enchant",
    "text": "Stone Golems deal #% increased Damage",
    "id": "enchant.stat_1171483499"
  },
  {
    "type": "enchant",
    "text": "#% increased Tempest Shield Damage",
    "id": "enchant.stat_2121581717"
  },
  {
    "type": "enchant",
    "text": "Ice Nova Always Freezes",
    "id": "enchant.stat_3269321994"
  },
  {
    "type": "enchant",
    "text": "#% increased Wither Area of Effect",
    "id": "enchant.stat_1810898461"
  },
  {
    "type": "enchant",
    "text": "#% increased Enfeeble Duration",
    "id": "enchant.stat_516587640"
  },
  {
    "type": "enchant",
    "text": "#% increased Blink Arrow Cooldown Recovery Speed",
    "id": "enchant.stat_2983274404"
  },
  {
    "type": "enchant",
    "text": "#% increased Warlord's Mark Duration",
    "id": "enchant.stat_3766479096"
  },
  {
    "type": "enchant",
    "text": "#% increased Dominating Blow Duration",
    "id": "enchant.stat_3772643988"
  },
  {
    "type": "enchant",
    "text": "#% increased Vulnerability Duration",
    "id": "enchant.stat_3229878341"
  },
  {
    "type": "enchant",
    "text": "#% increased Orb of Storms Area of Effect",
    "id": "enchant.stat_2875508213"
  },
  {
    "type": "enchant",
    "text": "#% increased Flame Dash Cooldown Recovery Speed",
    "id": "enchant.stat_1440798870"
  },
  {
    "type": "enchant",
    "text": "#% chance for Phase Run to not consume Frenzy Charges",
    "id": "enchant.stat_4259029320"
  },
  {
    "type": "enchant",
    "text": "#% increased Shockwave Totem Cast Speed",
    "id": "enchant.stat_2259906777"
  },
  {
    "type": "enchant",
    "text": "#% increased Abyssal Cry Duration",
    "id": "enchant.stat_1934891174"
  },
  {
    "type": "enchant",
    "text": "Blight has #% increased Hinder Duration",
    "id": "enchant.stat_4170725899"
  },
  {
    "type": "enchant",
    "text": "#% chance to Trigger Commandment of the Grave when your Skills or Minions Kill",
    "id": "enchant.stat_1374371477"
  },
  {
    "type": "enchant",
    "text": "#% increased Chance to consume an additional Corpse with Devouring Totem",
    "id": "enchant.stat_4189505564"
  },
  {
    "type": "enchant",
    "text": "#% increased Arctic Breath Duration",
    "id": "enchant.stat_3804575865"
  },
  {
    "type": "enchant",
    "text": "#% increased Ball Lightning Area of Effect",
    "id": "enchant.stat_788307702"
  },
  {
    "type": "enchant",
    "text": "#% increased Shock Nova Area of Effect",
    "id": "enchant.stat_565901339"
  },
  {
    "type": "enchant",
    "text": "#% increased Frost Bomb Area of Effect",
    "id": "enchant.stat_1451372148"
  },
  {
    "type": "enchant",
    "text": "#% increased Cold Snap Area of Effect",
    "id": "enchant.stat_3371538704"
  },
  {
    "type": "enchant",
    "text": "#% increased Lightning Warp Duration",
    "id": "enchant.stat_609478942"
  },
  {
    "type": "enchant",
    "text": "Blink Arrow and Blink Arrow Clones have #% increased Damage",
    "id": "enchant.stat_1967878868"
  },
  {
    "type": "enchant",
    "text": "Mirror Arrow and Mirror Arrow Clones have #% increased Attack Speed",
    "id": "enchant.stat_3653459847"
  },
  {
    "type": "enchant",
    "text": "#% increased Desecrate Cooldown Recovery Speed",
    "id": "enchant.stat_740609357"
  },
  {
    "type": "enchant",
    "text": "#% increased Charged Dash Damage",
    "id": "enchant.stat_1265055278"
  },
  {
    "type": "enchant",
    "text": "#% increased Bear Trap Damage",
    "id": "enchant.stat_1877863115"
  },
  {
    "type": "enchant",
    "text": "#% increased Convocation Cooldown Recovery Speed",
    "id": "enchant.stat_2680060124"
  },
  {
    "type": "enchant",
    "text": "#% increased Elemental Weakness Duration",
    "id": "enchant.stat_2690620076"
  },
  {
    "type": "enchant",
    "text": "#% increased Conversion Trap Cooldown Recovery Speed",
    "id": "enchant.stat_2143519574"
  },
  {
    "type": "enchant",
    "text": "#% increased Smoke Mine Duration",
    "id": "enchant.stat_3719728947"
  },
  {
    "type": "enchant",
    "text": "#% increased Lightning Warp Cast Speed",
    "id": "enchant.stat_1347575155"
  },
  {
    "type": "enchant",
    "text": "#% increased Frost Bomb Cooldown Recovery Speed",
    "id": "enchant.stat_3524326896"
  },
  {
    "type": "enchant",
    "text": "#% increased Rallying Cry Duration",
    "id": "enchant.stat_4199670252"
  },
  {
    "type": "enchant",
    "text": "#% increased Punishment Duration",
    "id": "enchant.stat_1924239636"
  },
  {
    "type": "enchant",
    "text": "#% increased Poacher's Mark Duration",
    "id": "enchant.stat_4227497218"
  },
  {
    "type": "enchant",
    "text": "#% increased Decoy Totem Life",
    "id": "enchant.stat_1631824124"
  },
  {
    "type": "enchant",
    "text": "#% increased Ancestral Protector Totem Placement Speed",
    "id": "enchant.stat_592861938"
  },
  {
    "type": "enchant",
    "text": "#% increased Storm Burst Damage",
    "id": "enchant.stat_2948719994"
  },
  {
    "type": "enchant",
    "text": "Cremation can have up to # additional Geyser at a time",
    "id": "enchant.stat_3503624267"
  },
  {
    "type": "enchant",
    "text": "#% increased Frostbite Duration",
    "id": "enchant.stat_1783696476"
  },
  {
    "type": "enchant",
    "text": "#% increased Convocation Buff Effect",
    "id": "enchant.stat_2054059315"
  },
  {
    "type": "enchant",
    "text": "#% increased Fire Trap Cooldown Recovery Speed",
    "id": "enchant.stat_1692615507"
  },
  {
    "type": "enchant",
    "text": "#% increased Riposte Damage",
    "id": "enchant.stat_4071708873"
  },
  {
    "type": "enchant",
    "text": "#% increased Shockwave Totem Area of Effect",
    "id": "enchant.stat_1153159301"
  },
  {
    "type": "enchant",
    "text": "#% to Animated Guardian Elemental Resistances",
    "id": "enchant.stat_2094281311"
  },
  {
    "type": "enchant",
    "text": "#% increased Riposte Cooldown Recovery Speed",
    "id": "enchant.stat_2287986752"
  },
  {
    "type": "enchant",
    "text": "Frostbolt Always Freezes",
    "id": "enchant.stat_2774873427"
  },
  {
    "type": "enchant",
    "text": "#% to Raised Zombie Elemental Resistances",
    "id": "enchant.stat_2871777604"
  },
  {
    "type": "enchant",
    "text": "#% increased Freeze Mine Area of Effect",
    "id": "enchant.stat_2035168499"
  },
  {
    "type": "enchant",
    "text": "Freeze Mine causes Enemies to lose an additional #% Cold Resistance while Frozen",
    "id": "enchant.stat_2933995134"
  },
  {
    "type": "enchant",
    "text": "Smoke Mine grants additional #% increased Movement Speed",
    "id": "enchant.stat_3564777492"
  },
  {
    "type": "enchant",
    "text": "#% increased Arctic Breath Area of Effect",
    "id": "enchant.stat_3816022821"
  },
  {
    "type": "enchant",
    "text": "#% increased Volatile Dead Cast Speed",
    "id": "enchant.stat_3179781611"
  },
  {
    "type": "enchant",
    "text": "#% to Ancestral Protector Totem Elemental Resistances",
    "id": "enchant.stat_1220207954"
  },
  {
    "type": "enchant",
    "text": "#% increased Conductivity Duration",
    "id": "enchant.stat_819890745"
  },
  {
    "type": "enchant",
    "text": "Fireball Always Ignites",
    "id": "enchant.stat_2098790581"
  },
  {
    "type": "enchant",
    "text": "Unearth Creates Corpses with # Level",
    "id": "enchant.stat_586167247"
  },
  {
    "type": "enchant",
    "text": "#% to increased Flame Golem Elemental Resistances",
    "id": "enchant.stat_1298820272"
  },
  {
    "type": "enchant",
    "text": "#% Sweep Knockback Chance",
    "id": "enchant.stat_4118537428"
  },
  {
    "type": "enchant",
    "text": "#% increased Unearth Damage",
    "id": "enchant.stat_3953599026"
  },
  {
    "type": "enchant",
    "text": "#% increased Searing Bond Totem Placement Speed",
    "id": "enchant.stat_708179348"
  },
  {
    "type": "enchant",
    "text": "#% increased Decoy Totem Area of Effect",
    "id": "enchant.stat_1686675991"
  },
  {
    "type": "enchant",
    "text": "#% increased Cremation Cast Speed",
    "id": "enchant.stat_2938856716"
  },
  {
    "type": "enchant",
    "text": "#% increased Vigilant Strike Fortify Duration",
    "id": "enchant.stat_2275055843"
  },
  {
    "type": "enchant",
    "text": "#% to Stone Golem Elemental Resistances",
    "id": "enchant.stat_1601558321"
  },
  {
    "type": "enchant",
    "text": "#% increased Leap Slam Area of Effect",
    "id": "enchant.stat_3367800526"
  },
  {
    "type": "enchant",
    "text": "#% increased Bear Trap Cooldown Recovery Speed",
    "id": "enchant.stat_918308703"
  },
  {
    "type": "enchant",
    "text": "Bone Offering grants an additional #% Block Chance",
    "id": "enchant.stat_3233607638"
  },
  {
    "type": "enchant",
    "text": "#% increased Rejuvenation Totem Aura Effect",
    "id": "enchant.stat_1588572574"
  },
  {
    "type": "enchant",
    "text": "#% increased Frost Wall Cooldown Recovery Speed",
    "id": "enchant.stat_2479762395"
  },
  {
    "type": "enchant",
    "text": "Lightning Trap pierces an additional Target",
    "id": "enchant.stat_3764410821"
  },
  {
    "type": "enchant",
    "text": "#% increased Reckoning Cooldown Recovery Speed",
    "id": "enchant.stat_804983774"
  },
  {
    "type": "enchant",
    "text": "#% increased Cold Snap Cooldown Recovery Speed",
    "id": "enchant.stat_2289367813"
  },
  {
    "type": "enchant",
    "text": "#% increased Flame Dash Damage",
    "id": "enchant.stat_3013068851"
  },
  {
    "type": "enchant",
    "text": "#% increased Lightning Warp Damage",
    "id": "enchant.stat_209345940"
  },
  {
    "type": "enchant",
    "text": "#% increased Devouring Totem Leech per second",
    "id": "enchant.stat_3317752680"
  },
  {
    "type": "enchant",
    "text": "#% to Lightning Golem Elemental Resistances",
    "id": "enchant.stat_2338484156"
  },
  {
    "type": "enchant",
    "text": "#% increased Frost Wall Duration",
    "id": "enchant.stat_775034903"
  },
  {
    "type": "enchant",
    "text": "Gain #% of Rejuvenation Totem Life Regeneration as extra Mana Regeneration",
    "id": "enchant.stat_1803063132"
  },
  {
    "type": "enchant",
    "text": "#% to Chaos Golem Elemental Resistances",
    "id": "enchant.stat_1946386823"
  },
  {
    "type": "enchant",
    "text": "#% increased Searing Bond Totem Elemental Resistances",
    "id": "enchant.stat_2519689029"
  },
  {
    "type": "enchant",
    "text": "#% chance to Summon an additional Skeleton Warrior with Summon Skeleton",
    "id": "enchant.stat_1040958896"
  },
  {
    "type": "enchant",
    "text": "#% increased Storm Burst Area of Effect",
    "id": "enchant.stat_3961497709"
  },
  {
    "type": "enchant",
    "text": "#% to Ice Golem Elemental Resistances",
    "id": "enchant.stat_2520825974"
  },
  {
    "type": "enchant",
    "text": "#% increased Unearth Cast Speed",
    "id": "enchant.stat_2387717928"
  },
  {
    "type": "enchant",
    "text": "# Radius of Charged Dash's final Damage Area",
    "id": "enchant.stat_2898302567"
  },
  {
    "type": "enchant",
    "text": "#% chance to Dodge Attacks if you have finished Channelling Charged Dash Recently",
    "id": "enchant.stat_2953109663"
  },
  {
    "type": "enchant",
    "text": "#% chance to Avoid interruption from Stuns while Casting Storm Burst",
    "id": "enchant.stat_884220218"
  },
  {
    "type": "enchant",
    "text": "Volatile Dead destroys up to # additional Corpse",
    "id": "enchant.stat_3034788766"
  },
  {
    "type": "enchant",
    "text": "#% increased Bodyswap Damage",
    "id": "enchant.stat_341054435"
  },
  {
    "type": "enchant",
    "text": "20% chance to Summon an additional Skeleton Warrior with Summon Skeleton",
    "id": "enchant.stat_634375806"
  },
  {
    "type": "enchant",
    "text": "#% increased Bodyswap Cast Speed",
    "id": "enchant.stat_397438226"
  },
  {
    "type": "enchant",
    "text": "#% increased Despair Curse Effect",
    "id": "enchant.stat_3185156108"
  },
  {
    "type": "enchant",
    "text": "#% increased Despair Duration",
    "id": "enchant.stat_683073695"
  },
  {
    "type": "enchant",
    "text": "Volatile Dead destroys up to 1 additional Corpse",
    "id": "enchant.stat_4006050359"
  },
  {
    "type": "enchant",
    "text": "#% increased Shield Charge Damage per Enemy Hit",
    "id": "enchant.stat_3208939528"
  },
  {
    "type": "enchant",
    "text": "#% increased Ancestral Blademaster Totem Damage",
    "id": "enchant.stat_4166834934"
  }
]