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
 122 files changed, 214 insertions(+), 4178 deletions(-)

diff --git config_190801_043/Items/Consumables/dungeon.txt config_190801_051/Items/Consumables/dungeon.txt
index d678310..138faa1 100644
--- config_190801_043/Items/Consumables/dungeon.txt
+++ config_190801_051/Items/Consumables/dungeon.txt
@@ -56,14 +56,10 @@
   tier: '1'
 - id: dungeon_finalboss
   plane: DungeonFinalBoss
   slot: Portal
   tier: '1'
-- id: dungeon_finalboss2
-  plane: DungeonFinalBoss2
-  slot: Portal
-  tier: '1'
 - id: dungeon_3brothers
   plane: Dungeon3Brothers
   slot: Portal
   tier: '1'
 - id: dungeon_obstacle
diff --git config_190801_043/Items/Primary Weapons/laser_ultrarares.txt config_190801_051/Items/Primary Weapons/laser_ultrarares.txt
index a228a13..ef432e1 100644
--- config_190801_043/Items/Primary Weapons/laser_ultrarares.txt	
+++ config_190801_051/Items/Primary Weapons/laser_ultrarares.txt	
@@ -235,35 +235,32 @@
   obsoleteMigrateTo: laser_moon_10
   slot: MainGun
   soulbound: 'true'
   tag: laser
   tier: '100'
-- extraTags:
-  - ultra
-  - legendary
-  gunMounts:
+- gunMounts:
   - fireMode: Sprinkler
     flashOffset: '-2.5'
     flashPrefab: muzzleFlashEffect_generic_T9
     gunTypeConfig:
       bulletHue: blue
-      bulletPalette: all_color
-      bulletPrefab: bolaBullet
-      bulletSize: '3'
+      bulletPalette: glow
+      bulletPrefab: tracerBullet
+      bulletSize: '0.3'
       burst: '30000'
       cooldown: '0'
       damage: '0.1'
-      effect: Water
+      effect: Poison
       effectAmount: '0.1'
-      effectDamage: '3.6'
+      effectDamage: '9'
       effectTime: '0.1'
       isPiercing: 'true'
       lifetime: '0.25'
-      multi: '1'
+      multi: '3'
       multiSpread: '120'
       name: laser_blackhole_1
-      rof: '9'
+      rof: '10'
       speed: '10'
       spread: '0'
     mountAngle: '-15'
     mountName: laser_blackhole_mount
     offset:
@@ -278,146 +275,10 @@
       volume: '0.3'
     sprinklerFlyback: 'false'
     sprinklerIncrementAngle: '22.5'
     sprinklerStartAngle: '0'
     sprinklerTurnbackAngle: '8000'
-  - fireMode: Sprinkler
-    flashOffset: '-2.5'
-    flashPrefab: muzzleFlashEffect_generic_T9
-    gunTypeConfig:
-      bulletHue: teal
-      bulletPalette: all_color
-      bulletPrefab: bolaBullet
-      bulletSize: '3'
-      burst: '30000'
-      cooldown: '0'
-      damage: '0.1'
-      effect: Slow
-      effectAmount: '0.1'
-      effectDamage: '3.6'
-      effectTime: '0.1'
-      isPiercing: 'true'
-      lifetime: '0.25'
-      multi: '1'
-      multiSpread: '120'
-      name: laser_blackhole_2
-      rof: '9'
-      speed: '10'
-      spread: '0'
-    mountAngle: '-15'
-    mountName: laser_blackhole_mount2
-    offset:
-    - '0'
-    - '3.5'
-    sfx:
-      sound: 'null'
-    sprinklerFlyback: 'false'
-    sprinklerIncrementAngle: '25'
-    sprinklerStartAngle: '0'
-    sprinklerTurnbackAngle: '8000'
-  - fireMode: Sprinkler
-    flashOffset: '-2.5'
-    flashPrefab: muzzleFlashEffect_generic_T9
-    gunTypeConfig:
-      bulletHue: red
-      bulletPalette: all_color
-      bulletPrefab: bolaBullet
-      bulletSize: '3'
-      burst: '30000'
-      cooldown: '0'
-      damage: '0.1'
-      effect: Burn
-      effectAmount: '0.1'
-      effectDamage: '3.6'
-      effectTime: '0.1'
-      isPiercing: 'true'
-      lifetime: '0.25'
-      multi: '1'
-      multiSpread: '120'
-      name: laser_blackhole_3
-      rof: '9'
-      speed: '10'
-      spread: '0'
-    mountAngle: '-15'
-    mountName: laser_blackhole_mount3
-    offset:
-    - '0'
-    - '3.5'
-    sfx:
-      sound: 'null'
-    sprinklerFlyback: 'false'
-    sprinklerIncrementAngle: '27.5'
-    sprinklerStartAngle: '0'
-    sprinklerTurnbackAngle: '8000'
-  - fireMode: Sprinkler
-    flashOffset: '-2.5'
-    flashPrefab: muzzleFlashEffect_generic_T9
-    gunTypeConfig:
-      bulletHue: purple
-      bulletPalette: all_color
-      bulletPrefab: bolaBullet
-      bulletSize: '3'
-      burst: '30000'
-      cooldown: '0'
-      damage: '0.1'
-      effect: Poison
-      effectAmount: '0.1'
-      effectDamage: '3.6'
-      effectTime: '0.1'
-      isPiercing: 'true'
-      lifetime: '0.25'
-      multi: '1'
-      multiSpread: '120'
-      name: laser_blackhole_4
-      rof: '9'
-      speed: '10'
-      spread: '0'
-    mountAngle: '-15'
-    mountName: laser_blackhole_mount4
-    offset:
-    - '0'
-    - '3.5'
-    sfx:
-      sound: 'null'
-    sprinklerFlyback: 'false'
-    sprinklerIncrementAngle: '30'
-    sprinklerStartAngle: '0'
-    sprinklerTurnbackAngle: '8000'
-  - fireMode: Sprinkler
-    flashOffset: '-2.5'
-    flashPrefab: muzzleFlashEffect_generic_T9
-    gunTypeConfig:
-      bulletHue: yellow
-      bulletPalette: all_color
-      bulletPrefab: bolaBullet
-      bulletSize: '3'
-      burst: '30000'
-      cooldown: '0'
-      damage: '0.1'
-      effect: Lightning
-      effectAmount: '0.1'
-      effectDamage: '3.6'
-      effectTime: '0.1'
-      isPiercing: 'true'
-      lifetime: '0.25'
-      multi: '1'
-      multiSpread: '120'
-      name: laser_blackhole_5
-      rof: '9'
-      speed: '10'
-      spread: '0'
-    mountAngle: '-15'
-    mountName: laser_blackhole_mount5
-    offset:
-    - '0'
-    - '3.5'
-    sfx:
-      sound: 'null'
-    sprinklerFlyback: 'false'
-    sprinklerIncrementAngle: '32.5'
-    sprinklerStartAngle: '0'
-    sprinklerTurnbackAngle: '8000'
   icon: ItemLootLaserGun_10_legendary
   id: laser_blackhole
   slot: MainGun
   soulbound: 'true'
   tag: laser
diff --git config_190801_043/Items/Primary Weapons/sniper_ultrarares.txt config_190801_051/Items/Primary Weapons/sniper_ultrarares.txt
index e42b6e0..f3886ec 100644
--- config_190801_043/Items/Primary Weapons/sniper_ultrarares.txt	
+++ config_190801_051/Items/Primary Weapons/sniper_ultrarares.txt	
@@ -232,11 +232,11 @@
   summarizeStats: 'true'
   tag: sniper
   tier: '100'
 - extraTags:
   - ultra
-  - legendary
+  - rare
   gunMounts:
   - flashOffset: '0.4'
     flashPrefab: muzzleFlashEffect_generic_T9
     gunTypeConfig:
       bulletHue: purple
diff --git config_190801_043/Items/armor/armor_10_m2a.txt config_190801_043/Items/armor/armor_10_m2a.txt
deleted file mode 100644
index 2420c13..0000000
diff --git config_190801_043/Items/armor/armor_10_m2b.txt config_190801_043/Items/armor/armor_10_m2b.txt
deleted file mode 100644
index f68a9f9..0000000
diff --git config_190801_043/Items/armor/armor_10_m2c.txt config_190801_043/Items/armor/armor_10_m2c.txt
deleted file mode 100644
index cec2829..0000000
diff --git config_190801_043/Items/armor/armor_10_m2d.txt config_190801_043/Items/armor/armor_10_m2d.txt
deleted file mode 100644
index b35f3fe..0000000
diff --git config_190801_043/Items/armor/armor_10_m2e.txt config_190801_043/Items/armor/armor_10_m2e.txt
deleted file mode 100644
index ba098b4..0000000
diff --git config_190801_043/Items/armor/armor_10_m2f.txt config_190801_043/Items/armor/armor_10_m2f.txt
deleted file mode 100644
index 7144a00..0000000
diff --git config_190801_043/Items/armor/armor_10_m2g.txt config_190801_043/Items/armor/armor_10_m2g.txt
deleted file mode 100644
index d2bb773..0000000
diff --git config_190801_043/Items/armor/armor_10_m2h.txt config_190801_043/Items/armor/armor_10_m2h.txt
deleted file mode 100644
index 70846f2..0000000
diff --git config_190801_043/Items/armor/armor_10_m2i.txt config_190801_043/Items/armor/armor_10_m2i.txt
deleted file mode 100644
index cc10ecf..0000000
diff --git config_190801_043/Items/armor/armor_10_m2j.txt config_190801_043/Items/armor/armor_10_m2j.txt
deleted file mode 100644
index 78210e6..0000000
diff --git config_190801_043/Items/armor/armor_10_m2k.txt config_190801_043/Items/armor/armor_10_m2k.txt
deleted file mode 100644
index 9a8892a..0000000
diff --git config_190801_043/Items/armor/armor_10_m2l.txt config_190801_043/Items/armor/armor_10_m2l.txt
deleted file mode 100644
index 1c494ce..0000000
diff --git config_190801_043/Items/armor/armor_10_m2m.txt config_190801_043/Items/armor/armor_10_m2m.txt
deleted file mode 100644
index 1de7920..0000000
diff --git config_190801_043/Items/armor/armor_10_m2n.txt config_190801_043/Items/armor/armor_10_m2n.txt
deleted file mode 100644
index 82d2de3..0000000
diff --git config_190801_043/Items/armor/armor_10_m2p.txt config_190801_043/Items/armor/armor_10_m2p.txt
deleted file mode 100644
index 9c1930c..0000000
diff --git config_190801_043/Items/armor/armor_10_m2q.txt config_190801_043/Items/armor/armor_10_m2q.txt
deleted file mode 100644
index 2949bb5..0000000
diff --git config_190801_043/Quests/quests_daily.txt config_190801_051/Quests/quests_daily.txt
index 33ee5de..90efdae 100644
--- config_190801_043/Quests/quests_daily.txt
+++ config_190801_051/Quests/quests_daily.txt
@@ -51,11 +51,11 @@
     units:
     - id: thiefidol1_key
   - fallbackGuidanceTargets:
     - thiefchest
     guidanceEnabled: 'false'
-    target: '10'
+    target: '18'
     type: encounter
     units:
     - id: thiefkey_poop
   - target: '1'
     type: kill
diff --git config_190801_043/Texts/en-US/bark.txt config_190801_051/Texts/en-US/bark.txt
index 3ef42a1..2c7d38f 100644
--- config_190801_043/Texts/en-US/bark.txt
+++ config_190801_051/Texts/en-US/bark.txt
@@ -1,36 +1,5 @@
-3brosdungeonwarning:
-  randomOptions:
-  - text: Only prepared veteran pilots should attempt this mission!
-3brothers_death1:
-  randomOptions:
-  - text: Meowza, have mercy upon my soul...
-    weight: '1'
-3brothers_death2:
-  randomOptions:
-  - text: I feel her claws digging into my spirit...
-    weight: '1'
-3brothers_death3:
-  randomOptions:
-  - text: Oh Meowza, forgive my weakness! Do not consign me to the furnace...
-    weight: '1'
-3brothers_deathX:
-  randomOptions:
-  - text: '...'
-    weight: '1'
-3brothers_intro1:
-  randomOptions:
-  - text: You dare to follow Meowza into her inner sanctum?
-    weight: '1'
-3brothers_intro2:
-  randomOptions:
-  - text: This is holy ground! Even the feline nobility fear this place!
-    weight: '1'
-3brothers_intro3:
-  randomOptions:
-  - text: We are Meowza's elite guard, and you... you will be our playthings.
-    weight: '1'
 BOS1_meowza1:
   randomOptions:
   - text: Welcome Catizens!
     weight: '1'
   - text: The Emperor welcomes you!
@@ -603,94 +572,10 @@ duelist:
   - text: Oh, are you approaching me?
     weight: '1'
   - text: Come closer...
     weight: '1'
   - weight: '5'
-dungeonmod_acrobatics:
-  randomOptions:
-  - text: '<color=#c1b38eff>Acrobatics</color><color=#ffffffff>: -50% Manuever Steam Cost, +20% Damage Taken.</color>'
-    weight: '1'
-dungeonmod_bogged_down:
-  randomOptions:
-  - text: '<color=#c1b38eff>Bogged Down</color><color=#ffffffff>: -25% Superspeed.</color>'
-    weight: '1'
-dungeonmod_broken_axis_dualstick:
-  randomOptions:
-  - text: '<color=#ff7900ff>* Broken Axis (Difficult) *</color><color=#ffffffff>: -85% Max Turn Rate, -25% Manuever Steam Cost. Loot: 2x plane upgrades, 3x chance of special loot.</color>'
-    weight: '1'
-dungeonmod_broken_axis_plane:
-  randomOptions:
-  - text: '<color=#ff7900ff>* Broken Axis (Difficult) *</color><color=#ffffffff>: -65% Max Turn Rate, -25% Manuever Steam Cost. Loot: 2x plane upgrades, 3x chance of special loot.</color>'
-    weight: '1'
-dungeonmod_constrained:
-  randomOptions:
-  - text: '<color=#ff7900ff>* Constrained (Difficult) *</color><color=#ffffffff>: -50% Steam. Loot: 2x plane upgrades, 3x chance of special loot.</color>'
-    weight: '1'
-dungeonmod_dead_to_world:
-  randomOptions:
-  - text: '<color=#d40009ff>*** Dead to the World (Lethal)</color>: -95% Steam, +20% Damage Taken</color>. Loot: 2x plane upgrades, 8x chance of special loot.'
-    weight: '1'
-dungeonmod_eager_help:
-  randomOptions:
-  - text: '<color=#c1b38eff>Eager to Help</color><color=#ffffffff>: -35% Secondary Ability Steam Cost, +20% Damage Taken.</color>'
-    weight: '1'
-dungeonmod_enfeebled:
-  randomOptions:
-  - text: '<color=#d40009ff>*** Enfeebled (Lethal) ***</color><color=#ffffffff>: +80% Damage Taken. Loot: 2x plane upgrades, 8x chance of special loot.</color>'
-    weight: '1'
-dungeonmod_exhausted:
-  randomOptions:
-  - text: '<color=#ff7900ff>* Exhausted (Difficult) *</color><color=#ffffffff>: -100% Steam Regen. Loot: 2x plane upgrades, 3x chance of special loot.</color>'
-    weight: '1'
-dungeonmod_extremely_touchy:
-  randomOptions:
-  - text: '<color=#ff7900ff>* Extremely Touchy (Difficult) *</color><color=#ffffffff>: +70% Armor Regen, +40% Damage Taken. Loot: 2x plane upgrades, 3x chance of special loot.</color>'
-    weight: '1'
-dungeonmod_fast_learner:
-  randomOptions:
-  - text: '<color=#ff7900ff>* Fast Learner (Difficult) *</color><color=#ffffffff>: +25% XP, +35% Damage Taken. Loot: 2x plane upgrades, 3x chance of special loot.</color>'
-    weight: '1'
-dungeonmod_float_butterfly:
-  randomOptions:
-  - text: '<color=#c1b38eff>Float Like a Butterfly</color><color=#ffffffff>: +30% Gun Damage, +30% Damage Taken.</color>'
-    weight: '1'
-dungeonmod_hot_to_handle:
-  randomOptions:
-  - text: '<color=#d40009ff>*** Too Hot to Handle (Lethal) ***</color><color=#ffffffff>: +250% Superspeed, -15% Camera View, +50% Damage Taken. Loot: 2x plane upgrades, 8x chance of special loot.</color>'
-    weight: '1'
-dungeonmod_hunt_peck:
-  randomOptions:
-  - text: '<color=#c1b38eff>Hunt and Peck</color><color=#ffffffff>: -50% ROF, +25% Gun Damage.</color>'
-    weight: '1'
-dungeonmod_in_your_face:
-  randomOptions:
-  - text: '<color=#c1b38eff>In Your Face</color><color=#ffffffff>: +20% Gun Damage, -40% Gun Range.</color>'
-    weight: '1'
-dungeonmod_insomniac:
-  randomOptions:
-  - text: '<color=#d40009ff>*** Insomniac (Lethal) ***</color><color=#ffffffff>: -100% Armor Regen, -100% Steam Regen, -30% Superspeed, +25% Damage Taken. Loot: 2x plane upgrades, 8x chance of special loot.</color>'
-    weight: '1'
-dungeonmod_itchy_trigger:
-  randomOptions:
-  - text: '<color=#c1b38eff>Itchy Trigger</color><color=#ffffffff>: +30% ROF & Ammo, -30% Cooldown & Gun Damage.</color>'
-    weight: '1'
-dungeonmod_nearsighted:
-  randomOptions:
-  - text: '<color=#ff7900ff>* Nearsighted (Difficult) *</color><color=#ffffffff>: -35% Camera View. Loot: 2x plane upgrades, 3x chance of special loot.</color>'
-    weight: '1'
-dungeonmod_restless:
-  randomOptions:
-  - text: '<color=#c1b38eff>Restless</color><color=#ffffffff>: -50% Armor Regen, +25% Superspeed.</color>'
-    weight: '1'
-dungeonmod_rush_hour:
-  randomOptions:
-  - text: '<color=#ff7900ff>* Rush Hour (Difficult) *</color><color=#ffffffff>: +50% Superspeed, +35% Damage Taken. Loot: 2x plane upgrades, 3x chance of special loot.</color>'
-    weight: '1'
-dungeonmod_touchy_bark:
-  randomOptions:
-  - text: '<color=#c1b38eff>Touchy</color><color=#ffffffff>: +30% Armor Regen, +25% Damage Taken.</color>'
-    weight: '1'
 escort_01_escortmissionDEATH_1:
   randomOptions:
   - text: Oh, god.
     weight: '0.5'
   - text: Abandoning ship. Gonna blow!
@@ -1123,66 +1008,10 @@ marksman:
   - text: Exhale and squeeze...
     weight: '1'
   - text: Hold still...
     weight: '1'
   - weight: '5'
-meowza2_01:
-  randomOptions:
-  - text: Welcome, little birds.
-    weight: '1'
-meowza2_02:
-  randomOptions:
-  - text: Did you have fun with the three brothers? I upgraded them just for you.
-    weight: '1'
-meowza2_03:
-  randomOptions:
-  - text: Do you feel strong and brave, tasty birds?
-    weight: '1'
-meowza2_04:
-  randomOptions:
-  - text: Are you proud of yourselves for reaching my inner sanctum?
-    weight: '1'
-meowza2_05:
-  randomOptions:
-  - text: Are you pleased that you've defiled this holy place with your presence?
-    weight: '1'
-meowza2_06:
-  randomOptions:
-  - text: Well. We must make good use of this occasion, my snacks.
-    weight: '1'
-meowza2_07:
-  randomOptions:
-  - text: We are going to play together, you and I.
-    weight: '1'
-meowza2_08:
-  randomOptions:
-  - text: But before we start, I have a surprise for you, my delectables!
-    weight: '1'
-meowza2_09:
-  randomOptions:
-  - text: Every time you've killed one of my generals, I've been harvesting their souls.
-    weight: '1'
-meowza2_10:
-  randomOptions:
-  - text: Cat souls are like nuclear engines. They can power a dreadnought for centuries with their rage.
-    weight: '1'
-meowza2_11:
-  randomOptions:
-  - text: My dead generals are so, so eager to meet you again..!
-    weight: '1'
-meowza2_death:
-  randomOptions:
-  - text: You think you've won, little birds?
-    weight: '1'
-meowza2_death2:
-  randomOptions:
-  - text: You cannot kill what is already dead!
-    weight: '1'
-meowza2_start:
-  randomOptions:
-  - text: Ooh, you're still alive! This is going to be FUN!
-    weight: '1'
 meowzablocker:
   randomOptions:
   - text: Please vacate the entry area. Lesser animals are not allowed.
     weight: '1'
 meowzablocker2:
diff --git config_190801_043/Texts/en-US/buffs.txt config_190801_051/Texts/en-US/buffs.txt
index 962f7ac..b0235cb 100644
--- config_190801_043/Texts/en-US/buffs.txt
+++ config_190801_051/Texts/en-US/buffs.txt
@@ -1,46 +1,2 @@
-dungeonmod_acrobatics:
-  title: Acrobatics
-dungeonmod_bogged_down:
-  title: Bogged Down
-dungeonmod_broken_axis_dualstick:
-  title: Broken Axis
-dungeonmod_broken_axis_plane:
-  title: Broken Axis
-dungeonmod_constrained:
-  title: Constrained
-dungeonmod_dead_to_world:
-  title: Dead to the World
-dungeonmod_eager_help:
-  title: Eager to Help
-dungeonmod_enfeebled:
-  title: Enfeebled
-dungeonmod_exhausted:
-  title: Exhausted
-dungeonmod_extremely_touchy:
-  title: Extremely Touchy
-dungeonmod_fast_learner:
-  title: Fast Learner
-dungeonmod_float_butterfly:
-  title: Float Like a Butterfly
-dungeonmod_hot_to_handle:
-  title: Too Hot to Handle
-dungeonmod_hunt_peck:
-  title: Hunt and Peck
-dungeonmod_in_your_face:
-  title: In Your Face
-dungeonmod_insomniac:
-  title: Insomniac
-dungeonmod_itchy_trigger:
-  title: Itchy Trigger Finger
-dungeonmod_nearsighted:
-  title: Nearsighted
-dungeonmod_restless:
-  title: Restless
-dungeonmod_rush_hour:
-  title: Rush Hour
-dungeonmod_touchy:
-  title: Touchy
 test_curse:
   title: Cursed
-test_slow:
-  title: Slowed
diff --git config_190801_043/Texts/en-US/conversations.txt config_190801_051/Texts/en-US/conversations.txt
index 8c938a2..d020508 100644
--- config_190801_043/Texts/en-US/conversations.txt
+++ config_190801_051/Texts/en-US/conversations.txt
@@ -12,31 +12,10 @@ text:
   boss-hunt_03: The weakest of those machines are still very dangerous. We keep wrecking 'em, but Meowza just keeps making 'em.
   boss-hunt_04: The strongest war machines are incredibly powerful, but fortunately also harder for Meowza to replace.
   boss-hunt_05: When her top war machines are all annihilated, Meowza will have no choice but to confront us herself!
   boss-hunt_06: Your job today is to kill three of Meowza's toy war machines, as practice for more serious things to come.
   boss-hunt_07: Good skies!
-  dungeonmod_acrobatics_01: "<align=center>Dungeon modifier:\n <size=50><color=#c1b38eff>Acrobatics</color></size>\n -50% Manuever Steam Cost\n +20% Damage Taken</align>"
-  dungeonmod_bogged_down_01: "<align=center>Dungeon modifier:\n <size=50><color=#c1b38eff>Bogged Down</color></size>\n -25% Superspeed</align>"
-  dungeonmod_broken_axis_dualstick_01: "<align=center>Dungeon modifier:\n <size=50><color=#ff7900ff><sprite=0 tint=1> Broken Axis (Difficult) <sprite=0 tint=1></color></size>\n -85% Max Turn Rate\n -25% Manuever Steam Cost\n <color=#c1b38eff><size=30>Loot: 2x plane upgrades, 3x chance of special loot</size></color></align>"
-  dungeonmod_broken_axis_plane_01: "<align=center>Dungeon modifier:\n <size=50><color=#ff7900ff><sprite=0 tint=1> Broken Axis (Difficult) <sprite=0 tint=1></color></size>\n -65% Max Turn Rate\n -25% Manuever Steam Cost\n <color=#c1b38eff><size=30>Loot: 2x plane upgrades, 3x chance of special loot</size></color></align>"
-  dungeonmod_constrained_01: "<align=center>Dungeon modifier:\n <size=50><color=#ff7900ff><sprite=0 tint=1> Constrained (Difficult) <sprite=0 tint=1></color></size>\n -50% Steam\n<color=#c1b38eff><size=30>Loot: 2x plane upgrades, 3x chance of special loot</size></color></align>"
-  dungeonmod_dead_to_world_01: "<align=center>Dungeon modifier:\n <size=50><color=#d40009ff><sprite=0 tint=1><sprite=0 tint=1><sprite=0 tint=1> Dead to the World (Lethal)<sprite=0 tint=1><sprite=0 tint=1><sprite=0 tint=1></color></size>\n -95% Steam\n +20% Damage Taken\n <color=#c1b38eff><size=30>Loot: 2x plane upgrades, 8x chance of special loot</size></color></align>"
-  dungeonmod_eager_help_01: "<align=center>Dungeon modifier:\n <size=50><color=#c1b38eff>Eager to Help</color></size>\n -35% Secondary Ability Steam Cost\n +20% Damage Taken</align>"
-  dungeonmod_enfeebled_01: "<align=center>Dungeon modifier:\n <size=50><color=#d40009ff><sprite=0 tint=1><sprite=0 tint=1><sprite=0 tint=1> Enfeebled (Lethal) <sprite=0 tint=1><sprite=0 tint=1><sprite=0 tint=1></color></size>\n +80% Damage Taken\n <color=#c1b38eff><size=30>Loot: 2x plane upgrades, 8x chance of special loot</size></color></align>"
-  dungeonmod_exhausted_01: "<align=center>Dungeon modifier:\n <size=50><color=#ff7900ff><sprite=0 tint=1> Exhausted (Difficult) <sprite=0 tint=1></color></size>\n -100% Steam Regen\n <color=#c1b38eff><size=30>Loot: 2x plane upgrades, 3x chance of special loot</size></color></align>"
-  dungeonmod_extremely_touchy_01: "<align=center>Dungeon modifier:\n <size=50><color=#ff7900ff><sprite=0 tint=1> Extremely Touchy (Difficult) <sprite=0 tint=1></color></size>\n +70% Armor Regen\n +40% Damage Taken\n <color=#c1b38eff><size=30>Loot: 2x plane upgrades, 3x chance of special loot</size></color></align>"
-  dungeonmod_fast_learner_01: "<align=center>Dungeon modifier:\n <size=50><color=#ff7900ff><sprite=0 tint=1> Fast Learner (Difficult) <sprite=0 tint=1></color></size>\n +25% XP\n +35% Damage Taken\n <color=#c1b38eff><size=30>Loot: 2x plane upgrades, 3x chance of special loot</size></color></align>"
-  dungeonmod_float_butterfly_01: "<align=center>Dungeon modifier:\n <size=50><color=#c1b38eff>Float Like a Butterfly</color></size>\n +30% Gun Damage\n +30% Damage Taken</align>"
-  dungeonmod_hot_to_handle_01: "<align=center>Dungeon modifier:\n <size=50><color=#d40009ff><sprite=0 tint=1><sprite=0 tint=1><sprite=0 tint=1> Too Hot to Handle (Lethal) <sprite=0 tint=1><sprite=0 tint=1><sprite=0 tint=1></color></size>\n +250% Superspeed, -15% Camera View\n +50% Damage Taken\n <color=#c1b38eff><size=30>Loot: 2x plane upgrades, 8x chance of special loot</size></color></align>"
-  dungeonmod_hunt_peck_01: "<align=center>Dungeon modifier:\n <size=50><color=#c1b38eff>Hunt and Peck</color></size>\n -50% ROF\n +25% Gun Damage</align>"
-  dungeonmod_in_your_face_01: "<align=center>Dungeon modifier:\n <size=50><color=#c1b38eff>In Your Face</color></size>\n +20% Gun Damage\n -40% Gun Range</align>"
-  dungeonmod_insomniac_01: "<align=center>Dungeon modifier:\n <size=50><color=#d40009ff><sprite=0 tint=1><sprite=0 tint=1><sprite=0 tint=1> Insomniac (Lethal) <sprite=0 tint=1><sprite=0 tint=1><sprite=0 tint=1></color></size>\n -100% Armor Regen, -100% Steam Regen\n -30% Superspeed, +25% Damage Taken\n <color=#c1b38eff><size=30>Loot: 2x plane upgrades, 8x chance of special loot</size></color></align>"
-  dungeonmod_itchy_trigger_01: "<align=center>Dungeon modifier:\n <size=50><color=#c1b38eff>Itchy Trigger</color></size>\n +30% ROF & Ammo\n -30% Cooldown & Gun Damage</align>"
-  dungeonmod_nearsighted_01: "<align=center>Dungeon modifier:\n <size=50><color=#ff7900ff><sprite=0 tint=1> Nearsighted (Difficult) <sprite=0 tint=1></color></size>\n -35% Camera View\n <color=#c1b38eff><size=30>Loot: 2x plane upgrades, 3x chance of special loot</size></color></align>"
-  dungeonmod_restless_01: "<align=center>Dungeon modifier:\n <size=50><color=#c1b38eff>Restless</color></size>\n -50% Armor Regen\n +25% Superspeed</align>"
-  dungeonmod_rush_hour_01: "<align=center>Dungeon modifier:\n <size=50><color=#ff7900ff><sprite=0 tint=1> Rush Hour (Difficult) <sprite=0 tint=1></color></size>\n +50% Superspeed\n +35% Damage Taken\n <color=#c1b38eff><size=30>Loot: 2x plane upgrades, 3x chance of special loot</size></color></align>"
-  dungeonmod_touchy_01: "<align=center>Dungeon modifier:\n <size=50><color=#c1b38eff>Touchy</color></size>\n +30% Armor Regen\n +20% Damage Taken</align>"
   intro-hangar_01: Coop! I've told you a dozen times to quit leaving rusty scrap in my Hangar! Storing junk is your business!
   intro-hangar_02: Oh! Hello there, pilot. I was just interfacing with a business colleague.
   intro-hangar_03: You in need of some wings? I've got you covered.
   intro-hangar_04: If you've crashed your previous aircraft or want to try flying something new, pay me a visit.
   intro-hangar_05: When you unlock a new class, I'll have it ready for you here at the Hangar.
diff --git config_190801_043/Texts/en-US/dungeons.txt config_190801_051/Texts/en-US/dungeons.txt
index 210a943..8c33658 100644
--- config_190801_043/Texts/en-US/dungeons.txt
+++ config_190801_051/Texts/en-US/dungeons.txt
@@ -24,13 +24,10 @@ DungeonEye:
   name: Crypt of Cathulhu
   tier: '9'
 DungeonFinalBoss:
   name: The Great Leader's Command Center
   tier: '10'
-DungeonFinalBoss2:
-  name: The Great Leader's Inner Sanctum
-  tier: '10'
 DungeonFire:
   name: Reeducation Camp
   tier: '10'
 DungeonGrind:
   name: Home for Special Children
diff --git config_190801_043/Texts/en-US/item.txt config_190801_051/Texts/en-US/item.txt
index 3a3b364..7b1a1c1 100644
--- config_190801_043/Texts/en-US/item.txt
+++ config_190801_051/Texts/en-US/item.txt
@@ -83,58 +83,10 @@ armor_1:
   description: Sheets of aluminum foil make your plane look slightly prettier.
   name: Alum Armor
 armor_10:
   description: Forged in the debtor mines of the Outback, this heavy metal plate is worth its weight in souls.
   name: Aussie Armor
-armor_10_m2a:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
-armor_10_m2b:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
-armor_10_m2c:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
-armor_10_m2d:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
-armor_10_m2e:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
-armor_10_m2f:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
-armor_10_m2g:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
-armor_10_m2h:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
-armor_10_m2i:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
-armor_10_m2j:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
-armor_10_m2k:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
-armor_10_m2l:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
-armor_10_m2m:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
-armor_10_m2n:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
-armor_10_m2p:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
-armor_10_m2q:
-  description: Meowza's armor is forged of metals that are unrecognizable to avian miners and scientists. It hums with strange energy.
-  name: M2 Armor
 armor_2:
   description: Scrappy armor made out of scrap.
   name: Tin Armor
 armor_3:
   description: Light metal armor that won't slow you down.
@@ -1224,12 +1176,12 @@ laser_b8:
   name: Hunting Beam
 laser_b9:
   description: The enslaved monkeymen improved upon the basic plasma beam. We stole their plans.
   name: Complex Beam
 laser_blackhole:
-  description: When the Grand Mistress, grieving mother of Clardish, completed her final work, the owl monks were finally able to split the veil of reality. What lies beyond this world of tragedy and loss?
-  name: Void Prism
+  description: Victims to suffocate in the depressurizaton. Small capillaries in the skin burst.
+  name: Blood Vortex
 laser_fire:
   description: During the zombie fungus of 1510, the ruling bird nobility sought to burn victims to ash to prevent spread. They say the stench lingered for years.
   name: Flame Laser
 laser_fire_10:
   description: During the zombie fungus of 1510, the ruling bird nobility sought to burn victims to ash to prevent spread. They say the stench lingered for years.
diff --git config_190801_043/Texts/en-US/skills.txt config_190801_051/Texts/en-US/skills.txt
index 8cbd514..aaa9b6a 100644
--- config_190801_043/Texts/en-US/skills.txt
+++ config_190801_051/Texts/en-US/skills.txt
@@ -112,11 +112,11 @@ engineer_4a:
 engineer_4b:
   name: Spirit of Spiner
 hog_1a:
   name: Inspired
 hog_1b:
-  name: Fast Exit
+  name: Stoic
 hog_2a:
   name: Berserker
 hog_2b:
   name: Combat Passion
 hog_3a:
diff --git config_190801_043/Texts/en-US/ui.txt config_190801_051/Texts/en-US/ui.txt
index e784913..7544c3c 100644
--- config_190801_043/Texts/en-US/ui.txt
+++ config_190801_051/Texts/en-US/ui.txt
@@ -1,7 +1,5 @@
-3BrothersNPCWarning: Danger!  This sector is unsafe for all but the very best pilots!
-3BrothersNotPowerfulEnough: Sorry pilot, this encounter is too dangerous for you. Get your plane upgraded more, or prove yourself by reaching rank 90.
 abuse_reported: Thank you for reporting the potentially abusive behavior of "{0}". Your report will be reviewed shortly. Stay kind!
 abuse_reporter_action_cancel: Cancel
 abuse_reporter_action_report: Report
 abuse_reporter_gameplayhint: To prevent exploits, you are vulnerable while making a bug report, but hover like in any other menu.
 abuse_reporter_intro_chat: 'If a player is using hate speech, slurs, being abusive, being insulting, and/or trying to scam or harm other players, please let us know. <i>Please do not report people simply for using profanity.</i>
@@ -61,11 +59,10 @@ action_info_variant_short: Variant {1} for plane {0}.
 action_key_format: '{0}'
 banned: Your account has been banned
 banned_body: If you believe this is in error, please contact support.
 brag: '{0} died in mysterious circumstances.'
 brag_enemy: Our mighty {1} killed {0}!
-buff_hud_stacked: '{0} (x{1})'
 buildings:
   hangar: Hangar
   storage: Storage
   store: Store
 button_hangar_exit: Exit
@@ -129,11 +126,10 @@ dialogue_name_chariotracer: Racer
 dialogue_name_crabboss: Duke Thunnini
 dialogue_name_cultistboss: High Priestess Tiffany
 dialogue_name_dogsoldier1: Dog Soldier
 dialogue_name_doomsdayboss: Doomsday Mechanism
 dialogue_name_drilloperator: Drill Operator
-dialogue_name_dungeonmod: Dungeon Modifier
 dialogue_name_escortboss: Stone Worm Leader
 dialogue_name_eyeboss: Corrupted Father Edmund
 dialogue_name_gargantua: Lady Blacksberg
 dialogue_name_gekelstein: Mad Doctor Gekelstein
 dialogue_name_icedungeon: Frozen Horror
@@ -532,14 +528,14 @@ itempickup_mod_add: '{0}: <color=#ffff88ff>{1}{2:0}</color>'
 itempickup_mod_add_dynamic: '{0}: <color=#ffff88ff>{1}{2:0}</color> (dynamic)'
 itempickup_mod_mult: '{0}: <color=#ffff88ff>{1}{2:0}%</color>'
 itempickup_mod_mult_dynamic: '{0}: <color=#ffff88ff>{1}{2:0}%</color> (dynamic)'
 itempickup_mod_postadd: '{0}: <color=#ffff88ff>{1}{2:0} p</color>'
 itempickup_mod_postadd_dynamic: '{0}: <color=#ffff88ff>{1}{2:0} p</color> (dynamic)'
-itempickup_rarity_color_common: c1b38e
-itempickup_rarity_color_epic: 09f2c1
-itempickup_rarity_color_legendary: ffffb0
-itempickup_rarity_color_rare: ba349e
+itempickup_rarity_color_common: '888888'
+itempickup_rarity_color_epic: 8E44AD
+itempickup_rarity_color_legendary: F39C12
+itempickup_rarity_color_rare: 3498DB
 itempickup_rarity_common: Common
 itempickup_rarity_epic: Epic
 itempickup_rarity_legendary: Legendary
 itempickup_rarity_rare: Rare
 itempickup_soulbound: <color=#DCBD67FF>Soulbound</color>
@@ -854,15 +850,10 @@ pilot_school_action_remove: 'Forget skill (Skill Points: {0})'
 pilot_school_action_switch: 'Switch to skill (Skill Points: {0})'
 pilot_school_action_switch_free: Switch to skill
 pilot_school_action_up: 'Upgrade skill (Skill Points: {0})'
 pilot_school_details_points: 'Unspent Skill Points: {0}'
 pilot_school_details_rank: Rank {0} - {1}
-pilot_school_filter_label: 'Filter: {0}'
-pilot_school_filter_menu_back_label: All Skills
-pilot_school_filter_menu_subtitle: '[<action:43>]: select a class to filter skills by'
-pilot_school_filter_menu_title: Filtering
-pilot_school_filter_show_all: All Skills
 pilot_school_intro_change: Gained {0} Pilot XP
 pilot_school_intro_continue: Press [<action:43>] to continue
 pilot_school_intro_rank: Rank {0} - {1}
 pilot_school_intro_rank_next: '{0} Pilot XP to Rank {1}'
 pilot_school_intro_unlock_group: 'Unlocked: {0}'
@@ -960,11 +951,10 @@ plane_select_itemlist: '{0}: T{1} <color=#ffff88ff>{2}</color>'
 plane_select_newplane: New Plane
 plane_select_shortdesc: Level {0}
 plane_select_titleformat: <color=#B5A885FF><size=21><b>{0}</b></size></color>
 plane_select_unlocks: Unlocks at <color=#af4a30ff>{0} Level {1}</color>
 plane_upgrade_progress: Plane Upgrade Progress
-planexpboost_simple: +{0}% XP
 planexpboost_ui: +{0}% XP for {1}
 player_info_armor: Armor
 player_info_steam: Steam
 player_info_xp: Experience
 player_label: ' <color={1}>L{0}</color>'
@@ -1125,15 +1115,15 @@ stats_menu_agility: Agility
 stats_menu_attack: Damage
 stats_menu_charge: Charge
 stats_menu_facts_header: Notable Facts
 stats_menu_generic_level: Level {0}
 stats_menu_max_upgrades: MAX
-stats_menu_none: (No skills or buffs yet)
+stats_menu_none: (No skills yet)
 stats_menu_pilot_header: Pilot
 stats_menu_plane_header: Plane
 stats_menu_repair: Repair
-stats_menu_skills: Skills and Buffs
+stats_menu_skills: Skills
 stats_menu_speed: Speed
 stats_menu_upgrade_progress: Progress
 stats_menu_upgrades_header: Upgrades
 status_connecting_nexus: Finding Rebel City
 status_enter_portal: Entering Portal
diff --git config_190801_043/Texts/en-US/units.txt config_190801_051/Texts/en-US/units.txt
index da840ee..d304c99 100644
--- config_190801_043/Texts/en-US/units.txt
+++ config_190801_051/Texts/en-US/units.txt
@@ -713,36 +713,10 @@ marksman: Highborn Marksman
 mazedrawer: Slicer
 meatshield: Meatshield
 meatshieldbig: Big Meatshield
 medicClassPlane: Medic
 meowza: Godleader Meowza
-meowza2: Godleader Meowza
-meowza2_chaser: Godleader Meowza
-meowza2_claw_1: Godleader Meowza
-meowza2_claw_2: Godleader Meowza
-meowza2_firering: Godleader Meowza
-meowza2_frost_1: Godleader Meowza
-meowza2_frost_1_2: Godleader Meowza
-meowza2_frost_2: Godleader Meowza
-meowza2_frost_2_2: Godleader Meowza
-meowza2_hunter: Meowzaghast
-meowza2_infinity_1: Godleader Meowza
-meowza2_infinity_2: Godleader Meowza
-meowza2_lasereye: Godleader Meowza
-meowza2_lasereyegrid_1: Godleader Meowza
-meowza2_lasereyegrid_2: Godleader Meowza
-meowza2_lightningspiral: Godleader Meowza
-meowza2_nuke: Godleader Meowza
-meowza2_nukestorm: Godleader Meowza
-meowza2_orochi_1: Godleader Meowza
-meowza2_orochi_2: Godleader Meowza
-meowza2_shine: Godleader Meowza
-meowza2_turret_E: Godleader Defense Grid
-meowza2_turret_N: Godleader Defense Grid
-meowza2_turret_S: Godleader Defense Grid
-meowza2_turret_W: Godleader Defense Grid
-meowza2_turret_bullet: Godleader Meowza
 meowzaB1: Godleader Meowza
 meowzaB1m: Godleader Meowza
 meowzaB2: Godleader Meowza
 meowzaB2m: Godleader Meowza
 meowzaC1: Godleader Meowza
diff --git config_190801_043/Units/21 - Midlands (City) - WWII_ModernTech/BOS1_tank.txt config_190801_051/Units/21 - Midlands (City) - WWII_ModernTech/BOS1_tank.txt
index 7919815..383080c 100644
--- config_190801_043/Units/21 - Midlands (City) - WWII_ModernTech/BOS1_tank.txt	
+++ config_190801_051/Units/21 - Midlands (City) - WWII_ModernTech/BOS1_tank.txt	
@@ -302,6 +302,5 @@ particlePositions:
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: tank
 tier: '3'
 xpMultiplier: '1.3'
-xpRadius: '24'
diff --git config_190801_043/Units/22 - Midlands (Ruins) - Ghosts_Spooky/BOS2_clockboss.txt config_190801_051/Units/22 - Midlands (Ruins) - Ghosts_Spooky/BOS2_clockboss.txt
index 5296883..7dae25e 100644
--- config_190801_043/Units/22 - Midlands (Ruins) - Ghosts_Spooky/BOS2_clockboss.txt	
+++ config_190801_051/Units/22 - Midlands (Ruins) - Ghosts_Spooky/BOS2_clockboss.txt	
@@ -231,6 +231,6 @@ recoilScale: '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '0'
 templateName: clockboss
 tier: '3'
 xpMultiplier: '1.3'
-xpRadius: '24'
+xpRadius: '15'
diff --git config_190801_043/Units/23 - Midlands (Rural) - Water_Aquatic/BOS4_crawler.txt config_190801_051/Units/23 - Midlands (Rural) - Water_Aquatic/BOS4_crawler.txt
index cb8b8fa..42b6d9e 100644
--- config_190801_043/Units/23 - Midlands (Rural) - Water_Aquatic/BOS4_crawler.txt	
+++ config_190801_051/Units/23 - Midlands (Rural) - Water_Aquatic/BOS4_crawler.txt	
@@ -304,6 +304,6 @@ recoilScale: '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: crawler
 tier: '3'
 xpMultiplier: '1.3'
-xpRadius: '24'
+xpRadius: '20'
diff --git config_190801_043/Units/31 - Highlands (City) - MadScience_Energy/BOS1_gargantua.txt config_190801_051/Units/31 - Highlands (City) - MadScience_Energy/BOS1_gargantua.txt
index 56109da..5bdbad9 100644
--- config_190801_043/Units/31 - Highlands (City) - MadScience_Energy/BOS1_gargantua.txt	
+++ config_190801_051/Units/31 - Highlands (City) - MadScience_Energy/BOS1_gargantua.txt	
@@ -223,6 +223,6 @@ recoilScale: '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: gargantua
 tier: '5'
 xpMultiplier: '1.3'
-xpRadius: '24'
+xpRadius: '15'
diff --git config_190801_043/Units/32 - Highlands (Ruins) - Hell_Cthulu_Demonic/BOS_berserker.txt config_190801_051/Units/32 - Highlands (Ruins) - Hell_Cthulu_Demonic/BOS_berserker.txt
index 465efb1..95a8794 100644
--- config_190801_043/Units/32 - Highlands (Ruins) - Hell_Cthulu_Demonic/BOS_berserker.txt	
+++ config_190801_051/Units/32 - Highlands (Ruins) - Hell_Cthulu_Demonic/BOS_berserker.txt	
@@ -75,6 +75,5 @@ minSpeed: '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: berserker
 tier: '4'
 xpMultiplier: '1.3'
-xpRadius: '24'
diff --git config_190801_043/Units/33 - Highlands (Rural) - Desert_Bones/BOS2_pharaoh.txt config_190801_051/Units/33 - Highlands (Rural) - Desert_Bones/BOS2_pharaoh.txt
index 9bca53e..c4201d8 100644
--- config_190801_043/Units/33 - Highlands (Rural) - Desert_Bones/BOS2_pharaoh.txt	
+++ config_190801_051/Units/33 - Highlands (Rural) - Desert_Bones/BOS2_pharaoh.txt	
@@ -279,6 +279,6 @@ recoilScale: '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '0'
 templateName: pharaoh
 tier: '5'
 xpMultiplier: '1.3'
-xpRadius: '24'
+xpRadius: '20'
diff --git config_190801_043/Units/33 - Highlands (Rural) - Desert_Bones/BOS3_teslahq.txt config_190801_051/Units/33 - Highlands (Rural) - Desert_Bones/BOS3_teslahq.txt
index 4786d56..e5a76bc 100644
--- config_190801_043/Units/33 - Highlands (Rural) - Desert_Bones/BOS3_teslahq.txt	
+++ config_190801_051/Units/33 - Highlands (Rural) - Desert_Bones/BOS3_teslahq.txt	
@@ -139,6 +139,5 @@ particlePositions:
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '0'
 templateName: teslahq
 tier: '4'
 xpMultiplier: '1.3'
-xpRadius: '24'
diff --git config_190801_043/Units/41 - Mountains (City) - SpaceTravel/BOS1_hypnotist.txt config_190801_051/Units/41 - Mountains (City) - SpaceTravel/BOS1_hypnotist.txt
index d19b72c..4c1db2b 100644
--- config_190801_043/Units/41 - Mountains (City) - SpaceTravel/BOS1_hypnotist.txt	
+++ config_190801_051/Units/41 - Mountains (City) - SpaceTravel/BOS1_hypnotist.txt	
@@ -181,6 +181,5 @@ particlePositions:
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: hypnotist
 tier: '8'
 xpMultiplier: '1.3'
-xpRadius: '24'
diff --git config_190801_043/Units/41 - Mountains (City) - SpaceTravel/BOS2_jester.txt config_190801_051/Units/41 - Mountains (City) - SpaceTravel/BOS2_jester.txt
index 806e235..6a87abb 100644
--- config_190801_043/Units/41 - Mountains (City) - SpaceTravel/BOS2_jester.txt	
+++ config_190801_051/Units/41 - Mountains (City) - SpaceTravel/BOS2_jester.txt	
@@ -338,6 +338,5 @@ particlePositions:
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: jester
 tier: '7'
 xpMultiplier: '1.3'
-xpRadius: '24'
diff --git config_190801_043/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain01.txt config_190801_051/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain01.txt
index 22e6bbb..2b2e4a2 100644
--- config_190801_043/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain01.txt	
+++ config_190801_051/Units/41 - Mountains (City) - SpaceTravel/BOS3_bosstrain01.txt	
@@ -262,6 +262,5 @@ maxTurnRate: '90'
 minSpeed: '3'
 showPostFightDetails: 'true'
 templateName: bosstrain01
 tier: '6'
 xpMultiplier: '1.3'
-xpRadius: '24'
diff --git config_190801_043/Units/51 - HighMountains (City) - Alien_Hologram/BOS1_solarissun.txt config_190801_051/Units/51 - HighMountains (City) - Alien_Hologram/BOS1_solarissun.txt
index c91f9a8..bab9d76 100644
--- config_190801_043/Units/51 - HighMountains (City) - Alien_Hologram/BOS1_solarissun.txt	
+++ config_190801_051/Units/51 - HighMountains (City) - Alien_Hologram/BOS1_solarissun.txt	
@@ -168,6 +168,6 @@ recoilScale: '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: solarissun
 tier: '10'
 xpMultiplier: '1.3'
-xpRadius: '24'
+xpRadius: '15'
diff --git config_190801_043/Units/51 - HighMountains (City) - Alien_Hologram/BOS1_ufo.txt config_190801_051/Units/51 - HighMountains (City) - Alien_Hologram/BOS1_ufo.txt
index ab5c390..761db9c 100644
--- config_190801_043/Units/51 - HighMountains (City) - Alien_Hologram/BOS1_ufo.txt	
+++ config_190801_051/Units/51 - HighMountains (City) - Alien_Hologram/BOS1_ufo.txt	
@@ -247,6 +247,5 @@ particlePositions:
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '0'
 templateName: ufo
 tier: '10'
 xpMultiplier: '1.3'
-xpRadius: '24'
diff --git config_190801_043/Units/51 - HighMountains (City) - Alien_Hologram/BOS3_sprinkles.txt config_190801_051/Units/51 - HighMountains (City) - Alien_Hologram/BOS3_sprinkles.txt
index f0ffa41..32f5f33 100644
--- config_190801_043/Units/51 - HighMountains (City) - Alien_Hologram/BOS3_sprinkles.txt	
+++ config_190801_051/Units/51 - HighMountains (City) - Alien_Hologram/BOS3_sprinkles.txt	
@@ -253,6 +253,6 @@ particlePositions:
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: sprinkles
 tier: '9'
 xpMultiplier: '1.3'
-xpRadius: '24'
+xpRadius: '15'
diff --git config_190801_043/Units/51 - HighMountains (City) - Alien_Hologram/BOS_notra.txt config_190801_051/Units/51 - HighMountains (City) - Alien_Hologram/BOS_notra.txt
index 32913d0..6fbb6a4 100644
--- config_190801_043/Units/51 - HighMountains (City) - Alien_Hologram/BOS_notra.txt	
+++ config_190801_051/Units/51 - HighMountains (City) - Alien_Hologram/BOS_notra.txt	
@@ -314,6 +314,5 @@ recoilScale: '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '0'
 templateName: notra
 tier: '10'
 xpMultiplier: '1.3'
-xpRadius: '24'
diff --git config_190801_043/Units/51 - HighMountains (City) - Alien_Hologram/SPC1_lion.txt config_190801_051/Units/51 - HighMountains (City) - Alien_Hologram/SPC1_lion.txt
index 2b20fdf..7a1574e 100644
--- config_190801_043/Units/51 - HighMountains (City) - Alien_Hologram/SPC1_lion.txt	
+++ config_190801_051/Units/51 - HighMountains (City) - Alien_Hologram/SPC1_lion.txt	
@@ -4,10 +4,11 @@ cameraZoomMultiplier: '1.25'
 cameraZoomRadius: '24.00'
 colliderRadius: '2'
 colliderX: '0'
 colliderY: '0'
 elementSusceptibilityIds:
+- waterWeakness
 - burnResist
 energyRegenRate: '0'
 explosionPrefab: ExplosionBig2
 gunMounts:
 - fireMode: Hose
@@ -203,6 +204,6 @@ particlePositions:
   - '0'
   - '0'
 spawnInvulnerabilitySeconds: '2'
 templateName: lion
 tier: '10'
-xpMultiplier: '1.3'
+xpMultiplier: '1.69'
diff --git config_190801_043/Units/51 - HighMountains (City) - Alien_Hologram/SPC1_lioncub.txt config_190801_051/Units/51 - HighMountains (City) - Alien_Hologram/SPC1_lioncub.txt
index fd1e574..b242604 100644
--- config_190801_043/Units/51 - HighMountains (City) - Alien_Hologram/SPC1_lioncub.txt	
+++ config_190801_051/Units/51 - HighMountains (City) - Alien_Hologram/SPC1_lioncub.txt	
@@ -2,10 +2,11 @@ art: EnemyLioncub
 artScale: '1'
 colliderRadius: '0.7'
 colliderX: '0'
 colliderY: '0'
 elementSusceptibilityIds:
+- waterWeakness
 - burnResist
 energyRegenRate: '0'
 explosionPrefab: ExplosionMed
 gunMounts:
 - fireMode: Hose
diff --git config_190801_043/Units/54 - Cancer Event/BOS1_spiderboss.txt config_190801_051/Units/54 - Cancer Event/BOS1_spiderboss.txt
index bbeaa2c..bc47273 100644
--- config_190801_043/Units/54 - Cancer Event/BOS1_spiderboss.txt	
+++ config_190801_051/Units/54 - Cancer Event/BOS1_spiderboss.txt	
@@ -340,6 +340,5 @@ recoilScale: '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '0'
 templateName: spiderboss
 tier: '10'
 xpMultiplier: '1.05'
-xpRadius: '24'
diff --git config_190801_043/Units/54 - Kaiju Event/BOS1_kaiju.txt config_190801_051/Units/54 - Kaiju Event/BOS1_kaiju.txt
index 794bb23..30c4615 100644
--- config_190801_043/Units/54 - Kaiju Event/BOS1_kaiju.txt	
+++ config_190801_051/Units/54 - Kaiju Event/BOS1_kaiju.txt	
@@ -290,6 +290,5 @@ recoilScale: '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: kaiju
 tier: '10'
 xpMultiplier: '3.9'
-xpRadius: '24'
diff --git config_190801_043/Units/54 - Kraken Event/BOS2_kraken.txt config_190801_051/Units/54 - Kraken Event/BOS2_kraken.txt
index b19307d..3d31aed 100644
--- config_190801_043/Units/54 - Kraken Event/BOS2_kraken.txt	
+++ config_190801_051/Units/54 - Kraken Event/BOS2_kraken.txt	
@@ -584,6 +584,5 @@ particlePositions:
   - '30'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '4'
 templateName: kraken
 tier: '8'
-xpRadius: '24'
diff --git config_190801_043/Units/54 - Lightning Boss Event/BOS_thunderboss.txt config_190801_051/Units/54 - Lightning Boss Event/BOS_thunderboss.txt
index cacebc8..ad42a49 100644
--- config_190801_043/Units/54 - Lightning Boss Event/BOS_thunderboss.txt	
+++ config_190801_051/Units/54 - Lightning Boss Event/BOS_thunderboss.txt	
@@ -300,6 +300,5 @@ particlePositions:
   - '-90'
 showPostFightDetails: 'true'
 templateName: thunderboss
 tier: '10'
 xpMultiplier: '3.9'
-xpRadius: '24'
diff --git config_190801_043/Units/54 - Raceboss Event/BOS_raceboss.txt config_190801_051/Units/54 - Raceboss Event/BOS_raceboss.txt
index 529a303..c02a3e9 100644
--- config_190801_043/Units/54 - Raceboss Event/BOS_raceboss.txt	
+++ config_190801_051/Units/54 - Raceboss Event/BOS_raceboss.txt	
@@ -99,6 +99,5 @@ particlePositions:
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: raceboss
 tier: '7'
 xpMultiplier: '1.3'
-xpRadius: '24'
diff --git config_190801_043/Units/54 - Raijin Event/BOS2_raijin.txt config_190801_051/Units/54 - Raijin Event/BOS2_raijin.txt
index b6d66d0..8a56dc0 100644
--- config_190801_043/Units/54 - Raijin Event/BOS2_raijin.txt	
+++ config_190801_051/Units/54 - Raijin Event/BOS2_raijin.txt	
@@ -452,6 +452,5 @@ recoilScale: '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: raijin
 tier: '10'
 xpMultiplier: '3.9'
-xpRadius: '24'
diff --git config_190801_043/Units/60D- Snake Dungeon/BOS_dragonsnake01.txt config_190801_051/Units/60D- Snake Dungeon/BOS_dragonsnake01.txt
index 466089f..b77709e 100644
--- config_190801_043/Units/60D- Snake Dungeon/BOS_dragonsnake01.txt	
+++ config_190801_051/Units/60D- Snake Dungeon/BOS_dragonsnake01.txt	
@@ -205,52 +205,33 @@ gunTypes:
   rof: '10'
   speed: '30'
   spread: '10'
 healthRegenRate: '0'
 loot:
-  bossloot_difficult:
-    lootTableId: tier10boss_difficult
-  bossloot_lethal:
-    lootTableId: tier10boss_lethal
-  bossloot_normal:
-    lootTableId: tier10boss_normal
-  bosstrail_difficult:
-    lootTableId: venomgem_difficult_1_in_25
-  bosstrail_lethal:
-    lootTableId: venomgem_lethal_1_in_9
-  bosstrail_normal:
-    lootTableId: venomgem_normal_1_in_75
-  key_difficult:
-    lootTableId: weapons_poison_difficult_42
-  key_lethal:
-    lootTableId: weapons_poison_lethal_98
-  key_normal:
-    lootTableId: weapons_poison_normal_14
-  ultrarare_difficult:
-    lootTableId: snake_ultrarare_difficult_1_in_166
-  ultrarare_lethal:
-    lootTableId: snake_ultrarare_lethal_1_in_71
-  ultrarare_normal:
-    lootTableId: snake_ultrarare_normal_1_in_500
-  upgrades2_difficult:
-    conditions:
-    - buff: dungeonmods_difficult
-    lootTableId: upgrade_poisonattack_x2_100
-  upgrades2_lethal:
-    conditions:
-    - buff: dungeonmods_lethal
-    lootTableId: upgrade_poisonattack_x2_100
-  upgrades2_normal:
-    conditions:
-    - buff: dungeonmods_normal
+  bossloot:
+    lootTableId: tier10boss
+  bosstraildrop:
+    lootTable:
+    - weight: '98'
+    - items:
+      - id: craft_venomgem
+      weight: '2'
+    - items:
+      - id: trail_boss_dragonsnakemaster
+      weight: '0.1'
+  key:
+    lootTableId: weapons_poison_20
+  ultrararedrop:
+    lootTable:
+    - weight: '200'
+    - items:
+      - id: laser_snake_9
+      weight: '1.0001'
+  upgrades:
+    lootTableId: upgrade_repair_10
+  upgrades2:
     lootTableId: upgrade_poisonattack_100
-  upgrades_difficult:
-    lootTableId: upgrade_repair_difficult_30
-  upgrades_lethal:
-    lootTableId: upgrade_repair_lethal_70
-  upgrades_normal:
-    lootTableId: upgrade_repair_normal_10
 maxEnergyPoints: '1'
 maxHitPoints: '700'
 maxSpeed: '4.5'
 maxTurnRate: '720'
 minSpeed: '4.5'
@@ -266,6 +247,5 @@ particlePositions:
   - '-90'
 showPostFightDetails: 'true'
 templateName: dragonsnake01
 tier: '10'
 xpMultiplier: '1.4'
-xpRadius: '24'
diff --git config_190801_043/Units/61D - Ice Dungeon/BOS_iceboss.txt config_190801_051/Units/61D - Ice Dungeon/BOS_iceboss.txt
index 0c7403d..331feb1 100644
--- config_190801_043/Units/61D - Ice Dungeon/BOS_iceboss.txt	
+++ config_190801_051/Units/61D - Ice Dungeon/BOS_iceboss.txt	
@@ -261,52 +261,33 @@ gunTypes:
   rof: '3'
   speed: '0'
   spread: '120'
 healthRegenRate: '0'
 loot:
-  bossloot_difficult:
-    lootTableId: tier10boss_difficult
-  bossloot_lethal:
-    lootTableId: tier10boss_lethal
-  bossloot_normal:
-    lootTableId: tier10boss_normal
-  bosstrail_difficult:
-    lootTableId: icegem_difficult_1_in_25
-  bosstrail_lethal:
-    lootTableId: icegem_lethal_1_in_9
-  bosstrail_normal:
-    lootTableId: icegem_normal_1_in_75
-  key_difficult:
-    lootTableId: weapons_ice_difficult_42
-  key_lethal:
-    lootTableId: weapons_ice_lethal_98
-  key_normal:
-    lootTableId: weapons_ice_normal_14
-  ultrarare_difficult:
-    lootTableId: iceboss_ultrarare_difficult_1_in_166
-  ultrarare_lethal:
-    lootTableId: iceboss_ultrarare_lethal_1_in_71
-  ultrarare_normal:
-    lootTableId: iceboss_ultrarare_normal_1_in_500
-  upgrades2_difficult:
-    conditions:
-    - buff: dungeonmods_difficult
-    lootTableId: upgrade_iceattack_x2_100
-  upgrades2_lethal:
-    conditions:
-    - buff: dungeonmods_lethal
-    lootTableId: upgrade_iceattack_x2_100
-  upgrades2_normal:
-    conditions:
-    - buff: dungeonmods_normal
+  bossloot:
+    lootTableId: tier10boss
+  bosstraildrop:
+    lootTable:
+    - weight: '98'
+    - items:
+      - id: craft_icegem
+      weight: '2'
+    - items:
+      - id: trail_boss_iceboss
+      weight: '0.1'
+  key:
+    lootTableId: weapons_ice_20
+  ultrararedrop:
+    lootTable:
+    - weight: '200'
+    - items:
+      - id: machinegun_blizzard_9
+      weight: '1.0001'
+  upgrades:
+    lootTableId: upgrade_damage_10
+  upgrades2:
     lootTableId: upgrade_iceattack_100
-  upgrades_difficult:
-    lootTableId: upgrade_damage_difficult_30
-  upgrades_lethal:
-    lootTableId: upgrade_damage_lethal_70
-  upgrades_normal:
-    lootTableId: upgrade_damage_normal_10
 maxEnergyPoints: '1'
 maxHitPoints: '1000'
 maxSpeed: '0'
 maxTurnRate: '45'
 minSpeed: '0'
@@ -331,6 +312,6 @@ particlePositions:
   - '-90'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '0'
 templateName: iceboss
 tier: '10'
-xpRadius: '24'
+xpRadius: '20'
diff --git config_190801_043/Units/62D - Fire Dungeon/BOS1_phoenix.txt config_190801_051/Units/62D - Fire Dungeon/BOS1_phoenix.txt
index 9edaefa..598b54c 100644
--- config_190801_043/Units/62D - Fire Dungeon/BOS1_phoenix.txt	
+++ config_190801_051/Units/62D - Fire Dungeon/BOS1_phoenix.txt	
@@ -56,16 +56,20 @@ gunTypes:
   name: phoenixfourfivegun
   rof: '10'
   speed: '2'
   spread: '0'
 healthRegenRate: '0'
+loot:
+  bossloot:
+    lootTable:
+    - weight: '200'
+    lootTableId: tier10boss
 maxEnergyPoints: '1'
 maxHitPoints: '133'
 maxSpeed: '1.0'
 maxTurnRate: '55'
 minSpeed: '0.6'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '0'
 templateName: phoenix
 tier: '10'
 xpMultiplier: '2.5'
-xpRadius: '24'
diff --git config_190801_043/Units/62D - Fire Dungeon/BOS1_phoenix3.txt config_190801_051/Units/62D - Fire Dungeon/BOS1_phoenix3.txt
index e4e43fa..51a7010 100644
--- config_190801_043/Units/62D - Fire Dungeon/BOS1_phoenix3.txt	
+++ config_190801_051/Units/62D - Fire Dungeon/BOS1_phoenix3.txt	
@@ -361,10 +361,15 @@ gunTypes:
   name: phoenix3aimgun2
   rof: '0.5'
   speed: '8'
   spread: '0'
 healthRegenRate: '0'
+loot:
+  bossloot:
+    lootTable:
+    - weight: '200'
+    lootTableId: tier10boss
 maxEnergyPoints: '1'
 maxHitPoints: '266'
 maxSpeed: '1.5'
 maxTurnRate: '55'
 minSpeed: '1.5'
@@ -445,6 +450,5 @@ recoilScale: '0.1'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '6'
 templateName: phoenix3
 tier: '10'
 xpMultiplier: '2.5'
-xpRadius: '24'
diff --git config_190801_043/Units/62D - Fire Dungeon/BOS1_phoenix5.txt config_190801_051/Units/62D - Fire Dungeon/BOS1_phoenix5.txt
index 746cc18..c98e824 100644
--- config_190801_043/Units/62D - Fire Dungeon/BOS1_phoenix5.txt	
+++ config_190801_051/Units/62D - Fire Dungeon/BOS1_phoenix5.txt	
@@ -220,52 +220,35 @@ gunMounts:
   slewRate: '0'
   syncOffset: '0.25'
   syncTo: timergundudtail2
 healthRegenRate: '0'
 loot:
-  bossloot_difficult:
-    lootTableId: tier10boss_difficult
-  bossloot_lethal:
-    lootTableId: tier10boss_lethal
-  bossloot_normal:
-    lootTableId: tier10boss_normal
-  bosstrail_difficult:
-    lootTableId: firegem_difficult_1_in_25
-  bosstrail_lethal:
-    lootTableId: firegem_lethal_1_in_9
-  bosstrail_normal:
-    lootTableId: firegem_normal_1_in_75
-  key_difficult:
-    lootTableId: weapons_fire_difficult_42
-  key_lethal:
-    lootTableId: weapons_fire_lethal_98
-  key_normal:
-    lootTableId: weapons_fire_normal_14
-  ultrarare_difficult:
-    lootTableId: phoenix_ultrarare_difficult_1_in_166
-  ultrarare_lethal:
-    lootTableId: phoenix_ultrarare_lethal_1_in_71
-  ultrarare_normal:
-    lootTableId: phoenix_ultrarare_normal_1_in_500
-  upgrades2_difficult:
-    conditions:
-    - buff: dungeonmods_difficult
-    lootTableId: upgrade_fireattack_x2_100
-  upgrades2_lethal:
-    conditions:
-    - buff: dungeonmods_lethal
-    lootTableId: upgrade_fireattack_x2_100
-  upgrades2_normal:
-    conditions:
-    - buff: dungeonmods_normal
+  bossloot:
+    lootTable:
+    - weight: '200'
+    lootTableId: tier10boss
+  bosstraildrop:
+    lootTable:
+    - weight: '98'
+    - items:
+      - id: craft_firegem
+      weight: '2'
+    - items:
+      - id: trail_boss_phoenix
+      weight: '0.1'
+  key:
+    lootTableId: weapons_fire_20
+  ultrararedrop:
+    lootTable:
+    - weight: '200'
+    - items:
+      - id: wasp_phoenix_9
+      weight: '1.0001'
+  upgrades:
+    lootTableId: upgrade_repair_10
+  upgrades2:
     lootTableId: upgrade_fireattack_100
-  upgrades_difficult:
-    lootTableId: upgrade_repair_difficult_30
-  upgrades_lethal:
-    lootTableId: upgrade_repair_lethal_70
-  upgrades_normal:
-    lootTableId: upgrade_repair_normal_10
 maxEnergyPoints: '1'
 maxHitPoints: '399'
 maxSpeed: '1.5'
 maxTurnRate: '55'
 minSpeed: '1.5'
@@ -346,6 +329,5 @@ recoilScale: '0.1'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '6'
 templateName: phoenix5
 tier: '10'
 xpMultiplier: '2.5'
-xpRadius: '24'
diff --git config_190801_043/Units/62D - Fire Dungeon/GRP2_flamebatleader.txt config_190801_051/Units/62D - Fire Dungeon/GRP2_flamebatleader.txt
index 2ccc1f7..3eaafa6 100644
--- config_190801_043/Units/62D - Fire Dungeon/GRP2_flamebatleader.txt	
+++ config_190801_051/Units/62D - Fire Dungeon/GRP2_flamebatleader.txt	
@@ -1,7 +1,7 @@
 art: EnemyFlamebatLeader
-artScale: '2.2'
+artScale: '1.8'
 colliderRadius: '0.8'
 colliderX: '0'
 colliderY: '0'
 effectImmunities:
 - Confuse
@@ -19,11 +19,11 @@ gunMounts:
   mountName: main
   offset:
   - '0'
   - '2'
   slewRate: '0'
-- fireMode: JustShootDammit
+- fireMode: Aimed
   firingArc: '120'
   flashOffset: '0.33'
   gunTemplateName: flamebatleaderGun
   mountAngle: '180'
   mountName: main2
@@ -49,11 +49,11 @@ gunMounts:
 gunTypes:
 - burst: '1'
   cooldown: '3'
   damage: '0.01'
   effect: Burn
-  effectDamage: '0.4'
+  effectDamage: '2.25'
   lifetime: '3'
   multi: '10'
   multiSpeed: '0.1'
   multiSpread: '0'
   name: flamebatleaderGun
@@ -64,11 +64,11 @@ gunTypes:
   burst: '10'
   cooldown: '3'
   damage: '0.01'
   effect: Burn
   effectAmount: '0.3'
-  effectDamage: '0.1'
+  effectDamage: '0.75'
   effectTime: '8'
   lifetime: '0.2'
   multi: '10'
   multiSpread: '36'
   name: flamebatleaderGun2
diff --git config_190801_043/Units/63D - Bomb Dungeon/BOS1_bombboss.txt config_190801_051/Units/63D - Bomb Dungeon/BOS1_bombboss.txt
index ee213b8..d855057 100644
--- config_190801_043/Units/63D - Bomb Dungeon/BOS1_bombboss.txt	
+++ config_190801_051/Units/63D - Bomb Dungeon/BOS1_bombboss.txt	
@@ -22,6 +22,5 @@ maxTurnRate: '90'
 minSpeed: '0.5'
 showPostFightDetails: 'true'
 templateName: bombboss
 tier: '3'
 xpMultiplier: '1.4'
-xpRadius: '24'
diff --git config_190801_043/Units/64D - Obstacle Dungeon/BOS1_turbineking.txt config_190801_051/Units/64D - Obstacle Dungeon/BOS1_turbineking.txt
index 75116ab..2c4acfd 100644
--- config_190801_043/Units/64D - Obstacle Dungeon/BOS1_turbineking.txt	
+++ config_190801_051/Units/64D - Obstacle Dungeon/BOS1_turbineking.txt	
@@ -276,6 +276,5 @@ recoilScale: '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '0'
 templateName: turbineking
 tier: '4'
 xpMultiplier: '1.3'
-xpRadius: '24'
diff --git config_190801_043/Units/65D - Grindhouse Dungeon/BOS_summonermaster.txt config_190801_051/Units/65D - Grindhouse Dungeon/BOS_summonermaster.txt
index a653d4b..d33a033 100644
--- config_190801_043/Units/65D - Grindhouse Dungeon/BOS_summonermaster.txt	
+++ config_190801_051/Units/65D - Grindhouse Dungeon/BOS_summonermaster.txt	
@@ -290,6 +290,5 @@ particlePositions:
   - '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: summonermaster
 tier: '6'
-xpRadius: '24'
diff --git config_190801_043/Units/66D - Space Dungeon/BOS1_avatar.txt config_190801_051/Units/66D - Space Dungeon/BOS1_avatar.txt
index 9d2515c..c4f726d 100644
--- config_190801_043/Units/66D - Space Dungeon/BOS1_avatar.txt	
+++ config_190801_051/Units/66D - Space Dungeon/BOS1_avatar.txt	
@@ -234,52 +234,33 @@ gunTypes:
   rof: '15'
   speed: '25'
   spread: '0'
 healthRegenRate: '0'
 loot:
-  bossloot_difficult:
-    lootTableId: tier10boss_difficult
-  bossloot_lethal:
-    lootTableId: tier10boss_lethal
-  bossloot_normal:
-    lootTableId: tier10boss_normal
-  bosstrail_difficult:
-    lootTableId: doomsdaygem_difficult_1_in_25
-  bosstrail_lethal:
-    lootTableId: doomsdaygem_lethal_1_in_9
-  bosstrail_normal:
-    lootTableId: doomsdaygem_normal_1_in_75
-  key_difficult:
-    lootTableId: armor_lightning_difficult_42
-  key_lethal:
-    lootTableId: armor_lightning_lethal_98
-  key_normal:
-    lootTableId: armor_lightning_normal_14
-  ultrarare_difficult:
-    lootTableId: avatar_ultrarare_difficult_1_in_166
-  ultrarare_lethal:
-    lootTableId: avatar_ultrarare_lethal_1_in_71
-  ultrarare_normal:
-    lootTableId: avatar_ultrarare_normal_1_in_500
-  upgrades2_difficult:
-    conditions:
-    - buff: dungeonmods_difficult
-    lootTableId: upgrade_lightningdefense_x2_100
-  upgrades2_lethal:
-    conditions:
-    - buff: dungeonmods_lethal
-    lootTableId: upgrade_lightningdefense_x2_100
-  upgrades2_normal:
-    conditions:
-    - buff: dungeonmods_normal
+  bossloot:
+    lootTableId: tier10boss
+  bosstraildrop:
+    lootTable:
+    - weight: '98'
+    - items:
+      - id: craft_doomsdaygem
+      weight: '2'
+    - items:
+      - id: trail_boss_avatar
+      weight: '0.1'
+  key:
+    lootTableId: armor_lightning_20
+  ultrararedrop:
+    lootTable:
+    - weight: '200'
+    - items:
+      - id: shotgun_doomsday_9
+      weight: '1.0001'
+  upgrades:
+    lootTableId: upgrade_armor_10
+  upgrades2:
     lootTableId: upgrade_lightningdefense_100
-  upgrades_difficult:
-    lootTableId: upgrade_armor_difficult_30
-  upgrades_lethal:
-    lootTableId: upgrade_armor_lethal_70
-  upgrades_normal:
-    lootTableId: upgrade_armor_normal_10
 maxEnergyPoints: '1'
 maxHitPoints: '1000'
 maxSpeed: '0.5'
 maxTurnRate: '180'
 minSpeed: '0.4'
@@ -322,6 +303,5 @@ particlePositions:
   - '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: avatar
 tier: '10'
-xpRadius: '24'
diff --git config_190801_043/Units/67D - Thief Dungeon/BOS_thiefchesttreasure.txt config_190801_051/Units/67D - Thief Dungeon/BOS_thiefchesttreasure.txt
index 7f7612a..c32292a 100644
--- config_190801_043/Units/67D - Thief Dungeon/BOS_thiefchesttreasure.txt	
+++ config_190801_051/Units/67D - Thief Dungeon/BOS_thiefchesttreasure.txt	
@@ -11,16 +11,12 @@ effectImmunities:
 energyRegenRate: '0'
 explosionPrefab: ExplosionBig_NoDebris
 hashOverride: '7797'
 healthRegenRate: '0'
 loot:
-  bossloot_difficult:
-    lootTableId: tier10boss_difficult
-  bossloot_lethal:
-    lootTableId: tier10boss_lethal
-  bossloot_normal:
-    lootTableId: tier10boss_normal
+  bossloot:
+    lootTableId: tier10boss
 maxEnergyPoints: '1'
 maxHitPoints: '500'
 maxSpeed: '0'
 maxTurnRate: '0'
 minSpeed: '0'
diff --git config_190801_043/Units/67D - Thief Dungeon/BOS_thiefkey_poop.txt config_190801_051/Units/67D - Thief Dungeon/BOS_thiefkey_poop.txt
index 60c7476..72061ea 100644
--- config_190801_043/Units/67D - Thief Dungeon/BOS_thiefkey_poop.txt	
+++ config_190801_051/Units/67D - Thief Dungeon/BOS_thiefkey_poop.txt	
@@ -8,12 +8,12 @@ explosionPrefab: planeExplosionEmpty
 healthRegenRate: '0'
 isVisibleInRadar: 'false'
 isVisibleToAI: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '10000000'
-maxSpeed: '5'
-maxTurnRate: '360'
+maxSpeed: '0'
+maxTurnRate: '0'
 minSpeed: '0'
 questEncounterDistance: '25'
 showStats: never
 spawnInvulnerabilitySeconds: '0'
 templateName: thiefkey_poop
diff --git config_190801_043/Units/68D - Eyeball Dungeon/BOS_octopus.txt config_190801_051/Units/68D - Eyeball Dungeon/BOS_octopus.txt
index 5703333..1a31df3 100644
--- config_190801_043/Units/68D - Eyeball Dungeon/BOS_octopus.txt	
+++ config_190801_051/Units/68D - Eyeball Dungeon/BOS_octopus.txt	
@@ -272,6 +272,5 @@ particlePositions:
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '0'
 templateName: octopus
 tier: '9'
 xpMultiplier: '0.8'
-xpRadius: '24'
diff --git config_190801_043/Units/69D - Temple Dungeon/BOS1_smokeboss.txt config_190801_051/Units/69D - Temple Dungeon/BOS1_smokeboss.txt
index 2e9912d..fa35746 100644
--- config_190801_043/Units/69D - Temple Dungeon/BOS1_smokeboss.txt	
+++ config_190801_051/Units/69D - Temple Dungeon/BOS1_smokeboss.txt	
@@ -146,58 +146,38 @@ gunTypes:
   rof: '3'
   speed: '5'
   spread: '240'
 healthRegenRate: '0'
 loot:
-  bossloot_difficult:
-    lootTableId: tier10boss_difficult
-  bossloot_lethal:
-    lootTableId: tier10boss_lethal
-  bossloot_normal:
-    lootTableId: tier10boss_normal
-  bosstrail_difficult:
-    lootTableId: occultgem_difficult_1_in_25
-  bosstrail_lethal:
-    lootTableId: occultgem_lethal_1_in_9
-  bosstrail_normal:
-    lootTableId: occultgem_normal_1_in_75
-  key_difficult:
-    lootTableId: weapons_water_difficult_42
-  key_lethal:
-    lootTableId: weapons_water_lethal_98
-  key_normal:
-    lootTableId: weapons_water_normal_14
-  ultrarare_difficult:
-    lootTableId: smokeboss_ultrarare_difficult_1_in_166
-  ultrarare_lethal:
-    lootTableId: smokeboss_ultrarare_lethal_1_in_71
-  ultrarare_normal:
-    lootTableId: smokeboss_ultrarare_normal_1_in_500
-  upgrades2_difficult:
-    conditions:
-    - buff: dungeonmods_difficult
-    lootTableId: upgrade_waterattack_x2_100
-  upgrades2_lethal:
-    conditions:
-    - buff: dungeonmods_lethal
-    lootTableId: upgrade_waterattack_x2_100
-  upgrades2_normal:
-    conditions:
-    - buff: dungeonmods_normal
+  bossloot:
+    lootTableId: tier10boss
+  bosstraildrop:
+    lootTable:
+    - weight: '98'
+    - items:
+      - id: craft_occultgem
+      weight: '2'
+    - items:
+      - id: trail_boss_smokeboss
+      weight: '0.1'
+  key:
+    lootTableId: weapons_water_20
+  ultrararedrop:
+    lootTable:
+    - weight: '200'
+    - items:
+      - id: sword_smoke_9
+      weight: '1.0001'
+  upgrades:
+    lootTableId: upgrade_armor_10
+  upgrades2:
     lootTableId: upgrade_waterattack_100
-  upgrades_difficult:
-    lootTableId: upgrade_armor_difficult_30
-  upgrades_lethal:
-    lootTableId: upgrade_armor_lethal_70
-  upgrades_normal:
-    lootTableId: upgrade_armor_normal_10
 maxEnergyPoints: '1'
 maxHitPoints: '999'
 maxSpeed: '0.25'
 maxTurnRate: '360'
 minSpeed: '0.25'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: smokeboss
 tier: '10'
 xpMultiplier: '3'
-xpRadius: '24'
diff --git config_190801_043/Units/71D - Escort Mission Dungeon/BOS3_escortevilorb.txt config_190801_051/Units/71D - Escort Mission Dungeon/BOS3_escortevilorb.txt
index 4646538..5304a58 100644
--- config_190801_043/Units/71D - Escort Mission Dungeon/BOS3_escortevilorb.txt	
+++ config_190801_051/Units/71D - Escort Mission Dungeon/BOS3_escortevilorb.txt	
@@ -144,6 +144,5 @@ minSpeed: '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '0'
 templateName: escortevilorb
 tier: '10'
 xpMultiplier: '1.3333'
-xpRadius: '24'
diff --git config_190801_043/Units/72D - Arena Dungeon 1/BOS_swarmboss.txt config_190801_051/Units/72D - Arena Dungeon 1/BOS_swarmboss.txt
index c471d54..f396252 100644
--- config_190801_043/Units/72D - Arena Dungeon 1/BOS_swarmboss.txt	
+++ config_190801_051/Units/72D - Arena Dungeon 1/BOS_swarmboss.txt	
@@ -91,6 +91,5 @@ particlePositions:
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '3'
 templateName: swarmboss
 tier: '5'
 xpMultiplier: '1.2'
-xpRadius: '24'
diff --git config_190801_043/Units/73D - Arena Dungeon 2/BOS_arenacube.txt config_190801_051/Units/73D - Arena Dungeon 2/BOS_arenacube.txt
index 1d55e1d..0a8ea63 100644
--- config_190801_043/Units/73D - Arena Dungeon 2/BOS_arenacube.txt	
+++ config_190801_051/Units/73D - Arena Dungeon 2/BOS_arenacube.txt	
@@ -53,58 +53,38 @@ gunMounts:
     pitch: '2'
     sound: Explosion Hazardous Nuke
   slewRate: '0'
 healthRegenRate: '0'
 loot:
-  bossloot_difficult:
-    lootTableId: tier10boss_difficult
-  bossloot_lethal:
-    lootTableId: tier10boss_lethal
-  bossloot_normal:
-    lootTableId: tier10boss_normal
-  bosstrail_difficult:
-    lootTableId: arenagem_difficult_1_in_25
-  bosstrail_lethal:
-    lootTableId: arenagem_lethal_1_in_9
-  bosstrail_normal:
-    lootTableId: arenagem_normal_1_in_75
-  key_difficult:
-    lootTableId: weapons_lightning_difficult_42
-  key_lethal:
-    lootTableId: weapons_lightning_lethal_98
-  key_normal:
-    lootTableId: weapons_lightning_normal_14
-  ultrarare_difficult:
-    lootTableId: arenacube_ultrarare_difficult_1_in_166
-  ultrarare_lethal:
-    lootTableId: arenacube_ultrarare_lethal_1_in_71
-  ultrarare_normal:
-    lootTableId: arenacube_ultrarare_normal_1_in_500
-  upgrades2_difficult:
-    conditions:
-    - buff: dungeonmods_difficult
-    lootTableId: upgrade_lightningattack_x2_100
-  upgrades2_lethal:
-    conditions:
-    - buff: dungeonmods_lethal
-    lootTableId: upgrade_lightningattack_x2_100
-  upgrades2_normal:
-    conditions:
-    - buff: dungeonmods_normal
+  bossloot:
+    lootTableId: tier10boss
+  bosstraildrop:
+    lootTable:
+    - weight: '98'
+    - items:
+      - id: craft_arenagem
+      weight: '2'
+    - items:
+      - id: trail_boss_arenacube
+      weight: '0.1'
+  key:
+    lootTableId: weapons_lightning_20
+  ultrararedrop:
+    lootTable:
+    - weight: '200'
+    - items:
+      - id: shotgun_flat_9
+      weight: '1.0001'
+  upgrades:
+    lootTableId: upgrade_armor_10
+  upgrades2:
     lootTableId: upgrade_lightningattack_100
-  upgrades_difficult:
-    lootTableId: upgrade_armor_difficult_30
-  upgrades_lethal:
-    lootTableId: upgrade_armor_lethal_70
-  upgrades_normal:
-    lootTableId: upgrade_armor_normal_10
 maxEnergyPoints: '1'
 maxHitPoints: '1400'
 maxSpeed: '0'
 maxTurnRate: '90'
 minSpeed: '0'
 recoilScale: '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: arenacube
 tier: '10'
-xpRadius: '24'
diff --git config_190801_043/Units/999D - Three Brothers/BOS_kaiju3B.txt config_190801_051/Units/999D - Three Brothers/BOS_kaiju3B.txt
index 60d430f..0938ca0 100644
--- config_190801_043/Units/999D - Three Brothers/BOS_kaiju3B.txt	
+++ config_190801_051/Units/999D - Three Brothers/BOS_kaiju3B.txt	
@@ -214,6 +214,5 @@ recoilScale: '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: kaiju3B
 tier: '10'
 xpMultiplier: '3.9'
-xpRadius: '24'
diff --git config_190801_043/Units/999D - Three Brothers/BOS_raijin3B.txt config_190801_051/Units/999D - Three Brothers/BOS_raijin3B.txt
index c7b28cb..34607e1 100644
--- config_190801_043/Units/999D - Three Brothers/BOS_raijin3B.txt	
+++ config_190801_051/Units/999D - Three Brothers/BOS_raijin3B.txt	
@@ -243,6 +243,5 @@ recoilScale: '0'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: raijin3B
 tier: '10'
 xpMultiplier: '3.9'
-xpRadius: '24'
diff --git config_190801_043/Units/999D - Three Brothers/BOS_thunderboss3B.txt config_190801_051/Units/999D - Three Brothers/BOS_thunderboss3B.txt
index d93648c..b82a890 100644
--- config_190801_043/Units/999D - Three Brothers/BOS_thunderboss3B.txt	
+++ config_190801_051/Units/999D - Three Brothers/BOS_thunderboss3B.txt	
@@ -231,6 +231,5 @@ particlePositions:
   - '-90'
 showPostFightDetails: 'true'
 templateName: thunderboss3B
 tier: '10'
 xpMultiplier: '3.9'
-xpRadius: '24'
diff --git config_190801_043/Units/999D - Three Brothers/unit_3brothers_portalmaker.txt config_190801_043/Units/999D - Three Brothers/unit_3brothers_portalmaker.txt
deleted file mode 100644
index a20f02f..0000000
diff --git config_190801_043/Units/999D - Three Brothers/zzz_3brothers_gate.txt config_190801_043/Units/999D - Three Brothers/zzz_3brothers_gate.txt
deleted file mode 100644
index 7bbb058..0000000
diff --git config_190801_043/Units/999D - Three Brothers/zzz_3brothersdungeondestroyablewall.txt config_190801_043/Units/999D - Three Brothers/zzz_3brothersdungeondestroyablewall.txt
deleted file mode 100644
index d79c97e..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon/BOS1_meowza.txt config_190801_051/Units/99D - Boss Dungeon/BOS1_meowza.txt
index ea39e87..4e97929 100644
--- config_190801_043/Units/99D - Boss Dungeon/BOS1_meowza.txt	
+++ config_190801_051/Units/99D - Boss Dungeon/BOS1_meowza.txt	
@@ -218,6 +218,5 @@ minSpeed: '0.1'
 networkUpdateCutoff: '42'
 showPostFightDetails: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: meowza
 tier: '10'
-xpRadius: '36'
diff --git config_190801_043/Units/99D - Boss Dungeon/BOS1_meowzaDeath3BrothersPortal.txt config_190801_043/Units/99D - Boss Dungeon/BOS1_meowzaDeath3BrothersPortal.txt
deleted file mode 100644
index d53239f..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon/ph2_meowzaB2m.txt config_190801_051/Units/99D - Boss Dungeon/ph2_meowzaB2m.txt
index 4bc5aa2..b8f28bf 100644
--- config_190801_043/Units/99D - Boss Dungeon/ph2_meowzaB2m.txt	
+++ config_190801_051/Units/99D - Boss Dungeon/ph2_meowzaB2m.txt	
@@ -56,11 +56,10 @@ healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
 maxSpeed: '10'
 maxTurnRate: '270'
 minSpeed: '0'
-networkUpdateCutoff: '42'
 showName: never
 showStats: always
 spawnInvulnerabilitySeconds: '1'
 templateName: meowzaB2m
 tier: '10'
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS0_meowza2spawner.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS0_meowza2spawner.txt
deleted file mode 100644
index ec3f224..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_9star1.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_9star1.txt
deleted file mode 100644
index 0069d17..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_9star2.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_9star2.txt
deleted file mode 100644
index 7ed14ad..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2.txt
deleted file mode 100644
index e879721..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2DEATH.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2DEATH.txt
deleted file mode 100644
index cadc3c2..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_animationtest.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_animationtest.txt
deleted file mode 100644
index 57197a3..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_chaser.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_chaser.txt
deleted file mode 100644
index 7b120c8..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_claw_1.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_claw_1.txt
deleted file mode 100644
index 3bd86b0..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_claw_2.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_claw_2.txt
deleted file mode 100644
index 9fd48fe..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_firering.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_firering.txt
deleted file mode 100644
index 2df269e..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_frost_1.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_frost_1.txt
deleted file mode 100644
index 618c5ef..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_frost_1_2.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_frost_1_2.txt
deleted file mode 100644
index 240fe5e..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_frost_2.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_frost_2.txt
deleted file mode 100644
index e50eaff..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_frost_2_2.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_frost_2_2.txt
deleted file mode 100644
index 9a7c2e8..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_hunter.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_hunter.txt
deleted file mode 100644
index 9a2f5a5..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_hunter_spawner.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_hunter_spawner.txt
deleted file mode 100644
index d3e6f90..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_infinity_1.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_infinity_1.txt
deleted file mode 100644
index 4cb91c4..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_infinity_2.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_infinity_2.txt
deleted file mode 100644
index 69247bd..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_lasereye.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_lasereye.txt
deleted file mode 100644
index f2a43ee..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_lasereyegrid_1.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_lasereyegrid_1.txt
deleted file mode 100644
index c1226c5..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_lasereyegrid_2.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_lasereyegrid_2.txt
deleted file mode 100644
index 85ec974..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_lightningspiral.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_lightningspiral.txt
deleted file mode 100644
index 3e28b29..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_nuke.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_nuke.txt
deleted file mode 100644
index f3df92b..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_nukestorm.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_nukestorm.txt
deleted file mode 100644
index 6df1b7c..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_orochi_1.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_orochi_1.txt
deleted file mode 100644
index 46b4a05..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_orochi_2.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_orochi_2.txt
deleted file mode 100644
index dda2447..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_shine.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_shine.txt
deleted file mode 100644
index c7473ad..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_turret_E.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_turret_E.txt
deleted file mode 100644
index d831f8c..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_turret_N.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_turret_N.txt
deleted file mode 100644
index 80b509b..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_turret_S.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_turret_S.txt
deleted file mode 100644
index 3010834..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_turret_W.txt config_190801_043/Units/99D - Boss Dungeon 2/BOS1_meowza2_turret_W.txt
deleted file mode 100644
index 062d6b9..0000000
diff --git config_190801_043/Units/99D - Boss Dungeon 2/unit_3brosportalally.txt config_190801_043/Units/99D - Boss Dungeon 2/unit_3brosportalally.txt
deleted file mode 100644
index ba4eecb..0000000
diff --git config_190801_043/Units/DungeonTraps/TRP_compass_turn_CCW_slow.txt config_190801_043/Units/DungeonTraps/TRP_compass_turn_CCW_slow.txt
deleted file mode 100644
index 0a591e9..0000000
diff --git config_190801_043/Units/DungeonTraps/TRP_compass_turn_CW_slow.txt config_190801_043/Units/DungeonTraps/TRP_compass_turn_CW_slow.txt
deleted file mode 100644
index b136627..0000000
diff --git config_190801_043/Units/Test/unit_buffcheck.txt config_190801_043/Units/Test/unit_buffcheck.txt
deleted file mode 100644
index 5b1b4af..0000000
diff --git config_190801_043/buffTags.txt config_190801_043/buffTags.txt
deleted file mode 100644
index 13f9637..0000000
diff --git config_190801_043/buffs.txt config_190801_051/buffs.txt
index f8e58a8..f0682da 100644
--- config_190801_043/buffs.txt
+++ config_190801_051/buffs.txt
@@ -21,506 +21,6 @@
   expireAfter: 0:02
   expireOnServerLeave: 'true'
   hudColorBackground: 2C1447FF
   hudColorBar: 5B2A92FF
   id: test_curse
-  stackOverflowRule: ReplaceOldest
   stacks: '2'
-- effects:
-  - statMod:
-      amount: '0.85'
-      math: multiply
-      name: minSpeed
-  - statMod:
-      amount: '0.85'
-      math: multiply
-      name: maxSpeed
-  expireOnServerLeave: 'true'
-  hudColorBackground: 143247FF
-  hudColorBar: 2D71A1FF
-  hudSortPriority: '-10'
-  id: test_slow
-  stackOverflowRule: ReplaceOldest
-  stacks: '0'
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_bogged_down
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_bogged_down
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '0.75'
-      math: multiply
-      name: superspeedFactor
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: 555555FF
-  id: dungeonmod_bogged_down
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_touchy
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_touchy
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '1.3'
-      math: multiply
-      name: healthRegenRate
-  - statMod:
-      amount: '1.1'
-      math: multiply
-      name: damageReceivedMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: 555555FF
-  id: dungeonmod_touchy
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_acrobatics
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_acrobatics
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '0.5'
-      math: multiply
-      name: maneuverEnergyCostMod
-  - statMod:
-      amount: '1.2'
-      math: multiply
-      name: damageReceivedMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: 555555FF
-  id: dungeonmod_acrobatics
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_eager_help
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_eager_help
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '0.65'
-      math: multiply
-      name: secondaryEnergyCostMod
-  - statMod:
-      amount: '1.2'
-      math: multiply
-      name: damageReceivedMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: 555555FF
-  id: dungeonmod_eager_help
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_float_butterfly
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_float_butterfly
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '1.30'
-      math: multiply
-      name: gunDamageMod
-  - statMod:
-      amount: '1.30'
-      math: multiply
-      name: damageReceivedMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: 555555FF
-  id: dungeonmod_float_butterfly
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_in_your_face
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_in_your_face
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '0.6'
-      math: multiply
-      name: gunRangeMod
-  - statMod:
-      amount: '1.2'
-      math: multiply
-      name: gunDamageMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: 555555FF
-  id: dungeonmod_in_your_face
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_restless
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_restless
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '0.5'
-      math: multiply
-      name: healthRegenRate
-  - statMod:
-      amount: '1.25'
-      math: multiply
-      name: superspeedFactor
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: 555555FF
-  id: dungeonmod_restless
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_itchy_trigger
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_itchy_trigger
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '1.3'
-      math: multiply
-      name: gunRateOfFireMod
-  - statMod:
-      amount: '1.3'
-      math: multiply
-      name: gunAmmoMod
-  - statMod:
-      amount: '0.7'
-      math: multiply
-      name: gunCooldownMod
-  - statMod:
-      amount: '0.7'
-      math: multiply
-      name: gunDamageMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: 555555FF
-  id: dungeonmod_itchy_trigger
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_hunt_peck
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_hunt_peck
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '0.5'
-      math: multiply
-      name: gunRateOfFireMod
-  - statMod:
-      amount: '1.25'
-      math: multiply
-      name: gunDamageMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: 555555FF
-  id: dungeonmod_hunt_peck
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_fast_learner
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_fast_learner
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '1.25'
-      math: multiply
-      name: xpMod
-  - statMod:
-      amount: '0.7'
-      math: multiply
-      name: maxHitPoints
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: ff7900ff
-  id: dungeonmod_fast_learner
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_extremely_touchy
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_extremely_touchy
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '1.6'
-      math: multiply
-      name: healthRegenRate
-  - statMod:
-      amount: '1.35'
-      math: multiply
-      name: damageReceivedMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: ff7900ff
-  id: dungeonmod_extremely_touchy
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_rush_hour
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_rush_hour
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '1.5'
-      math: multiply
-      name: superspeedFactor
-  - statMod:
-      amount: '1.3'
-      math: multiply
-      name: damageReceivedMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: ff7900ff
-  id: dungeonmod_rush_hour
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_nearsighted
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_nearsighted
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '0.75'
-      math: multiply
-      name: cameraZoomMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: ff7900ff
-  id: dungeonmod_nearsighted
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_exhausted
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_exhausted
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '0.0'
-      math: multiply
-      name: energyRegenRate
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: ff7900ff
-  id: dungeonmod_exhausted
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_constrained
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_constrained
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '0.5'
-      math: multiply
-      name: maxEnergyPoints
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: ff7900ff
-  id: dungeonmod_constrained
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_broken_axis_plane
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_broken_axis_plane
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '0.35'
-      math: multiply
-      name: maxTurnRate
-  - statMod:
-      amount: '0.75'
-      math: multiply
-      name: maneuverEnergyCostMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: ff7900ff
-  id: dungeonmod_broken_axis_plane
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_broken_axis_dualstick
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_broken_axis_dualstick
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '0.15'
-      math: multiply
-      name: maxTurnRate
-  - statMod:
-      amount: '0.75'
-      math: multiply
-      name: maneuverEnergyCostMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: ff7900ff
-  id: dungeonmod_broken_axis_dualstick
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_enfeebled
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_enfeebled
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '1.8'
-      math: multiply
-      name: damageReceivedMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: d40009ff
-  id: dungeonmod_enfeebled
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_hot_to_handle
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_hot_to_handle
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '3.5'
-      math: multiply
-      name: superspeedFactor
-  - statMod:
-      amount: '0.85'
-      math: multiply
-      name: cameraZoomMod
-  - statMod:
-      amount: '1.5'
-      math: multiply
-      name: damageReceivedMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: d40009ff
-  id: dungeonmod_hot_to_handle
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_dead_to_world
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_dead_to_world
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '0.05'
-      math: multiply
-      name: maxEnergyPoints
-  - statMod:
-      amount: '1.2'
-      math: multiply
-      name: damageReceivedMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: d40009ff
-  id: dungeonmod_dead_to_world
-  stackOverflowRule: ReplaceOldest
-- dialogue:
-    onStart:
-    - speechOptions:
-      - format: conversation
-        id: dungeonmod_insomniac
-    - speechOptions:
-      - format: HideSpeechBubble
-        id: dungeonmod_insomniac
-        portrait: dungeonmod
-  effects:
-  - statMod:
-      amount: '0.0'
-      math: multiply
-      name: healthRegenRate
-  - statMod:
-      amount: '0.0'
-      math: multiply
-      name: energyRegenRate
-  - statMod:
-      amount: '0.7'
-      math: multiply
-      name: superspeedFactor
-  - statMod:
-      amount: '1.25'
-      math: multiply
-      name: damageReceivedMod
-  expireOnServerLeave: 'true'
-  hudColorBackground: 2C1447FF
-  hudColorBar: d40009ff
-  id: dungeonmod_insomniac
-  stackOverflowRule: ReplaceOldest
diff --git config_190801_043/bullets.txt config_190801_051/bullets.txt
index 237ad9b..815c017 100644
--- config_190801_043/bullets.txt
+++ config_190801_051/bullets.txt
@@ -665,19 +665,5 @@
   name: piercingBulletShort
   sprite: piercing_bullet_short
   spriteScale:
   - '0.4'
   - '0.4'
-- colliderSize:
-  - '0.2'
-  - '0.2'
-  name: shurikenBullet_still
-  rotationPerSecond: '0'
-  sprite: shuriken_bullet
-  spriteColor:
-  - '0.003921569'
-  - '0'
-  - '0'
-  - '1'
-  spriteScale:
-  - '0.5'
-  - '0.5'
diff --git config_190801_043/conversations.txt config_190801_051/conversations.txt
index e753844..11ffd8f 100644
--- config_190801_043/conversations.txt
+++ config_190801_051/conversations.txt
@@ -500,152 +500,5 @@ conversations:
   - character: sergeant
     pose: default
   - background: none
   - text: boss-hunt_07
   id: boss-hunt
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_bogged_down_01
-  id: dungeonmod_bogged_down
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_touchy_01
-  id: dungeonmod_touchy
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_acrobatics_01
-  id: dungeonmod_acrobatics
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_eager_help_01
-  id: dungeonmod_eager_help
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_float_butterfly_01
-  id: dungeonmod_float_butterfly
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_in_your_face_01
-  id: dungeonmod_in_your_face
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_restless_01
-  id: dungeonmod_restless
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_itchy_trigger_01
-  id: dungeonmod_itchy_trigger
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_hunt_peck_01
-  id: dungeonmod_hunt_peck
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_fast_learner_01
-  id: dungeonmod_fast_learner
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_extremely_touchy_01
-  id: dungeonmod_extremely_touchy
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_rush_hour_01
-  id: dungeonmod_rush_hour
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_nearsighted_01
-  id: dungeonmod_nearsighted
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_exhausted_01
-  id: dungeonmod_exhausted
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_constrained_01
-  id: dungeonmod_constrained
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_broken_axis_plane_01
-  id: dungeonmod_broken_axis_plane
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_broken_axis_dualstick_01
-  id: dungeonmod_broken_axis_dualstick
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_enfeebled_01
-  id: dungeonmod_enfeebled
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_hot_to_handle_01
-  id: dungeonmod_hot_to_handle
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_dead_to_world_01
-  id: dungeonmod_dead_to_world
-- chatPanelVisibleAfterwards: 'true'
-  clientTriggerable: 'true'
-  content:
-  - background: color
-    color: 00000095f
-  - text: dungeonmod_insomniac_01
-  id: dungeonmod_insomniac
diff --git config_190801_043/global.txt config_190801_051/global.txt
index 4c24591..c5808ee 100644
--- config_190801_043/global.txt
+++ config_190801_051/global.txt
@@ -11,11 +11,10 @@ autoRestartNexusSchedule:
   hour: '10'
 backend: ozy
 backendErrorPercentage: '0'
 backendMonkeyDelayMaxMs: '500'
 backendMonkeyDelayMinMs: '10'
-backendReturnTimeoutPercentage: '0'
 baseNumHangarSlots: '2'
 baseNumInventorySlots: '12'
 baseNumStorageSlots: '16'
 baseSkillLoadoutSlots: '1'
 bulletMaxDeltaCollide: '0.25'
@@ -30,11 +29,11 @@ clientTimestampPeriod: '60'
 cloudMaxDistanceSq: '64'
 conversationEndSafety: '3'
 copperClientSmoothTimeSync: 'false'
 copperTimeSyncThresholdResync: '0.4'
 countChildrenForSpawning: 'false'
-daysIntoFutureToShowEvents: '2'
+daysIntoFutureToShowEvents: '8'
 daysIntoFutureToShowNews: '8'
 daysIntoPastToShowEvents: '0'
 daysIntoPastToShowNews: '7'
 deathCamGifUploadMaxKBytesPerSec: '128'
 debugInfo: 'false'
@@ -559,14 +558,10 @@ pilotXpTargets:
 - level: '200'
   xp: '1056944'
 planeClassesUsedInTutorial:
 - olfaithful
 - walker
-planeXpBoostHudColorBackground: '0x523C26FF'
-planeXpBoostHudColorBar: '0x85613DFF'
-planeXpBoostHudDuration: '1830'
-planeXpBoostHudSortPriority: '-10000'
 playerTiers:
 - level: '1'
   tier: '0'
 - level: '3'
   tier: '1'
@@ -595,11 +590,11 @@ postFightDetailsDistanceFromWall: '8'
 postFightDetailsDuration: '0'
 postFightDetailsOffset:
 - '2'
 - '-2'
 questEncounterDistanceFactor: '1.0'
-questEncounterDistanceMin: '22.0'
+questEncounterDistanceMin: '15.0'
 questEndTimeLow: '300'
 questEndTimeWarn: '60'
 questGuidanceEnabled: 'true'
 questGuidanceHysteresis: '15'
 questGuidanceInterval: '8'
@@ -691,11 +686,10 @@ steamBranchSettings:
   test:
     connection_override: test
 stunImmunityDamageMultiplier: '3'
 teleportArrivalTime: '1'
 teleportDelay: '3'
-teleportNexusDelay: '1'
 teleportSafety: '5'
 terrainScatterRate: '500'
 textAndTimeChat: 'true'
 usePermadeath: 'true'
 usingWalls: 'false'
diff --git config_190801_043/groundAssets.txt config_190801_051/groundAssets.txt
index bc1afc2..7b0315b 100644
--- config_190801_043/groundAssets.txt
+++ config_190801_051/groundAssets.txt
@@ -75,163 +75,10 @@ dungeonarena_decor_02:
   - '-180'
   - '180'
   randomScale:
   - '1'
   - '1'
-dungeonboss2_center_01:
-  canFlipX: 'false'
-  canFlipY: 'false'
-  randomRotation:
-  - '0'
-  - '0'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_center_02:
-  canFlipX: 'false'
-  canFlipY: 'false'
-  randomRotation:
-  - '0'
-  - '0'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_center_03:
-  canFlipX: 'false'
-  canFlipY: 'false'
-  randomRotation:
-  - '0'
-  - '0'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_center_04:
-  canFlipX: 'false'
-  canFlipY: 'false'
-  randomRotation:
-  - '0'
-  - '0'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_center_05:
-  canFlipX: 'false'
-  canFlipY: 'false'
-  randomRotation:
-  - '0'
-  - '0'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_center_06:
-  canFlipX: 'false'
-  canFlipY: 'false'
-  randomRotation:
-  - '0'
-  - '0'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_center_07:
-  canFlipX: 'false'
-  canFlipY: 'false'
-  randomRotation:
-  - '0'
-  - '0'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_center_08:
-  canFlipX: 'false'
-  canFlipY: 'false'
-  randomRotation:
-  - '0'
-  - '0'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_center_09:
-  canFlipX: 'false'
-  canFlipY: 'false'
-  randomRotation:
-  - '0'
-  - '0'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_center_10:
-  canFlipX: 'false'
-  canFlipY: 'false'
-  randomRotation:
-  - '0'
-  - '0'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_center_11:
-  canFlipX: 'false'
-  canFlipY: 'false'
-  randomRotation:
-  - '0'
-  - '0'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_center_12:
-  canFlipX: 'false'
-  canFlipY: 'false'
-  randomRotation:
-  - '0'
-  - '0'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_decor_01:
-  canFlipX: 'false'
-  canFlipY: 'false'
-  randomRotation:
-  - '0'
-  - '0'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_decor_02:
-  canFlipX: 'false'
-  canFlipY: 'false'
-  randomRotation:
-  - '0'
-  - '0'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_wall_01:
-  canFlipX: 'true'
-  canFlipY: 'true'
-  randomRotation:
-  - '90'
-  - '90'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_wall_02:
-  canFlipX: 'true'
-  canFlipY: 'true'
-  randomRotation:
-  - '90'
-  - '90'
-  randomScale:
-  - '1'
-  - '1'
-dungeonboss2_wall_03:
-  canFlipX: 'true'
-  canFlipY: 'true'
-  randomRotation:
-  - '90'
-  - '90'
-  randomScale:
-  - '1'
-  - '1'
 dungeonboss_center_01:
   canFlipX: 'false'
   canFlipY: 'false'
   randomRotation:
   - '0'
diff --git config_190801_043/index.txt config_190801_051/index.txt
index a96a480..4bdfa6d 100644
--- config_190801_043/index.txt
+++ config_190801_051/index.txt
@@ -2,11 +2,10 @@
 - art_replacements
 - auditing
 - banned_words
 - buffPools
 - buffs
-- buffTags
 - bullets
 - camera
 - cloud_fx
 - clouds
 - connection
@@ -58,11 +57,10 @@
 - Dungeons/dungeon_arena
 - Dungeons/dungeon_arena2
 - Dungeons/dungeon_bomb
 - Dungeons/dungeon_eye
 - Dungeons/dungeon_finalboss
-- Dungeons/dungeon_finalboss2
 - Dungeons/dungeon_fire
 - Dungeons/dungeon_gate
 - Dungeons/dungeon_grind
 - Dungeons/dungeon_ice
 - Dungeons/dungeon_obstacle
@@ -1296,49 +1294,13 @@
 - Units/999D - Three Brothers/BOS_kaiju3BDEATH
 - Units/999D - Three Brothers/BOS_raijin3B
 - Units/999D - Three Brothers/BOS_raijin3BDEATH
 - Units/999D - Three Brothers/BOS_thunderboss3B
 - Units/999D - Three Brothers/BOS_thunderboss3BDEATH
-- Units/999D - Three Brothers/unit_3brothers_portalmaker
-- Units/999D - Three Brothers/zzz_3brothers_gate
 - Units/999D - Three Brothers/zzz_3brothers_reward
-- Units/999D - Three Brothers/zzz_3brothersdungeondestroyablewall
-- Units/99D - Boss Dungeon 2/BOS0_meowza2spawner
-- Units/99D - Boss Dungeon 2/BOS1_9star1
-- Units/99D - Boss Dungeon 2/BOS1_9star2
-- Units/99D - Boss Dungeon 2/BOS1_meowza2
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_animationtest
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_chaser
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_claw_1
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_claw_2
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_firering
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_frost_1
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_frost_1_2
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_frost_2
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_frost_2_2
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_hunter
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_hunter_spawner
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_infinity_1
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_infinity_2
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_lasereye
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_lasereyegrid_1
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_lasereyegrid_2
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_lightningspiral
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_nuke
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_nukestorm
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_orochi_1
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_orochi_2
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_shine
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_turret_E
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_turret_N
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_turret_S
-- Units/99D - Boss Dungeon 2/BOS1_meowza2_turret_W
-- Units/99D - Boss Dungeon 2/BOS1_meowza2DEATH
-- Units/99D - Boss Dungeon 2/unit_3brosportalally
 - Units/99D - Boss Dungeon/BOS1_meowza
 - Units/99D - Boss Dungeon/BOS1_meowzaDEATH
-- Units/99D - Boss Dungeon/BOS1_meowzaDeath3BrothersPortal
 - Units/99D - Boss Dungeon/BOS1_meowzaDeathPortal
 - Units/99D - Boss Dungeon/BOS1_meowzanukeminion
 - Units/99D - Boss Dungeon/BOS2_meowzafinallaserminion
 - Units/99D - Boss Dungeon/BOS2_meowzahealthleader2
 - Units/99D - Boss Dungeon/BOS2_meowzahealthnode
@@ -1384,13 +1346,11 @@
 - Units/DungeonTraps/AAA_trapmaster_fast_ABC_CBA
 - Units/DungeonTraps/AAA_trapmaster_randomspeed
 - Units/DungeonTraps/AAA_trapmaster_slow
 - Units/DungeonTraps/TRP_compass
 - Units/DungeonTraps/TRP_compass_turn_CCW
-- Units/DungeonTraps/TRP_compass_turn_CCW_slow
 - Units/DungeonTraps/TRP_compass_turn_CW
-- Units/DungeonTraps/TRP_compass_turn_CW_slow
 - Units/DungeonTraps/TRP_compassN
 - Units/DungeonTraps/TRP_compassW
 - Units/DungeonTraps/TRP_electricfenceA
 - Units/DungeonTraps/TRP_electricfenceA_NW
 - Units/DungeonTraps/TRP_electricfenceB
@@ -1456,11 +1416,10 @@
 - Units/Test/BOS1_fivestartest
 - Units/Test/BOS1_fivestartestrotate
 - Units/Test/BOS2_killfamtestchild
 - Units/Test/BOS2_killfamtestparent
 - Units/Test/SOL2_drifter
-- Units/Test/unit_buffcheck
 - Units/Test/unit_buffer
 - Units/Test/unit_meatshield
 - Units/Test/unit_meatshieldbig
 - Units/Test/unit_roftest
 - Units/Test/unit_shieldswarm
diff --git config_190801_043/instantEffects.txt config_190801_051/instantEffects.txt
index 00fb74f..48ab2c6 100644
--- config_190801_043/instantEffects.txt
+++ config_190801_051/instantEffects.txt
@@ -20,45 +20,21 @@ EnemyNukeDown:
     time: '0.0'
 EnemyNukeUp:
   steps:
   - prefab: EnemyNukeUp
     time: '0.0'
-EpicRaijin_attack:
-  steps:
-  - animationTriggerName: EpicRaijin_attack
-    time: '0.00'
-EpicRaijin_death:
-  steps:
-  - animationTriggerName: EpicRaijin_death
-    time: '0.00'
-EpicRaijin_move:
-  steps:
-  - animationTriggerName: EpicRaijin_move
-    time: '0.00'
 LavaPillar:
   steps:
   - offset:
       pos:
       - '0'
       - '0'
       - '0'
     prefab: LavaPillar
     sfx:
       sound: Explosion large
     time: '0.00'
-Meowza2Attack:
-  steps:
-  - animationTriggerName: Meowza2Attack
-    time: '0.00'
-Meowza2Death:
-  steps:
-  - animationTriggerName: Meowza2Death
-    time: '0.00'
-Meowza2Move:
-  steps:
-  - animationTriggerName: Meowza2Move
-    time: '0.00'
 MissionComplete:
   steps:
   - offset:
       pos:
       - '0'
diff --git config_190801_043/skills.txt config_190801_051/skills.txt
index 5bac8ff..8e4cc70 100644
--- config_190801_043/skills.txt
+++ config_190801_051/skills.txt
@@ -1242,22 +1242,14 @@
   label: 4-B
   maxLevel: '1'
   passives:
   - mods:
     - statMod:
-        amount: '1.20'
-        math: multiply
-        name: maxTurnRate
-    - statMod:
-        amount: '1.05'
-        math: multiply
-        name: superspeedFactor
-    - statMod:
-        amount: '1.05'
+        amount: '0.5'
         math: multiply
-        name: cameraZoomMod
-    - effectIcon: effecticon_speedboost
+        name: maneuverEnergyCostMod
+    - effectIcon: effecticon_steamcost
     volatileConditions:
     - nearbyPlayersAboveOrEq: '3'
 - conditions:
   - itemTag: shotgun
   cost: '1'
@@ -1807,16 +1799,16 @@
   maxLevel: '5'
   passives:
   - mods:
     - statMod:
         amount: '0.75'
-        math: postAdd
+        math: add
         name: healthRegenRate
     - statMod:
         amount: '0.25'
         leveling: 'true'
-        math: postAdd
+        math: add
         name: healthRegenRate
     - effectIcon: effecticon_healthboost
     volatileConditions:
     - healthBelow: '0.5'
 - conditions:
@@ -3352,22 +3344,33 @@
   - planeClass: tank
   cost: '1'
   icon: skillicon_hog
   id: hog_1b
   label: 1-B
-  maxLevel: '1'
-  triggers:
-  - actions:
-    - cooldown: '1'
-      duration: '3'
-      mods:
-      - statMod:
-          amount: '1.30'
-          math: multiply
-          name: superspeedFactor
-      - effectIcon: effecticon_speedboost
-    trigger: OnManeuverStart
+  maxLevel: '5'
+  passives:
+  - mods:
+    - statMod:
+        amount: '0.5'
+        math: postAdd
+        name: energyRegenRate
+    - statMod:
+        amount: '0.2'
+        leveling: 'true'
+        math: postAdd
+        name: energyRegenRate
+    - effectIcon: effecticon_steamboost
+    volatileConditions:
+    - healthBelow: '0.8'
+  - mods:
+    - statMod:
+        amount: '1'
+        math: add
+        name: energyRegenRate
+    - effectIcon: effecticon_steamboost
+    volatileConditions:
+    - healthBelow: '0.2'
 - conditions:
   - planeClass: tank
   cost: '2'
   icon: skillicon_hog
   id: hog_2a
diff --git config_190801_043/territories.txt config_190801_051/territories.txt
index 3d4fb02..3af8553 100644
--- config_190801_043/territories.txt
+++ config_190801_051/territories.txt
@@ -967,25 +967,15 @@
     minElevation: '0'
     name: dungeoneye
     secondsPerStandardEnemyIn10x10: '0'
     sortOrder: '-1'
     tier: '0'
-- bossMusicTrack: music_meowza_main_loop
-  distancePerElevation: '0.8'
-  maxAllowedOverlapOnSubterritory: '0.7'
-  maxDiskRadius: '40'
-  minDiskRadius: '20'
-  musicTrack: music_meowza_intro_loop
-  name: DungeonFinalBoss
-  originElevation: '100'
-  playerStartElevation: '1'
-  role: Dungeon
 - distancePerElevation: '0.8'
   maxAllowedOverlapOnSubterritory: '0.7'
   maxDiskRadius: '40'
   minDiskRadius: '20'
-  name: DungeonFinalBoss2
+  name: DungeonFinalBoss
   originElevation: '100'
   playerStartElevation: '1'
   role: Dungeon
 - distancePerElevation: '0.8'
   maxAllowedOverlapOnSubterritory: '0.7'
diff --git config_190801_043/territoryTiles.txt config_190801_051/territoryTiles.txt
index 8413ccb..1474ba6 100644
--- config_190801_043/territoryTiles.txt
+++ config_190801_051/territoryTiles.txt
@@ -994,73 +994,22 @@ empty:
   fogColor: 666666ff
   groundBaseHeight: '40'
   groundFloorHeight: '40'
   lowerCloudProbability: '0.2'
   miniRadarColor: '555555'
-finalboss2_dungeon:
-  ID: '73'
-  ambientColor: 5e1334
-  ambientFX:
-    position:
-    - '0'
-    - '0'
-    - '0'
-    prefab: Lowlands3AmbientEffect
-  backLeftColor: 487da6
-  backLeftIntensity: '0.5'
-  backRightColor: e93b58
-  backRightIntensity: '0.6'
-  basedOn: highlands
-  closeCanyonGroup: default
-  cloudHeight: '2'
-  cloudHeightVariation: '2'
-  cloudPrefabs:
-  - polygonalcloud1
-  cloudProbability: '0.8'
-  cloudStartColor:
-    colorMax: a14f607a
-    colorMin: a14f607a
-    mode: TwoColors
-  continuityGroup: default
-  fogBottom: '25'
-  fogColor: 1e0421
-  fogExp: '0'
-  fogNoiseAmount: '0.3'
-  fogNoiseScale: '5'
-  fogTop: '0'
-  groundBaseHeight: '30'
-  groundFloorHeight: '19'
-  groundTag: dungeonboss2
-  keyColor: d09898
-  keyIntensity: '0.9'
-  lowerCloudHeight: '10'
-  lowerCloudHeightVariation: '5'
-  lowerCloudPrefabs:
-  - polygonalcloudlow1
-  lowerCloudProbability: '0.5'
-  lowerCloudStartColor:
-    colorMax: 5028314b
-    colorMin: 5028314b
-    mode: TwoColors
-  miniRadarColor: 160e2f
-  scatterTag: dungeonboss2
-  wallBaseHeight: '20'
-  wallHeightRandomness: '1'
-  wallRotationRandomness: '0.6'
-  wallTag: dungeonboss2
 finalboss_dungeon:
   ID: '35'
   ambientColor: 5e1334
   ambientFX:
     position:
     - '0'
     - '0'
     - '0'
     prefab: Lowlands3AmbientEffect
   backLeftColor: 487da6
   backLeftIntensity: '0.5'
-  backRightColor: e87a3a
+  backRightColor: e93b58
   backRightIntensity: '0.6'
   basedOn: highlands
   closeCanyonGroup: default
   cloudHeight: '2'
   cloudHeightVariation: '2'
@@ -1079,11 +1028,11 @@ finalboss_dungeon:
   fogNoiseScale: '5'
   fogTop: '0'
   groundBaseHeight: '30'
   groundFloorHeight: '19'
   groundTag: dungeonboss
-  keyColor: f7b27a
+  keyColor: d09898
   keyIntensity: '0.9'
   lowerCloudHeight: '10'
   lowerCloudHeightVariation: '5'
   lowerCloudPrefabs:
   - polygonalcloudlow1