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
 22 files changed, 314 insertions(+), 195 deletions(-)

diff --git config_190410_1232/Items/Primary Weapons/shotgun_elementals.txt config_190417_2244/Items/Primary Weapons/shotgun_elementals.txt
index dd52300..49e6b14 100644
--- config_190410_1232/Items/Primary Weapons/shotgun_elementals.txt	
+++ config_190417_2244/Items/Primary Weapons/shotgun_elementals.txt	
@@ -529,37 +529,37 @@
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '25.8'
+      cooldown: '1.5'
+      damage: '30.96'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '28.0'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '51.5'
+      cooldown: '1.5'
+      damage: '61.8'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '10.2'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
@@ -633,37 +633,37 @@
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '28.6'
+      cooldown: '1.5'
+      damage: '34.32'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '28.0'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '57.3'
+      cooldown: '1.5'
+      damage: '68.76'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '10.2'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
@@ -737,37 +737,37 @@
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '31.5'
+      cooldown: '1.5'
+      damage: '37.8'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '28.0'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '63.0'
+      cooldown: '1.5'
+      damage: '75.6'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '10.2'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
@@ -812,37 +812,37 @@
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '25.8'
+      cooldown: '1.5'
+      damage: '30.96'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '28.0'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '51.5'
+      cooldown: '1.5'
+      damage: '61.8'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '10.2'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
@@ -887,37 +887,37 @@
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '28.6'
+      cooldown: '1.5'
+      damage: '34.32'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '28.0'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '57.3'
+      cooldown: '1.5'
+      damage: '68.76'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '10.2'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
@@ -962,37 +962,37 @@
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '31.5'
+      cooldown: '1.5'
+      damage: '37.8'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '28.0'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '63.0'
+      cooldown: '1.5'
+      damage: '75.6'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '10.2'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
@@ -1066,38 +1066,38 @@
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
-      burst: '2'
-      cooldown: '1.33'
-      damage: '25.8'
+      burst: '4'
+      cooldown: '2'
+      damage: '19.35'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '6'
       speed: '28.0'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
-      burst: '2'
-      cooldown: '1.33'
-      damage: '51.5'
+      burst: '4'
+      cooldown: '2'
+      damage: '38.625'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '6'
       speed: '10.2'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
@@ -1171,38 +1171,38 @@
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
-      burst: '2'
-      cooldown: '1.33'
-      damage: '28.6'
+      burst: '4'
+      cooldown: '2'
+      damage: '21.45'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '6'
       speed: '28.0'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
-      burst: '2'
-      cooldown: '1.33'
-      damage: '57.3'
+      burst: '4'
+      cooldown: '2'
+      damage: '42.975'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '6'
       speed: '10.2'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
@@ -1276,38 +1276,38 @@
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
-      burst: '2'
-      cooldown: '1.33'
-      damage: '31.5'
+      burst: '4'
+      cooldown: '2'
+      damage: '23.625'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '6'
       speed: '28.0'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
-      burst: '2'
-      cooldown: '1.33'
-      damage: '63.0'
+      burst: '4'
+      cooldown: '2'
+      damage: '47.25'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '6'
       speed: '10.2'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
@@ -1357,12 +1357,12 @@
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '25.8'
+      cooldown: '1'
+      damage: '20.64'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
@@ -1376,12 +1376,12 @@
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '51.5'
+      cooldown: '1'
+      damage: '41.2'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
@@ -1437,12 +1437,12 @@
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '28.6'
+      cooldown: '1'
+      damage: '22.88'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
@@ -1456,12 +1456,12 @@
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '57.3'
+      cooldown: '1'
+      damage: '45.84'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
@@ -1517,12 +1517,12 @@
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '31.5'
+      cooldown: '1'
+      damage: '25.2'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
@@ -1536,12 +1536,12 @@
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
       burst: '2'
-      cooldown: '1.33'
-      damage: '63.0'
+      cooldown: '1'
+      damage: '50.4'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
@@ -1624,38 +1624,38 @@
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
-      burst: '2'
-      cooldown: '1.33'
-      damage: '25.8'
+      burst: '1'
+      cooldown: '1'
+      damage: '30.96'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '28.0'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
-      burst: '2'
-      cooldown: '1.33'
-      damage: '51.5'
+      burst: '1'
+      cooldown: '1'
+      damage: '61.8'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '10.2'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
@@ -1732,38 +1732,38 @@
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
-      burst: '2'
-      cooldown: '1.33'
-      damage: '28.6'
+      burst: '1'
+      cooldown: '1'
+      damage: '34.32'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '28.0'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
-      burst: '2'
-      cooldown: '1.33'
-      damage: '57.3'
+      burst: '1'
+      cooldown: '1'
+      damage: '68.76'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '10.2'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
@@ -1840,38 +1840,38 @@
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
-      burst: '2'
-      cooldown: '1.33'
-      damage: '31.5'
+      burst: '1'
+      cooldown: '1'
+      damage: '37.8'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '28.0'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
   - flashOffset: '0.4'
     gunTypeConfig:
       bulletHue: purple
       bulletPrefab: invisibleBullet
       bulletSize: '5'
-      burst: '2'
-      cooldown: '1.33'
-      damage: '63.0'
+      burst: '1'
+      cooldown: '1'
+      damage: '75.6'
       doesReloadNonemptyClips: 'true'
       isPiercing: 'false'
       lifetime: '0.1375'
       multi: '1'
       multiSpread: '10'
-      rof: '3'
+      rof: '2'
       speed: '10.2'
       spread: '0'
     mountAngle: '0'
     sfx:
       sound: 'null'
diff --git config_190410_1232/Texts/en-US/conversations.txt config_190417_2244/Texts/en-US/conversations.txt
index 3860439..5ce3e77 100644
--- config_190410_1232/Texts/en-US/conversations.txt
+++ config_190417_2244/Texts/en-US/conversations.txt
@@ -29,15 +29,15 @@ text:
   intro-pub_03: Listen, Rookie. I've got the inside scoop on all the best Missions.
   intro-pub_04: Whether you're looking for a new Mission or picking up loot for a Mission you've completed...
   intro-pub_05: '...This is where you want to be.'
   intro-pub_06: My regulars visit me daily. My gossip is always fresh.
   intro-pub_07: Don't be a stranger, Hon.
-  intro-storage_01: Feeling heavy in the hull, pilot?
-  intro-storage_02: I'm asking if you've got too much loot to handle.
-  intro-storage_03: Your Plane Cargo can only hold so much.
-  intro-storage_04: Plus if your plane crashes, all that loot goes with it!
-  intro-storage_05: Don't worry, I've got a Storage Bay earmarked for you. Your loot is always safe with me.
+  intro-storage_01: Feeling heavy in the hull, pilot? Too much loot to handle?
+  intro-storage_02: Those dinky plane cargo holds can only carry so much.
+  intro-storage_03: Plus if your plane crashes, all that loot goes with it!
+  intro-storage_04: In a pinch, hit <color=#FBB040>[<action:33>]</color> to quickly drop all your trash. I'm talking low-level items you probably don't want anyway.
+  intro-storage_05: If you've got time though, pay me a visit. I've got a Storage Bay earmarked for you. Your loot is always safe with me.
   intro-storage_06: Transfer items between your Plane Cargo and Storage Bay whenever you like.
   intro-storage_07: If that's still not enough space, come talk to me about expanding your storage for a price.
   intro-store_01: Welcome, pilot! Looking to spend some Gold or Scrap? I've got what you need.
   intro-store_02: Items to jump start your new plane's loadout?
   intro-store_03: Special Mission Plans by our spies in the Cat Empire?
@@ -60,15 +60,28 @@ text:
   intro_08: Those damned cats thought they exterminated all of bird-kind in the War.
   intro_09: But they were wrong. We are rising up! The Rebellion flies again!
   intro_10: Together, we will knock each of those nobles from the sky.
   intro_11: Together, we will destroy Meowza and free this world!
   intro_12: Got it? Good. Time to fly, recruit.
+  mewoza-new-player_01: Stand down, recruit!
+  mewoza-new-player_02: I know you're wondering why I just teleported you back to the Rebel City.
+  mewoza-new-player_03: Our forces just took out the last of Meowza's Lieutenants.
+  mewoza-new-player_04: In retaliation, Meowza warped all of our pilots to his lair for a final battle. Let's hope for the best.
+  mewoza-new-player_05: Frankly, I didn't think you were ready, so I brought you here. I hope you understand.
+  mewoza-new-player_06: For now, just focus on your missions. Good Skies!
   test-01: Welcome new recruit!
   test-01b: I'll give you a quick intro...
   test-02: This chart shows how cats are bad...
   test-03: Don't forget that! Cats = bad
   test-04: This is how we'll show them what's what...
   test-04b: Over to my trusty friend... the portal operator!
   test-05: Here, grab this item to help you a bit
   test-05-continue: Thanks!
   test-06: Any questions?
   test2-01: This is a quick test. We're not quite sure what we're testing, but make sure you stay sharp!
+  tutorial-quests-complete_01: Now that you've got a few missions under your belt, I should brief you on the larger campaign.
+  tutorial-quests-complete_02: Our ultimate goal is to free the world from Meowza and his Feline Empire. That's no simple task.
+  tutorial-quests-complete_03: To even get a shot at Meowza, we need to take out all of his <color=#FBB040>Lieutenants</color> across around the map.
+  tutorial-quests-complete_04: That'll make Meowza take notice. He'll teleport every bird in the sky to his lair for a final battle.
+  tutorial-quests-complete_05: Sound intimidating? Well it is. But remember that we're in this together.
+  tutorial-quests-complete_06: Complete missions, level up your plane, upgrade your gear, team up with friends. Prepare yourself for when we get the call.
+  tutorial-quests-complete_07: Good skies, recruit.
diff --git config_190410_1232/Texts/en-US/events.txt config_190417_2244/Texts/en-US/events.txt
index 443a379..bebc452 100644
--- config_190410_1232/Texts/en-US/events.txt
+++ config_190417_2244/Texts/en-US/events.txt
@@ -286,14 +286,14 @@ news_kingly_kestrel:
     '
   header_image: EventHeader_Updates
   title: 'News: Kingly Kestrel Kleptoparasitism'
 playtest_event:
   description: "Welcome to the latest Steambirds playtest. Be kind to one another. Explore the game. Have fun. Good skies! \n\n<b><size=18><color=ffffffff>Schedule</color></size></b>\n {0}{1}\n"
-  ending_server_message: The playtest is over!
+  ending_server_message: The friendly weekend is over!
   header_image: EventHeader_Updates
-  starting_server_message: Playtest is starting now!
-  title: Pre-Launch Playtest
+  starting_server_message: Friendly weekend is starting now!
+  title: Friendly Weekend
 test_event:
   description: 'This event is for testing, you should never see it when this feature is done.
 
 
     Stop reading this, to simulate what that would be like.
diff --git config_190410_1232/Texts/en-US/lore.txt config_190417_2244/Texts/en-US/lore.txt
index e8a9692..dac7582 100644
--- config_190410_1232/Texts/en-US/lore.txt
+++ config_190417_2244/Texts/en-US/lore.txt
@@ -876,65 +876,77 @@ templedungeonsign2:
 
       prayer scrolls
 
       written in Rodentese.'
     weight: '1'
+territory_tile_beach_name: City Ruins
 territory_tile_beach_seen_text: 'Now entering:
 
   <size=150%>City Ruins
 
   <size=80%><color=#FF9900>Level 1-3'
+territory_tile_highlands2_name: Hospital Area
 territory_tile_highlands2_seen_text: 'Now entering:
 
   <size=150%>Hospital Area
 
   <size=80%><color=#FF9900>Level 13-16</color>'
+territory_tile_highlands3_name: Egyptian Dig
 territory_tile_highlands3_seen_text: 'Now entering:
 
   <size=150%>Egyptian Dig
 
   <size=80%><color=#FF9900>Level 13-16</color>'
+territory_tile_highlands_name: Robot Factory
 territory_tile_highlands_seen_text: 'Now entering:
 
   <size=150%>Robot Factory
 
   <size=80%><color=#FF9900>Level 13-16</color>'
+territory_tile_highmountains_name: Imperial Palace
 territory_tile_highmountains_seen_text: 'Now entering:
 
   <size=150%>Imperial Palace
 
   <size=80%><color=#FF9900>Level 20</color>'
+territory_tile_lowlands2_name: Local Guard Post
 territory_tile_lowlands2_seen_text: 'Now entering:
 
   <size=150%>Local Guard Post
 
   <size=80%><color=#FF9900>Level 4-8</color>'
+territory_tile_lowlands3_name: Poison Farms
 territory_tile_lowlands3_seen_text: 'Now entering:
 
   <size=150%>Poison Farms
 
   <size=80%><color=#FF9900>Level 4-8</color>'
+territory_tile_lowlands_name: Mecha Hunting Grounds
 territory_tile_lowlands_seen_text: 'Now entering:
 
   <size=150%>Mecha Hunting Grounds
 
   <size=80%><color=#FF9900>Level 4-8</color>'
+territory_tile_midlands2_name: Graveyard
 territory_tile_midlands2_seen_text: 'Now entering:
 
   <size=150%>Graveyard
 
   <size=80%><color=#FF9900>Level 8-12</color>'
+territory_tile_midlands3_name: Fishing Zone
 territory_tile_midlands3_seen_text: 'Now entering:
 
   <size=150%>Fishing Zone
 
   <size=80%><color=#FF9900>Level 8-12</color>'
+territory_tile_midlands_name: Dog Base
 territory_tile_midlands_seen_text: 'Now entering:
 
   <size=150%>Dog Base
 
   <size=80%><color=#FF9900>Level 8-12</color>'
+territory_tile_mountains_name: Noble Estates
 territory_tile_mountains_seen_text: 'Now entering:
 
   <size=150%>Noble Estates
 
   <size=80%><color=#FF9900>Level 16-20</color>'
diff --git config_190410_1232/Texts/en-US/quests.txt config_190417_2244/Texts/en-US/quests.txt
index bfe350f..e568ba1 100644
--- config_190410_1232/Texts/en-US/quests.txt
+++ config_190417_2244/Texts/en-US/quests.txt
@@ -1366,16 +1366,16 @@ tut_01:
   dialogueOnStart:
   - sergeant: Stay sharp, recruit! This is live combat. You're in the City Ruins, and our scouts have reported scavengers in the area.
   - sergeant: Your first mission is to <color=#FBB040>find and destroy the scavenger convoys</color>.
   title: First Mission
 tut_01_2:
-  description: We've got new intel...Head back to the <color=#FBB040>Pilot's Pub in the Rebel City</color>.
+  description: We've got new intel...Head back to the <color=#FBB040>Pilot's Pub in the Rebel City</color>.  Press <color=#FBB040>[<action:5>]</color> to teleport to Rebel City!
   dialogueOnComplete:
   - sergeant: This is the <color=#FBB040>The Pilot's Pub</color>. Report back here to <color=#FBB040>complete missions</color> and <color=#FBB040>accept new missions</color>.
   - sergeant: We've got new intel we need you to check up on. When you're ready, <color=#FBB040>accept your next mission</color>.
   dialogueOnStart:
-  - sergeant: We've got new intel...Head back to the <color=#FBB040>Pilot's Pub in the Rebel City</color>.
+  - sergeant: We've got new intel...Head back to the <color=#FBB040>Pilot's Pub in the Rebel City</color>.  Press <color=#FBB040>[<action:5>]</color> to teleport to Rebel City!
   title: Report back to the Rebel City
 tut_02:
   description: Track down the source of encrypted command signal.
   dialogueOnFirstEncounterGoal0:
   - catsoldier1: '[Forward base construction proceeding]'
diff --git config_190410_1232/Texts/en-US/ui.txt config_190417_2244/Texts/en-US/ui.txt
index ee23f3b..0276b26 100644
--- config_190410_1232/Texts/en-US/ui.txt
+++ config_190417_2244/Texts/en-US/ui.txt
@@ -163,11 +163,11 @@ early_access_desc_beta: 'The beta servers are completely separate from the live
 
   Have fun and thanks for helping us to improve the game!'
 early_access_instructions: Press any key or button to continue.
 early_access_title: What's Early Access?
 early_access_title_beta: What's a Beta Server?
-emote_purple_fireworks: Pruple fireworks
+emote_purple_fireworks: Purple fireworks
 error_dialog_account_maintenance: Account support is currently underway! Please check back again later. It should not take that long.
 error_dialog_already_connected: You can not connect because your account is already connected. Please wait a couple of minutes and try again. If this persists, contact support. Thanks.
 error_dialog_connection_failure: We seem to be having trouble with the network between your computer and our servers. See if any other programs are making heavy use of the network!
 error_dialog_deliberate_disconnection: 'The server doesn''t want to talk to you.  It told us: {0}.  If you believe this is a bug, please report it via the bug form.'
 error_dialog_kicked: You have been kicked.  Why?  Only you, and the person who kicked you, know.
@@ -181,11 +181,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: Sorry, permission denied! Please check Discord and our blog for information on when the game will be available to play again.
+error_dialog_permission_not_granted: Sorry, permission denied! We're currently running friendly weekends from 10AM PT (UTC-7) and everyone is welcome then! Please check Discord and our blog for any additional information.
 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.
 faux_group_class_unlock_info_title: Unlockable Class
@@ -289,10 +289,13 @@ hint_cargo_full: '<color=#ffffff>Cargo Full!</color>
   Use Shift + number keys [<color=#ffff88ff>1-8</color>] to drop cargo you can''t use, or use [<color=#ffff88ff>~</color>] to drop all.'
 hint_v_inventory: 'Press <color=#FF9900>[<action:4>]</color> to hover
 
   and show Inventory.'
 hint_v_inventory_close: Press <color=#FF9900>[<action:4>]</color> to close the Inventory.
+hud_location: <uppercase>{0}</uppercase>
+hud_location_level: <size=20>Level {0}</size>
+hud_location_levels: <size=20>Levels {0}-{1}</size>
 info_currency_for_pilot_xp: You gained {0} {1} for getting {2} Pilot XP.
 inventory_cargo: Cargo
 inventory_drop: Drop
 inventory_equip: Equip
 inventory_equipment: Equipment
@@ -797,10 +800,13 @@ player_info_steam: Steam
 player_info_xp: Experience
 player_label: ' <color={1}>L{0}</color>'
 player_label_admin: ' <color={1}>L{0} A</color>'
 player_label_pilot_level: ' <color={1}>R{0}</color>'
 player_label_pilot_level_chat: ' - R{0}'
+portrait_change: Change Portrait
+portrait_header: Portrait Select
+portrait_title: Portrait
 quest_active_heading: '{0} <size=65%>{1}/{2}</size>'
 quest_active_heading_other: '{0}'
 quest_active_inactive: ''
 quest_category_armor: Armor
 quest_category_engine: Engines
diff --git config_190410_1232/Units/12 - Lowlands (Ruins) - Fantasy(Common)/BOS2_gridboss.txt config_190417_2244/Units/12 - Lowlands (Ruins) - Fantasy(Common)/BOS2_gridboss.txt
index a84acf3..4158314 100644
--- config_190410_1232/Units/12 - Lowlands (Ruins) - Fantasy(Common)/BOS2_gridboss.txt	
+++ config_190417_2244/Units/12 - Lowlands (Ruins) - Fantasy(Common)/BOS2_gridboss.txt	
@@ -75,18 +75,18 @@ maxHitPoints: '88'
 maxHomeDistance: '60'
 maxSpeed: '1'
 maxTurnRate: '270'
 minSpeed: '0'
 particlePositions:
-- name: darkSmoke
+- name: darkSmokeSlow
   pos:
-  - '0.02'
-  - '-0.65'
-  - '-0.8'
+  - '0'
+  - '0'
+  - '-1.1'
   rot:
-  - '-90'
   - '0'
   - '0'
+  - '-90'
 spawnInvulnerabilitySeconds: '2'
 templateName: gridboss
 tier: '2'
 xpMultiplier: '1.3'
diff --git config_190410_1232/Units/12 - Lowlands (Ruins) - Fantasy(Common)/GRP1_lasership.txt config_190417_2244/Units/12 - Lowlands (Ruins) - Fantasy(Common)/GRP1_lasership.txt
index 1317f2b..3683711 100644
--- config_190410_1232/Units/12 - Lowlands (Ruins) - Fantasy(Common)/GRP1_lasership.txt	
+++ config_190417_2244/Units/12 - Lowlands (Ruins) - Fantasy(Common)/GRP1_lasership.txt	
@@ -53,9 +53,19 @@ maxEnergyPoints: '1'
 maxHitPoints: '6'
 maxHomeDistance: '60'
 maxSpeed: '1.5'
 maxTurnRate: '55'
 minSpeed: '0.8'
+particlePositions:
+- name: darkSmokeSlow
+  pos:
+  - '0'
+  - '-0.6'
+  - '-0.05'
+  rot:
+  - '0'
+  - '0'
+  - '0'
 showGunSignal: 'true'
 spawnInvulnerabilitySeconds: '2'
 templateName: lasership
 tier: '2'
diff --git config_190410_1232/Units/12 - Lowlands (Ruins) - Fantasy(Common)/SLO3_ninjaA.txt config_190417_2244/Units/12 - Lowlands (Ruins) - Fantasy(Common)/SLO3_ninjaA.txt
index 5b9b714..9cec357 100644
--- config_190410_1232/Units/12 - Lowlands (Ruins) - Fantasy(Common)/SLO3_ninjaA.txt	
+++ config_190417_2244/Units/12 - Lowlands (Ruins) - Fantasy(Common)/SLO3_ninjaA.txt	
@@ -66,22 +66,22 @@ maxSpeed: '10'
 maxTurnRate: '270'
 minSpeed: '0'
 particlePositions:
 - name: darkSmoke
   pos:
-  - '-0.16'
-  - '-0.56'
-  - '-0.35'
+  - '-0.22'
+  - '-0.7'
+  - '-0.36'
   rot:
   - '0'
   - '0'
   - '0'
 - name: darkSmoke
   pos:
-  - '0.18'
-  - '-0.56'
-  - '-0.35'
+  - '0.22'
+  - '-0.7'
+  - '-0.36'
   rot:
   - '0'
   - '0'
   - '0'
 spawnInvulnerabilitySeconds: '2'
diff --git config_190410_1232/Units/21 - Midlands (City) - WWII_ModernTech/GRP4_stardog.txt config_190417_2244/Units/21 - Midlands (City) - WWII_ModernTech/GRP4_stardog.txt
index 77a7f27..2d48856 100644
--- config_190410_1232/Units/21 - Midlands (City) - WWII_ModernTech/GRP4_stardog.txt	
+++ config_190417_2244/Units/21 - Midlands (City) - WWII_ModernTech/GRP4_stardog.txt	
@@ -31,14 +31,14 @@ maxHitPoints: '10'
 maxHomeDistance: '60'
 maxSpeed: '3.5'
 maxTurnRate: '40'
 minSpeed: '1.5'
 particlePositions:
-- name: darkSmoke
+- name: darkSmokeSlow
   pos:
   - '0'
-  - '-0.2'
+  - '-0.19'
   - '0.05'
   rot:
   - '0'
   - '0'
   - '0'
diff --git config_190410_1232/Units/22 - Midlands (Ruins) - Ghosts_Spooky/GRP2_spiritleader.txt config_190417_2244/Units/22 - Midlands (Ruins) - Ghosts_Spooky/GRP2_spiritleader.txt
index 9a95982..6a4751f 100644
--- config_190410_1232/Units/22 - Midlands (Ruins) - Ghosts_Spooky/GRP2_spiritleader.txt	
+++ config_190417_2244/Units/22 - Midlands (Ruins) - Ghosts_Spooky/GRP2_spiritleader.txt	
@@ -31,33 +31,33 @@ maxEnergyPoints: '1'
 maxHitPoints: '40'
 maxSpeed: '1.5'
 maxTurnRate: '55'
 minSpeed: '0.8'
 particlePositions:
-- name: darkSmoke
+- name: darkSmokeSlow
   pos:
   - '0'
-  - '-1.2'
+  - '-1.1'
   - '0'
   rot:
   - '0'
   - '0'
   - '0'
-- name: darkSmoke
+- name: darkSmokeSlow
   pos:
-  - '0.58'
-  - '-0.86'
-  - '0'
+  - '-0.62'
+  - '-0.81'
+  - '0.04'
   rot:
   - '0'
   - '0'
   - '0'
-- name: darkSmoke
+- name: darkSmokeSlow
   pos:
-  - '-0.58'
-  - '-0.86'
-  - '0'
+  - '0.62'
+  - '-0.81'
+  - '0.04'
   rot:
   - '0'
   - '0'
   - '0'
 spawnInvulnerabilitySeconds: '2'
diff --git config_190410_1232/Units/23 - Midlands (Rural) - Water_Aquatic/BOS1_whaleshark.txt config_190417_2244/Units/23 - Midlands (Rural) - Water_Aquatic/BOS1_whaleshark.txt
index ec6d404..aa00355 100644
--- config_190410_1232/Units/23 - Midlands (Rural) - Water_Aquatic/BOS1_whaleshark.txt	
+++ config_190417_2244/Units/23 - Midlands (Rural) - Water_Aquatic/BOS1_whaleshark.txt	
@@ -49,14 +49,14 @@ maxHitPoints: '100'
 maxHomeDistance: '45'
 maxSpeed: '2.2'
 maxTurnRate: '60'
 minSpeed: '1.5'
 particlePositions:
-- name: darkSmoke
+- name: darkSmokeSlow
   pos:
   - '-0.4'
-  - '-0.03'
+  - '1.08'
   - '-1.3'
   rot:
   - '0'
   - '0'
   - '-90'
diff --git config_190410_1232/Units/23 - Midlands (Rural) - Water_Aquatic/BOS4_crawler.txt config_190417_2244/Units/23 - Midlands (Rural) - Water_Aquatic/BOS4_crawler.txt
index 0f163bc..b183233 100644
--- config_190410_1232/Units/23 - Midlands (Rural) - Water_Aquatic/BOS4_crawler.txt	
+++ config_190417_2244/Units/23 - Midlands (Rural) - Water_Aquatic/BOS4_crawler.txt	
@@ -283,22 +283,22 @@ maxSpeed: '0'
 maxTurnRate: '270'
 minSpeed: '0'
 particlePositions:
 - name: darkSmokeSlow
   pos:
-  - '-2.2'
-  - '0.8'
-  - '-3.1'
+  - '-2.75'
+  - '0.5'
+  - '-2.9'
   rot:
   - '0'
   - '0'
   - '-90'
 - name: darkSmokeSlow
   pos:
-  - '-2.2'
+  - '-2.75'
   - '-1.9'
-  - '-3.1'
+  - '-2.9'
   rot:
   - '0'
   - '0'
   - '-90'
 recoilScale: '0'
diff --git config_190410_1232/Units/23 - Midlands (Rural) - Water_Aquatic/GRP1_mantaray.txt config_190417_2244/Units/23 - Midlands (Rural) - Water_Aquatic/GRP1_mantaray.txt
index 4b20b43..bfa95c7 100644
--- config_190410_1232/Units/23 - Midlands (Rural) - Water_Aquatic/GRP1_mantaray.txt	
+++ config_190417_2244/Units/23 - Midlands (Rural) - Water_Aquatic/GRP1_mantaray.txt	
@@ -77,22 +77,22 @@ maxSpeed: '2.2'
 maxTurnRate: '30'
 minSpeed: '1.5'
 particlePositions:
 - name: darkSmoke
   pos:
-  - '1.23'
-  - '-0.55'
-  - '0.12'
+  - '1.24'
+  - '-0.4'
+  - '0.38'
   rot:
   - '0'
   - '0'
   - '0'
 - name: darkSmoke
   pos:
-  - '-1.23'
-  - '-0.55'
-  - '0.12'
+  - '-1.24'
+  - '-0.4'
+  - '0.38'
   rot:
   - '0'
   - '0'
   - '0'
 spawnInvulnerabilitySeconds: '2'
diff --git config_190410_1232/Units/62D - Fire Dungeon/GRP2_flamebat.txt config_190417_2244/Units/62D - Fire Dungeon/GRP2_flamebat.txt
index 34acf41..8ae859b 100644
--- config_190410_1232/Units/62D - Fire Dungeon/GRP2_flamebat.txt	
+++ config_190417_2244/Units/62D - Fire Dungeon/GRP2_flamebat.txt	
@@ -38,24 +38,24 @@ maxEnergyPoints: '1'
 maxHitPoints: '6'
 maxSpeed: '3.5'
 maxTurnRate: '40'
 minSpeed: '1.5'
 particlePositions:
-- name: darkSmoke
+- name: darkSmokeSlow
   pos:
   - '0'
-  - '-0.02'
-  - '0.268'
+  - '-0.48'
+  - '-0.145'
   rot:
   - '0'
   - '0'
   - '0'
-- name: darkSmoke
+- name: darkSmokeSlow
   pos:
   - '0'
-  - '-0.31'
-  - '0.181'
+  - '-0.29'
+  - '0.3'
   rot:
   - '0'
   - '0'
   - '0'
 spawnInvulnerabilitySeconds: '2'
diff --git config_190410_1232/Units/62D - Fire Dungeon/GRP2_flamebatleader.txt config_190417_2244/Units/62D - Fire Dungeon/GRP2_flamebatleader.txt
index ef1697c..2f5efd9 100644
--- config_190410_1232/Units/62D - Fire Dungeon/GRP2_flamebatleader.txt	
+++ config_190417_2244/Units/62D - Fire Dungeon/GRP2_flamebatleader.txt	
@@ -100,33 +100,15 @@ maxEnergyPoints: '1'
 maxHitPoints: '188'
 maxSpeed: '3.5'
 maxTurnRate: '40'
 minSpeed: '1.5'
 particlePositions:
-- name: darkSmoke
+- name: darkSmokeSlow
   pos:
   - '0'
-  - '-0.85'
-  - '0.332'
-  rot:
-  - '0'
-  - '0'
-  - '0'
-- name: darkSmoke
-  pos:
-  - '0.3'
-  - '-0.85'
-  - '-0.15'
-  rot:
-  - '0'
-  - '0'
-  - '0'
-- name: darkSmoke
-  pos:
-  - '-0.3'
-  - '-0.85'
-  - '-0.15'
+  - '-0.635'
+  - '0.06'
   rot:
   - '0'
   - '0'
   - '0'
 spawnInvulnerabilitySeconds: '2'
diff --git config_190410_1232/Units/62D - Fire Dungeon/GRP3_scavenger.txt config_190417_2244/Units/62D - Fire Dungeon/GRP3_scavenger.txt
index 6101ae4..337f936 100644
--- config_190410_1232/Units/62D - Fire Dungeon/GRP3_scavenger.txt	
+++ config_190417_2244/Units/62D - Fire Dungeon/GRP3_scavenger.txt	
@@ -42,15 +42,15 @@ maxEnergyPoints: '1'
 maxHitPoints: '4'
 maxSpeed: '2'
 maxTurnRate: '180'
 minSpeed: '1'
 particlePositions:
-- name: darkSmoke
+- name: darkSmokeSlow
   pos:
-  - '-0.06'
+  - '-0.047'
   - '-0.07'
-  - '-0.31'
+  - '-0.38'
   rot:
   - '0'
   - '0'
   - '-90'
 spawnDuration: '3'
diff --git config_190410_1232/conversations.txt config_190417_2244/conversations.txt
index b8aa7b1..c5e9511 100644
--- config_190410_1232/conversations.txt
+++ config_190417_2244/conversations.txt
@@ -25,14 +25,14 @@ characters:
       distracted: rebelnpc_workshop_03
       pointing: rebelnpc_workshop_04
       waving: rebelnpc_workshop_02
   sergeant:
     art:
-      alt: sarge_armsdown_02
+      armships: sarge_armships_01
+      armships_smiling: sarge_armships_02
       default: sarge_armsdown_01
-      hips1: sarge_armships_01
-      hips2: sarge_armships_02
+      default_frowning: sarge_armsdown_02
       pointing: sarge_point_01
       shout: sarge_shout
   stevedore_pelican:
     art:
       default: rebelnpc_storage_01
@@ -85,22 +85,22 @@ conversations:
   - text: 'null'
   - character: sergeant
     pose: shout
   - text: intro_01
   - character: sergeant
-    pose: hips1
+    pose: armships
   - background: image
     image: introslide_02
     offset:
     - '250'
     - '150'
     scale:
     - '0.6'
     - '0.6'
   - text: intro_02
   - character: sergeant
-    pose: alt
+    pose: default_frowning
   - background: image
     image: introslide_03
     offset:
     - '250'
     - '150'
@@ -129,11 +129,11 @@ conversations:
     scale:
     - '0.6'
     - '0.6'
   - text: intro_05
   - character: sergeant
-    pose: alt
+    pose: default_frowning
   - background: image
     image: introslide_06
     offset:
     - '250'
     - '150'
@@ -151,55 +151,55 @@ conversations:
     scale:
     - '0.6'
     - '0.6'
   - text: intro_07
   - character: sergeant
-    pose: alt
+    pose: default_frowning
   - background: image
     image: introslide_08
     offset:
     - '250'
     - '150'
     scale:
     - '0.6'
     - '0.6'
   - text: intro_08
   - character: sergeant
-    pose: hips2
+    pose: armships_smiling
   - background: image
     image: introslide_09
     offset:
     - '250'
     - '150'
     scale:
     - '0.6'
     - '0.6'
   - text: intro_09
   - character: sergeant
-    pose: hips1
+    pose: armships
   - background: image
     image: introslide_10
     offset:
     - '250'
     - '150'
     scale:
     - '0.6'
     - '0.6'
   - text: intro_10
   - character: sergeant
-    pose: hips1
+    pose: armships
   - background: image
     image: introslide_11
     offset:
     - '250'
     - '150'
     scale:
     - '0.6'
     - '0.6'
   - text: intro_11
   - character: sergeant
-    pose: hips2
+    pose: armships_smiling
   - background: image
     image: introslide_12
     offset:
     - '250'
     - '150'
@@ -216,50 +216,50 @@ conversations:
   - text: test2-01
   id: test2
 - clientTriggerable: 'true'
   content:
   - character: sergeant
-    pose: alt
+    pose: default_frowning
     position: rightFlipped
   - background: image
     image: pilotschool_01
   - text: intro-pilot-school_01
   - character: sergeant
     pose: pointing
     position: rightFlipped
   - text: intro-pilot-school_02
   - character: sergeant
-    pose: hips2
+    pose: armships_smiling
     position: rightFlipped
   - text: intro-pilot-school_03
   - character: sergeant
     pose: pointing
     position: rightFlipped
   - text: intro-pilot-school_04
   - character: sergeant
     pose: shout
     position: rightFlipped
   - text: intro-pilot-school_05
   - character: sergeant
-    pose: alt
+    pose: default_frowning
     position: rightFlipped
   - text: intro-pilot-school_06
   - character: sergeant
-    pose: alt
+    pose: default_frowning
     position: rightFlipped
   - background: none
   - text: intro-pilot-school_07
   - character: sergeant
     pose: pointing
     position: rightFlipped
   - text: intro-pilot-school_08
   - character: sergeant
-    pose: alt
+    pose: default_frowning
     position: rightFlipped
   - text: intro-pilot-school_09
   - character: sergeant
-    pose: hips2
+    pose: armships_smiling
     position: rightFlipped
   - text: intro-pilot-school_10
   id: intro-pilot-school
 - clientTriggerable: 'true'
   content:
@@ -327,15 +327,15 @@ conversations:
   - character: stevedore_pelican
     pose: smiling
     position: rightFlipped
   - text: intro-storage_02
   - character: stevedore_pelican
-    pose: default
+    pose: worried
     position: rightFlipped
   - text: intro-storage_03
   - character: stevedore_pelican
-    pose: worried
+    pose: default
     position: rightFlipped
   - text: intro-storage_04
   - character: stevedore_pelican
     pose: smiling
     position: rightFlipped
@@ -409,5 +409,59 @@ conversations:
   - character: bartender_parrot
     pose: flirty
     position: rightFlipped
   - text: intro-pub_07
   id: intro-pub
+- clientTriggerable: 'true'
+  content:
+  - character: sergeant
+    pose: default_frowning
+  - text: tutorial-quests-complete_01
+  - character: sergeant
+    pose: armships
+  - text: tutorial-quests-complete_02
+  - character: sergeant
+    pose: pointing
+  - background: image
+    image: introslide_06
+    offset:
+    - '250'
+    - '150'
+    scale:
+    - '0.6'
+    - '0.6'
+  - text: tutorial-quests-complete_03
+  - character: sergeant
+    pose: default_frowning
+  - background: none
+  - text: tutorial-quests-complete_04
+  - character: sergeant
+    pose: default
+  - text: tutorial-quests-complete_05
+  - character: sergeant
+    pose: default_frowning
+  - text: tutorial-quests-complete_06
+  - character: sergeant
+    pose: armships_smiling
+  - text: tutorial-quests-complete_07
+  id: tutorial-quests-complete
+- clientTriggerable: 'true'
+  content:
+  - character: sergeant
+    pose: shout
+  - text: mewoza-new-player_01
+  - character: sergeant
+    pose: default_frowning
+  - text: mewoza-new-player_02
+  - character: sergeant
+    pose: armships_smiling
+  - text: mewoza-new-player_03
+  - character: sergeant
+    pose: armships
+  - text: mewoza-new-player_04
+  - character: sergeant
+    pose: default_frowning
+  - text: mewoza-new-player_05
+  - character: sergeant
+    pose: default
+  - text: mewoza-new-player_06
+  id: meowza-new-player
diff --git config_190410_1232/events.txt config_190417_2244/events.txt
index 7be8ab6..9de86c0 100644
--- config_190410_1232/events.txt
+++ config_190417_2244/events.txt
@@ -245,10 +245,17 @@ event_trail_spiketrail_20181003_3weeks:
     StartsAt:
       day: '3'
       hour: '0'
       minute: '00'
       month: '10'
+playtest_event:
+  Times:
+  - RunsFor: '3'
+    StartsAt:
+      dayOfWeek: '5'
+      hour: '17'
+      minute: '0'
 test_event:
   IsVisibleToClient: 'false'
   LoreDistanceFromWall: '8'
   LoreDuration: '10'
   LoreWithinRadiusOfPlayer: '4'
diff --git config_190410_1232/global.txt config_190417_2244/global.txt
index 9f3fd37..aaf1a76 100644
--- config_190410_1232/global.txt
+++ config_190417_2244/global.txt
@@ -639,15 +639,16 @@ scribeHits: 'false'
 scribeSpawning: 'false'
 secondsBetweenBosses: '10'
 secondsUntilSafeWhenStopping: '3'
 serverFPS: '10'
 serverNetworkHeartbeatIntervalMs: '24'
+serverTimestampPeriod: '60'
 showHitboxes: 'false'
 showNotifications: 'true'
 showPreTerritoryGrid: 'false'
-showRankBadgesOnPlanesInNexus: 'false'
-showRankBadgesOnPlanesNotInNexus: 'false'
+showRankBadgesOnPlanesInNexus: 'true'
+showRankBadgesOnPlanesNotInNexus: 'true'
 showRankBadgesOnRadarInNexus: 'true'
 showRankBadgesOnRadarNotInNexus: 'true'
 showRankInChatAsIcon: 'true'
 showRankInChatAsText: 'false'
 showRankInHUD: 'true'
diff --git config_190410_1232/territoryTiles.txt config_190417_2244/territoryTiles.txt
index c9fb436..0689d69 100644
--- config_190410_1232/territoryTiles.txt
+++ config_190417_2244/territoryTiles.txt
@@ -21,10 +21,12 @@ beach:
   groundTag: ruins
   lowerCloudStartColor:
     colorMax: 8b68546e
     colorMin: 8b68546e
     mode: TwoColors
+  maxLevel: '3'
+  minLevel: '1'
   miniRadarColor: 4e413d
   scatterTag: _none_
 beach2:
   ID: '12'
   basedOn: beach
@@ -1136,10 +1138,12 @@ highlands:
   lowerCloudProbability: '0.7'
   lowerCloudStartColor:
     colorMax: 836a7e40
     colorMin: 836a7e40
     mode: TwoColors
+  maxLevel: '16'
+  minLevel: '13'
   miniRadarColor: 2c1a32
   scatterTag: highlands
   wallRotationRandomness: '0'
   wallTag: highlands
 highlands2:
@@ -1162,10 +1166,12 @@ highlands2:
   keyIntensity: '0.9'
   lowerCloudStartColor:
     colorMax: 91836e4b
     colorMin: 91836e4b
     mode: TwoColors
+  maxLevel: '16'
+  minLevel: '13'
   miniRadarColor: 2b1833
   scatterTag: highlands2
   wallRotationRandomness: '0'
   wallTag: highlands2
 highlands3:
@@ -1188,10 +1194,12 @@ highlands3:
   keyIntensity: '0.9'
   lowerCloudStartColor:
     colorMax: 91836e4b
     colorMin: 91836e4b
     mode: TwoColors
+  maxLevel: '16'
+  minLevel: '13'
   miniRadarColor: '271731'
   scatterTag: highlands3
   wallTag: highlands3
 highlandsboss:
   ID: '29'
@@ -1231,10 +1239,11 @@ highmountains:
   keyIntensity: '0.9'
   lowerCloudStartColor:
     colorMax: 5028314b
     colorMin: 5028314b
     mode: TwoColors
+  minLevel: '20'
   miniRadarColor: '060617'
   scatterTag: highmountains
   wallBaseHeight: '15'
   wallHeightRandomness: '1'
   wallRotationRandomness: '0'
@@ -1393,10 +1402,12 @@ lowlands:
   groundTag: lowlands
   lowerCloudStartColor:
     colorMax: 858a686d
     colorMin: 858a686d
     mode: TwoColors
+  maxLevel: '8'
+  minLevel: '4'
   miniRadarColor: 31373f
   scatterTag: lowlands
 lowlands2:
   ID: '15'
   basedOn: lowlands
@@ -1415,10 +1426,12 @@ lowlands2:
   groundTag: lowlands2
   lowerCloudStartColor:
     colorMax: 9c7d507a
     colorMin: 9c7d507a
     mode: TwoColors
+  maxLevel: '8'
+  minLevel: '4'
   miniRadarColor: 2f3540
   scatterTag: lowlands2
   wallHeightRandomness: '1.5'
   wallRotationRandomness: '0'
   wallTag: lowlands2
@@ -1443,10 +1456,12 @@ lowlands3:
   groundTag: lowlands3
   lowerCloudStartColor:
     colorMax: 8548417a
     colorMin: 8548417a
     mode: TwoColors
+  maxLevel: '8'
+  minLevel: '4'
   miniRadarColor: 2b313e
   scatterTag: lowlands3
   wallTag: lowlands3
 midlands:
   ID: '17'
@@ -1472,10 +1487,12 @@ midlands:
   keyColor: AE8460
   lowerCloudStartColor:
     colorMax: 91836e4b
     colorMin: 91836e4b
     mode: TwoColors
+  maxLevel: '12'
+  minLevel: '8'
   miniRadarColor: '352635'
   scatterTag: midlands
   wallHeightRandomness: '0'
   wallRotationRandomness: '0'
   wallTag: midlands
@@ -1510,10 +1527,12 @@ midlands2:
   lowerCloudProbability: '0.4'
   lowerCloudStartColor:
     colorMax: c180644a
     colorMin: c180644a
     mode: TwoColors
+  maxLevel: '12'
+  minLevel: '8'
   miniRadarColor: '332536'
   scatterTag: midlands2
   wallHeightRandomness: '1.5'
   wallRotationRandomness: '7'
   wallTag: midlands2
@@ -1537,10 +1556,12 @@ midlands3:
   keyColor: b19c8b
   lowerCloudStartColor:
     colorMax: c9e1ea20
     colorMin: c9e1ea20
     mode: TwoColors
+  maxLevel: '12'
+  minLevel: '8'
   miniRadarColor: 2f2335
   scatterTag: midlands3
   wallHeightRandomness: '1.5'
   wallRotationRandomness: '7'
   wallTag: midlands3
@@ -1600,10 +1621,12 @@ mountains:
   lowerCloudProbability: '0.5'
   lowerCloudStartColor:
     colorMax: bb6a8432
     colorMin: bb6a8432
     mode: TwoColors
+  maxLevel: '20'
+  minLevel: '16'
   miniRadarColor: 160e2f
   scatterTag: _none_
   wallBaseHeight: '10'
   wallHeightRandomness: '1.5'
   wallRotationRandomness: '7'
diff --git config_190410_1232/unitPaletteTextures.txt config_190417_2244/unitPaletteTextures.txt
index abfc182..b01479b 100644
--- config_190410_1232/unitPaletteTextures.txt
+++ config_190417_2244/unitPaletteTextures.txt
@@ -49,21 +49,29 @@ EnemyConcealedTurret: enemyPal_spaceDungeon
 EnemyCrow: enemyPal_lowlands1
 EnemyCrowdControlLargePrefab: enemyPal_highmountain
 EnemyCrowdControlSmallPrefab: enemyPal_highmountain
 EnemyCultist: enemyPal_templeDungeon
 EnemyCultistDropship: enemyPal_templeDungeon
+EnemyCurleader: enemyPal_fireDungeon
 EnemyDarkSquid: enemyPal_midlands3
 EnemyDefenderCannon: enemyPal_spaceDungeon
 EnemyDoctorOctoA: enemyPal_highlands2
 EnemyDoctorOctoB: enemyPal_highlands2
 EnemyDoctorOctoC: enemyPal_highlands2
 EnemyDrone: enemyPal_midlands1
+EnemyDronette: enemyPal_fireDungeon
 EnemyEstateGuard: enemyPal_mountain
 EnemyFighter: enemyPal_lowlands1
+EnemyFireBarrel: enemyPal_fireDungeon
 EnemyFireBomberQuest: enemyPal_highlands1
+EnemyFireEye: enemyPal_fireDungeon
+EnemyFireSniper: enemyPal_fireDungeon
+EnemyFireSprinkler: enemyPal_fireDungeon
 EnemyFivestar: enemyPal_ruins
 EnemyFivestarleader: enemyPal_ruins
+EnemyFlamebat: enemyPal_fireDungeon
+EnemyFlamebatLeader: enemyPal_fireDungeon
 EnemyFlamer: enemyPal_lowlands1
 EnemyFoxtrot: enemyPal_lowlands1
 EnemyGasstationCommand: enemyPalette_Gasstation
 EnemyGasstationGastank: enemyPalette_Gasstation
 EnemyGasstationTurret: enemyPalette_Gasstation
@@ -124,18 +132,21 @@ EnemyRaceMinion1: enemyPal_raceevent
 EnemyRaceMinion2: enemyPal_raceevent
 EnemyRaceTrack: enemyPal_raceevent
 EnemyRacetrackSignal: enemyPal_raceevent
 EnemyRacetrackTail: enemyPal_raceevent
 EnemyRemora: enemyPal_midlands3
+EnemyRiotGuardFire: enemyPal_fireDungeon
 EnemyRiotGuardMissile: enemyPal_highmountain
 EnemyRiotGuardPrefab: enemyPal_highmountain
+EnemyRiotShield: enemyPal_fireDungeon
 EnemyRoboBomber: enemyPal_highlands1
 EnemyRoboSnakeA: enemyPal_highlands1
 EnemyRoboSnakeB: enemyPal_highlands1
 EnemyRobotOfUnusualDesign: enemyPal_highlands1
 EnemyRobotOfUnusualDesignMinion: enemyPal_highlands1
 EnemySacrificialCultist: enemyPal_templeDungeon
+EnemyScavengerLeader: enemyPal_fireDungeon
 EnemyScorpion: enemyPal_highlands3
 EnemySecretPoliceLeaderPrefab: enemyPal_highmountain
 EnemySecretPoliceMine: enemyPal_highmountain
 EnemySecretPoliceMissile: enemyPal_highmountain
 EnemySecretPolicePrefab: enemyPal_highmountain