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
 43 files changed, 640 insertions(+), 135 deletions(-)

diff --git config_190612_0453/Items/Secondary Weapons/mine.txt config_190617_2352/Items/Secondary Weapons/mine.txt
index a80c1bb..72d203e 100644
--- config_190612_0453/Items/Secondary Weapons/mine.txt	
+++ config_190617_2352/Items/Secondary Weapons/mine.txt	
@@ -176,22 +176,5 @@
   id: mine_10
   slot: SecondaryAttack
   soulbound: 'true'
   tag: mine
   tier: '10'
-- actions:
-  - spawn:
-      cooldown: '1'
-      cost: '22'
-      count: '1'
-      name: spawnmine_lava
-      offset:
-        angle: '0'
-        distance: '0.0'
-        isRelative: 'true'
-      unit: allyminelava
-  icon: ItemLootMine_10
-  id: mine_lava
-  slot: SecondaryAttack
-  soulbound: 'true'
-  tag: mine
-  tier: '100'
diff --git config_190612_0453/Items/crafting/craft_bluesteel.txt config_190617_2352/Items/crafting/craft_bluesteel.txt
index 9e88f00..e8c3bdc 100644
--- config_190612_0453/Items/crafting/craft_bluesteel.txt
+++ config_190617_2352/Items/crafting/craft_bluesteel.txt
@@ -1,8 +1,8 @@
 actions:
 - soulbound:
     state: 'true'
-icon: ItemUpgrade_Generic
+icon: ItemCraft_BlueSteel
 id: craft_bluesteel
 slot: Quest
 soulbound: 'true'
 tier: '-1'
diff --git config_190612_0453/Items/crafting/craft_copper.txt config_190617_2352/Items/crafting/craft_copper.txt
index 3c3cad9..53f985c 100644
--- config_190612_0453/Items/crafting/craft_copper.txt
+++ config_190617_2352/Items/crafting/craft_copper.txt
@@ -1,8 +1,8 @@
 actions:
 - soulbound:
     state: 'true'
-icon: ItemUpgrade_Generic
+icon: ItemCraft_Copper
 id: craft_copper
 slot: Quest
 soulbound: 'true'
 tier: '-1'
diff --git config_190612_0453/Items/crafting/craft_darksteel.txt config_190617_2352/Items/crafting/craft_darksteel.txt
index 755a139..45472d5 100644
--- config_190612_0453/Items/crafting/craft_darksteel.txt
+++ config_190617_2352/Items/crafting/craft_darksteel.txt
@@ -1,8 +1,8 @@
 actions:
 - soulbound:
     state: 'true'
-icon: ItemUpgrade_Generic
+icon: ItemCraft_DarkSteel
 id: craft_darksteel
 slot: Quest
 soulbound: 'true'
 tier: '-1'
diff --git config_190612_0453/Items/crafting/craft_purplesteel.txt config_190617_2352/Items/crafting/craft_purplesteel.txt
index c99ba75..487b3f2 100644
--- config_190612_0453/Items/crafting/craft_purplesteel.txt
+++ config_190617_2352/Items/crafting/craft_purplesteel.txt
@@ -1,8 +1,8 @@
 actions:
 - soulbound:
     state: 'true'
-icon: ItemUpgrade_Generic
+icon: ItemCraft_PurpleSteel
 id: craft_purplesteel
 slot: Quest
 soulbound: 'true'
 tier: '-1'
diff --git config_190612_0453/Items/crafting/craft_redsteel.txt config_190617_2352/Items/crafting/craft_redsteel.txt
index dcd6776..d9a46b9 100644
--- config_190612_0453/Items/crafting/craft_redsteel.txt
+++ config_190617_2352/Items/crafting/craft_redsteel.txt
@@ -1,8 +1,8 @@
 actions:
 - soulbound:
     state: 'true'
-icon: ItemUpgrade_Generic
+icon: ItemCraft_RedSteel
 id: craft_redsteel
 slot: Quest
 soulbound: 'true'
 tier: '-1'
diff --git config_190612_0453/Items/crafting/craft_whitesteel.txt config_190617_2352/Items/crafting/craft_whitesteel.txt
index b0bb316..0d10905 100644
--- config_190612_0453/Items/crafting/craft_whitesteel.txt
+++ config_190617_2352/Items/crafting/craft_whitesteel.txt
@@ -1,8 +1,8 @@
 actions:
 - soulbound:
     state: 'true'
-icon: ItemUpgrade_Generic
+icon: ItemCraft_WhiteSteel
 id: craft_whitesteel
 slot: Quest
 soulbound: 'true'
 tier: '-1'
diff --git config_190612_0453/Items/crafting/craft_yellowsteel.txt config_190617_2352/Items/crafting/craft_yellowsteel.txt
index 71632f5..8e4f36d 100644
--- config_190612_0453/Items/crafting/craft_yellowsteel.txt
+++ config_190617_2352/Items/crafting/craft_yellowsteel.txt
@@ -1,8 +1,8 @@
 actions:
 - soulbound:
     state: 'true'
-icon: ItemUpgrade_Generic
+icon: ItemCraft_YellowSteel
 id: craft_yellowsteel
 slot: Quest
 soulbound: 'true'
 tier: '-1'
diff --git config_190612_0453/Texts/en-US/bark.txt config_190617_2352/Texts/en-US/bark.txt
index 1f893c5..100eb19 100644
--- config_190612_0453/Texts/en-US/bark.txt
+++ config_190617_2352/Texts/en-US/bark.txt
@@ -510,10 +510,18 @@ doc_0:
 doc_1:
   randomOptions:
   - text: SLEEP
   - text: SLEEP FOREVER
   - text: HUSH LITTLE MONSTERS
+doc_2:
+  randomOptions:
+  - text: diagnosing...
+doc_3:
+  randomOptions:
+  - text: APPLYING TREATMENT
+  - text: THIS IS FOR YOUR OWN GOOD
+  - text: LET ME HELP YOU
 dragonsnake01_0:
   randomOptions:
   - text: Bow to the Snake God!
   - text: Feed me your poison.
   - text: The queen of serpents welcomes you.
@@ -539,10 +547,35 @@ dragonsnake01_2:
   - text: My body may fail. But the cult grows.
   - text: We will all die! Dance! Dance with me!
 dragonsnakeDEATH:
   randomOptions:
   - text: But I am a god...
+duelist:
+  randomOptions:
+  - text: En guard!
+    weight: '1'
+  - text: Have at you!
+    weight: '1'
+  - text: One! Two! One! Two!
+    weight: '1'
+  - text: It's time to D-D-DUEL!
+    weight: '0.1'
+  - text: Come fight me!
+    weight: '1'
+  - text: You want to dance?
+    weight: '1'
+  - text: My sword craves for oil and blood.
+    weight: '1'
+  - text: Approach me, coward!
+    weight: '1'
+  - text: I challenge you to a duel!
+    weight: '1'
+  - text: Oh, are you approaching me?
+    weight: '1'
+  - text: Come closer...
+    weight: '1'
+  - weight: '5'
 escort_01_escortmissionDEATH_1:
   randomOptions:
   - text: Oh, god.
     weight: '0.5'
   - text: Abandoning ship. Gonna blow!
@@ -958,10 +991,27 @@ krakenDEATH:
 
       to the Waters.'
   - text: 'The Deep Ones
 
       will hear of this...'
+marksman:
+  randomOptions:
+  - text: Target acquired
+    weight: '1'
+  - text: Homing bullets ready
+    weight: '1'
+  - text: Reloading...
+    weight: '1'
+  - text: One shot, two kills
+    weight: '1'
+  - text: Going silent...
+    weight: '1'
+  - text: Exhale and squeeze...
+    weight: '1'
+  - text: Hold still...
+    weight: '1'
+  - weight: '5'
 meowzablocker:
   randomOptions:
   - text: Please vacate the entry area. Lesser animals are not allowed.
     weight: '1'
 meowzablocker2:
diff --git config_190612_0453/Texts/en-US/item.txt config_190617_2352/Texts/en-US/item.txt
index abd0ab8..2c7b54c 100644
--- config_190612_0453/Texts/en-US/item.txt
+++ config_190617_2352/Texts/en-US/item.txt
@@ -1075,11 +1075,11 @@ key_obstacle:
 key_rescue:
   description: Teleport coordinates to an archaeological dig that turned up ancient horrors. Activate to summon a drop ship.
   name: 'Mission Plans: The Dig'
 key_snake:
   description: Teleport coordinates to a poison production site. Activate to summon a drop ship.
-  name: 'Mission Plans: Corrupted Temple of Egg'
+  name: 'Mission Plans: Venom Compound'
 key_sneezy:
   description: Teleport coordinates to an Imperial superweapon testing zone. Activate to summon a drop ship.
   name: 'Mission Plans: Iron Lair'
 key_space:
   description: Teleport coordinates to a secret mountain base where a massive weapon of war is being constructed. Activate to summon a drop ship.
@@ -2520,12 +2520,12 @@ upgrade_damage:
   name: Barrel Dopant
 upgrade_fireattack:
   description: Flammable particles that make the flame burn hotter than normal.
   name: Research Dept Formula
 upgrade_firedefense:
-  description: A rare alloy that becomes stronger when hot.
-  name: Heat Stiffeners
+  description: A rare alloy that rapidly sheds excess heat.
+  name: Heat Reflector
 upgrade_iceattack:
   description: Facilitates the formation of ice crystals.
   name: Nucleation-Active Protein
 upgrade_icedefense:
   description: Just as good as regular oil, but works in ultra-cold conditions.
diff --git config_190612_0453/Texts/en-US/ui.txt config_190617_2352/Texts/en-US/ui.txt
index 3907c3c..263731a 100644
--- config_190612_0453/Texts/en-US/ui.txt
+++ config_190617_2352/Texts/en-US/ui.txt
@@ -212,11 +212,11 @@ error_dialog_maintenance_msg: 'Maintenance is currently underway! Please check b
 
 
   {0}'
 error_dialog_nexus_full: The game is currently at capacity for players. Please try again in a few minutes!
 error_dialog_no_nexus: Error LNC99. We couldn't find a Rebel City for you. Please try again later. Sorry!
-error_dialog_permission_not_granted: The beta is running from 10am PST (UTC-7) Fridays through Sundays! Please join our Discord (invite link can be found at Steambirds.com) for additional information and resources!
+error_dialog_permission_not_granted: The beta is running from 10am PST (UTC-7) Wednesdays through Sundays! Please join our Discord (invite link can be found at Steambirds.com) for additional information and resources!
 error_dialog_version_failure: Unable to verify client is at latest version. Perhaps there are internet problems?
 error_dialog_version_old: Client version is too old. Please update the game in Steam. Restarting Steam can often kick this process off.
 error_message_on_item_use_failed_to_spawn_dungeon: Something went wrong with the servers and we could not start your dungeon. Please contact the support.
 error_message_on_item_use_failed_to_spawn_dungeon_reward_back_item: Something went wrong with the servers and we could not start the dungeon. They are probably busy. So we spawned you the key so you can retry later.
 error_message_unable_to_join_other_player_server_not_found: 'Unable to join {0}: No server found.'
@@ -555,10 +555,11 @@ menu_type: Type
 mission_complete_bossesleft: '{0} bosses left in the nation.'
 mission_complete_enemy: Defeated {0}
 modal_cancel: Cancel
 modal_ok: OK
 no_quick_heal_item_in_inventory: Quick heal failed. You don't have any heal item in your inventory.
+no_turrets: No turret exists
 notify_auto_inventory_replace: <color=#{0}>Received</color>
 notify_collected: <color=#{0}>Collected</color>
 notify_color_better: 4ada5c
 notify_color_consumed: DD55DD
 notify_color_default: '909090'
@@ -1061,10 +1062,15 @@ storage_menu_title_storage: Storage Bays
 storage_menu_tooltip_buy: 'Add more storage spaces. Items stored in storage are still safe if your plane gets shot down.
 
   Price: {0}'
 store_popup_confirm_help: <color=#FBB040>[<action:43>]</color> Confirm
 store_popup_purchase_help: <color=#FBB040>[<action:43>]</color> Purchase
+suicide_screen_description: Please confirm that you wish to destroy this plane. MAKE SURE YOUR AIRCRAFT'S INVENTORY IS EMPTY OF VALUABLE ITEMS BEFORE YOU CONFIRM!
+suicide_screen_destroy: Destroy it!
+suicide_screen_key_command: <color=#FBB040>{0}</color> {1}
+suicide_screen_nevermind: Nevermind
+suicide_screen_title: Self-destruct confirmation
 timer_h: '{0} hours'
 timer_m: '{0} minutes'
 timer_s: '{0} seconds'
 title_hangar: Hangar
 title_hangar_newplane: 'Hangar: <b>New Plane</b>'
diff --git config_190612_0453/Texts/en-US/units.txt config_190617_2352/Texts/en-US/units.txt
index 4e6d3c8..2374ffb 100644
--- config_190612_0453/Texts/en-US/units.txt
+++ config_190617_2352/Texts/en-US/units.txt
@@ -420,10 +420,11 @@ dragonsnakeminion03: Snake Servant
 dragonsnakeminion04: Snake Servant
 dragonsnakeminion05: Snake Servant
 dragonsnakeminion06: Snake Servant
 drone: Mutt
 dronette: Augmentation Therapist
+duelist: Moneyed Duelist
 duoguard: Bast Guardian
 duoguardmaster: Bast Guardian
 elementalfirearmor: Elemental Fire Armor
 elementalfireweakness: Elemental Fire Weakness
 elementalicearmor: Elemental Ice Armor
@@ -701,32 +702,33 @@ magnetbeltP_alt_N: Poison Belt
 magnetbeltP_alt_S: Poison Belt
 magnetbeltP_alt_W: Poison Belt
 magnetbeltP_end: Poison Belt
 magnetbeltP_start: Poison Belt
 mantaray: Manta Ray
+marksman: Highborn Marksman
 mazedrawer: Slicer
 meatshield: Meatshield
 meatshieldbig: Big Meatshield
 medicClassPlane: Medic
-meowza: Throne of Meowza
+meowza: Godleader Meowza
 meowzaB1: Godleader Meowza
 meowzaB1m: Godleader Meowza
 meowzaB2: Godleader Meowza
 meowzaB2m: Godleader Meowza
 meowzaC1: Godleader Meowza
 meowzaC1m1: Godleader Meowza
 meowzaC1m2: Godleader Meowza
 meowzaC2: Godleader Meowza
 meowzaC2m: Godleader Meowza
 meowzaD2: Godleader Meowza
 meowzaD2m: Godleader Meowza
-meowzaDEATH: Throne of Meowza
+meowzaDEATH: Godleader Meowza
 meowzablocker: The Viceroy
 meowzafinallaserminion: Godleader Meowza
 meowzahealthleader2: Godleader Meowza
-meowzahealthnode: Godleader Meowza
-meowzahealthnode2: Godleader Meowza
+meowzahealthnode: Spirit Vessel of Meowza
+meowzahealthnode2: Spirit Vessel of Meowza
 meowzahurtsnake: Supplicant of Meowza
 meowzahurtsnakespawner: Godleader Meowza
 meowzalaserA: Godleader Meowza
 meowzalaserB: Godleader Meowza
 meowzalaserC: Godleader Meowza
diff --git config_190617_2352/Units/51 - HighMountains (City) - Alien_Hologram/HVY_duelist.txt config_190617_2352/Units/51 - HighMountains (City) - Alien_Hologram/HVY_duelist.txt
new file mode 100644
index 0000000..f292b42
--- /dev/null
+++ config_190617_2352/Units/51 - HighMountains (City) - Alien_Hologram/HVY_duelist.txt	
@@ -0,0 +1,148 @@
+art: EnemyEstateGuard
+artScale: '1.7'
+colliderRadius: '1'
+colliderX: '0'
+colliderY: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionMed
+gunMounts:
+- fireMode: JustShootDammit
+  firingArc: '0'
+  flashOffset: '1.5'
+  gunTemplateName: duelistgun
+  mountAngle: '0'
+  mountName: main
+  offset:
+  - '0'
+  - '-1'
+  slewRate: '0'
+- fireMode: JustShootDammit
+  firingArc: '0'
+  flashOffset: '0'
+  gunTemplateName: duelistgun2
+  mountAngle: '0'
+  mountName: main2
+  offset:
+  - '0'
+  - '0'
+  slewRate: '0'
+- fireMode: SprinklerTurnback
+  firingArc: '0'
+  flashOffset: '4'
+  gunTypeConfig:
+    bulletPalette: all_color
+    bulletPrefab: invisibleBullet
+    bulletSize: '10'
+    burst: '2000000'
+    cooldown: '2'
+    damage: '0.5'
+    isPiercing: 'true'
+    lifetime: '0.25'
+    multi: '1'
+    multiSpread: '0'
+    name: hammer
+    rof: '10'
+    speed: '0'
+    spread: '0'
+  mountAngle: '0'
+  mountName: main3_2
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  sprinklerFlyback: 'true'
+  sprinklerIncrementAngle: '0'
+  sprinklerStartAngle: '0'
+  sprinklerTurnbackAngle: '5000000'
+  syncTo: main
+- fireMode: SprinklerTurnback
+  firingArc: '0'
+  flashOffset: '0'
+  gunTypeConfig:
+    bulletPalette: all_color
+    bulletPrefab: ringBullet
+    bulletSize: '10'
+    burst: '2000000'
+    cooldown: '2'
+    damage: '0.5'
+    isPiercing: 'true'
+    lifetime: '0.15'
+    multi: '2'
+    multiOffset:
+    - '0'
+    - '3'
+    multiSpread: '0'
+    name: hammer
+    rof: '10'
+    speed: '0'
+    spread: '0'
+  mountAngle: '0'
+  mountName: main3_2
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  sprinklerFlyback: 'true'
+  sprinklerIncrementAngle: '0'
+  sprinklerStartAngle: '0'
+  sprinklerTurnbackAngle: '5000000'
+  syncTo: main2
+gunTypes:
+- bulletPrefab: superlonglaserBullet
+  bulletSize: '0.4'
+  burst: '100000'
+  cooldown: '0.125'
+  damage: '0.25'
+  lifetime: '0.2'
+  multi: '2'
+  multiOffset:
+  - '0'
+  - '0'
+  multiSpread: '0'
+  name: duelistgun
+  rof: '10'
+  speed: '20'
+  spread: '15'
+- bulletPrefab: superlonglaserBullet
+  bulletSize: '0.5'
+  burst: '1000'
+  cooldown: '0.125'
+  damage: '0.5'
+  lifetime: '2'
+  multi: '2'
+  multiOffset:
+  - '-5'
+  - '3'
+  multiSpread: '180'
+  name: duelistgun2
+  rof: '10'
+  speed: '10'
+  spread: '0'
+healthRegenRate: '0'
+loot:
+  bossloot:
+    lootTableId: tier8worldleader
+  upgrades:
+    lootTable:
+    - weight: '87'
+    - items:
+      - id: upgrade_steam
+      weight: '10'
+    - items:
+      - id: upgrade_repair
+      weight: '3'
+lootGlobal:
+  main:
+    lootTable:
+    - weight: '99'
+    - items:
+      - id: dungeon_arena2
+      weight: '1'
+maxEnergyPoints: '1'
+maxHitPoints: '200'
+maxHomeDistance: '60'
+maxSpeed: '0'
+maxTurnRate: '0'
+minSpeed: '0'
+spawnInvulnerabilitySeconds: '2'
+templateName: duelist
+tier: '8'
+xpMultiplier: '1'
diff --git config_190617_2352/Units/51 - HighMountains (City) - Alien_Hologram/HVY_marksman.txt config_190617_2352/Units/51 - HighMountains (City) - Alien_Hologram/HVY_marksman.txt
new file mode 100644
index 0000000..ede2b79
--- /dev/null
+++ config_190617_2352/Units/51 - HighMountains (City) - Alien_Hologram/HVY_marksman.txt	
@@ -0,0 +1,60 @@
+art: EnemyThiefGuard
+artScale: '1.2'
+colliderRadius: '1'
+colliderX: '0'
+colliderY: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionMed
+gunMounts:
+- fireMode: Aimed
+  firingArc: '360'
+  flashOffset: '0.4'
+  gunTemplateName: marksmanbiggun
+  mountAngle: '0'
+  mountName: big
+  sfx:
+    pitch: '1'
+    sound: Enemy Sniper Mild
+  signalTime: '0.5'
+  slewRate: '360'
+gunTypes:
+- bulletSize: '2'
+  burst: '10'
+  cooldown: '2'
+  damage: '1'
+  isPiercing: 'true'
+  lifetime: '1'
+  name: marksmanbiggun
+  rof: '2.5'
+  speed: '16'
+  spread: '0'
+healthRegenRate: '0'
+loot:
+  bossloot:
+    lootTableId: tier8worldleader
+  upgrades:
+    lootTable:
+    - weight: '87'
+    - items:
+      - id: upgrade_steam
+      weight: '10'
+    - items:
+      - id: upgrade_repair
+      weight: '3'
+lootGlobal:
+  main:
+    lootTable:
+    - weight: '99'
+    - items:
+      - id: dungeon_arena2
+      weight: '1'
+maxEnergyPoints: '1'
+maxHitPoints: '150'
+maxHomeDistance: '120'
+maxSpeed: '2'
+maxTurnRate: '200'
+minSpeed: '1'
+spawnInvulnerabilitySeconds: '2'
+templateName: marksman
+tier: '8'
+xpMultiplier: '1'
diff --git config_190617_2352/Units/51 - HighMountains (City) - Alien_Hologram/HVY_marksman_magicbullet.txt config_190617_2352/Units/51 - HighMountains (City) - Alien_Hologram/HVY_marksman_magicbullet.txt
new file mode 100644
index 0000000..2c7a960
--- /dev/null
+++ config_190617_2352/Units/51 - HighMountains (City) - Alien_Hologram/HVY_marksman_magicbullet.txt	
@@ -0,0 +1,120 @@
+art: EnemyDoomsdayMissile
+artScale: '1'
+colliderRadius: '0.0'
+colliderX: '0'
+colliderY: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionSmall
+gunMounts:
+- fireMode: Aimed
+  firingArc: '180'
+  flashOffset: '0.4'
+  gunTemplateName: marksmanLaser
+  mountAngle: '0'
+  mountName: main
+  sfx:
+    sound: Enemy Laser Loop3
+  slewRate: '0'
+- fireMode: JustShootDammit
+  firingArc: '0'
+  flashOffset: '0'
+  gunTypeConfig:
+    bulletPrefab: arrowBullet
+    bulletSize: '3'
+    burst: '2000000'
+    cooldown: '2'
+    damage: '0.8'
+    isPiercing: 'true'
+    lifetime: '0.4'
+    multi: '4'
+    multiOffset:
+    - '0'
+    - '0.75'
+    multiSpread: '0'
+    name: hammer
+    rof: '10'
+    speed: '0'
+    spread: '0'
+    turn: '0'
+  mountAngle: '0'
+  mountName: hop
+  offset:
+  - '0'
+  - '0'
+  sfx:
+    sound: Enemy Laser Loop5
+  slewRate: '0'
+- fireMode: JustShootDammit
+  firingArc: '0'
+  flashOffset: '0'
+  gunTypeConfig:
+    bulletPrefab: arrowBullet
+    bulletSize: '2'
+    burst: '2000000'
+    cooldown: '2'
+    damage: '0.8'
+    isPiercing: 'true'
+    lifetime: '0.4'
+    multi: '2'
+    multiOffset:
+    - '0'
+    - '0.75'
+    multiSpread: '0'
+    name: hammer
+    rof: '10'
+    speed: '0'
+    spread: '0'
+    turn: '0'
+  mountAngle: '0'
+  mountName: hop2
+  offset:
+  - '0'
+  - '-0.75'
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+  syncOffset: '10000000'
+  syncTo: hop
+- fireMode: JustShootDammit
+  firingArc: '0'
+  flashOffset: '0'
+  gunTypeConfig:
+    bulletPrefab: shurikenBullet
+    bulletSize: '5'
+    burst: '1000'
+    cooldown: '5'
+    damage: '0.7'
+    lifetime: '0.5'
+    multi: '1'
+    multiSpread: '0'
+    name: hammer
+    rof: '2'
+    speed: '0'
+    spread: '0'
+  mountAngle: '0'
+  mountName: nothop
+  sfx:
+    sound: Enemy Laser Loop5
+  slewRate: '0'
+gunTypes:
+- bulletPrefab: ringBullet
+  bulletSize: '2'
+  burst: '13'
+  cooldown: '10'
+  damage: '0.3'
+  lifetime: '5'
+  multi: '1'
+  multiSpread: '20'
+  name: marksmanLaser
+  rof: '10'
+  speed: '10'
+  spread: '0'
+healthRegenRate: '0'
+maxEnergyPoints: '1'
+maxHitPoints: '4'
+maxHomeDistance: '60'
+maxSpeed: '1.5'
+maxTurnRate: '55'
+minSpeed: '0.8'
+templateName: marksman_magicbullet
+tier: '5'
diff --git config_190612_0453/Units/54 - Lightning Boss Event/BOS_thunderboss.txt config_190617_2352/Units/54 - Lightning Boss Event/BOS_thunderboss.txt
index 1285a87..da1928e 100644
--- config_190612_0453/Units/54 - Lightning Boss Event/BOS_thunderboss.txt	
+++ config_190617_2352/Units/54 - Lightning Boss Event/BOS_thunderboss.txt	
@@ -273,11 +273,11 @@ loot:
       - id: sword_beam_9
       weight: '1.0001'
   upgrades:
     lootTableId: upgrade_damage_10
 maxEnergyPoints: '1'
-maxHitPoints: '500'
+maxHitPoints: '1000'
 maxSpeed: '1.5'
 maxTurnRate: '55'
 minSpeed: '0.8'
 particlePositions:
 - name: darkSmoke
diff --git config_190612_0453/Units/54 - Raijin Event/BOS2_raijin.txt config_190617_2352/Units/54 - Raijin Event/BOS2_raijin.txt
index d4c44d0..7e8d6cc 100644
--- config_190612_0453/Units/54 - Raijin Event/BOS2_raijin.txt	
+++ config_190617_2352/Units/54 - Raijin Event/BOS2_raijin.txt	
@@ -442,11 +442,11 @@ loot:
       - id: strike_raijin_9
       weight: '1.0001'
   upgrades:
     lootTableId: upgrade_damage_10
 maxEnergyPoints: '1'
-maxHitPoints: '500'
+maxHitPoints: '1000'
 maxSpeed: '6'
 maxTurnRate: '120'
 minSpeed: '1'
 recoilScale: '0'
 spawnInvulnerabilitySeconds: '2'
diff --git config_190612_0453/Units/65D - Grindhouse Dungeon/unit_raildoc.txt config_190617_2352/Units/65D - Grindhouse Dungeon/unit_raildoc.txt
index 7f89ec3..26f6f55 100644
--- config_190612_0453/Units/65D - Grindhouse Dungeon/unit_raildoc.txt	
+++ config_190617_2352/Units/65D - Grindhouse Dungeon/unit_raildoc.txt	
@@ -10,75 +10,107 @@ elementSusceptibilityIds:
 energyRegenRate: '0'
 explosionPrefab: ExplosionMed
 gunMounts:
 - fireMode: JustShootDammit
   firingArc: '360'
-  flashOffset: '4'
+  flashOffset: '1'
   gunTemplateName: raildocGun
   mountAngle: '0'
   mountName: bite
   offset:
   - '0'
-  - '1'
+  - '0'
   sfx:
     pitch: '1'
     sound: Enemy Loop Electricity
   slewRate: '0'
 - fireMode: JustShootDammit
   firingArc: '360'
-  flashOffset: '4'
+  flashOffset: '1'
   gunTemplateName: raildocGun2
   mountAngle: '0'
   mountName: bite2
   offset:
   - '0'
-  - '1'
+  - '0'
+  sfx:
+    sound: 'null'
+  slewRate: '0'
+- fireMode: JustShootDammit
+  firingArc: '360'
+  flashOffset: '1'
+  gunTemplateName: raildocGun3
+  mountAngle: '0'
+  mountName: bite3
+  offset:
+  - '0'
+  - '0'
   sfx:
     sound: 'null'
   slewRate: '0'
 gunTypes:
 - bulletPalette: all_color
-  bulletPrefab: superlonglightningBullet
-  bulletSize: '1'
+  bulletPrefab: supershortlightningBullet
+  bulletSize: '0.75'
   burst: '5000'
   cooldown: '0'
   damage: '0.001'
   effect: Lightning
   effectAmount: '0.01'
   effectDamage: '0.25'
   effectTime: '0.01'
   isPiercing: 'true'
-  lifetime: '0.5'
+  lifetime: '0.25'
   multi: '3'
   multiOffset:
   - '0'
   - '0'
   multiSpread: '0'
   name: raildocGun
   rof: '10'
   speed: '3'
   spread: '360'
-- bulletPrefab: superlonglightningBullet
-  bulletSize: '1'
+- bulletPrefab: supershortlightningBullet
+  bulletSize: '0.75'
   burst: '5000'
   cooldown: '0'
   damage: '0.001'
   effect: Lightning
   effectAmount: '0.01'
   effectDamage: '0.25'
   effectTime: '0.01'
   isPiercing: 'true'
-  lifetime: '0.5'
+  lifetime: '0.25'
   multi: '3'
   multiOffset:
   - '0'
   - '0'
   multiSpread: '0'
   name: raildocGun2
   rof: '3'
   speed: '3'
   spread: '360'
+- bulletPrefab: superlonglightningBullet
+  bulletSize: '1.25'
+  burst: '5000'
+  cooldown: '0'
+  damage: '0.001'
+  effect: Lightning
+  effectAmount: '0.01'
+  effectDamage: '0.25'
+  effectTime: '0.01'
+  isPiercing: 'true'
+  lifetime: '0.5'
+  multi: '6'
+  multiOffset:
+  - '0'
+  - '0'
+  multiSpread: '0'
+  name: raildocGun3
+  rof: '6'
+  speed: '5'
+  spread: '360'
 healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '1'
 maxSpeed: '1.5'
 maxTurnRate: '55'
diff --git config_190612_0453/Units/99D - Boss Dungeon/ph2_meowzaB1.txt config_190617_2352/Units/99D - Boss Dungeon/ph2_meowzaB1.txt
index bf5b858..090876a 100644
--- config_190612_0453/Units/99D - Boss Dungeon/ph2_meowzaB1.txt	
+++ config_190617_2352/Units/99D - Boss Dungeon/ph2_meowzaB1.txt	
@@ -8,9 +8,11 @@ healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '9999'
 maxSpeed: '20'
 maxTurnRate: '0'
 minSpeed: '20'
+showName: never
+showStats: always
 spawnInvulnerabilitySeconds: '1000'
 templateName: meowzaB1
 tier: '10'
 xpMultiplier: '0'
diff --git config_190612_0453/Units/99D - Boss Dungeon/ph2_meowzaB1m.txt config_190617_2352/Units/99D - Boss Dungeon/ph2_meowzaB1m.txt
index 5a7e9ab..31ed7d1 100644
--- config_190612_0453/Units/99D - Boss Dungeon/ph2_meowzaB1m.txt	
+++ config_190617_2352/Units/99D - Boss Dungeon/ph2_meowzaB1m.txt	
@@ -22,23 +22,25 @@ gunMounts:
 gunTypes:
 - bulletPrefab: ringBullet
   bulletSize: '2'
   burst: '1000'
   cooldown: '0'
-  damage: '0.5'
+  damage: '1'
   lifetime: '1'
   multi: '1'
   multiSpread: '10'
   name: meowzaB1mGun
-  rof: '10'
+  rof: '5'
   speed: '1'
   spread: '0'
 healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '8'
 maxSpeed: '1'
 maxTurnRate: '270'
 minSpeed: '1'
+showName: never
+showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: meowzaB1m
 tier: '10'
 xpMultiplier: '0'
diff --git config_190612_0453/Units/99D - Boss Dungeon/ph2_meowzaB2.txt config_190617_2352/Units/99D - Boss Dungeon/ph2_meowzaB2.txt
index d1c73a0..47bad64 100644
--- config_190612_0453/Units/99D - Boss Dungeon/ph2_meowzaB2.txt	
+++ config_190617_2352/Units/99D - Boss Dungeon/ph2_meowzaB2.txt	
@@ -55,63 +55,92 @@ gunTypes:
   speed: '15'
   spread: '0'
 - bulletPrefab: laserBullet
   bulletSize: '5'
   burst: '10'
-  cooldown: '4'
+  cooldown: '400000'
   damage: '1'
   isPiercing: 'true'
   lifetime: '1'
   multi: '1'
   multiSpread: '0'
   name: meowzaB2Gun
   rof: '10'
-  speed: '30'
+  speed: '29'
   spread: '0'
 - bulletPrefab: laserBullet
   bulletSize: '0.5'
-  burst: '20'
-  cooldown: '4'
+  burst: '10'
+  cooldown: '400000'
   damage: '0.1'
   isPiercing: 'true'
   lifetime: '1'
   multi: '1'
   multiSpread: '0'
   name: meowzaB2Gun2
-  rof: '20'
+  rof: '10'
   speed: '1'
   spread: '90'
 - bulletPrefab: laserBullet
-  burst: '20'
-  cooldown: '4'
+  burst: '10'
+  cooldown: '400000'
   damage: '0.1'
   isPiercing: 'true'
   lifetime: '1'
   multi: '1'
   multiSpread: '0'
   name: meowzaB2GunWarning
-  rof: '20'
-  speed: '30'
+  rof: '10'
+  speed: '29'
   spread: '0'
 - bulletPrefab: laserBullet
   bulletSize: '0.5'
-  burst: '20'
-  cooldown: '4'
+  burst: '10'
+  cooldown: '400000'
   damage: '0.1'
   isPiercing: 'true'
   lifetime: '1'
   multi: '1'
   multiSpread: '0'
   name: meowzaB2Gun2Warning
-  rof: '20'
+  rof: '10'
   speed: '1'
   spread: '90'
+- bulletPrefab: laserBullet
+  bulletSize: '5'
+  burst: '10'
+  cooldown: '400000'
+  damage: '1'
+  isPiercing: 'true'
+  lifetime: '1'
+  multi: '1'
+  multiSpread: '0'
+  name: meowzaB2Gun_prev
+  rof: '10'
+  speed: '29'
+  spread: '0'
+  turn: '180'
+- bulletPrefab: laserBullet
+  burst: '10'
+  cooldown: '400000'
+  damage: '0.1'
+  isPiercing: 'true'
+  lifetime: '1'
+  multi: '1'
+  multiSpread: '0'
+  name: meowzaB2GunWarning_prev
+  rof: '10'
+  speed: '29'
+  spread: '0'
+  turn: '180'
 healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '9999'
 maxSpeed: '0'
 maxTurnRate: '270'
 minSpeed: '0'
+showName: never
+showStats: always
 spawnInvulnerabilitySeconds: '0'
 templateName: meowzaB2
 tier: '10'
 xpMultiplier: '0'
diff --git config_190612_0453/Units/99D - Boss Dungeon/ph2_meowzaB2m.txt config_190617_2352/Units/99D - Boss Dungeon/ph2_meowzaB2m.txt
index 2a4b444..b8f28bf 100644
--- config_190612_0453/Units/99D - Boss Dungeon/ph2_meowzaB2m.txt	
+++ config_190617_2352/Units/99D - Boss Dungeon/ph2_meowzaB2m.txt	
@@ -1,7 +1,7 @@
 art: EnemyMeowzaTurret
-artScale: '1'
+artScale: '1.5'
 colliderRadius: '0.6'
 colliderX: '0'
 colliderY: '0'
 effectImmunities:
 - Confuse
@@ -17,11 +17,11 @@ gunMounts:
   sfx:
     sound: 'null'
   slewRate: '0'
 - fireMode: JustShootDammit
   firingArc: '0'
-  flashOffset: '0.33'
+  flashOffset: '1'
   gunTemplateName: meowzaB2Gun2Warning
   mountAngle: '180'
   mountName: warningreflect
   sfx:
     sound: 'null'
@@ -41,11 +41,11 @@ gunMounts:
   slewRate: '0'
   syncOffset: '1'
   syncTo: warning
 - fireMode: JustShootDammit
   firingArc: '0'
-  flashOffset: '0.33'
+  flashOffset: '1'
   gunTemplateName: meowzaB2Gun2
   mountAngle: '180'
   mountName: mainreflect
   sfx:
     sound: 'null'
@@ -56,9 +56,11 @@ healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
 maxSpeed: '10'
 maxTurnRate: '270'
 minSpeed: '0'
+showName: never
+showStats: always
 spawnInvulnerabilitySeconds: '1'
 templateName: meowzaB2m
 tier: '10'
 xpMultiplier: '0'
diff --git config_190612_0453/Units/99D - Boss Dungeon/ph3_meowzaC1.txt config_190617_2352/Units/99D - Boss Dungeon/ph3_meowzaC1.txt
index 39cdd5f..39bd38a 100644
--- config_190612_0453/Units/99D - Boss Dungeon/ph3_meowzaC1.txt	
+++ config_190617_2352/Units/99D - Boss Dungeon/ph3_meowzaC1.txt	
@@ -5,26 +5,28 @@ colliderX: '0'
 colliderY: '0'
 effectImmunities:
 - Confuse
 energyRegenRate: '0'
 gunTypes:
-- bulletPrefab: laserBullet
+- bulletPrefab: ringBullet
   burst: '50'
   cooldown: '0'
   damage: '1'
   lifetime: '1.75'
   multi: '1'
   multiSpread: '0'
   name: meowzaC1mGun
-  rof: '10'
+  rof: '5'
   speed: '5'
   spread: '0'
 healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '9999'
 maxSpeed: '0'
 maxTurnRate: '270'
 minSpeed: '0'
+showName: never
+showStats: always
 spawnInvulnerabilitySeconds: '9999'
 templateName: meowzaC1
 tier: '10'
 xpMultiplier: '0'
diff --git config_190612_0453/Units/99D - Boss Dungeon/ph3_meowzaC1m1.txt config_190617_2352/Units/99D - Boss Dungeon/ph3_meowzaC1m1.txt
index a20894c..f819b4d 100644
--- config_190612_0453/Units/99D - Boss Dungeon/ph3_meowzaC1m1.txt	
+++ config_190617_2352/Units/99D - Boss Dungeon/ph3_meowzaC1m1.txt	
@@ -18,9 +18,11 @@ healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '10'
 maxSpeed: '10'
 maxTurnRate: '270'
 minSpeed: '0'
+showName: never
+showStats: always
 spawnInvulnerabilitySeconds: '1'
 templateName: meowzaC1m1
 tier: '10'
 xpMultiplier: '0'
diff --git config_190612_0453/Units/99D - Boss Dungeon/ph3_meowzaC1m2.txt config_190617_2352/Units/99D - Boss Dungeon/ph3_meowzaC1m2.txt
index 03cefd6..4877c62 100644
--- config_190612_0453/Units/99D - Boss Dungeon/ph3_meowzaC1m2.txt	
+++ config_190617_2352/Units/99D - Boss Dungeon/ph3_meowzaC1m2.txt	
@@ -17,9 +17,11 @@ healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
 maxSpeed: '10'
 maxTurnRate: '270'
 minSpeed: '0'
+showName: never
+showStats: always
 spawnInvulnerabilitySeconds: '1'
 templateName: meowzaC1m2
 tier: '10'
 xpMultiplier: '0'
diff --git config_190612_0453/Units/99D - Boss Dungeon/ph3_meowzaC2.txt config_190617_2352/Units/99D - Boss Dungeon/ph3_meowzaC2.txt
index 0d47110..c85aaf2 100644
--- config_190612_0453/Units/99D - Boss Dungeon/ph3_meowzaC2.txt	
+++ config_190617_2352/Units/99D - Boss Dungeon/ph3_meowzaC2.txt	
@@ -6,11 +6,13 @@ colliderY: '0'
 effectImmunities:
 - Confuse
 energyRegenRate: '0'
 explosionPrefab: planeExplosionEmpty
 gunTypes:
-- burst: '50'
+- bulletPrefab: ringBullet
+  bulletSize: '2'
+  burst: '50'
   cooldown: '0'
   damage: '1'
   lifetime: '5'
   multi: '2'
   multiSpread: '180'
diff --git config_190612_0453/Units/99D - Boss Dungeon/ph3_meowzaC2m.txt config_190617_2352/Units/99D - Boss Dungeon/ph3_meowzaC2m.txt
index 9552d2e..3f88642 100644
--- config_190612_0453/Units/99D - Boss Dungeon/ph3_meowzaC2m.txt	
+++ config_190617_2352/Units/99D - Boss Dungeon/ph3_meowzaC2m.txt	
@@ -17,9 +17,11 @@ healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '17'
 maxSpeed: '10'
 maxTurnRate: '270'
 minSpeed: '0'
+showName: never
+showStats: always
 spawnInvulnerabilitySeconds: '1'
 templateName: meowzaC2m
 tier: '10'
 xpMultiplier: '0'
diff --git config_190612_0453/Units/99D - Boss Dungeon/phx_meowzalaserB.txt config_190617_2352/Units/99D - Boss Dungeon/phx_meowzalaserB.txt
index d0d9bf0..a8cd39c 100644
--- config_190612_0453/Units/99D - Boss Dungeon/phx_meowzalaserB.txt	
+++ config_190617_2352/Units/99D - Boss Dungeon/phx_meowzalaserB.txt	
@@ -1,12 +1,12 @@
-art: EnemyMeowzaLaser
+art: '!EnemyInvisible'
 artScale: '1.0'
 colliderRadius: '0.6'
 colliderX: '0'
 colliderY: '0'
 energyRegenRate: '0'
-explosionPrefab: ExplosionSmall
+explosionPrefab: planeExplosionEmpty
 gunMounts:
 - fireMode: Sprinkler
   firingArc: '360'
   flashOffset: '0.4'
   gunTemplateName: meowzalaserB
@@ -20,18 +20,19 @@ gunMounts:
 gunTypes:
 - bulletPrefab: laserBullet
   burst: '1000'
   cooldown: '0'
   damage: '1'
-  lifetime: '2.0'
+  lifetime: '10'
   multi: '4'
   multiSpread: '90'
   name: meowzalaserB
   rof: '3'
   speed: '7'
   spread: '0'
 healthRegenRate: '0'
+isVisibleInRadar: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '100'
 maxSpeed: '0.0'
 maxTurnRate: '180'
 minSpeed: '0.0'
diff --git config_190612_0453/Units/99D - Boss Dungeon/phx_meowzalaserD.txt config_190617_2352/Units/99D - Boss Dungeon/phx_meowzalaserD.txt
index 2ecc993..a9888e5 100644
--- config_190612_0453/Units/99D - Boss Dungeon/phx_meowzalaserD.txt	
+++ config_190617_2352/Units/99D - Boss Dungeon/phx_meowzalaserD.txt	
@@ -1,14 +1,14 @@
-art: EnemyMeowzaLaser
+art: '!EnemyInvisible'
 artScale: '1.0'
 colliderRadius: '0.6'
 colliderX: '0'
 colliderY: '0'
 effectImmunities:
 - Confuse
 energyRegenRate: '0'
-explosionPrefab: ExplosionSmall
+explosionPrefab: planeExplosionEmpty
 gunMounts:
 - fireMode: Sprinkler
   firingArc: '360'
   flashOffset: '0'
   gunTemplateName: meowzalaserD
@@ -69,10 +69,11 @@ gunTypes:
   name: meowzalaserD2
   rof: '2.5'
   speed: '0'
   spread: '0'
 healthRegenRate: '0'
+isVisibleInRadar: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '100'
 maxSpeed: '0.0'
 maxTurnRate: '180'
 minSpeed: '0.0'
diff --git config_190612_0453/Units/99D - Boss Dungeon/phx_meowzanuke1.txt config_190617_2352/Units/99D - Boss Dungeon/phx_meowzanuke1.txt
index c892016..2a16b7a 100644
--- config_190612_0453/Units/99D - Boss Dungeon/phx_meowzanuke1.txt	
+++ config_190617_2352/Units/99D - Boss Dungeon/phx_meowzanuke1.txt	
@@ -5,25 +5,10 @@ colliderX: '0'
 colliderY: '0'
 effectImmunities:
 - Confuse
 energyRegenRate: '0'
 explosionPrefab: planeExplosionEmpty
-gunMounts:
-- fireMode: JustShootDammit
-  firingArc: '360'
-  flashOffset: '-4.5'
-  gunTemplateName: meowzanuke1Gun
-  mountAngle: '0'
-  mountName: lc
-  slewRate: '0'
-- fireMode: JustShootDammit
-  firingArc: '360'
-  flashOffset: '-2'
-  gunTemplateName: meowzanuke1Gun2
-  mountAngle: '0'
-  mountName: lc2
-  slewRate: '0'
 gunTypes:
 - bulletPrefab: leisurelyBullet
   burst: '200'
   cooldown: '0'
   damage: '0.25'
diff --git config_190612_0453/Units/99D - Boss Dungeon/phx_meowzanuke1m1.txt config_190617_2352/Units/99D - Boss Dungeon/phx_meowzanuke1m1.txt
index a467295..d088218 100644
--- config_190612_0453/Units/99D - Boss Dungeon/phx_meowzanuke1m1.txt	
+++ config_190617_2352/Units/99D - Boss Dungeon/phx_meowzanuke1m1.txt	
@@ -51,16 +51,17 @@ gunTypes:
 - bulletPrefab: shurikenBullet
   bulletSize: '13'
   burst: '8'
   cooldown: '13.00'
   damage: '10'
+  isPiercing: 'true'
   lifetime: '4'
-  multi: '16'
-  multiSpread: '22.5'
+  multi: '12'
+  multiSpread: '30'
   name: meowzanuke1m1explodegun1
   rof: '1'
-  speed: '1.4'
+  speed: '1.6'
   spread: '0'
 - bulletPrefab: bullet
   burst: '200'
   cooldown: '10'
   damage: '0.01'
diff --git config_190612_0453/Units/99D - Boss Dungeon/unit_meowzahurtsnake.txt config_190617_2352/Units/99D - Boss Dungeon/unit_meowzahurtsnake.txt
index 3f797d0..7fac22c 100644
--- config_190612_0453/Units/99D - Boss Dungeon/unit_meowzahurtsnake.txt	
+++ config_190617_2352/Units/99D - Boss Dungeon/unit_meowzahurtsnake.txt	
@@ -19,19 +19,19 @@ gunMounts:
     sound: Enemy Laser Loop8
     volume: '0.125'
   slewRate: '0'
 gunTypes:
 - bulletPrefab: ringBullet
-  bulletSize: '1'
+  bulletSize: '2'
   burst: '1'
   cooldown: '0'
-  damage: '0.5'
-  lifetime: '4'
+  damage: '1'
+  lifetime: '2'
   multi: '1'
   multiSpread: '10'
   name: meowzahurtsnakeFireTrailGun
-  rof: '8'
+  rof: '4'
   speed: '1'
   spread: '0'
 - bulletPrefab: bullet
   bulletSize: '2'
   burst: '1'
@@ -45,12 +45,12 @@ gunTypes:
   speed: '4.5'
   spread: '0'
 healthRegenRate: '0'
 maxEnergyPoints: '1'
 maxHitPoints: '5'
-maxSpeed: '4'
+maxSpeed: '6'
 maxTurnRate: '180'
-minSpeed: '3'
+minSpeed: '4'
 spawnInvulnerabilitySeconds: '2'
 templateName: meowzahurtsnake
 tier: '10'
 xpMultiplier: '0'
diff --git config_190612_0453/Units/99D - Boss Dungeon/unit_meowzalasergateWE.txt config_190617_2352/Units/99D - Boss Dungeon/unit_meowzalasergateWE.txt
index 7ec4e9f..737a2b8 100644
--- config_190612_0453/Units/99D - Boss Dungeon/unit_meowzalasergateWE.txt	
+++ config_190617_2352/Units/99D - Boss Dungeon/unit_meowzalasergateWE.txt	
@@ -101,11 +101,11 @@ gunTypes:
   - '0'
   - '0'
   multiSpread: '180'
   name: meowzalasergateNSWarnGun
   rof: '2'
-  speed: '1'
+  speed: '2'
   spread: '0'
 - bulletPalette: thick_border
   bulletPrefab: superlonglightningBullet
   bulletSize: '0.6'
   burst: '10000000'
@@ -122,11 +122,11 @@ gunTypes:
   - '0'
   - '0'
   multiSpread: '180'
   name: meowzalasergateNSGun
   rof: '2'
-  speed: '1'
+  speed: '2'
   spread: '0'
 healthRegenRate: '0'
 isVisibleInRadar: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '1000'
diff --git config_190612_0453/Units/Items/unit_allyturret_beauty.txt config_190617_2352/Units/Items/unit_allyturret_beauty.txt
index 3af6e0f..45d32ea 100644
--- config_190612_0453/Units/Items/unit_allyturret_beauty.txt
+++ config_190617_2352/Units/Items/unit_allyturret_beauty.txt
@@ -35,10 +35,11 @@ gunMounts:
   slewRate: '20'
 gunTypes:
 - bulletHue: purple
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
+  bulletSize: '0.5'
   burst: '1'
   cooldown: '0'
   damage: '210'
   isPiercing: 'true'
   lifetime: '0.5'
@@ -50,50 +51,50 @@ gunTypes:
   speed: '7'
   spread: '0'
 - bulletHue: yellow
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  bulletSize: '2'
+  bulletSize: '1'
   burst: '2'
   cooldown: '0'
-  damage: '40'
+  damage: '110'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '2'
-  multiSpread: '10'
+  multiSpread: '180'
   name: allyturret_beautyGun1
   range: '10'
   rof: '2'
   speed: '14'
   spread: '0'
 - bulletHue: yellow
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  bulletSize: '3'
+  bulletSize: '2'
   burst: '3'
   cooldown: '0'
-  damage: '40'
+  damage: '72'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '3'
-  multiSpread: '10'
+  multiSpread: '135'
   name: allyturret_beautyGun2
   range: '10'
   rof: '3'
   speed: '14'
   spread: '0'
 - bulletHue: red
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  bulletSize: '4'
+  bulletSize: '3'
   burst: '4'
   cooldown: '0'
-  damage: '40'
+  damage: '60'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '4'
-  multiSpread: '10'
+  multiSpread: '90'
   name: allyturret_beautyGun3
   range: '10'
   rof: '4'
   speed: '14'
   spread: '0'
diff --git config_190612_0453/Units/Items/unit_allyturret_charmer.txt config_190617_2352/Units/Items/unit_allyturret_charmer.txt
index 96145b4..efce60a 100644
--- config_190612_0453/Units/Items/unit_allyturret_charmer.txt
+++ config_190617_2352/Units/Items/unit_allyturret_charmer.txt
@@ -35,10 +35,11 @@ gunMounts:
   slewRate: '20'
 gunTypes:
 - bulletHue: purple
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
+  bulletSize: '0.5'
   burst: '1'
   cooldown: '0'
   damage: '210'
   isPiercing: 'true'
   lifetime: '0.5'
@@ -50,50 +51,50 @@ gunTypes:
   speed: '7'
   spread: '0'
 - bulletHue: yellow
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  bulletSize: '2'
+  bulletSize: '1'
   burst: '2'
   cooldown: '0'
-  damage: '40'
+  damage: '110'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '2'
-  multiSpread: '10'
+  multiSpread: '180'
   name: allyturret_charmerGun1
   range: '10'
   rof: '2'
   speed: '14'
   spread: '0'
 - bulletHue: yellow
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  bulletSize: '3'
+  bulletSize: '2'
   burst: '3'
   cooldown: '0'
-  damage: '40'
+  damage: '72'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '3'
-  multiSpread: '10'
+  multiSpread: '135'
   name: allyturret_charmerGun2
   range: '10'
   rof: '3'
   speed: '14'
   spread: '0'
 - bulletHue: red
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  bulletSize: '4'
+  bulletSize: '3'
   burst: '4'
   cooldown: '0'
-  damage: '40'
+  damage: '60'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '4'
-  multiSpread: '10'
+  multiSpread: '90'
   name: allyturret_charmerGun3
   range: '10'
   rof: '4'
   speed: '14'
   spread: '0'
diff --git config_190612_0453/Units/Items/unit_allyturret_special1.txt config_190617_2352/Units/Items/unit_allyturret_special1.txt
index 4e1bf0f..9e5261e 100644
--- config_190612_0453/Units/Items/unit_allyturret_special1.txt
+++ config_190617_2352/Units/Items/unit_allyturret_special1.txt
@@ -6,51 +6,98 @@ colliderY: '0'
 energyRegenRate: '0'
 gunMounts:
 - fireMode: JustShootDammit
   firingArc: '40'
   flashOffset: '0.0'
-  gunTemplateName: allyturret_special1Gun
+  gunTemplateName: allyturret_special1Gun0
   mountAngle: '0'
-  mountName: allyturret10Mount1
+  mountName: allyturretMount0
+  slewRate: '20'
+- fireMode: JustShootDammit
+  firingArc: '40'
+  flashOffset: '0.0'
+  gunTemplateName: allyturret_special1Gun1
+  mountAngle: '0'
+  mountName: allyturretMount1
   slewRate: '20'
 - fireMode: JustShootDammit
   firingArc: '40'
   flashOffset: '0.0'
   gunTemplateName: allyturret_special1Gun2
   mountAngle: '0'
-  mountName: allyturret10Mount2
+  mountName: allyturretMount2
+  slewRate: '20'
+- fireMode: JustShootDammit
+  firingArc: '40'
+  flashOffset: '0.0'
+  gunTemplateName: allyturret_special1Gun3
+  mountAngle: '0'
+  mountName: allyturretMount3
   slewRate: '20'
 gunTypes:
 - bulletHue: purple
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
+  bulletSize: '0.5'
   burst: '1'
   cooldown: '0'
   damage: '210'
   isPiercing: 'true'
   lifetime: '0.5'
   multi: '1'
   multiSpread: '1'
-  name: allyturret_special1Gun
+  name: allyturret_special1Gun0
   range: '10'
-  rof: '1.5'
+  rof: '1'
+  speed: '7'
+  spread: '0'
+- bulletHue: yellow
+  bulletPalette: glow
+  bulletPrefab: roundFadeBullet
+  bulletSize: '1'
+  burst: '2'
+  cooldown: '0'
+  damage: '110'
+  isPiercing: 'true'
+  lifetime: '0.5'
+  multi: '2'
+  multiSpread: '180'
+  name: allyturret_special1Gun1
+  range: '10'
+  rof: '2'
   speed: '14'
   spread: '0'
 - bulletHue: yellow
   bulletPalette: glow
   bulletPrefab: roundFadeBullet
-  bulletSize: '1.5'
-  burst: '1'
+  bulletSize: '2'
+  burst: '3'
   cooldown: '0'
-  damage: '40'
+  damage: '72'
   isPiercing: 'true'
   lifetime: '0.5'
-  multi: '1'
-  multiSpread: '1'
+  multi: '3'
+  multiSpread: '135'
   name: allyturret_special1Gun2
   range: '10'
-  rof: '5'
+  rof: '3'
+  speed: '14'
+  spread: '0'
+- bulletHue: red
+  bulletPalette: glow
+  bulletPrefab: roundFadeBullet
+  bulletSize: '3'
+  burst: '4'
+  cooldown: '0'
+  damage: '60'
+  isPiercing: 'true'
+  lifetime: '0.5'
+  multi: '4'
+  multiSpread: '90'
+  name: allyturret_special1Gun3
+  range: '10'
+  rof: '4'
   speed: '14'
   spread: '0'
 healthRegenRate: '0'
 isVisibleToAI: 'true'
 maxEnergyPoints: '1'
diff --git config_190612_0453/Units/Items/unit_allyturret_special2.txt config_190617_2352/Units/Items/unit_allyturret_special2.txt
index c4fdd59..f503332 100644
--- config_190612_0453/Units/Items/unit_allyturret_special2.txt
+++ config_190617_2352/Units/Items/unit_allyturret_special2.txt
@@ -31,11 +31,11 @@ gunTypes:
 healthRegenRate: '0'
 isVisibleToAI: 'false'
 maxEnergyPoints: '1'
 maxHitPoints: '15'
 maxSpeed: '0.0'
-maxTurnRate: '90'
+maxTurnRate: '2'
 minSpeed: '0.0'
 showGunSignal: 'true'
 spawnEffect: TurretSpawn
 spawnInvulnerabilitySeconds: '0'
 templateName: allyturret_special2
diff --git config_190612_0453/bullets.txt config_190617_2352/bullets.txt
index 15649bb..6af0482 100644
--- config_190612_0453/bullets.txt
+++ config_190617_2352/bullets.txt
@@ -619,5 +619,13 @@
   shouldFaceCamera: 'True'
   sprite: circle_bullet
   spriteScale:
   - '3'
   - '3'
+- colliderSize:
+  - '0.16'
+  - '20'
+  name: superduperlonglaserBullet
+  sprite: laser_bullet
+  spriteScale:
+  - '0.4'
+  - '30'
diff --git config_190612_0453/index.txt config_190617_2352/index.txt
index c250060..1a56b32 100644
--- config_190612_0453/index.txt
+++ config_190617_2352/index.txt
@@ -483,10 +483,13 @@
 - Units/51 - HighMountains (City) - Alien_Hologram/GRP2_ninjagrenade
 - Units/51 - HighMountains (City) - Alien_Hologram/GRP2_ninjaleader
 - Units/51 - HighMountains (City) - Alien_Hologram/GRP2_ninjaleaderballnchain
 - Units/51 - HighMountains (City) - Alien_Hologram/GRP2_ninjaleadergrenade
 - Units/51 - HighMountains (City) - Alien_Hologram/GRP3_highmountainhunter
+- Units/51 - HighMountains (City) - Alien_Hologram/HVY_duelist
+- Units/51 - HighMountains (City) - Alien_Hologram/HVY_marksman
+- Units/51 - HighMountains (City) - Alien_Hologram/HVY_marksman_magicbullet
 - Units/51 - HighMountains (City) - Alien_Hologram/SLO1_bunny
 - Units/51 - HighMountains (City) - Alien_Hologram/SLO-barrager
 - Units/51 - HighMountains (City) - Alien_Hologram/SLO-barragermissile
 - Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet
 - Units/51 - HighMountains (City) - Alien_Hologram/SLO-hammerplanet_hammer
diff --git config_190612_0453/instantEffects.txt config_190617_2352/instantEffects.txt
index 75b8e8f..ff43b46 100644
--- config_190612_0453/instantEffects.txt
+++ config_190617_2352/instantEffects.txt
@@ -970,10 +970,16 @@ enemyRocketDeploy_lowvolume:
   steps:
   - sfx:
       sound: Enemy Rocket Deploy
       volume: '0.6'
     time: '0'
+enemySniperDeadly:
+  steps:
+  - sfx:
+      pitch: '1'
+      sound: Enemy Sniper Deadly
+    time: '0'
 enemySpawnLarge:
   steps:
   - sfx:
       pitch: '1'
       sound: Enemy spawn large
diff --git config_190612_0453/maneuvers.txt config_190617_2352/maneuvers.txt
index d63297e..5cff741 100644
--- config_190612_0453/maneuvers.txt
+++ config_190617_2352/maneuvers.txt
@@ -61,10 +61,15 @@
   distance: '1'
   energy: '30'
   name: flak
   scale: '4'
   secondsToVelocity1: '0.2'
+- cooldown: '0.25'
+  distance: '2'
+  energy: '15'
+  name: teleportToTurret
+  secondsToVelocity1: '0.2'
 - doesNotSpamOnKeepingPressed: 'true'
   duration: '1'
   duration2: '0.5'
   energy: '1'
   energySustained: '5'
diff --git config_190612_0453/playerclasses.txt config_190617_2352/playerclasses.txt
index d83515f..b317514 100644
--- config_190612_0453/playerclasses.txt
+++ config_190617_2352/playerclasses.txt
@@ -733,11 +733,11 @@ duster:
     superTrail: SuperSpeedJaggies
     unlockItemId: playerclass_duster_epicd
 engineer:
   actions:
     Armor:
-    - maneuver: himmelman
+    - maneuver: teleportToTurret
     Engine:
     - maneuver: superspeed
   additionalTutorial: DungeonTutorial2
   allowedItemTags:
   - turret
diff --git config_190612_0453/store.txt config_190617_2352/store.txt
index ec0a033..dfe08b9 100644
--- config_190612_0453/store.txt
+++ config_190617_2352/store.txt
@@ -4265,11 +4265,11 @@ products:
       currency: gold
   - id: scrap
     price:
       amount: '3000'
       currency: scrap
-  icon: ItemEmote
+  icon: ItemEmote_ThumbsUp
   id: unlock_emote_thumbsup
   max_per_account: '1'
   max_per_account_count_unlocks: 'true'
   preRelease: 'false'
   preview_camera_direction:
@@ -4302,11 +4302,11 @@ products:
       currency: gold
   - id: scrap
     price:
       amount: '3000'
       currency: scrap
-  icon: ItemEmote
+  icon: ItemEmote_ThumbsDown
   id: unlock_emote_thumbsdown
   max_per_account: '1'
   max_per_account_count_unlocks: 'true'
   preRelease: 'false'
   preview_camera_direction:
@@ -4339,11 +4339,11 @@ products:
       currency: gold
   - id: scrap
     price:
       amount: '3000'
       currency: scrap
-  icon: ItemEmote
+  icon: ItemEmote_Warning
   id: unlock_emote_warning
   max_per_account: '1'
   max_per_account_count_unlocks: 'true'
   preRelease: 'false'
   preview_camera_direction:
@@ -4376,11 +4376,11 @@ products:
       currency: gold
   - id: scrap
     price:
       amount: '3000'
       currency: scrap
-  icon: ItemEmote
+  icon: ItemEmote_Charge
   id: unlock_emote_charge
   max_per_account: '1'
   max_per_account_count_unlocks: 'true'
   preRelease: 'false'
   preview_camera_direction:
@@ -4413,11 +4413,11 @@ products:
       currency: gold
   - id: scrap
     price:
       amount: '3000'
       currency: scrap
-  icon: ItemEmote
+  icon: ItemEmote_Disco
   id: unlock_emote_disco
   max_per_account: '1'
   max_per_account_count_unlocks: 'true'
   preRelease: 'false'
   preview_camera_direction:
@@ -4450,11 +4450,11 @@ products:
       currency: gold
   - id: scrap
     price:
       amount: '3000'
       currency: scrap
-  icon: ItemEmote
+  icon: ItemEmote_Heart
   id: unlock_emote_love_common
   max_per_account: '1'
   max_per_account_count_unlocks: 'true'
   preRelease: 'false'
   preview_camera_direction:
@@ -4486,11 +4486,11 @@ products:
       currency: gold
   - id: scrap
     price:
       amount: '21000'
       currency: scrap
-  icon: ItemEmote
+  icon: ItemEmote_EpicHearts
   id: unlock_emote_love_epic
   max_per_account: '1'
   max_per_account_count_unlocks: 'true'
   preRelease: 'false'
   preview_camera_direction:
@@ -4522,11 +4522,11 @@ products:
       currency: gold
   - id: scrap
     price:
       amount: '21000'
       currency: scrap
-  icon: ItemEmote
+  icon: ItemEmote_EpicFireworks
   id: unlock_emote_fireworks_epic
   max_per_account: '1'
   max_per_account_count_unlocks: 'true'
   preRelease: 'false'
   preview_camera_direction:
@@ -4558,11 +4558,11 @@ products:
       currency: gold
   - id: scrap
     price:
       amount: '21000'
       currency: scrap
-  icon: ItemEmote
+  icon: ItemEmote_Wings
   id: unlock_emote_wings
   max_per_account: '1'
   max_per_account_count_unlocks: 'true'
   preRelease: 'true'
   preview_camera_direction: