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
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
 69 files changed, 1244 insertions(+), 333 deletions(-)

diff --git config_190821_1947/Items/Primary Weapons/machinegun_ultrarares.txt config_190828_2045/Items/Primary Weapons/machinegun_ultrarares.txt
index 30dfa6b..538dc68 100644
--- config_190821_1947/Items/Primary Weapons/machinegun_ultrarares.txt	
+++ config_190828_2045/Items/Primary Weapons/machinegun_ultrarares.txt	
@@ -1,6 +1,9 @@
-- gunMounts:
+- extraTags:
+  - ultra
+  - legendary
+  gunMounts:
   - doesReloadWhenTriggerPressed: 'true'
     doesSyncChildrenWhenTriggerPressed: 'true'
     flashOffset: '0.4'
     flashPrefab: muzzleFlashEffect_generic_T9
     gunTypeConfig:
diff --git config_190821_1947/Items/Primary Weapons/sword_elementals.txt config_190828_2045/Items/Primary Weapons/sword_elementals.txt
index f381398..ffbaef6 100644
--- config_190821_1947/Items/Primary Weapons/sword_elementals.txt	
+++ config_190828_2045/Items/Primary Weapons/sword_elementals.txt	
@@ -20,15 +20,15 @@
         bulletPalette: glow
         bulletPrefab: invisibleBullet
         bulletSize: '3'
         burst: '7'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Lightning
         effectAmount: '0.1'
-        effectDamage: '9.80424'
+        effectDamage: '8.823816'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -50,15 +50,15 @@
       gunTypeConfig:
         bulletPrefab: invisibleSwordBullet
         bulletSize: '1'
         burst: '15'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Lightning
         effectAmount: '0.1'
-        effectDamage: '26.50776'
+        effectDamage: '23.856984'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -110,15 +110,15 @@
         bulletPalette: glow
         bulletPrefab: invisibleBullet
         bulletSize: '3'
         burst: '7'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Lightning
         effectAmount: '0.1'
-        effectDamage: '11.02977'
+        effectDamage: '9.926793'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -140,15 +140,15 @@
       gunTypeConfig:
         bulletPrefab: invisibleSwordBullet
         bulletSize: '1'
         burst: '15'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Lightning
         effectAmount: '0.1'
-        effectDamage: '29.82123'
+        effectDamage: '26.839107'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -200,15 +200,15 @@
         bulletPalette: glow
         bulletPrefab: invisibleBullet
         bulletSize: '3'
         burst: '7'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Lightning
         effectAmount: '0.1'
-        effectDamage: '12.73'
+        effectDamage: '11.457'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -230,15 +230,15 @@
       gunTypeConfig:
         bulletPrefab: invisibleSwordBullet
         bulletSize: '1'
         burst: '15'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Lightning
         effectAmount: '0.1'
-        effectDamage: '32.66'
+        effectDamage: '29.394'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -290,15 +290,15 @@
         bulletPalette: glow
         bulletPrefab: invisibleBullet
         bulletSize: '3'
         burst: '7'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Water
         effectAmount: '0.1'
-        effectDamage: '9.80424'
+        effectDamage: '8.823816'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -320,15 +320,15 @@
       gunTypeConfig:
         bulletPrefab: invisibleSwordBullet
         bulletSize: '1'
         burst: '15'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Water
         effectAmount: '0.1'
-        effectDamage: '26.50776'
+        effectDamage: '23.856984'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -380,15 +380,15 @@
         bulletPalette: glow
         bulletPrefab: invisibleBullet
         bulletSize: '3'
         burst: '7'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Water
         effectAmount: '0.1'
-        effectDamage: '11.02977'
+        effectDamage: '9.926793'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -410,15 +410,15 @@
       gunTypeConfig:
         bulletPrefab: invisibleSwordBullet
         bulletSize: '1'
         burst: '15'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Water
         effectAmount: '0.1'
-        effectDamage: '29.82123'
+        effectDamage: '26.839107'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -470,15 +470,15 @@
         bulletPalette: glow
         bulletPrefab: invisibleBullet
         bulletSize: '3'
         burst: '7'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Water
         effectAmount: '0.1'
-        effectDamage: '12.73'
+        effectDamage: '11.457'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -500,15 +500,15 @@
       gunTypeConfig:
         bulletPrefab: invisibleSwordBullet
         bulletSize: '1'
         burst: '15'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Water
         effectAmount: '0.1'
-        effectDamage: '32.66'
+        effectDamage: '29.394'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -560,15 +560,15 @@
         bulletPalette: glow
         bulletPrefab: invisibleBullet
         bulletSize: '3'
         burst: '7'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Burn
         effectAmount: '0.1'
-        effectDamage: '9.80424'
+        effectDamage: '8.823816'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -590,15 +590,15 @@
       gunTypeConfig:
         bulletPrefab: invisibleSwordBullet
         bulletSize: '1'
         burst: '15'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Burn
         effectAmount: '0.1'
-        effectDamage: '26.50776'
+        effectDamage: '23.856984'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -650,15 +650,15 @@
         bulletPalette: glow
         bulletPrefab: invisibleBullet
         bulletSize: '3'
         burst: '7'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Burn
         effectAmount: '0.1'
-        effectDamage: '11.02977'
+        effectDamage: '9.926793'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -680,15 +680,15 @@
       gunTypeConfig:
         bulletPrefab: invisibleSwordBullet
         bulletSize: '1'
         burst: '15'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Burn
         effectAmount: '0.1'
-        effectDamage: '29.82123'
+        effectDamage: '26.839107'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -740,15 +740,15 @@
         bulletPalette: glow
         bulletPrefab: invisibleBullet
         bulletSize: '3'
         burst: '7'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Burn
         effectAmount: '0.1'
-        effectDamage: '12.73'
+        effectDamage: '11.457'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -770,15 +770,15 @@
       gunTypeConfig:
         bulletPrefab: invisibleSwordBullet
         bulletSize: '1'
         burst: '15'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Burn
         effectAmount: '0.1'
-        effectDamage: '32.66'
+        effectDamage: '29.394'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -830,15 +830,15 @@
         bulletPalette: glow
         bulletPrefab: invisibleBullet
         bulletSize: '3'
         burst: '7'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Poison
         effectAmount: '0.1'
-        effectDamage: '9.80424'
+        effectDamage: '8.823816'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -860,15 +860,15 @@
       gunTypeConfig:
         bulletPrefab: invisibleSwordBullet
         bulletSize: '1'
         burst: '15'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Poison
         effectAmount: '0.1'
-        effectDamage: '26.50776'
+        effectDamage: '23.856984'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -920,15 +920,15 @@
         bulletPalette: glow
         bulletPrefab: invisibleBullet
         bulletSize: '3'
         burst: '7'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Poison
         effectAmount: '0.1'
-        effectDamage: '11.02977'
+        effectDamage: '9.926793'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -950,15 +950,15 @@
       gunTypeConfig:
         bulletPrefab: invisibleSwordBullet
         bulletSize: '1'
         burst: '15'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Poison
         effectAmount: '0.1'
-        effectDamage: '29.82123'
+        effectDamage: '26.839107'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -1010,15 +1010,15 @@
         bulletPalette: glow
         bulletPrefab: invisibleBullet
         bulletSize: '3'
         burst: '7'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Poison
         effectAmount: '0.1'
-        effectDamage: '12.73'
+        effectDamage: '11.457'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -1040,15 +1040,15 @@
       gunTypeConfig:
         bulletPrefab: invisibleSwordBullet
         bulletSize: '1'
         burst: '15'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Poison
         effectAmount: '0.1'
-        effectDamage: '32.66'
+        effectDamage: '29.394'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -1100,15 +1100,15 @@
         bulletPalette: glow
         bulletPrefab: invisibleBullet
         bulletSize: '3'
         burst: '7'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Slow
         effectAmount: '0.1'
-        effectDamage: '9.80424'
+        effectDamage: '8.823816'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -1130,15 +1130,15 @@
       gunTypeConfig:
         bulletPrefab: invisibleSwordBullet
         bulletSize: '1'
         burst: '15'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Slow
         effectAmount: '0.1'
-        effectDamage: '26.50776'
+        effectDamage: '23.856984'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -1190,15 +1190,15 @@
         bulletPalette: glow
         bulletPrefab: invisibleBullet
         bulletSize: '3'
         burst: '7'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Slow
         effectAmount: '0.1'
-        effectDamage: '11.02977'
+        effectDamage: '9.926793'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -1220,15 +1220,15 @@
       gunTypeConfig:
         bulletPrefab: invisibleSwordBullet
         bulletSize: '1'
         burst: '15'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Slow
         effectAmount: '0.1'
-        effectDamage: '29.82123'
+        effectDamage: '26.839107'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -1280,15 +1280,15 @@
         bulletPalette: glow
         bulletPrefab: invisibleBullet
         bulletSize: '3'
         burst: '7'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Slow
         effectAmount: '0.1'
-        effectDamage: '12.73'
+        effectDamage: '11.457'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
@@ -1310,15 +1310,15 @@
       gunTypeConfig:
         bulletPrefab: invisibleSwordBullet
         bulletSize: '1'
         burst: '15'
         cooldown: '1.5'
-        damage: '0.1'
+        damage: '0.09'
         doesReloadNonemptyClips: 'true'
         effect: Slow
         effectAmount: '0.1'
-        effectDamage: '32.66'
+        effectDamage: '29.394'
         effectTime: '0.1'
         isPiercing: 'true'
         lifetime: '0.25'
         multi: '1'
         multiOffset:
diff --git config_190821_1947/Texts/en-US/bark.txt config_190828_2045/Texts/en-US/bark.txt
index 55980b6..a568d7f 100644
--- config_190821_1947/Texts/en-US/bark.txt
+++ config_190828_2045/Texts/en-US/bark.txt
@@ -1663,10 +1663,13 @@ smokeboss_1:
   - text: “Keep the mice coming!”
     weight: '1'
   - text: “Join the rodents and sacrifice yourself!”
     weight: '1'
   - weight: '8'
+smokeboss_curse:
+  randomOptions:
+  - text: You are cursed...
 smokeboss_feed:
   randomOptions:
   - text: Feed, my children!
     weight: '1'
 sneezyDEATH:
@@ -1729,29 +1732,41 @@ sunfoxleaderchill:
   - text: Identify yourselves!
   - weight: '3'
 tankDEATH:
   randomOptions:
   - text: Oh. Sweet Light.
-temple_cultist_cure:
+temple_cultist_curse_blind:
   randomOptions:
-  - text: '<color=#55ff55ff>Cure</color><color=#ffffffff>: +500% Health Regen</color>'
+  - text: '<color=#855e59ff>Blind</color><color=#ffffffff>: -40% Camera View</color>'
     weight: '1'
-temple_cultist_curse_blind:
+temple_cultist_curse_combust:
   randomOptions:
-  - text: '<color=#050405ff>Blind</color><color=#ffffffff>: -50% Camera View</color>'
+  - text: '<color=#855e59ff>Combust</color><color=#ffffffff>: +50% Burn Susceptibility</color>'
+    weight: '1'
+temple_cultist_curse_cure:
+  randomOptions:
+  - text: '<color=#55ff55ff>Cure</color><color=#ffffffff>: +500% Health Regen</color>'
     weight: '1'
 temple_cultist_curse_frail:
   randomOptions:
-  - text: '<color=#050405ff>Frail</color><color=#ffffffff>: +50% Damage Taken</color>'
+  - text: '<color=#855e59ff>Frail</color><color=#ffffffff>: +50% Damage Taken</color>'
     weight: '1'
 temple_cultist_curse_hinder_dualstick:
   randomOptions:
-  - text: '<color=#050405ff>Hinder</color><color=#ffffffff>: -95% Max Turn Rate</color>'
+  - text: '<color=#855e59ff>Hinder</color><color=#ffffffff>: -50% Max Turn Rate</color>'
     weight: '1'
 temple_cultist_curse_hinder_plane:
   randomOptions:
-  - text: '<color=#050405ff>Hinder</color><color=#ffffffff>: -85% Max Turn Rate</color>'
+  - text: '<color=#855e59ff>Hinder</color><color=#ffffffff>: -50% Max Turn Rate</color>'
+    weight: '1'
+temple_cultist_curse_silence:
+  randomOptions:
+  - text: '<color=#855e59ff>Silence</color><color=#ffffffff>: -90% Steam</color>'
+    weight: '1'
+temple_cultist_curse_stagnate:
+  randomOptions:
+  - text: '<color=#855e59ff>Stagnate</color><color=#ffffffff>: -100% Armor Regen, -100% Steam Regen</color>'
     weight: '1'
 teslahqDEATH:
   randomOptions:
   - text: 'Even in death,
 
diff --git config_190821_1947/Texts/en-US/buffs.txt config_190828_2045/Texts/en-US/buffs.txt
index 1990105..245ca8e 100644
--- config_190821_1947/Texts/en-US/buffs.txt
+++ config_190828_2045/Texts/en-US/buffs.txt
@@ -42,19 +42,25 @@ dungeonmod_touchy:
   title: Touchy
 meowza2_silence_long:
   title: Silence
 meowza2_silence_short:
   title: Silence
+temple_cultist_cure:
+  title: Curse Immunity + Regen
 temple_cultist_curse_blind:
   title: Blind
-temple_cultist_curse_cure:
-  title: Cure
+temple_cultist_curse_combust:
+  title: Combust
 temple_cultist_curse_frail:
   title: Frail
 temple_cultist_curse_hinder_dualstick:
   title: Hinder
 temple_cultist_curse_hinder_plane:
   title: Hinder
+temple_cultist_curse_silence:
+  title: Silence
+temple_cultist_curse_stagnate:
+  title: Stagnate
 test_curse:
   title: Cursed
 test_slow:
   title: Slowed
diff --git config_190821_1947/Texts/en-US/quests.txt config_190828_2045/Texts/en-US/quests.txt
index 549a05b..c2e7c9a 100644
--- config_190821_1947/Texts/en-US/quests.txt
+++ config_190828_2045/Texts/en-US/quests.txt
@@ -1596,11 +1596,11 @@ tut_02:
 tut_03:
   description: Empire is building a new base in our territory. Infiltrate and destroy it.
   dialogueOnFirstEncounterGoal0:
   - catsoldier1: You've uncovered our plan.
   - catsoldier1: But you won't escape alive.
-  goal_0: Infiltrate the enemy base and <color=#FBB040>destroy their leader</color>.
+  goal_0: Find a dropship to the <color=#FBB040>Forward Base</color> and <color=#FBB040>destroy their leader</color>.
   title: Forward Base
 tut_04:
   description: Track down where the base supplies were coming from. This may be a bigger Imperial operation.
   dialogueOnFirstEncounterGoal0:
   - sergeant: That's the supply depot. Take it out!
diff --git config_190821_1947/Texts/en-US/stats.txt config_190828_2045/Texts/en-US/stats.txt
index 1e12d8d..c7e4b15 100644
--- config_190821_1947/Texts/en-US/stats.txt
+++ config_190828_2045/Texts/en-US/stats.txt
@@ -35,13 +35,13 @@ maxSpeed: Max Speed
 maxTurnRate: Turn Rate
 minSpeed: Min Speed
 secondaryCooldownMod: Secondary Cooldown
 secondaryDamageMod: Secondary Damage
 secondaryEnergyCostMod: Secondary Steam Cost
-spawnCooldownMod: Spawn Cooldown
-spawnDamageMod: Spawn Damage
-spawnHealthMod: Spawn Health
-spawnRangeMod: Spawn Range
-spawnTurnRateMod: Spawn Turn Rate
+spawnCooldownMod: Spawn's Weapon Cooldown
+spawnDamageMod: Spawn's Weapon Damage
+spawnHealthMod: Spawn's Health
+spawnRangeMod: Spawn's Weapon Range
+spawnTurnRateMod: Spawn's Weapon Turn Rate
 superspeedFactor: Super Speed
 vortexSizeMod: Vortex Size
 xpMod: XP Gain
diff --git config_190821_1947/Texts/en-US/ui.txt config_190828_2045/Texts/en-US/ui.txt
index 5dd4fd3..3763ac4 100644
--- config_190821_1947/Texts/en-US/ui.txt
+++ config_190828_2045/Texts/en-US/ui.txt
@@ -282,11 +282,11 @@ email_validation_info_continue: After successfully validating your email you can
 email_validation_info_main: We sent you an email with the link to validate your address. If you can't find it please check your spam folder (Look for 'Steambirds Alliance account activation').
 email_validation_info_resend: If you just want to resend the validation link click here.
 email_validation_title: Email validation
 emote_purple_fireworks: Purple fireworks
 error_dialog_account_maintenance: Account support is currently underway! Please check back again later. It should not take that long.
-error_dialog_already_connected: You can not connect because your account is already connected. Please wait a couple of minutes and try again. If this persists, contact support. Thanks.
+error_dialog_already_connected: "Your account is already connected to Steambirds. If you have the game running on another machine, please terminate it there first. But if this seems to be an error, the following steps can help:\n\n1) Quit the game, quit Steam, then restart Steam and restart the game. \n\n2) If that doesn't work, quit the game again and don't try to restart it for 10 minutes. Then try again. If the first step failed, this step is often enough to resolve the issue.\n\n3) If you try the above and it still doesn't work, you can email support@spryfox.com with your in-game username and we will nudge the database so that your account gets unstuck"
 error_dialog_connection_failure: We seem to be having trouble with the network between your computer and our servers. See if any other programs are making heavy use of the network!
 error_dialog_deliberate_disconnection: 'The server doesn''t want to talk to you.  It told us: {0}.  If you believe this is a bug, please report it via the bug form.'
 error_dialog_idle_kicked: We disconnected you because you were idle. Please launch the game again when you're ready to play again.
 error_dialog_kicked: You have been kicked.  Why?  Only you, and the person who kicked you, know.
 error_dialog_lnc00: Error LNC00. Can't find a Rebel City. Probably no connectivity to the internet, or the backend is down. Please check your connectivity and try again.
diff --git config_190821_1947/Texts/en-US/units.txt config_190828_2045/Texts/en-US/units.txt
index 2891248..4019f0d 100644
--- config_190821_1947/Texts/en-US/units.txt
+++ config_190828_2045/Texts/en-US/units.txt
@@ -1078,10 +1078,20 @@ tankmine: Dogmine
 tankmissile: Dog Missile
 tankturret: Big Dog
 tarantulaleader: Tarantula
 tarantulaleg: Tarantula Leg
 tavernbeacon: Mission Beacon
+temple_altar: Altar of Bast
+temple_banishee: Banishee
+temple_cultist: Bishop
+temple_cultistBIG: High Priestess Tiffany
+temple_droneBIG: Godly Drone
+temple_fireball: Fire Ball
+temple_spawner: Summoning Circle
+temple_spawner_tower: Summoning Circle
+temple_spawner_tower2: Summoning Circle
+temple_trooper: Priest
 templedrone: Temple Drone
 templedungeondestroyablewall: Wall
 templedungeondestroyablewallstrong: Wall
 templedungeonsign1: Intelligence
 templedungeonsign2: Intelligence
diff --git config_190821_1947/Texts/es/bark.txt config_190828_2045/Texts/es/bark.txt
index 2b388d0..69360de 100644
--- config_190821_1947/Texts/es/bark.txt
+++ config_190828_2045/Texts/es/bark.txt
@@ -1607,10 +1607,13 @@ smokeboss_1:
   - text: '"¡Traed más ratones!".'
     weight: '1'
   - text: '"¡Sacrificaos con los roedores!".'
     weight: '1'
   - weight: '8'
+smokeboss_curse:
+  randomOptions:
+  - text: La maldición te alcanza...
 smokeboss_feed:
   randomOptions:
   - text: '"¡Comed, hijos míos!".'
     weight: '1'
 sneezyDEATH:
@@ -1673,29 +1676,41 @@ sunfoxleaderchill:
   - text: ¡Identificaos!
   - weight: '3'
 tankDEATH:
   randomOptions:
   - text: Oh, dulce luz.
-temple_cultist_cure:
+temple_cultist_curse_blind:
   randomOptions:
-  - text: '<color=#55ff55ff>Curar</color><color=#ffffffff>: +500 % de regeneración de salud</color>'
+  - text: '<color=#855e59ff>Cegar</color><color=#ffffffff>: -40 % de vista de cámara</color>'
     weight: '1'
-temple_cultist_curse_blind:
+temple_cultist_curse_combust:
   randomOptions:
-  - text: '<color=#050405ff>Cegar</color><color=#ffffffff>: -50 % de vista de cámara</color>'
+  - text: '<color=#855e59ff>Combustión</color><color=#ffffffff>: +50 % de propensión a arder</color>'
+    weight: '1'
+temple_cultist_curse_cure:
+  randomOptions:
+  - text: '<color=#55ff55ff>Curar</color><color=#ffffffff>: +500 % de regeneración de salud</color>'
     weight: '1'
 temple_cultist_curse_frail:
   randomOptions:
-  - text: '<color=#050405ff>Fragilidad</color><color=#ffffffff>: +50 % de daño sufrido</color>'
+  - text: '<color=#855e59ff>Fragilidad</color><color=#ffffffff>: +50 % de daño sufrido</color>'
     weight: '1'
 temple_cultist_curse_hinder_dualstick:
   randomOptions:
-  - text: '<color=#050405ff>Dificultar</color><color=#ffffffff>: -95 % de índice de giro máximo</color>'
+  - text: '<color=#855e59ff>Dificultar</color><color=#ffffffff>: -50 % de índice de giro máximo</color>'
     weight: '1'
 temple_cultist_curse_hinder_plane:
   randomOptions:
-  - text: '<color=#050405ff>Dificultar</color><color=#ffffffff>: -85 % de índice de giro máximo</color>'
+  - text: '<color=#855e59ff>Dificultar</color><color=#ffffffff>: -50 % de índice de giro máximo</color>'
+    weight: '1'
+temple_cultist_curse_silence:
+  randomOptions:
+  - text: '<color=#855e59ff>Silencio</color><color=#ffffffff>: -90 % de vapor</color>'
+    weight: '1'
+temple_cultist_curse_stagnate:
+  randomOptions:
+  - text: '<color=#855e59ff>Estancamiento</color><color=#ffffffff>: -100 % de regeneración de blindaje, -100 % de regeneración de vapor</color>'
     weight: '1'
 teslahqDEATH:
   randomOptions:
   - text: "Jamás dejamos de observarte,\n aun estando muertos."
 thiefchest_0:
diff --git config_190821_1947/Texts/es/buffs.txt config_190828_2045/Texts/es/buffs.txt
index 9ddd8be..4cbf4a2 100644
--- config_190821_1947/Texts/es/buffs.txt
+++ config_190828_2045/Texts/es/buffs.txt
@@ -42,19 +42,25 @@ dungeonmod_touchy:
   title: Susceptible
 meowza2_silence_long:
   title: Silencio
 meowza2_silence_short:
   title: Silencio
+temple_cultist_cure:
+  title: Inmunidad a la maldición + regeneración
 temple_cultist_curse_blind:
   title: Cegar
-temple_cultist_curse_cure:
-  title: Curar
+temple_cultist_curse_combust:
+  title: Combustión
 temple_cultist_curse_frail:
   title: Fragilidad
 temple_cultist_curse_hinder_dualstick:
   title: Dificultar
 temple_cultist_curse_hinder_plane:
   title: Dificultar
+temple_cultist_curse_silence:
+  title: Silencio
+temple_cultist_curse_stagnate:
+  title: Estancamiento
 test_curse:
   title: Maldito
 test_slow:
   title: Frenado
diff --git config_190821_1947/Texts/es/quests.txt config_190828_2045/Texts/es/quests.txt
index 2f6a833..3d2d76f 100644
--- config_190821_1947/Texts/es/quests.txt
+++ config_190828_2045/Texts/es/quests.txt
@@ -1580,11 +1580,11 @@ tut_02:
 tut_03:
   description: El Imperio está construyendo una nueva base en nuestro territorio. Infíltrate y destrúyela.
   dialogueOnFirstEncounterGoal0:
   - catsoldier1: Has descubierto nuestro plan.
   - catsoldier1: Pero no escaparás con vida.
-  goal_0: Infíltrate en la base enemiga y <color=#FBB040>elimina a su líder</color>.
+  goal_0: Busca un transbordador para entrar en la <color=#FBB040>base avanzada</color> y <color=#FBB040>elimina a su líder</color>.
   title: Base avanzada
 tut_04:
   description: Averigua de dónde provienen los suministros de la base. Tal vez sea parte de una operación mayor.
   dialogueOnFirstEncounterGoal0:
   - sergeant: Es el depósito de suministros. ¡Destrúyelo!
diff --git config_190821_1947/Texts/es/stats.txt config_190828_2045/Texts/es/stats.txt
index af3ed65..8a061f8 100644
--- config_190821_1947/Texts/es/stats.txt
+++ config_190828_2045/Texts/es/stats.txt
@@ -35,13 +35,13 @@ maxSpeed: Velocidad máxima
 maxTurnRate: Índice de giro
 minSpeed: Velocidad mínima
 secondaryCooldownMod: Recuperación de secundaria
 secondaryDamageMod: Daño de secundaria
 secondaryEnergyCostMod: Coste de vapor de secundaria
-spawnCooldownMod: Recuperación de aparición
-spawnDamageMod: Daño de aparición
+spawnCooldownMod: Recuperación de arma de aparición
+spawnDamageMod: Daño de arma de aparición
 spawnHealthMod: Salud de aparición
-spawnRangeMod: Alcance de aparición
-spawnTurnRateMod: Índice de giro de aparición
+spawnRangeMod: Alcance de arma de aparición
+spawnTurnRateMod: Índice de giro de arma de aparición
 superspeedFactor: Supervelocidad
 vortexSizeMod: Tamaño de vórtice
 xpMod: PE obtenidos
diff --git config_190821_1947/Texts/es/ui.txt config_190828_2045/Texts/es/ui.txt
index 3b192cb..8c9f870 100644
--- config_190821_1947/Texts/es/ui.txt
+++ config_190828_2045/Texts/es/ui.txt
@@ -243,11 +243,11 @@ email_validation_info_continue: Podrás seguir jugando tras validar tu correo el
 email_validation_info_main: Te hemos enviado un correo electrónico con el enlace para validar tu dirección. Si no lo encuentras, consulta tu carpeta de correo no deseado (busca el mensaje "Activación de cuenta de Steambirds Alliance").
 email_validation_info_resend: Si quieres reenviar el enlace de validación, haz clic aquí.
 email_validation_title: Validación de correo electrónico
 emote_purple_fireworks: Pirotecnia morada
 error_dialog_account_maintenance: ¡Estamos proporcionando asistencia para la cuenta! Vuelve más tarde. No debería tardar mucho.
-error_dialog_already_connected: No puedes conectarte porque tu cuenta ya está conectada. Espera unos minutos y vuelve a intentarlo. Si el problema persiste, contacta con el servicio de asistencia. Gracias.
+error_dialog_already_connected: "Tu cuenta ya está conectada a Steambirds. Si el juego se está ejecutando en otro ordenador, ciérralo antes de continuar. Si crees que se trata de un error, sigue estas instrucciones para intentar solucionar el problema:\n \n 1) Cierra el juego, cierra Steam y, a continuación, reinicia Steam y el juego. \n \n 2) Si esto no soluciona el problema, vuelve a cerrar el juego y no lo reinicies hasta pasados 10 minutos. Luego, inténtalo de nuevo. Si el paso 1 no ha solucionado el problema, este suele solucionarse siguiendo el paso 2.\n \n 3) Si los dos pasos anteriores no solucionan el problema, puedes enviar un correo electrónico a support@spryfox.com indicando tu nombre de usuario en el juego para que desbloqueemos tu cuenta."
 error_dialog_connection_failure: Parece que hay problemas de red entre tu ordenador y nuestros servidores. ¡Comprueba si otros programas están realizando un uso intenso de tu red!
 error_dialog_deliberate_disconnection: 'El servidor no quiere comunicarse contigo. Ha dicho esto: {0}. Si crees que se trata de un error, envíanos un informe a través del formulario de errores.'
 error_dialog_idle_kicked: Te hemos desconectado por inactividad. Vuelve a iniciar el juego cuando estés preparado para volver a jugar.
 error_dialog_kicked: Te han expulsado. ¿Por qué? Eso solo lo sabéis tú y la persona que te ha expulsado.
 error_dialog_lnc00: Error LNC00. No se encuentra ninguna Ciudad Rebelde. Es probable que no tengas conexión a Internet o el soporte no esté operativo. Comprueba tu conexión y vuelve a intentarlo.
@@ -469,16 +469,16 @@ itempickup_tier_ultrarare_raw: Ultrarraro
 itempickup_tierlimited: <color=#ffaa55ff>Utilizable en nivel {0}</color>
 itempickup_tradable_only: <color=#DCBD67FF>Objeto de comercio común</color>
 itempickup_unusable: <color=#ff5555ff>No utilizable con avión</color>
 itempickup_unusable_classes: '<color=#ff5555ff>Solo utilizable con: {0}</color>'
 itempickup_uses: 'Usos: {0}'
-language_change_restart_screen_close_game: Cerrar juego
+language_change_restart_screen_close_game: Cerrar el juego
 language_change_restart_screen_close_game_key_command: <color=#FBB040>[<action:43>]</color> {0}
-language_change_restart_screen_description: El juego debe reiniciarse
-language_change_restart_screen_not_yet: Aún no
+language_change_restart_screen_description: Es necesario reiniciar el cliente.
+language_change_restart_screen_not_yet: Todavía no
 language_change_restart_screen_not_yet_key_command: <color=#FBB040>[<action:44>]</color> {0}
-language_change_restart_screen_title: El cambio de idioma está pendiente
+language_change_restart_screen_title: Cambio de idioma pendiente
 legal_accept: Aceptar y continuar
 legal_accept_incomplete: Lee y acepta para continuar...
 levelup_notify_header: <size=24>Nivel {0}</size>
 levelup_notify_stat_add: '{0} +{1:0.##}'
 levelup_notify_stat_multiply: '{0} +{1:0.#} %'
@@ -1007,11 +1007,11 @@ quick_chat_title_Wings: Alas
 quick_chat_whee: ¡Uiii!
 radar_mission: "Objetivo\n <color=#ffa500ff>{0}</color>"
 radar_teleport: '[<action:7>] para teletransportarte'
 radar_teleport_click: "[<action:7>] o haz clic\n para teletransportarte"
 region:
-  AS.SG: este de Asia
+  AS.SG: Asia Oriental
   EU.DE: Europa
   NA.US: Norteamérica
   OC.AU: Australia
 report_cmd_chat: Informar sobre chat
 report_cmd_cheating: Informar sobre trampas
diff --git config_190821_1947/Texts/es/units.txt config_190828_2045/Texts/es/units.txt
index ccdcb7b..d5b9435 100644
--- config_190821_1947/Texts/es/units.txt
+++ config_190828_2045/Texts/es/units.txt
@@ -1078,10 +1078,20 @@ tankmine: Mina canina
 tankmissile: Misil canino
 tankturret: Perro grande
 tarantulaleader: Tarántula
 tarantulaleg: Pata de tarántula
 tavernbeacon: Baliza de misión
+temple_altar: Altar de Bast
+temple_banishee: Duenliminado
+temple_cultist: Obispo
+temple_cultistBIG: Suma sacerdotisa Tiffany
+temple_droneBIG: Dron divino
+temple_fireball: Bola de fuego
+temple_spawner: Círculo de invocación
+temple_spawner_tower: Círculo de invocación
+temple_spawner_tower2: Círculo de invocación
+temple_trooper: Sacerdote
 templedrone: Dron de templo
 templedungeondestroyablewall: Muro
 templedungeondestroyablewallstrong: Muro
 templedungeonsign1: Inteligencia
 templedungeonsign2: Inteligencia
diff --git config_190821_1947/Texts/fr/bark.txt config_190828_2045/Texts/fr/bark.txt
index 6d20689..75afdcf 100644
--- config_190821_1947/Texts/fr/bark.txt
+++ config_190828_2045/Texts/fr/bark.txt
@@ -1607,10 +1607,13 @@ smokeboss_1:
   - text: '"Qu''on continue à envoyer des souris "'
     weight: '1'
   - text: '"Joignez-vous aux rongeurs et sacrifiez-vous !"'
     weight: '1'
   - weight: '8'
+smokeboss_curse:
+  randomOptions:
+  - text: Vous êtes maudit...
 smokeboss_feed:
   randomOptions:
   - text: Mangez, mes enfants !
     weight: '1'
 sneezyDEATH:
@@ -1673,29 +1676,41 @@ sunfoxleaderchill:
   - text: Identifiez-vous !
   - weight: '3'
 tankDEATH:
   randomOptions:
   - text: Oh, la douce lumière...
-temple_cultist_cure:
+temple_cultist_curse_blind:
   randomOptions:
-  - text: '<color=#55ff55ff>Remède</color><color=#ffffffff> : +500 % régén. santé</color>'
+  - text: '<color=#855e59ff>Aveuglement</color><color=#ffffffff> : -40 % vue de caméra</color>'
     weight: '1'
-temple_cultist_curse_blind:
+temple_cultist_curse_combust:
   randomOptions:
-  - text: '<color=#050405ff>Aveuglement</color><color=#ffffffff> : -50 % vue de caméra</color>'
+  - text: '<color=#855e59ff>Combustion</color><color=#ffffffff> : +50 % susceptibilité à l''incendie</color>'
+    weight: '1'
+temple_cultist_curse_cure:
+  randomOptions:
+  - text: '<color=#55ff55ff>Remède</color><color=#ffffffff> : +500 % régén. santé</color>'
     weight: '1'
 temple_cultist_curse_frail:
   randomOptions:
-  - text: '<color=#050405ff>Fragilité</color><color=#ffffffff> : +50 % dégâts subis.</color>'
+  - text: '<color=#855e59ff>Fragilité</color><color=#ffffffff> : +50 % dégâts subis.</color>'
     weight: '1'
 temple_cultist_curse_hinder_dualstick:
   randomOptions:
-  - text: '<color=#050405ff>Entrave</color><color=#ffffffff>: -95 % taux de virage max.</color>'
+  - text: '<color=#855e59ff>Entrave</color><color=#ffffffff>: -50 % taux de virage max.</color>'
     weight: '1'
 temple_cultist_curse_hinder_plane:
   randomOptions:
-  - text: '<color=#050405ff>Entrave</color><color=#ffffffff>: -85 % taux de virage max.</color>'
+  - text: '<color=#855e59ff>Entrave</color><color=#ffffffff>: -50 % taux de virage max.</color>'
+    weight: '1'
+temple_cultist_curse_silence:
+  randomOptions:
+  - text: '<color=#855e59ff>Silence</color><color=#ffffffff> : -90 % vapeur</color>'
+    weight: '1'
+temple_cultist_curse_stagnate:
+  randomOptions:
+  - text: '<color=#855e59ff>Stagnation</color><color=#ffffffff> : -100 % régénération de blindage, -100% régénération de vapeur</color>'
     weight: '1'
 teslahqDEATH:
   randomOptions:
   - text: "Même dans la mort,\n nous continuons à vous observer."
 thiefchest_0:
diff --git config_190821_1947/Texts/fr/buffs.txt config_190828_2045/Texts/fr/buffs.txt
index 00c48b4..3f5729d 100644
--- config_190821_1947/Texts/fr/buffs.txt
+++ config_190828_2045/Texts/fr/buffs.txt
@@ -42,19 +42,25 @@ dungeonmod_touchy:
   title: Sensibilité
 meowza2_silence_long:
   title: Silence
 meowza2_silence_short:
   title: Silence
+temple_cultist_cure:
+  title: Immunité aux malédictions + régénération
 temple_cultist_curse_blind:
   title: Aveuglement
-temple_cultist_curse_cure:
-  title: Remède
+temple_cultist_curse_combust:
+  title: Combustion
 temple_cultist_curse_frail:
   title: Fragilité
 temple_cultist_curse_hinder_dualstick:
   title: Entrave
 temple_cultist_curse_hinder_plane:
   title: Entrave
+temple_cultist_curse_silence:
+  title: Silence
+temple_cultist_curse_stagnate:
+  title: Stagnation
 test_curse:
   title: Malédiction
 test_slow:
   title: Ralentissement
diff --git config_190821_1947/Texts/fr/quests.txt config_190828_2045/Texts/fr/quests.txt
index 7afba3d..16e4343 100644
--- config_190821_1947/Texts/fr/quests.txt
+++ config_190828_2045/Texts/fr/quests.txt
@@ -1580,11 +1580,11 @@ tut_02:
 tut_03:
   description: L'empire bâtit une autre base sur notre territoire. Infiltrez-vous et détruisez-la.
   dialogueOnFirstEncounterGoal0:
   - catsoldier1: Vous avez découvert notre plan.
   - catsoldier1: Mais cela va vous coûter la vie.
-  goal_0: Infiltrez-vous dans la base ennemie et <color=#FBB040>éliminez son chef</color>.
+  goal_0: Trouvez un transport menant à la <color=#FBB040>base avancée</color> et <color=#FBB040>éliminez-en le chef</color>.
   title: Base avancée
 tut_04:
   description: Trouvez d'où venait le ravitaillement de la base. Il y a peut-être une opération impériale plus vaste.
   dialogueOnFirstEncounterGoal0:
   - sergeant: C'est le dépôt logistique. Détruisez-le !
diff --git config_190821_1947/Texts/fr/stats.txt config_190828_2045/Texts/fr/stats.txt
index b9ef04a..963ccb8 100644
--- config_190821_1947/Texts/fr/stats.txt
+++ config_190828_2045/Texts/fr/stats.txt
@@ -35,13 +35,13 @@ maxSpeed: Vitesse max.
 maxTurnRate: Taux de virage
 minSpeed: Vitesse min.
 secondaryCooldownMod: Rechargement secondaire
 secondaryDamageMod: Dégâts secondaires
 secondaryEnergyCostMod: Coût de secondaire en vapeur
-spawnCooldownMod: Rechargement d'apparition
-spawnDamageMod: Dégâts d'apparition
+spawnCooldownMod: Rechargement d'armement d'apparition
+spawnDamageMod: Dégâts d'armement d'apparition
 spawnHealthMod: Santé d'apparition
-spawnRangeMod: Portée d'apparition
-spawnTurnRateMod: Taux de virage d'apparition
+spawnRangeMod: Portée d'armement d'apparition
+spawnTurnRateMod: Taux de rotation d'armement d'apparition
 superspeedFactor: Super vitesse
 vortexSizeMod: Taille de vortex
 xpMod: Gain en XP
diff --git config_190821_1947/Texts/fr/ui.txt config_190828_2045/Texts/fr/ui.txt
index 74a3ebf..27ce883 100644
--- config_190821_1947/Texts/fr/ui.txt
+++ config_190828_2045/Texts/fr/ui.txt
@@ -243,11 +243,11 @@ email_validation_info_continue: Après avoir validé votre adresse e-mail, vous
 email_validation_info_main: Nous vous avons envoyé un e-mail contenant un lien permettant de valider votre adresse. Si vous ne le trouvez pas, vérifiez dans votre dossier de courriels indésirables (cherchez "Activation de compte Steambirds Alliance" ou "Steambirds Alliance account activation").
 email_validation_info_resend: Si vous désirez simplement un renvoi du lien de validation, cliquez ici.
 email_validation_title: Validation d'adresse e-mail
 emote_purple_fireworks: Feu d'artifice pourpre
 error_dialog_account_maintenance: L'assistance de compte est en cours de préparation ! Veuillez revenir ultérieurement. Ce ne devrait pas être très long.
-error_dialog_already_connected: Vous ne pouvez vous connecter parce que votre compte est déjà connecté. Veuillez patienter quelques minutes et réessayer. Si le problème persiste, contactez l'assistance. Merci.
+error_dialog_already_connected: "Votre compte est déjà connecté à Steambirds. Si vous exécutez le jeu sur une autre machine, veuillez d'abord l'arrêter. En revanche, s'il semble s'agir d'une erreur, essayez d'appliquer les étapes suivantes :\n \n 1) Quittez le jeu, quittez Steam puis redémarrez le jeu. \n \n 2) En cas d'échec, quittez de nouveau le jeu et ne le redémarrez pas avant 10 minutes. Ensuite, essayez de nouveau. Si la première étape est sans effet, celle-ci suffit souvent à résoudre le problème.\n \n 3) Si ces deux premières tentatives n'ont aucun effet positif, envoyez à support@spryfox.com un e-mail contenant votre nom d'utilisateur (pseudo) et nous nous plongerons dans la base de données afin de débloquer votre compte."
 error_dialog_connection_failure: Apparemment, nous rencontrons des difficultés liées au réseau entre votre ordinateur et nos serveurs. Voyez si d'autres logiciels ne font pas un usage élevé du réseau !
 error_dialog_deliberate_disconnection: 'Le serveur ne veut pas vous parler. Il nous a dit ceci : {0}. Si vous pensez qu''il s''agit d''un bogue, indiquez-le-nous à l''aide du formulaire de bogues.'
 error_dialog_idle_kicked: Vous avez été déconnecté en raison de votre inactivité. Redémarrez le jeu lorsque vous serez prêt à jouer de nouveau.
 error_dialog_kicked: Vous avez été exclu. Pourquoi ? Les seuls à le savoir sont vous et la personne qui vous a exclu.
 error_dialog_lnc00: Erreur LNC00. Rebel City introuvable. Probablement par absence de connectivité à Internet ou absence de fonctionnement de backend.
@@ -471,14 +471,14 @@ itempickup_tradable_only: <color=#DCBD67FF>Objet d'échange courant</color>
 itempickup_unusable: <color=#ff5555ff>Inutilisable avec appareil</color>
 itempickup_unusable_classes: '<color=#ff5555ff>Seulement utilisable avec : {0}</color>'
 itempickup_uses: 'Emploie : {0}'
 language_change_restart_screen_close_game: Fermer le jeu
 language_change_restart_screen_close_game_key_command: <color=#FBB040>[<action:43>]</color> {0}
-language_change_restart_screen_description: Le jeu doit être redémarré
+language_change_restart_screen_description: Le client doit être redémarré
 language_change_restart_screen_not_yet: Pas encore
 language_change_restart_screen_not_yet_key_command: <color=#FBB040>[<action:44>]</color> {0}
-language_change_restart_screen_title: Changement de langue en attente
+language_change_restart_screen_title: Changement de langue en cours
 legal_accept: Accepter et continuer
 legal_accept_incomplete: Veuillez lire et accepter pour continuer...
 levelup_notify_header: <size=24>Niveau {0}</size>
 levelup_notify_stat_add: '{0} +{1:0.##}'
 levelup_notify_stat_multiply: '{0} +{1:0.#} %'
@@ -1007,11 +1007,11 @@ quick_chat_title_Wings: Ailes
 quick_chat_whee: Wouhou !
 radar_mission: "Cible\n <color=#ffa500ff>{0}</color>"
 radar_teleport: '[<action:7>] pour se téléporter'
 radar_teleport_click: "[<action:7>] ou cliquer sur\n pour se téléporter"
 region:
-  AS.SG: Asie de l'Est
+  AS.SG: Asie orientale
   EU.DE: Europe
   NA.US: Am. Nord
   OC.AU: Océanie
 report_cmd_chat: Signaler discussion
 report_cmd_cheating: Signaler triche
diff --git config_190821_1947/Texts/fr/units.txt config_190828_2045/Texts/fr/units.txt
index 7770571..6a22f9b 100644
--- config_190821_1947/Texts/fr/units.txt
+++ config_190828_2045/Texts/fr/units.txt
@@ -1078,10 +1078,20 @@ tankmine: Mine canine
 tankmissile: Missile canin
 tankturret: Grand chien
 tarantulaleader: Tarentule
 tarantulaleg: Patte de tarentule
 tavernbeacon: Balise de mission
+temple_altar: Autel de Bastet
+temple_banishee: Banishee
+temple_cultist: Évêque
+temple_cultistBIG: Grande prêtresse Tiffany
+temple_droneBIG: Drone divin
+temple_fireball: Boule de feu
+temple_spawner: Cercle d'invocation
+temple_spawner_tower: Cercle d'invocation
+temple_spawner_tower2: Cercle d'invocation
+temple_trooper: Prêtre
 templedrone: Drone de temple
 templedungeondestroyablewall: Mur
 templedungeondestroyablewallstrong: Mur
 templedungeonsign1: Renseignement
 templedungeonsign2: Renseignement
diff --git config_190821_1947/Texts/zh-CN/bark.txt config_190828_2045/Texts/zh-CN/bark.txt
index 77131cd..cb19f86 100644
--- config_190821_1947/Texts/zh-CN/bark.txt
+++ config_190828_2045/Texts/zh-CN/bark.txt
@@ -1607,10 +1607,13 @@ smokeboss_1:
   - text: “每一次献祭都延长了我们的生命!”
     weight: '1'
   - text: “美味!”
     weight: '1'
   - weight: '8'
+smokeboss_curse:
+  randomOptions:
+  - text: 你已被诅咒。。。
 smokeboss_feed:
   randomOptions:
   - text: 尽情享用,我的孩子们!
     weight: '1'
 sneezyDEATH:
@@ -1673,32 +1676,42 @@ sunfoxleaderchill:
   - text: 表明你的身份!
   - weight: '3'
 tankDEATH:
   randomOptions:
   - text: 哦。赞美光明。
-temple_cultist_cure:
-  randomOptions:
-  - text: '<color=#55ff55ff>治愈</color><color=#ffffffff>: 生命值
-
-      回复+500% </color>'
-    weight: '1'
 temple_cultist_curse_blind:
   randomOptions:
   - text: '<color=#050405ff>致盲</color><color=#ffffffff>: 摄像机视野-50%</color>'
     weight: '1'
+temple_cultist_curse_combust:
+  randomOptions:
+  - text: '<color=#855e59ff>燃烧</color><color=#ffffffff>: +50% 燃烧易感性 </color>'
+    weight: '1'
+temple_cultist_curse_cure:
+  randomOptions:
+  - text: '<color=#55ff55ff>Cure</color><color=#ffffffff>: +500% 生命恢复效果</color>'
+    weight: '1'
 temple_cultist_curse_frail:
   randomOptions:
   - text: '<color=#050405ff>脆弱</color><color=#ffffffff>: 所受伤害+50%</color>'
     weight: '1'
 temple_cultist_curse_hinder_dualstick:
   randomOptions:
   - text: <color=#050405ff>阻碍</color><color=#ffffffff>:最大转弯速率 -95%</color>
     weight: '1'
 temple_cultist_curse_hinder_plane:
   randomOptions:
   - text: '<color=#050405ff>阻碍r</color><color=#ffffffff>: 最大转弯速率 -85%</color>'
     weight: '1'
+temple_cultist_curse_silence:
+  randomOptions:
+  - text: '<color=#855e59ff>沉默</color><color=#ffffffff>: -90% 蒸汽</color>'
+    weight: '1'
+temple_cultist_curse_stagnate:
+  randomOptions:
+  - text: '<color=#855e59ff>凝滞</color><color=#ffffffff>: -100% 铁甲恢复, -100% 蒸汽恢复</color>'
+    weight: '1'
 teslahqDEATH:
   randomOptions:
   - text: "即使是死后,\n 我们也会一直注视着你。"
 thiefchest_0:
   randomOptions:
diff --git config_190821_1947/Texts/zh-CN/buffs.txt config_190828_2045/Texts/zh-CN/buffs.txt
index 66e84af..ca4efd9 100644
--- config_190821_1947/Texts/zh-CN/buffs.txt
+++ config_190828_2045/Texts/zh-CN/buffs.txt
@@ -42,19 +42,25 @@ dungeonmod_touchy:
   title: 敏感
 meowza2_silence_long:
   title: 缄默
 meowza2_silence_short:
   title: 缄默
+temple_cultist_cure:
+  title: 诅咒免疫+恢复
 temple_cultist_curse_blind:
   title: 致盲
-temple_cultist_curse_cure:
-  title: 治愈
+temple_cultist_curse_combust:
+  title: 燃烧
 temple_cultist_curse_frail:
   title: 脆弱
 temple_cultist_curse_hinder_dualstick:
   title: 阻碍
 temple_cultist_curse_hinder_plane:
   title: 阻碍
+temple_cultist_curse_silence:
+  title: 沉默
+temple_cultist_curse_stagnate:
+  title: 凝滞
 test_curse:
   title: 被诅咒的
 test_slow:
   title: 减速
diff --git config_190821_1947/Texts/zh-CN/stats.txt config_190828_2045/Texts/zh-CN/stats.txt
index bbddd7e..370b787 100644
--- config_190821_1947/Texts/zh-CN/stats.txt
+++ config_190828_2045/Texts/zh-CN/stats.txt
@@ -35,13 +35,13 @@ maxSpeed: 最大速度
 maxTurnRate: 转弯速率
 minSpeed: 最小速度
 secondaryCooldownMod: 副武器冷却
 secondaryDamageMod: 副武器伤害
 secondaryEnergyCostMod: 副武器蒸汽消耗
-spawnCooldownMod: 刷新冷却
-spawnDamageMod: 刷新伤害
-spawnHealthMod: 刷新生命
-spawnRangeMod: 刷新射程
-spawnTurnRateMod: 刷新转弯速率
+spawnCooldownMod: 怪物的武器冷却时间
+spawnDamageMod: 怪物的武器伤害
+spawnHealthMod: 怪物的生命值
+spawnRangeMod: 怪物的武器射程
+spawnTurnRateMod: 怪物的武器转弯率
 superspeedFactor: 超级加速
 vortexSizeMod: 漩涡尺寸
 xpMod: 经验获取
diff --git config_190821_1947/Texts/zh-CN/ui.txt config_190828_2045/Texts/zh-CN/ui.txt
index 9638425..36fc29b 100644
--- config_190821_1947/Texts/zh-CN/ui.txt
+++ config_190828_2045/Texts/zh-CN/ui.txt
@@ -262,11 +262,17 @@ email_validation_info_continue: 邮箱验证成功后,您可以继续游戏。
 email_validation_info_main: 我们向您发送了包含有验证链接的邮件。若您无法找到邮件,请检查垃圾邮件文件夹(查找“蒸汽鸟联盟账户激活”)
 email_validation_info_resend: 请点击此处以重新发送验证链接。
 email_validation_title: 邮件验证
 emote_purple_fireworks: 紫色焰火
 error_dialog_account_maintenance: 账户支持暂时不可用!请稍后再试。不会耽搁很久。
-error_dialog_already_connected: 你无法连接,因为你的账户已经连接。请等待几分钟后再次尝试。如果再次出现此问题,请联系客户支持。谢谢。
+error_dialog_already_connected: '您的帐户已与 "蒸汽鸟" 相联, 如果你在另一台机器上运行游戏,请先在那里终止它, 如果还是出现此问题,请根据以下步骤:
+
+  1)退出游戏,退出Steam,然后重启Steam并重启游戏。
+
+  2)如果不起作用,再次退出游戏,不要尝试重启10分钟。然后再试一次。
+
+  3)如果您尝试以上操作仍然无效,您可以使用您的游戏内用户名发送电子邮件至support@spryfox.com。 我们将轻推数据库来解开您的账号问题。'
 error_dialog_connection_failure: 您的电脑和我们的服务器之间的网络似乎出了一些问题。查看是否有其他程序在大量占用网络!
 error_dialog_deliberate_disconnection: 服务器无法与你沟通。 服务器反馈:{0}。 若你认为这是一个错误,请发送错误报告给我们。
 error_dialog_idle_kicked: 你处于空闲状态,我们已断开你的连接。在你准备好游玩时,请再次启动游戏。
 error_dialog_kicked: 你已被踢出。 为什么? 原因只有你和踢你的人知道。
 error_dialog_lnc00: 错误LNC00。无法找到叛军城市。可能出现网络连接问题或后端异常。请检查你的网络连接并再次尝试。
diff --git config_190821_1947/Texts/zh-CN/units.txt config_190828_2045/Texts/zh-CN/units.txt
index b4511ea..8251009 100644
--- config_190821_1947/Texts/zh-CN/units.txt
+++ config_190828_2045/Texts/zh-CN/units.txt
@@ -1078,10 +1078,20 @@ tankmine: 犬雷
 tankmissile: 犬导弹
 tankturret: 大型犬
 tarantulaleader: 狼蛛
 tarantulaleg: 狼蛛腿
 tavernbeacon: 任务信标
+temple_altar: 芭絲特的祭坛
+temple_banishee: 女妖
+temple_cultist: 教主
+temple_cultistBIG: 大祭司 蒂芙尼
+temple_droneBIG: 敬虔无人机
+temple_fireball: 火球
+temple_spawner: 召唤圈
+temple_spawner_tower: 召唤圈
+temple_spawner_tower2: 召唤圈
+temple_trooper: 牧师
 templedrone: 神庙无人机
 templedungeondestroyablewall: 墙壁
 templedungeondestroyablewallstrong: 墙壁
 templedungeonsign1: 情报
 templedungeonsign2: 情报
diff --git config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/BOS2_flakboss.txt config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/BOS2_flakboss.txt
index 9671683..d83f04b 100644
--- config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/BOS2_flakboss.txt	
+++ config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/BOS2_flakboss.txt	
@@ -11,9 +11,28 @@ maxEnergyPoints: '1'
 maxHitPoints: '100'
 maxHomeDistance: '60'
 maxSpeed: '0.6'
 maxTurnRate: '60'
 minSpeed: '0.3'
+particlePositions:
+- name: darkSmoke
+  pos:
+  - '0.7'
+  - '-2.15'
+  - '-1.63'
+  rot:
+  - '0'
+  - '0'
+  - '-90'
+- name: darkSmoke
+  pos:
+  - '1.1'
+  - '-1.99'
+  - '-0.77'
+  rot:
+  - '0'
+  - '0'
+  - '-90'
 spawnInvulnerabilitySeconds: '2'
 templateName: flakboss
 tier: '5'
 xpMultiplier: '1.3'
diff --git config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/GRP1_robo.txt config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/GRP1_robo.txt
index 730f77c..7f0537d 100644
--- config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/GRP1_robo.txt	
+++ config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/GRP1_robo.txt	
@@ -70,8 +70,18 @@ healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '100'
 maxSpeed: '10'
 maxTurnRate: '270'
 minSpeed: '0'
+particlePositions:
+- name: darkSmokeSlow
+  pos:
+  - '0.015'
+  - '-0.07'
+  - '-1.53'
+  rot:
+  - '0'
+  - '0'
+  - '-90'
 templateName: robo
 tier: '5'
 xpMultiplier: '1.3'
diff --git config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/GRP2_bonesnake01.txt config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/GRP2_bonesnake01.txt
index 1243ec6..b1e349a 100644
--- config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/GRP2_bonesnake01.txt	
+++ config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/GRP2_bonesnake01.txt	
@@ -93,7 +93,17 @@ maxEnergyPoints: '1'
 maxHitPoints: '50'
 maxHomeDistance: '45'
 maxSpeed: '6'
 maxTurnRate: '100'
 minSpeed: '0'
+particlePositions:
+- name: darkSmoke
+  pos:
+  - '0'
+  - '-0.115'
+  - '-0.791'
+  rot:
+  - '0'
+  - '0'
+  - '-90'
 templateName: bonesnake01
 tier: '5'
diff --git config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/GRP2_flakblimp2.txt config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/GRP2_flakblimp2.txt
index fc73855..eb2774f 100644
--- config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/GRP2_flakblimp2.txt	
+++ config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/GRP2_flakblimp2.txt	
@@ -10,8 +10,18 @@ maxEnergyPoints: '1'
 maxHitPoints: '10'
 maxHomeDistance: '60'
 maxSpeed: '0.6'
 maxTurnRate: '180'
 minSpeed: '0.3'
+particlePositions:
+- name: darkSmoke
+  pos:
+  - '-0.07'
+  - '-0.5'
+  - '-0.41'
+  rot:
+  - '0'
+  - '0'
+  - '-90'
 spawnInvulnerabilitySeconds: '2'
 templateName: flakblimp2
 tier: '5'
diff --git config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/GRP4_broadside.txt config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/GRP4_broadside.txt
index 94e73f0..0d98d15 100644
--- config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/GRP4_broadside.txt	
+++ config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/GRP4_broadside.txt	
@@ -53,10 +53,29 @@ maxEnergyPoints: '1'
 maxHitPoints: '15'
 maxHomeDistance: '45'
 maxSpeed: '3'
 maxTurnRate: '40'
 minSpeed: '2'
+particlePositions:
+- name: darkSmoke
+  pos:
+  - '0'
+  - '-0.7'
+  - '-1.42'
+  rot:
+  - '0'
+  - '0'
+  - '-90'
+- name: darkSmoke
+  pos:
+  - '-0.5'
+  - '-1.22'
+  - '-1.235'
+  rot:
+  - '0'
+  - '0'
+  - '-90'
 showGunSignal: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: broadside
 tier: '5'
 xpMultiplier: '3'
diff --git config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/GRP4_highgnat.txt config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/GRP4_highgnat.txt
index a10eb99..34bfe77 100644
--- config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/GRP4_highgnat.txt	
+++ config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/GRP4_highgnat.txt	
@@ -39,9 +39,19 @@ healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '7'
 maxSpeed: '8'
 maxTurnRate: '30'
 minSpeed: '2'
+particlePositions:
+- name: darkSmoke
+  pos:
+  - '0'
+  - '0'
+  - '-0.516'
+  rot:
+  - '0'
+  - '0'
+  - '-90'
 spawnInvulnerabilitySeconds: '2'
 templateName: highgnat
 tier: '5'
 xpMultiplier: '0'
diff --git config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/SLO1_angel2.txt config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/SLO1_angel2.txt
index 8d08e82..04613ee 100644
--- config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/SLO1_angel2.txt	
+++ config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/SLO1_angel2.txt	
@@ -52,8 +52,27 @@ maxEnergyPoints: '1'
 maxHitPoints: '20'
 maxHomeDistance: '60'
 maxSpeed: '4'
 maxTurnRate: '120'
 minSpeed: '1'
+particlePositions:
+- name: darkSmoke
+  pos:
+  - '-0.003'
+  - '-0.96'
+  - '-0.42'
+  rot:
+  - '0'
+  - '0'
+  - '0'
+- name: darkSmoke
+  pos:
+  - '0.315'
+  - '-0.49'
+  - '-1.53'
+  rot:
+  - '0'
+  - '0'
+  - '-90'
 spawnInvulnerabilitySeconds: '2'
 templateName: angel2
 tier: '5'
diff --git config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/SLO3_shmupblimp3.txt config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/SLO3_shmupblimp3.txt
index 56b5378..dc51f7f 100644
--- config_190821_1947/Units/31 - Highlands (City) - MadScience_Energy/SLO3_shmupblimp3.txt	
+++ config_190828_2045/Units/31 - Highlands (City) - MadScience_Energy/SLO3_shmupblimp3.txt	
@@ -81,9 +81,28 @@ maxEnergyPoints: '1'
 maxHitPoints: '50'
 maxHomeDistance: '60'
 maxSpeed: '1'
 maxTurnRate: '60'
 minSpeed: '0.5'
+particlePositions:
+- name: darkSmoke
+  pos:
+  - '0.7'
+  - '-0.76'
+  - '-1.72'
+  rot:
+  - '0'
+  - '0'
+  - '-90'
+- name: darkSmoke
+  pos:
+  - '0.24'
+  - '-1.37'
+  - '-2.16'
+  rot:
+  - '0'
+  - '0'
+  - '-90'
 spawnInvulnerabilitySeconds: '2'
 templateName: shmupblimp3
 tier: '5'
 xpMultiplier: '0.5'
diff --git config_190821_1947/Units/51 - HighMountains (City) - Alien_Hologram/SPC3_sentinel.txt config_190828_2045/Units/51 - HighMountains (City) - Alien_Hologram/SPC3_sentinel.txt
index 7c172fa..57a2f28 100644
--- config_190821_1947/Units/51 - HighMountains (City) - Alien_Hologram/SPC3_sentinel.txt	
+++ config_190828_2045/Units/51 - HighMountains (City) - Alien_Hologram/SPC3_sentinel.txt	
@@ -35,18 +35,18 @@ gunTypes:
   burst: '100'
   cooldown: '0.'
   damage: '0.01'
   effect: Water
   effectAmount: '0.1'
-  effectDamage: '1.05'
+  effectDamage: '0.6'
   effectTime: '0.1'
   lifetime: '2'
   multi: '4'
   multiSpread: '90'
   name: sentinelgun
   rof: '5'
-  speed: '5'
+  speed: '3'
   spread: '0'
 - bulletPrefab: ringBullet
   burst: '100'
   cooldown: '5'
   damage: '0.01'
@@ -57,11 +57,11 @@ gunTypes:
   lifetime: '4'
   multi: '4'
   multiSpread: '90'
   name: sentinelgun2
   rof: '5'
-  speed: '2.3'
+  speed: '2'
   spread: '0'
 healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '150'
 maxHomeDistance: '45'
diff --git config_190821_1947/Units/51 - HighMountains (City) - Alien_Hologram/SPC3_sentinellaser.txt config_190828_2045/Units/51 - HighMountains (City) - Alien_Hologram/SPC3_sentinellaser.txt
index 394f6bf..177951d 100644
--- config_190821_1947/Units/51 - HighMountains (City) - Alien_Hologram/SPC3_sentinellaser.txt	
+++ config_190828_2045/Units/51 - HighMountains (City) - Alien_Hologram/SPC3_sentinellaser.txt	
@@ -55,11 +55,11 @@ gunTypes:
 - bulletPalette: glow
   bulletPrefab: laserBeamBullet
   bulletSize: '2.8'
   burst: '210'
   cooldown: '0'
-  damage: '0.68'
+  damage: '0.544'
   isIgnoringWalls: 'true'
   isPiercing: 'true'
   lifetime: '0.15'
   multi: '1'
   multiOffset:
@@ -72,11 +72,11 @@ gunTypes:
   spread: '0'
 - bulletPrefab: ringBullet
   bulletSize: '1.5'
   burst: '200'
   cooldown: '1.5'
-  damage: '0.4'
+  damage: '0.32'
   isPiercing: 'true'
   lifetime: '2'
   multi: '1'
   multiSpread: '0'
   name: sentinellaserarmgun
diff --git config_190821_1947/Units/69D - Temple Dungeon/BOS2_bansheeleader5.txt config_190828_2045/Units/69D - Temple Dungeon/BOS2_bansheeleader5.txt
index 9cadd31..7bd71fb 100644
--- config_190821_1947/Units/69D - Temple Dungeon/BOS2_bansheeleader5.txt	
+++ config_190828_2045/Units/69D - Temple Dungeon/BOS2_bansheeleader5.txt	
@@ -1,9 +1,9 @@
 art: EnemyBastStatue
 artScale: '1'
 bankSmoothing: '10000'
-colliderRadius: '3'
+colliderRadius: '1.5'
 colliderX: '0'
 colliderY: '0'
 effectImmunities:
 - Confuse
 elementSusceptibilityIds:
diff --git config_190821_1947/Units/69D - Temple Dungeon/BOS2_bansheeleader5treasureroom.txt config_190828_2045/Units/69D - Temple Dungeon/BOS2_bansheeleader5treasureroom.txt
index d1dc29b..158e553 100644
--- config_190821_1947/Units/69D - Temple Dungeon/BOS2_bansheeleader5treasureroom.txt	
+++ config_190828_2045/Units/69D - Temple Dungeon/BOS2_bansheeleader5treasureroom.txt	
@@ -1,9 +1,9 @@
 art: EnemyBastStatue
-artScale: '0.8'
+artScale: '1'
 bankSmoothing: '10000'
-colliderRadius: '3'
+colliderRadius: '1.5'
 colliderX: '0'
 colliderY: '0'
 effectImmunities:
 - Confuse
 elementSusceptibilityIds:
diff --git config_190821_1947/Units/69D - Temple Dungeon/unit_warpmine.txt config_190828_2045/Units/69D - Temple Dungeon/unit_warpmine.txt
index 092d899..d39cf1e 100644
--- config_190821_1947/Units/69D - Temple Dungeon/unit_warpmine.txt	
+++ config_190828_2045/Units/69D - Temple Dungeon/unit_warpmine.txt	
@@ -1,8 +1,8 @@
 art: Enemywarpmine
-artScale: '1'
-colliderRadius: '1'
+artScale: '1.5'
+colliderRadius: '0.3'
 colliderX: '0'
 colliderY: '0'
 elementSusceptibilityIds:
 - lightningWeakness
 - waterResist
@@ -22,11 +22,12 @@ gunMounts:
   gunTemplateName: warpminegun0
   mountAngle: '0'
   mountName: main0
   slewRate: '0'
 gunTypes:
-- bulletPrefab: starBullet
+- bulletPalette: glow
+  bulletPrefab: starBullet
   bulletSize: '3'
   burst: '1'
   cooldown: '1000000'
   damage: '0.01'
   effect: Water
@@ -44,12 +45,12 @@ gunTypes:
   bulletSize: '1.5'
   burst: '1'
   cooldown: '3'
   damage: '0.01'
   effect: Burn
-  effectAmount: '1.5'
-  effectDamage: '0.3'
+  effectAmount: '2'
+  effectDamage: '0.1'
   effectTime: '1'
   isPiercing: 'true'
   lifetime: '1'
   multi: '20'
   multiLifetime: '0.3'
diff --git config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_altar.txt config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_altar.txt
new file mode 100644
index 0000000..9e59d59
--- /dev/null
+++ config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_altar.txt	
@@ -0,0 +1,87 @@
+art: EnemySummoningCircle
+artScale: '0.1'
+colliderRadius: '0.6'
+colliderX: '0'
+colliderY: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionBig2
+gunMounts:
+- fireMode: Sprinkler
+  firingArc: '360'
+  flashOffset: '0'
+  gunTypeConfig:
+    bulletHue: purple
+    bulletPalette: all_color
+    bulletPrefab: starBullet
+    bulletSize: '0.5'
+    burst: '1000000'
+    cooldown: '0'
+    damage: '0'
+    isIgnoringWalls: 'true'
+    isPiercing: 'true'
+    lifetime: '1'
+    multi: '72'
+    multiLifetime: '0'
+    multiSpeed: '0'
+    multiSpread: '5'
+    name: meowzafinalbeam
+    range: '8'
+    rof: '1'
+    speed: '20'
+    spread: '0'
+  mountAngle: '0'
+  mountName: main
+  offset:
+  - '0'
+  - '0'
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  sprinklerIncrementAngle: '5'
+  sprinklerStartAngle: '0'
+- fireMode: Sprinkler
+  firingArc: '360'
+  flashOffset: '20'
+  gunTypeConfig:
+    bulletHue: purple
+    bulletPalette: all_color
+    bulletPrefab: starBullet
+    bulletSize: '2'
+    burst: '1000000'
+    cooldown: '0'
+    damage: '0'
+    isIgnoringWalls: 'true'
+    isPiercing: 'true'
+    lifetime: '5'
+    multi: '5'
+    multiLifetime: '-0.2'
+    multiSpeed: '0'
+    multiSpread: '72'
+    name: meowzafinalbeam
+    range: '8'
+    rof: '3'
+    speed: '0'
+    spread: '0'
+  mountAngle: '0'
+  mountName: main2
+  offset:
+  - '0'
+  - '0'
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  sprinklerIncrementAngle: '1'
+  sprinklerStartAngle: '0'
+  syncTo: main
+healthRegenRate: '0'
+isWall: 'true'
+maxEnergyPoints: '1'
+maxHitPoints: '30'
+maxSpeed: '0'
+maxTurnRate: '40'
+minSpeed: '0'
+networkUpdateCutoff: '40'
+recoilScale: '0'
+spawnInvulnerabilitySeconds: '1000000'
+templateName: temple_altar
+tier: '10'
diff --git config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_altar_heal.txt config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_altar_heal.txt
new file mode 100644
index 0000000..ba882b0
--- /dev/null
+++ config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_altar_heal.txt	
@@ -0,0 +1,88 @@
+art: EnemyQuestTransparent
+artScale: '0.1'
+colliderRadius: '0'
+colliderX: '0'
+colliderY: '0'
+energyRegenRate: '0'
+gunMounts:
+- fireMode: Sprinkler
+  firingArc: '360'
+  flashOffset: '0'
+  flashPrefab: 'null'
+  gunTypeConfig:
+    bulletHue: green
+    bulletPalette: all_color
+    bulletPrefab: starBullet
+    bulletSize: '0.5'
+    burst: '1000000'
+    cooldown: '0'
+    damage: '0'
+    isIgnoringWalls: 'true'
+    isPiercing: 'true'
+    lifetime: '2'
+    multi: '3'
+    multiLifetime: '0'
+    multiSpeed: '0'
+    multiSpread: '120'
+    name: meowzafinalbeam
+    range: '8'
+    rof: '10'
+    speed: '3'
+    spread: '0'
+  mountAngle: '0'
+  mountName: main
+  offset:
+  - '0'
+  - '0'
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  sprinklerIncrementAngle: '5'
+  sprinklerStartAngle: '0'
+- fireMode: Sprinkler
+  firingArc: '360'
+  flashOffset: '6'
+  gunTypeConfig:
+    bulletHue: green
+    bulletPalette: all_color
+    bulletPrefab: starBullet
+    bulletSize: '2'
+    burst: '1000000'
+    cooldown: '0'
+    damage: '0'
+    isIgnoringWalls: 'true'
+    isPiercing: 'true'
+    lifetime: '5'
+    multi: '5'
+    multiLifetime: '-0.2'
+    multiSpeed: '0'
+    multiSpread: '72'
+    name: meowzafinalbeam
+    range: '8'
+    rof: '3'
+    speed: '0'
+    spread: '0'
+  mountAngle: '0'
+  mountName: main2
+  offset:
+  - '0'
+  - '0'
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  sprinklerIncrementAngle: '1'
+  sprinklerStartAngle: '0'
+  syncTo: main
+healthRegenRate: '0'
+isCountable: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '30'
+maxSpeed: '0'
+maxTurnRate: '40'
+minSpeed: '0'
+recoilScale: '0'
+showName: never
+showStats: never
+spawnInvulnerabilitySeconds: '1000000'
+templateName: temple_altar_heal
+tier: '10'
diff --git config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_banishee.txt config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_banishee.txt
new file mode 100644
index 0000000..a486c1a
--- /dev/null
+++ config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_banishee.txt	
@@ -0,0 +1,19 @@
+art: EnemyWraith
+artScale: '1'
+colliderRadius: '0.6'
+colliderX: '0'
+colliderY: '0'
+elementSusceptibilityIds:
+- waterWeakness
+- burnResist
+energyRegenRate: '0'
+healthRegenRate: '0'
+maxEnergyPoints: '1'
+maxHitPoints: '3.5'
+maxSpeed: '3.5'
+maxTurnRate: '40'
+minSpeed: '1.5'
+spawnInvulnerabilitySeconds: '5'
+templateName: temple_banishee
+tier: '10'
+xpMultiplier: '1'
diff --git config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_cultist.txt config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_cultist.txt
new file mode 100644
index 0000000..8762730
--- /dev/null
+++ config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_cultist.txt	
@@ -0,0 +1,61 @@
+art: EnemyTempleBossPrefab
+artScale: '0.7'
+bankSmoothing: '10000'
+colliderRadius: '0.9'
+colliderX: '0'
+colliderY: '0'
+elementSusceptibilityIds:
+- waterWeakness
+- burnResist
+energyRegenRate: '0'
+explosionPrefab: ExplosionBig2
+gunMounts:
+- fireMode: Aimed
+  firingArc: '360'
+  flashOffset: '1.4'
+  gunTemplateName: temple_cultistLaser
+  mountAngle: '0'
+  mountName: main
+  sfx:
+    pitch: '0.3'
+    sound: Enemy Rocket Deploy
+  slewRate: '0'
+gunTypes:
+- bulletPrefab: fireBullet
+  bulletSize: '2'
+  burst: '30'
+  cooldown: '2'
+  damage: '0.01'
+  effect: Burn
+  effectAmount: '1'
+  effectDamage: '0.1'
+  effectTime: '1'
+  lifetime: '2'
+  multi: '3'
+  multiSpread: '120'
+  name: temple_cultistLaser
+  range: '50'
+  rof: '10'
+  speed: '3'
+  spread: '5'
+hashOverride: '7813'
+healthRegenRate: '0'
+isVisibleToAI: 'true'
+maxEnergyPoints: '1'
+maxHitPoints: '33'
+maxSpeed: '1'
+maxTurnRate: '55'
+minSpeed: '0'
+particlePositions:
+- name: darkSmoke
+  pos:
+  - '-0.007'
+  - '-0.71'
+  - '-1.75'
+  rot:
+  - '0'
+  - '0'
+  - '-90'
+spawnInvulnerabilitySeconds: '3'
+templateName: temple_cultist
+tier: '10'
diff --git config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_cultistBIG.txt config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_cultistBIG.txt
new file mode 100644
index 0000000..85e3256
--- /dev/null
+++ config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_cultistBIG.txt	
@@ -0,0 +1,29 @@
+art: EnemyTempleBossPrefab
+artScale: '1'
+bankSmoothing: '10000'
+colliderRadius: '0.9'
+colliderX: '0'
+colliderY: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionBig2
+hashOverride: '7814'
+healthRegenRate: '0'
+maxEnergyPoints: '1'
+maxHitPoints: '40'
+maxSpeed: '0'
+maxTurnRate: '90'
+minSpeed: '0'
+particlePositions:
+- name: darkSmoke
+  pos:
+  - '-0.007'
+  - '-0.71'
+  - '-1.75'
+  rot:
+  - '0'
+  - '0'
+  - '-90'
+spawnInvulnerabilitySeconds: '100'
+templateName: temple_cultistBIG
+tier: '10'
+xpMultiplier: '0'
diff --git config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_droneBIG.txt config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_droneBIG.txt
new file mode 100644
index 0000000..05f547f
--- /dev/null
+++ config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_droneBIG.txt	
@@ -0,0 +1,54 @@
+art: EnemyTempleDrone
+artScale: '2'
+colliderRadius: '1'
+colliderX: '0'
+colliderY: '0'
+elementSusceptibilityIds:
+- waterWeakness
+- burnResist
+energyRegenRate: '0'
+gunMounts:
+- fireMode: Aimed
+  firingArc: '180'
+  flashOffset: '0.33'
+  gunTemplateName: temple_droneBIGBeachGun
+  mountAngle: '0'
+  mountName: main
+  offset:
+  - '0'
+  - '0'
+  slewRate: '22.5'
+gunTypes:
+- bulletPrefab: laserBullet
+  bulletSize: '1.5'
+  burst: '3'
+  cooldown: '1'
+  damage: '0.01'
+  effect: Water
+  effectAmount: '0.1'
+  effectDamage: '0.6'
+  effectTime: '0.1'
+  lifetime: '2'
+  name: temple_droneBIGBeachGun
+  rof: '4'
+  speed: '6'
+  spread: '10'
+healthRegenRate: '0'
+maxEnergyPoints: '1'
+maxHitPoints: '21.5'
+maxSpeed: '3.5'
+maxTurnRate: '40'
+minSpeed: '1.5'
+particlePositions:
+- name: darkSmoke
+  pos:
+  - '0'
+  - '-0.57'
+  - '0.09'
+  rot:
+  - '0'
+  - '0'
+  - '0'
+spawnInvulnerabilitySeconds: '2'
+templateName: temple_droneBIG
+tier: '10'
diff --git config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_fireball.txt config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_fireball.txt
new file mode 100644
index 0000000..f9e4f2e
--- /dev/null
+++ config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_fireball.txt	
@@ -0,0 +1,53 @@
+art: '!EnemyInvisible'
+artScale: '2'
+colliderRadius: '0'
+colliderX: '0'
+colliderY: '0'
+effectImmunities:
+- Confuse
+energyRegenRate: '0'
+explosionPrefab: ExplosionSmall
+gunMounts:
+- fireMode: JustShootDammit
+  firingArc: '360'
+  flashOffset: '0'
+  gunTemplateName: temple_fireballgun2
+  mountAngle: '0'
+  mountName: main2
+  offset:
+  - '0'
+  - '0'
+  sfx:
+    pitch: '0.5'
+    sound: Enemy Loop Flame Thrower
+  slewRate: '0'
+gunTypes:
+- bulletPrefab: leisurelyBullet
+  bulletSize: '3'
+  burst: '100'
+  cooldown: '0'
+  damage: '0.1'
+  effect: Burn
+  effectAmount: '0.66'
+  effectDamage: '0.5'
+  effectTime: '3'
+  isPiercing: 'true'
+  lifetime: '0.5'
+  multi: '1'
+  multiSpread: '0'
+  name: temple_fireballgun2
+  rof: '5'
+  speed: '1'
+  spread: '180'
+healthRegenRate: '0'
+isCountable: 'false'
+isVisibleInRadar: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '10000001'
+maxSpeed: '4'
+maxTurnRate: '10'
+minSpeed: '4'
+spawnInvulnerabilitySeconds: '10'
+templateName: temple_fireball
+tier: '10'
+xpMultiplier: '0'
diff --git config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_iceball.txt config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_iceball.txt
new file mode 100644
index 0000000..b305794
--- /dev/null
+++ config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_iceball.txt	
@@ -0,0 +1,53 @@
+art: '!EnemyInvisible'
+artScale: '2'
+colliderRadius: '0'
+colliderX: '0'
+colliderY: '0'
+effectImmunities:
+- Confuse
+energyRegenRate: '0'
+explosionPrefab: ExplosionSmall
+gunMounts:
+- fireMode: JustShootDammit
+  firingArc: '360'
+  flashOffset: '0.2'
+  gunTemplateName: temple_iceballgun2
+  mountAngle: '0'
+  mountName: main2
+  offset:
+  - '0'
+  - '0'
+  sfx:
+    pitch: '1'
+    sound: Enemy Loop Blizzard
+  slewRate: '0'
+gunTypes:
+- bulletPrefab: freezeBullet
+  bulletSize: '2'
+  burst: '100'
+  cooldown: '0'
+  damage: '0.1'
+  effect: Slow
+  effectAmount: '0.5'
+  effectDamage: '0.1'
+  effectTime: '2'
+  isPiercing: 'true'
+  lifetime: '0.5'
+  multi: '6'
+  multiSpread: '60'
+  name: temple_iceballgun2
+  rof: '5'
+  speed: '1'
+  spread: '0'
+healthRegenRate: '0'
+isCountable: 'false'
+isVisibleInRadar: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '10000001'
+maxSpeed: '4'
+maxTurnRate: '10'
+minSpeed: '4'
+spawnInvulnerabilitySeconds: '10'
+templateName: temple_iceball
+tier: '10'
+xpMultiplier: '0'
diff --git config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_spawner_tower.txt config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_spawner_tower.txt
new file mode 100644
index 0000000..7d9793d
--- /dev/null
+++ config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_spawner_tower.txt	
@@ -0,0 +1,23 @@
+art: EnemyQuestTransparent
+artScale: '0.1'
+bankSmoothing: '10000'
+colliderRadius: '0'
+colliderX: '0'
+colliderY: '0'
+energyRegenRate: '0'
+explosionPrefab: planeExplosionEmpty
+healthRegenRate: '0'
+isCountable: 'false'
+isVisibleInRadar: 'false'
+isVisibleToAI: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1500'
+maxSpeed: '0'
+maxTurnRate: '30'
+minSpeed: '0'
+showName: never
+showStats: never
+spawnInvulnerabilitySeconds: '1'
+templateName: temple_spawner_tower
+tier: '10'
+xpMultiplier: '0'
diff --git config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_spawner_tower2.txt config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_spawner_tower2.txt
new file mode 100644
index 0000000..c7c3495
--- /dev/null
+++ config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_spawner_tower2.txt	
@@ -0,0 +1,26 @@
+art: EnemyQuestTransparent
+artScale: '0.025'
+bankSmoothing: '10000'
+colliderRadius: '0'
+colliderX: '0'
+colliderY: '0'
+effectImmunities:
+- Confuse
+energyRegenRate: '0'
+explosionPrefab: planeExplosionEmpty
+healthRegenRate: '0'
+isCountable: 'false'
+isVisibleInRadar: 'false'
+isVisibleToAI: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1500'
+maxSpeed: '0'
+maxTurnRate: '30'
+minSpeed: '0'
+networkUpdateCutoff: '45'
+showName: never
+showStats: never
+spawnInvulnerabilitySeconds: '1'
+templateName: temple_spawner_tower2
+tier: '10'
+xpMultiplier: '0'
diff --git config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_spawner_tower_visible.txt config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_spawner_tower_visible.txt
new file mode 100644
index 0000000..a0350d8
--- /dev/null
+++ config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_spawner_tower_visible.txt	
@@ -0,0 +1,26 @@
+art: EnemySummoningCircle
+artScale: '0.025'
+bankSmoothing: '10000'
+colliderRadius: '0'
+colliderX: '0'
+colliderY: '0'
+effectImmunities:
+- Confuse
+energyRegenRate: '0'
+explosionPrefab: ExplosionDestructableTerrain_Rock
+healthRegenRate: '0'
+isCountable: 'false'
+isVisibleInRadar: 'false'
+isVisibleToAI: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1500'
+maxSpeed: '0'
+maxTurnRate: '30'
+minSpeed: '0'
+networkUpdateCutoff: '45'
+showName: never
+showStats: never
+spawnInvulnerabilitySeconds: '1'
+templateName: temple_spawner_tower_visible
+tier: '10'
+xpMultiplier: '0'
diff --git config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_trooper.txt config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_trooper.txt
new file mode 100644
index 0000000..f86612e
--- /dev/null
+++ config_190828_2045/Units/69D - Temple Dungeon/xxx_temple_trooper.txt	
@@ -0,0 +1,46 @@
+art: EnemyTempleBossPrefab
+artScale: '0.35'
+bankSmoothing: '10000'
+colliderRadius: '1.3'
+colliderX: '0'
+colliderY: '0'
+elementSusceptibilityIds:
+- waterWeakness
+- burnResist
+energyRegenRate: '0'
+explosionPrefab: ExplosionSmall
+gunMounts:
+- fireMode: Aimed
+  firingArc: '360'
+  flashOffset: '0'
+  gunTemplateName: temple_troopergun1
+  mountAngle: '0'
+  mountName: main
+  sfx:
+    pitch: '0.25'
+    sound: Enemy Laser Loop5
+  slewRate: '90'
+gunTypes:
+- bulletPalette: glow
+  bulletPrefab: shurikenBullet
+  bulletSize: '2.25'
+  burst: '5'
+  cooldown: '10000'
+  damage: '0.5'
+  lifetime: '3.5'
+  multi: '1'
+  multiSpread: '0'
+  name: temple_troopergun1
+  range: '50'
+  rof: '10'
+  speed: '4'
+  spread: '0'
+healthRegenRate: '0'
+maxEnergyPoints: '1'
+maxHitPoints: '5.5'
+maxSpeed: '0'
+maxTurnRate: '360'
+minSpeed: '0'
+spawnInvulnerabilitySeconds: '3'
+templateName: temple_trooper
+tier: '10'
diff --git config_190821_1947/Units/Items/unit_allyturret.txt config_190828_2045/Units/Items/unit_allyturret.txt
index 39dcf9b..95f78e0 100644
--- config_190821_1947/Units/Items/unit_allyturret.txt
+++ config_190828_2045/Units/Items/unit_allyturret.txt
@@ -9,26 +9,29 @@ gunMounts:
   firingArc: '40'
   flashOffset: '0.0'
   gunTemplateName: allyturretGun
   mountAngle: '0'
   mountName: allyturretMount
+  sfx:
+    volume: '0.5'
   slewRate: '20'
 gunTypes:
 - bulletHue: green
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  burst: '1'
-  cooldown: '0'
+  bulletSize: '0.7'
+  burst: '12'
+  cooldown: '1'
   damage: '6'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '1'
   multiSpread: '1'
   name: allyturretGun
-  range: '10'
-  rof: '1.5'
-  speed: '14'
+  range: '14'
+  rof: '6'
+  speed: '17'
   spread: '0'
 healthRegenRate: '0'
 isVisibleToAI: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
diff --git config_190821_1947/Units/Items/unit_allyturret1.txt config_190828_2045/Units/Items/unit_allyturret1.txt
index 0cd4b23..1fccfda 100644
--- config_190821_1947/Units/Items/unit_allyturret1.txt
+++ config_190828_2045/Units/Items/unit_allyturret1.txt
@@ -9,26 +9,29 @@ gunMounts:
   firingArc: '40'
   flashOffset: '0.0'
   gunTemplateName: allyturret1Gun
   mountAngle: '0'
   mountName: allyturret1Mount
+  sfx:
+    volume: '0.5'
   slewRate: '20'
 gunTypes:
 - bulletHue: green
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  burst: '1'
-  cooldown: '0'
-  damage: '14.4'
+  bulletSize: '0.7'
+  burst: '12'
+  cooldown: '1'
+  damage: '10'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '1'
   multiSpread: '1'
   name: allyturret1Gun
-  range: '10'
-  rof: '1.5'
-  speed: '14'
+  range: '14'
+  rof: '6'
+  speed: '17'
   spread: '0'
 healthRegenRate: '0'
 isVisibleToAI: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
diff --git config_190821_1947/Units/Items/unit_allyturret10.txt config_190828_2045/Units/Items/unit_allyturret10.txt
index cfac50f..09bd3bd 100644
--- config_190821_1947/Units/Items/unit_allyturret10.txt
+++ config_190828_2045/Units/Items/unit_allyturret10.txt
@@ -9,26 +9,29 @@ gunMounts:
   firingArc: '40'
   flashOffset: '0.0'
   gunTemplateName: allyturret10Gun
   mountAngle: '0'
   mountName: allyturret10Mount
+  sfx:
+    volume: '0.5'
   slewRate: '20'
 gunTypes:
 - bulletHue: purple
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  burst: '1'
-  cooldown: '0'
-  damage: '210'
+  bulletSize: '0.7'
+  burst: '12'
+  cooldown: '1'
+  damage: '91'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '1'
   multiSpread: '1'
   name: allyturret10Gun
-  range: '10'
-  rof: '1.5'
-  speed: '14'
+  range: '14'
+  rof: '6'
+  speed: '17'
   spread: '0'
 healthRegenRate: '0'
 isVisibleToAI: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
diff --git config_190821_1947/Units/Items/unit_allyturret2.txt config_190828_2045/Units/Items/unit_allyturret2.txt
index 8abea73..d67cf37 100644
--- config_190821_1947/Units/Items/unit_allyturret2.txt
+++ config_190828_2045/Units/Items/unit_allyturret2.txt
@@ -9,26 +9,29 @@ gunMounts:
   firingArc: '40'
   flashOffset: '0.0'
   gunTemplateName: allyturret2Gun
   mountAngle: '0'
   mountName: allyturret2Mount
+  sfx:
+    volume: '0.5'
   slewRate: '20'
 gunTypes:
 - bulletHue: teal
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  burst: '1'
-  cooldown: '0'
-  damage: '25.2'
+  bulletSize: '0.7'
+  burst: '12'
+  cooldown: '1'
+  damage: '14'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '1'
   multiSpread: '1'
   name: allyturret2Gun
-  range: '10'
-  rof: '1.5'
-  speed: '14'
+  range: '14'
+  rof: '6'
+  speed: '17'
   spread: '0'
 healthRegenRate: '0'
 isVisibleToAI: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
diff --git config_190821_1947/Units/Items/unit_allyturret3.txt config_190828_2045/Units/Items/unit_allyturret3.txt
index 20c25cd..8fe8832 100644
--- config_190821_1947/Units/Items/unit_allyturret3.txt
+++ config_190828_2045/Units/Items/unit_allyturret3.txt
@@ -9,26 +9,29 @@ gunMounts:
   firingArc: '40'
   flashOffset: '0.0'
   gunTemplateName: allyturret3Gun
   mountAngle: '0'
   mountName: allyturret3Mount
+  sfx:
+    volume: '0.5'
   slewRate: '20'
 gunTypes:
 - bulletHue: teal
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  burst: '1'
-  cooldown: '0'
-  damage: '39'
+  bulletSize: '0.7'
+  burst: '12'
+  cooldown: '1'
+  damage: '22'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '1'
   multiSpread: '1'
   name: allyturret3Gun
-  range: '10'
-  rof: '1.5'
-  speed: '14'
+  range: '14'
+  rof: '6'
+  speed: '17'
   spread: '0'
 healthRegenRate: '0'
 isVisibleToAI: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
diff --git config_190821_1947/Units/Items/unit_allyturret4.txt config_190828_2045/Units/Items/unit_allyturret4.txt
index e4a6078..170107e 100644
--- config_190821_1947/Units/Items/unit_allyturret4.txt
+++ config_190828_2045/Units/Items/unit_allyturret4.txt
@@ -9,26 +9,29 @@ gunMounts:
   firingArc: '40'
   flashOffset: '0.0'
   gunTemplateName: allyturret4Gun
   mountAngle: '0'
   mountName: allyturret4Mount
+  sfx:
+    volume: '0.5'
   slewRate: '20'
 gunTypes:
 - bulletHue: teal
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  burst: '1'
-  cooldown: '0'
-  damage: '55.2'
+  bulletSize: '0.7'
+  burst: '12'
+  cooldown: '1'
+  damage: '29'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '1'
   multiSpread: '1'
   name: allyturret4Gun
-  range: '10'
-  rof: '1.5'
-  speed: '14'
+  range: '14'
+  rof: '6'
+  speed: '17'
   spread: '0'
 healthRegenRate: '0'
 isVisibleToAI: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
diff --git config_190821_1947/Units/Items/unit_allyturret5.txt config_190828_2045/Units/Items/unit_allyturret5.txt
index 4156163..ea455dd 100644
--- config_190821_1947/Units/Items/unit_allyturret5.txt
+++ config_190828_2045/Units/Items/unit_allyturret5.txt
@@ -9,26 +9,29 @@ gunMounts:
   firingArc: '40'
   flashOffset: '0.0'
   gunTemplateName: allyturret5Gun
   mountAngle: '0'
   mountName: allyturret5Mount
+  sfx:
+    volume: '0.5'
   slewRate: '20'
 gunTypes:
 - bulletHue: blue
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  burst: '1'
-  cooldown: '0'
-  damage: '74.4'
+  bulletSize: '0.7'
+  burst: '12'
+  cooldown: '1'
+  damage: '39'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '1'
   multiSpread: '1'
   name: allyturret5Gun
-  range: '10'
-  rof: '1.5'
-  speed: '14'
+  range: '14'
+  rof: '6'
+  speed: '17'
   spread: '0'
 healthRegenRate: '0'
 isVisibleToAI: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
diff --git config_190821_1947/Units/Items/unit_allyturret6.txt config_190828_2045/Units/Items/unit_allyturret6.txt
index 0be493f..2d71bbc 100644
--- config_190821_1947/Units/Items/unit_allyturret6.txt
+++ config_190828_2045/Units/Items/unit_allyturret6.txt
@@ -9,26 +9,29 @@ gunMounts:
   firingArc: '40'
   flashOffset: '0.0'
   gunTemplateName: allyturret6Gun
   mountAngle: '0'
   mountName: allyturret6Mount
+  sfx:
+    volume: '0.5'
   slewRate: '20'
 gunTypes:
 - bulletHue: blue
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  burst: '1'
-  cooldown: '0'
-  damage: '96'
+  bulletSize: '0.7'
+  burst: '12'
+  cooldown: '1'
+  damage: '49'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '1'
   multiSpread: '1'
   name: allyturret6Gun
-  range: '10'
-  rof: '1.5'
-  speed: '14'
+  range: '14'
+  rof: '6'
+  speed: '17'
   spread: '0'
 healthRegenRate: '0'
 isVisibleToAI: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
diff --git config_190821_1947/Units/Items/unit_allyturret7.txt config_190828_2045/Units/Items/unit_allyturret7.txt
index f6acaf1..305ee7e 100644
--- config_190821_1947/Units/Items/unit_allyturret7.txt
+++ config_190828_2045/Units/Items/unit_allyturret7.txt
@@ -9,26 +9,29 @@ gunMounts:
   firingArc: '40'
   flashOffset: '0.0'
   gunTemplateName: allyturret7Gun
   mountAngle: '0'
   mountName: allyturret7Mount
+  sfx:
+    volume: '0.5'
   slewRate: '20'
 gunTypes:
 - bulletHue: blue
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  burst: '1'
-  cooldown: '0'
-  damage: '120.6'
+  bulletSize: '0.7'
+  burst: '12'
+  cooldown: '1'
+  damage: '53'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '1'
   multiSpread: '1'
   name: allyturret7Gun
-  range: '10'
-  rof: '1.5'
-  speed: '14'
+  range: '14'
+  rof: '6'
+  speed: '17'
   spread: '0'
 healthRegenRate: '0'
 isVisibleToAI: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
diff --git config_190821_1947/Units/Items/unit_allyturret8.txt config_190828_2045/Units/Items/unit_allyturret8.txt
index 5274b4e..3e87987 100644
--- config_190821_1947/Units/Items/unit_allyturret8.txt
+++ config_190828_2045/Units/Items/unit_allyturret8.txt
@@ -9,26 +9,29 @@ gunMounts:
   firingArc: '40'
   flashOffset: '0.0'
   gunTemplateName: allyturret8Gun
   mountAngle: '0'
   mountName: allyturret8Mount
+  sfx:
+    volume: '0.5'
   slewRate: '20'
 gunTypes:
 - bulletHue: purple
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  burst: '1'
-  cooldown: '0'
-  damage: '147.6'
+  bulletSize: '0.7'
+  burst: '12'
+  cooldown: '1'
+  damage: '64'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '1'
   multiSpread: '1'
   name: allyturret8Gun
-  range: '10'
-  rof: '1.5'
-  speed: '14'
+  range: '14'
+  rof: '6'
+  speed: '17'
   spread: '0'
 healthRegenRate: '0'
 isVisibleToAI: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
diff --git config_190821_1947/Units/Items/unit_allyturret9.txt config_190828_2045/Units/Items/unit_allyturret9.txt
index c7d8db0..96a84ba 100644
--- config_190821_1947/Units/Items/unit_allyturret9.txt
+++ config_190828_2045/Units/Items/unit_allyturret9.txt
@@ -9,26 +9,29 @@ gunMounts:
   firingArc: '40'
   flashOffset: '0.0'
   gunTemplateName: allyturret9Gun
   mountAngle: '0'
   mountName: allyturret9Mount
+  sfx:
+    volume: '0.5'
   slewRate: '20'
 gunTypes:
 - bulletHue: purple
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  burst: '1'
-  cooldown: '0'
-  damage: '177.6'
+  bulletSize: '0.7'
+  burst: '12'
+  cooldown: '1'
+  damage: '78'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '1'
   multiSpread: '1'
   name: allyturret9Gun
-  range: '10'
-  rof: '1.5'
-  speed: '14'
+  range: '14'
+  rof: '6'
+  speed: '17'
   spread: '0'
 healthRegenRate: '0'
 isVisibleToAI: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
diff --git config_190821_1947/banned_words.txt config_190828_2045/banned_words.txt
index 4360e25..5c5fc85 100644
--- config_190821_1947/banned_words.txt
+++ config_190828_2045/banned_words.txt
@@ -355,11 +355,10 @@
   - kummer
   - kums
   - l3i\+ch
   - l3itch
   - labia
-  - lesbian
   - lesbo
   - m0f0
   - m0fo
   - m45terbate
   - ma5terb8
diff --git config_190821_1947/buffTags.txt config_190828_2045/buffTags.txt
index cc431f4..321e932 100644
--- config_190821_1947/buffTags.txt
+++ config_190828_2045/buffTags.txt
@@ -62,7 +62,10 @@
   - temple_cultist_cure
   - temple_cultist_curse_blind
   - temple_cultist_curse_hinder_plane
   - temple_cultist_curse_hinder_dualstick
   - temple_cultist_curse_frail
+  - temple_cultist_curse_silence
+  - temple_cultist_curse_stagnate
+  - temple_cultist_curse_combust
   id: temple_cultist_curses
   stacks: '1'
diff --git config_190821_1947/buffs.txt config_190828_2045/buffs.txt
index 9c94511..d20494c 100644
--- config_190821_1947/buffs.txt
+++ config_190828_2045/buffs.txt
@@ -574,86 +574,132 @@
   expireOnServerLeave: 'true'
   hudColorBackground: 050405ff
   hudColorBar: 48444cff
   id: meowza2_silence_long
   stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: temple_cultist_curse_cure
-        portrait: cultist
-  effects:
+- effects:
   - statMod:
       amount: '5.0'
       math: multiply
       name: healthRegenRate
   expireAfter: 0:00:15
   expireOnServerLeave: 'true'
   hudColorBackground: 55ff55ff
   hudColorBar: 428142ff
   id: temple_cultist_cure
   stackOverflowRule: ReplaceOldest
 - dialogue:
     onStart:
     - speechOptions:
-      - format: HideSpeechBubble
+      - format: dialogue
         id: temple_cultist_curse_blind
-        portrait: cultist
+        portrait: cultistboss
   effects:
   - statMod:
-      amount: '0.50'
+      amount: '0.60'
       math: multiply
       name: cameraZoomMod
   expireOnServerLeave: 'true'
   hudColorBackground: 050405ff
   hudColorBar: 48444cff
   id: temple_cultist_curse_blind
   stackOverflowRule: Ignore
 - dialogue:
     onStart:
     - speechOptions:
-      - format: HideSpeechBubble
+      - format: dialogue
         id: temple_cultist_curse_hinder_plane
-        portrait: cultist
+        portrait: cultistboss
   effects:
   - statMod:
-      amount: '0.15'
+      amount: '0.5'
       math: multiply
       name: maxTurnRate
   expireOnServerLeave: 'true'
   hudColorBackground: 050405ff
   hudColorBar: 48444cff
   id: temple_cultist_curse_hinder_plane
   stackOverflowRule: Ignore
 - dialogue:
     onStart:
     - speechOptions:
-      - format: HideSpeechBubble
+      - format: dialogue
         id: temple_cultist_curse_hinder_dualstick
-        portrait: cultist
+        portrait: cultistboss
   effects:
   - statMod:
-      amount: '0.05'
+      amount: '0.5'
       math: multiply
       name: maxTurnRate
   expireOnServerLeave: 'true'
   hudColorBackground: 050405ff
   hudColorBar: 48444cff
   id: temple_cultist_curse_hinder_dualstick
   stackOverflowRule: Ignore
 - dialogue:
     onStart:
     - speechOptions:
-      - format: HideSpeechBubble
+      - format: dialogue
         id: temple_cultist_curse_frail
-        portrait: cultist
+        portrait: cultistboss
   effects:
   - statMod:
       amount: '1.5'
       math: multiply
       name: damageReceivedMod
   expireOnServerLeave: 'true'
   hudColorBackground: 050405ff
   hudColorBar: 48444cff
   id: temple_cultist_curse_frail
   stackOverflowRule: Ignore
+- dialogue:
+    onStart:
+    - speechOptions:
+      - format: dialogue
+        id: temple_cultist_curse_silence
+        portrait: cultistboss
+  effects:
+  - statMod:
+      amount: '0.1'
+      math: multiply
+      name: maxEnergyPoints
+  expireOnServerLeave: 'true'
+  hudColorBackground: 050405ff
+  hudColorBar: 48444cff
+  id: temple_cultist_curse_silence
+  stackOverflowRule: Ignore
+- dialogue:
+    onStart:
+    - speechOptions:
+      - format: dialogue
+        id: temple_cultist_curse_stagnate
+        portrait: cultistboss
+  effects:
+  - statMod:
+      amount: '0.0'
+      math: multiply
+      name: healthRegenRate
+  - statMod:
+      amount: '0.0'
+      math: multiply
+      name: energyRegenRate
+  expireOnServerLeave: 'true'
+  hudColorBackground: 050405ff
+  hudColorBar: 48444cff
+  id: temple_cultist_curse_stagnate
+  stackOverflowRule: Ignore
+- dialogue:
+    onStart:
+    - speechOptions:
+      - format: dialogue
+        id: temple_cultist_curse_combust
+        portrait: cultistboss
+  effects:
+  - statMod:
+      amount: '1.5'
+      math: multiply
+      name: BurnSusceptibility
+  expireOnServerLeave: 'true'
+  hudColorBackground: 050405ff
+  hudColorBar: 48444cff
+  id: temple_cultist_curse_combust
+  stackOverflowRule: Ignore
diff --git config_190821_1947/global.txt config_190828_2045/global.txt
index 65469e9..60442ec 100644
--- config_190821_1947/global.txt
+++ config_190828_2045/global.txt
@@ -8,14 +8,15 @@ autoRestartNexusEnabled: 'true'
 autoRestartNexusMinSeconds: '7200'
 autoRestartNexusRandomOffsetSeconds: '3600'
 autoRestartNexusSchedule:
   hour: '10'
 backend: ozy
-backendErrorPercentage: '0'
-backendMonkeyDelayMaxMs: '500'
+backendErrorMonkeyActive: 'false'
+backendErrorPercentage: '0.01'
+backendMonkeyDelayMaxMs: '5000'
 backendMonkeyDelayMinMs: '10'
-backendReturnTimeoutPercentage: '0'
+backendReturnTimeoutPercentage: '0.01'
 baseNumHangarSlots: '2'
 baseNumInventorySlots: '12'
 baseNumStorageSlots: '16'
 baseSkillLoadoutSlots: '1'
 bulletMaxDeltaCollide: '0.25'
@@ -90,14 +91,20 @@ dontKillPlayersDuringRecentLag: 'true'
 dontSpawnWithinDistOfPlayer: '60'
 drawDebugPointsForSpawns: 'false'
 dungeonExitAppearAnimationSpeedup: '3'
 dungeonMarkerSpawnRadius: '15'
 dungeonPortalJoinGracePeriod: '30'
+dungeonPortalLazyStartList:
+- DungeonBomb
+- DungeonObstacle
+- DungeonGrind
+- Dungeon_tut_03
+- Dungeon_tut_05
 dungeonPortalStayOpenForSeconds: '30'
 emailValidationRequired: 'true'
 emailValidationSkippedForAdmins: 'true'
-emailValidationTimeoutInSec: '28800'
+emailValidationTimeoutInSec: '172800'
 enableOptionsMenu: 'true'
 enableResetToTutorialKey: 'false'
 enableRewired: 'true'
 everybodyHasAlternativeEquipmentSlots: 'true'
 faqUrl: https://support.spryfox.com/hc/en-us/categories/202699708-Steambirds-Alliance
@@ -141,12 +148,13 @@ lootbagLifetime: '30'
 lootbagLifetimeIfDrifting: '60'
 maxActiveUnits: '50000'
 maxStandardSpawnsPerFrame: '5000'
 maxUnitSpawnsPerFrame: '10'
 networkCutoff: '21'
-nexusConnectTimeout: '20'
+nexusConnectTimeout: '120'
 nexusGroundHeight: '0.25'
+nexusPlayerUpdateTimeout: '5'
 nexusSpawnQuestHelpers: 'true'
 otherPlayerBulletAlpha: '0.4'
 outboundCap: '32000'
 perfNoBackground: 'false'
 perfNoBullets: 'false'
@@ -679,10 +687,11 @@ showRefinedSubTerritories: 'false'
 showSpawns: 'false'
 showSubTerritoriesGroups: 'false'
 showTerritoryGrid: 'false'
 shutdownCountdown: '10'
 shutdownDelayToCountdown: '10'
+shutdownDurationBeforeDiscardingDirtyPlayerData: '900'
 shutdownWithCameraShake: 'true'
 singleFrameSpawning: 'true'
 slowTickDurationMs: '150'
 spawnWallsOnServer: 'true'
 startingPlaneClass: walker
diff --git config_190821_1947/index.txt config_190828_2045/index.txt
index ec558c0..c563dd6 100644
--- config_190821_1947/index.txt
+++ config_190828_2045/index.txt
@@ -1232,10 +1232,22 @@
 - Units/69D - Temple Dungeon/unit_turret
 - Units/69D - Temple Dungeon/unit_turretleader
 - Units/69D - Temple Dungeon/unit_warpmine
 - Units/69D - Temple Dungeon/unit_warpmine2
 - Units/69D - Temple Dungeon/unit_warpmineleader
+- Units/69D - Temple Dungeon/xxx_temple_altar
+- Units/69D - Temple Dungeon/xxx_temple_altar_heal
+- Units/69D - Temple Dungeon/xxx_temple_banishee
+- Units/69D - Temple Dungeon/xxx_temple_cultist
+- Units/69D - Temple Dungeon/xxx_temple_cultistBIG
+- Units/69D - Temple Dungeon/xxx_temple_droneBIG
+- Units/69D - Temple Dungeon/xxx_temple_fireball
+- Units/69D - Temple Dungeon/xxx_temple_iceball
+- Units/69D - Temple Dungeon/xxx_temple_spawner_tower
+- Units/69D - Temple Dungeon/xxx_temple_spawner_tower_visible
+- Units/69D - Temple Dungeon/xxx_temple_spawner_tower2
+- Units/69D - Temple Dungeon/xxx_temple_trooper
 - Units/69D - Temple Dungeon/zzz_templedungeondestroyablewall
 - Units/69D - Temple Dungeon/zzz_templedungeondestroyablewallstrong
 - Units/69D - Temple Dungeon/zzz_templedungeontreasure
 - Units/70D - Sneezy Mini Dungeon/BOS_sneezy
 - Units/70D - Sneezy Mini Dungeon/BOS_sneezyblackbox
diff --git config_190821_1947/skills.txt config_190828_2045/skills.txt
index 17a635a..0424906 100644
--- config_190821_1947/skills.txt
+++ config_190828_2045/skills.txt
@@ -624,30 +624,39 @@
     volatileConditions:
     - firingMainGun: 'true'
 - category: Triple
   conditions:
   - itemTag: triple
-  cost: '2'
+  cost: '4'
   icon: skillicon_triple
   id: triple_1a
   label: 1-A
-  maxLevel: '5'
+  maxLevel: '2'
   triggers:
   - actions:
-    - cooldown: '1'
-      duration: '3'
+    - duration: '6'
       mods:
       - statMod:
-          amount: '1.13'
+          amount: '1.12'
           math: multiply
           name: gunDamageMod
       - statMod:
-          amount: '1.03'
+          amount: '1.04'
           leveling: 'true'
           math: multiply
           name: gunDamageMod
+      - statMod:
+          amount: '1.04'
+          math: multiply
+          name: damageReceivedMod
+      - statMod:
+          amount: '1.01'
+          leveling: 'true'
+          math: multiply
+          name: damageReceivedMod
       - effectIcon: effecticon_damageboost
+      stacks: '3'
     trigger: OnManeuverStart
 - category: Triple
   conditions:
   - itemTag: triple
   cost: '3'
@@ -691,26 +700,27 @@
           burst: '1'
           cooldown: '1000000000'
           damage: '0.1'
           effect: Slow
           effectAmount: '0.7'
-          effectDamage: '11'
+          effectDamage: '8'
           effectTime: '3'
+          isPiercing: 'true'
           lifetime: '0.35'
-          multi: '10'
-          multiSpread: '36'
+          multi: '12'
+          multiSpread: '30'
           rof: '1'
           speed: '20.0'
           spread: '0'
         mountAngle: '0'
     - cooldown: '1'
       duration: '3'
       mods:
       - statMod:
           amount: '0.9'
           math: multiply
-          name: gunDamageMod
+          name: gunRangeMod
     trigger: OnManeuverStart
 - category: Triple
   conditions:
   - itemTag: triple
   cost: '3'
@@ -4098,102 +4108,92 @@
       - effectIcon: effecticon_steamcost
     trigger: OnKill
 - category: Engineer
   conditions:
   - planeClass: engineer
-  cost: '2'
+  cost: '4'
   icon: skillicon_engineer
   id: engineer_1a
   label: 1-A
-  maxLevel: '5'
+  maxLevel: '1'
   passives:
   - mods:
     - statMod:
-        amount: '40'
+        amount: '301'
         math: multiply
         name: spawnTurnRateMod
     - statMod:
-        amount: '7'
-        leveling: 'true'
+        amount: '4'
         math: multiply
-        name: spawnTurnRateMod
+        name: spawnHealthMod
     - statMod:
-        amount: '0.90'
+        amount: '1.05'
         math: multiply
-        name: secondaryEnergyCostMod
+        name: spawnDamageMod
 - category: Engineer
   conditions:
   - planeClass: engineer
-  cost: '2'
+  cost: '4'
   icon: skillicon_engineer
   id: engineer_1b
   label: 1-B
-  maxLevel: '5'
+  maxLevel: '1'
   passives:
   - mods:
     - statMod:
-        amount: '1.15'
+        amount: '0.01'
         math: multiply
-        name: spawnDamageMod
-    - statMod:
-        amount: '1.02'
-        leveling: 'true'
-        math: multiply
-        name: spawnDamageMod
-    - statMod:
-        amount: '1.05'
-        math: multiply
-        name: secondaryEnergyCostMod
+        name: spawnCooldownMod
 - category: Engineer
   conditions:
   - planeClass: engineer
   cost: '2'
   icon: skillicon_engineer
   id: engineer_2a
   label: 2-A
   maxLevel: '5'
   passives:
   - mods:
     - statMod:
-        amount: '1.5'
+        amount: '0.91'
         math: multiply
-        name: spawnHealthMod
+        name: secondaryEnergyCostMod
     - statMod:
-        amount: '1.2'
+        amount: '0.97'
         leveling: 'true'
         math: multiply
-        name: spawnHealthMod
+        name: secondaryEnergyCostMod
     - statMod:
-        amount: '1.07'
+        amount: '0.9'
         math: multiply
-        name: damageReceivedMod
+        name: maneuverEnergyCostMod
     - statMod:
-        amount: '1.01'
+        amount: '0.94'
         leveling: 'true'
         math: multiply
-        name: damageReceivedMod
+        name: maneuverEnergyCostMod
 - category: Engineer
   conditions:
   - planeClass: engineer
   cost: '2'
   icon: skillicon_engineer
   id: engineer_2b
   label: 2-B
   maxLevel: '5'
   passives:
   - mods:
     - statMod:
-        amount: '1.16'
+        amount: '1.15'
         math: multiply
         name: spawnDamageMod
     - statMod:
-        amount: '1.04'
+        amount: '1.05'
         leveling: 'true'
         math: multiply
         name: spawnDamageMod
     - statMod:
-        amount: '0.92'
+        amount: '0.9'
         math: multiply
         name: gunDamageMod
     - statMod:
         amount: '0.98'
         leveling: 'true'
@@ -4208,11 +4208,11 @@
   label: 3-A
   maxLevel: '5'
   passives:
   - mods:
     - statMod:
-        amount: '1.25'
+        amount: '1.15'
         math: multiply
         name: spawnRangeMod
     - statMod:
         amount: '1.05'
         leveling: 'true'
@@ -4227,33 +4227,38 @@
   label: 3-B
   maxLevel: '5'
   passives:
   - mods:
     - statMod:
-        amount: '0.5'
+        amount: '0.64'
         math: multiply
         name: secondaryCooldownMod
     - statMod:
-        amount: '0.96'
+        amount: '0.89'
         leveling: 'true'
         math: multiply
         name: secondaryCooldownMod
     - statMod:
-        amount: '0.8'
+        amount: '1.01'
         math: multiply
-        name: spawnRangeMod
+        name: spawnDamageMod
+    - statMod:
+        amount: '1.01'
+        leveling: 'true'
+        math: multiply
+        name: spawnDamageMod
 - category: Engineer
   conditions:
   - planeClass: engineer
   cost: '3'
   icon: skillicon_engineer
   id: engineer_4a
   label: 4-A
   maxLevel: '5'
   triggers:
   - actions:
-    - duration: '2'
+    - duration: '3'
       mods:
       - statMod:
           amount: '0.94'
           math: multiply
           name: secondaryEnergyCostMod
@@ -4266,30 +4271,18 @@
       stacks: '3'
     trigger: OnKill
 - category: Engineer
   conditions:
   - planeClass: engineer
-  cost: '3'
+  cost: '10'
   icon: skillicon_engineer
   id: engineer_4b
   label: 4-B
-  maxLevel: '5'
+  maxLevel: '1'
   triggers:
   - actions:
-    - duration: '5'
-      mods:
-      - statMod:
-          amount: '1.3'
-          math: multiply
-          name: spawnHealthMod
-      - statMod:
-          amount: '1.1'
-          leveling: 'true'
-          math: multiply
-          name: spawnHealthMod
-      - effectIcon: effecticon_steamcost
-      stacks: '2'
+    - health: '2'
     trigger: OnKill
 - category: Siegetank
   conditions:
   - planeClass: siegetank
   cost: '2'
diff --git config_190821_1947/statefulEffects.txt config_190828_2045/statefulEffects.txt
index d699bd1..eea5250 100644
--- config_190821_1947/statefulEffects.txt
+++ config_190828_2045/statefulEffects.txt
@@ -23,10 +23,13 @@ EnemyEffect_chargeUp_small:
   loopFollowsPlanePart: Collider
   loopPrefab: EnemyEffect_chargeUp_small
 EnemyEffect_sniperLaser:
   loopFollowsPlanePart: Collider
   loopPrefab: EnemyEffect_sniperLaser
+curse_area:
+  loopFollowsPlanePart: Collider
+  loopPrefab: CurseArea
 detectionCone180_1:
   loopFollowsPlanePart: Collider
   loopPrefab: detectionCone180_1
 detectionCone180_2:
   loopFollowsPlanePart: Collider
diff --git config_190821_1947/store.txt config_190828_2045/store.txt
index d2b0b31..1f456ae 100644
--- config_190821_1947/store.txt
+++ config_190828_2045/store.txt
@@ -5083,46 +5083,10 @@ products:
   unlocks:
   - emote_musicnotes
 - additional_price_tags:
   - id: normal
     price:
-      amount: '7000'
-      currency: gold
-  - id: scrap
-    price:
-      amount: '21000'
-      currency: scrap
-  icon: ItemEmote
-  id: unlock_emote_LOL
-  max_per_account: '1'
-  max_per_account_count_unlocks: 'true'
-  preRelease: 'false'
-  preview_camera_direction:
-  - '0'
-  - '1'
-  - '0'
-  preview_camera_offset:
-  - '0'
-  - '0'
-  - '-1'
-  preview_clipping_area: '20'
-  preview_distance: '3'
-  preview_prefab_name: QuickChat_LOL_Preview
-  preview_prefab_pool: UI
-  preview_reenable_timeout: '3'
-  preview_target_offset:
-  - '0'
-  - '0'
-  - '-1'
-  tags:
-  - unlocks
-  - emotes_epic
-  unlocks:
-  - emote_LOL
-- additional_price_tags:
-  - id: normal
-    price:
       amount: '1000'
       currency: gold
   - id: scrap
     price:
       amount: '3000'
@@ -5263,15 +5227,15 @@ products:
   unlocks:
   - emote_wings
 - additional_price_tags:
   - id: normal
     price:
-      amount: '1000'
+      amount: '7000'
       currency: gold
   - id: scrap
     price:
-      amount: '3000'
+      amount: '21000'
       currency: scrap
   icon: ItemEmote_OutOfSteam
   id: unlock_emote_outofsteam
   max_per_account: '1'
   max_per_account_count_unlocks: 'true'
@@ -5293,11 +5257,11 @@ products:
   - '0'
   - '0'
   - '0'
   tags:
   - unlocks
-  - emotes_common
+  - emotes_epic
   unlocks:
   - emote_outofsteam
 - additional_price_tags:
   - id: normal
     price:
@@ -5335,10 +5299,46 @@ products:
   unlocks:
   - emote_launchconfetti
 - additional_price_tags:
   - id: normal
     price:
+      amount: '7000'
+      currency: gold
+  - id: scrap
+    price:
+      amount: '21000'
+      currency: scrap
+  icon: ItemEmote_Epic
+  id: unlock_emote_LOL
+  max_per_account: '1'
+  max_per_account_count_unlocks: 'true'
+  preRelease: 'false'
+  preview_camera_direction:
+  - '0'
+  - '1'
+  - '0'
+  preview_camera_offset:
+  - '0'
+  - '0'
+  - '-1'
+  preview_clipping_area: '20'
+  preview_distance: '3'
+  preview_prefab_name: QuickChat_LOL_Preview
+  preview_prefab_pool: UI
+  preview_reenable_timeout: '3'
+  preview_target_offset:
+  - '0'
+  - '0'
+  - '-1'
+  tags:
+  - unlocks
+  - emotes_epic
+  unlocks:
+  - emote_LOL
+- additional_price_tags:
+  - id: normal
+    price:
       amount: '1000'
       currency: gold
   - id: scrap
     price:
       amount: '3000'