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
diff -r -x 'diff.*' -x client.swf -x version.txt -x '*.xml' '--unified=8' -b -B ../current/constants.json ./constants.json
--- ../current/constants.json	2014-10-16 21:20:36.315395460 +0000
+++ ./constants.json	2014-10-30 21:20:37.299241998 +0000
@@ -1,8 +1,8 @@
 {
   "BUILD_VERSION": "25.0",
-  "MINOR_VERSION": "0",
+  "MINOR_VERSION": "1",
   "PORT": 2050,
   "RANDOM1": "311f80691451c71b09a13a2a6e",
   "RANDOM2": "72c5583cafb6818995cbd74b80",
   "RSA_PUBLIC_KEY": "-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDCKFctVrhfF3m2Kes0FBL/JFeOcmNg9eJz8k/hQy1kadD+XFUpluRqa//Uxp2s9W2qE0EoUCu59ugcf/p7lGuL99UoSGmQEynkBvZct+/M40L0E0rZ4BVgzLOJmIbXMp0J4PnPcb6VLZvxazGcmSfjauC7F3yWYqUbZd/HCBtawwIDAQAB\n-----END PUBLIC KEY-----"
 }
\ No newline at end of file
diff -r -x 'diff.*' -x client.swf -x version.txt -x '*.xml' '--unified=8' -b -B ../current/json/Objects.json ./json/Objects.json
--- ../current/json/Objects.json	2014-10-17 18:50:24.114449721 +0000
+++ ./json/Objects.json	2014-10-30 21:20:25.315248742 +0000
@@ -10978,16 +10978,62 @@
       "DeathSound": "monster/minion_of_oryx_death",
       "MaxHitPoints": "100",
       "Size": "0",
       "Defense": "0",
       "XpMult": "0.0",
       "DisplayId": "Hermit God Drop"
     },
     {
+      "type": "0x744f",
+      "id": "Zombie Horde",
+      "Enemy": "",
+      "Class": "Character",
+      "Texture": {
+        "File": "invisible",
+        "Index": "0"
+      },
+      "HitSound": "monster/ghost_god_hit",
+      "DeathSound": "monster/ghost_god_death",
+      "Size": "160",
+      "MaxHitPoints": "55000",
+      "Defense": "25",
+      "God": "",
+      "Hero": "",
+      "Quest": "",
+      "Encounter": "",
+      "Level": "20",
+      "XpMult": "0.0",
+      "PerRealmMax": "10",
+      "DisplayId": "Zombie Horde"
+    },
+    {
+      "type": "0x7460",
+      "id": "Horde Spawner",
+      "Enemy": "",
+      "Class": "Character",
+      "Texture": {
+        "File": "invisible",
+        "Index": "0"
+      },
+      "HitSound": "monster/ghost_god_hit",
+      "DeathSound": "monster/ghost_god_death",
+      "Size": "160",
+      "MaxHitPoints": "55000",
+      "Defense": "25",
+      "God": "",
+      "Hero": "",
+      "Quest": "",
+      "Encounter": "",
+      "Level": "20",
+      "XpMult": "0.0",
+      "PerRealmMax": "10",
+      "DisplayId": "Horde Spawner"
+    },
+    {
       "type": "0x075c",
       "id": "Woodland Labyrinth",
       "Class": "Portal",
       "IntergamePortal": "",
       "DungeonName": "Woodland Labyrinth",
       "Texture": {
         "File": "lofiObj3",
         "Index": "0x3e5"
@@ -28624,31 +28670,31 @@
       "id": "Skull-splitter Sword",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "lofiObj3",
         "Index": "0x458"
       },
       "SlotType": "1",
+      "Tier": "11",
       "Description": "An unfathomably powerful sword that absorbs the skulls of enemies and unleashes them with magical energy.",
       "RateOfFire": "1",
       "Sound": "weapon/mithril_sword",
       "Projectile": {
         "ObjectId": "Halloween SSS",
         "Speed": "100",
         "MinDamage": "210",
         "MaxDamage": "270",
         "LifetimeMS": "350"
       },
       "BagType": "2",
       "FameBonus": "3",
       "OldSound": "bladeSwing",
       "feedPower": "310",
-      "Soulbound": "",
       "DisplayId": "Skull-splitter Sword"
     },
     {
       "type": "0x224b",
       "id": "Potion of Health1",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
@@ -29878,17 +29924,16 @@
       "SlotType": "10",
       "Description": "Cursed by responsibility and awesome knife skills. Thanks to: IrondogdogROTMG",
       "Activate": {
         "_": "UnlockSkin",
         "skinType": "8969"
       },
       "Consumable": "",
       "BagType": "1",
-      "Soulbound": "",
       "DisplayId": "King Knifeula Skin"
     },
     {
       "type": "0x225c",
       "id": "Ranger Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
@@ -30775,25 +30820,38 @@
         }
       ],
       "Usable": "",
       "BagType": "4",
       "FameBonus": "4",
       "MpCost": "120",
       "Activate": [
         {
+          "_": "ConditionEffectAura",
+          "effect": "Healing",
+          "duration": "3",
+          "range": "5",
+          "useWisMod": "true"
+        },
+        {
+          "_": "ConditionEffectAura",
+          "effect": "Speedy",
+          "duration": "1.5",
+          "range": "5",
+          "useWisMod": "true"
+        },
+        {
           "_": "HealNova",
           "amount": "200",
-          "range": "6",
+          "range": "5",
           "useWisMod": "true"
         },
         {
           "_": "ClearConditionEffectAura",
           "range": "6",
-          "effect": "Speedy",
           "checkExistingEffect": "Hexed"
         },
         {
           "_": "RemoveNegativeConditions",
           "range": "6"
         },
         "Shoot"
       ],
@@ -30811,33 +30869,34 @@
         "Index": "0x50F"
       },
       "SlotType": "8",
       "Description": "Despite their normal pacificity, priests of Geb were able to protect themselves from aggressors.",
       "RateOfFire": "1",
       "Sound": "weapon/mithril_sword",
       "Projectile": {
         "ObjectId": "Geb Shot",
-        "Speed": "100",
-        "MinDamage": "220",
-        "MaxDamage": "275",
-        "LifetimeMS": "350",
+        "Speed": "140",
+        "MinDamage": "65",
+        "MaxDamage": "90",
+        "LifetimeMS": "600",
         "Size": "80",
-        "Amplitude": "0.5",
-        "Frequency": "2"
+        "Amplitude": "1.2",
+        "Frequency": "1",
+        "MultiHit": ""
       },
       "ActivateOnEquip": {
         "_": "IncrementStat",
         "stat": "20",
         "amount": "2"
       },
       "BagType": "4",
       "FameBonus": "4",
       "OldSound": "bladeSwing",
-      "feedPower": "450",
+      "feedPower": "800",
       "DisplayId": "Scepter of Geb"
     },
     {
       "type": "0x2360",
       "id": "Soulless Robe",
       "setType": "0x0004",
       "Class": "Equipment",
       "Item": "",
@@ -30928,16 +30987,33 @@
           "amount": "1"
         },
         {
           "_": "IncrementStat",
           "stat": "22",
           "amount": "1"
         }
       ],
+      "Activate": [
+        {
+          "_": "StasisBlast",
+          "duration": "5"
+        },
+        {
+          "_": "GenericActivate",
+          "effect": "Curse",
+          "duration": "4.5",
+          "range": "4.5",
+          "color": "0x808080",
+          "target": "enemy",
+          "center": "player",
+          "visualEffect": "12",
+          "useWisMod": "true"
+        }
+      ],
       "Usable": "",
       "BagType": "4",
       "FameBonus": "4",
       "MpCost": "100",
       "feedPower": "380",
       "DisplayId": "Soul of the Bearer"
     },
     {
@@ -30951,20 +31027,20 @@
         "Index": "0x514"
       },
       "SlotType": "17",
       "Description": "I was a fool before, but now everything is so clear. The phylactery speaks to me, knows me, protects me.",
       "RateOfFire": "1",
       "Sound": "weapon/mithril_sword",
       "Projectile": {
         "ObjectId": "Soul Orb",
-        "Speed": "100",
-        "MinDamage": "220",
-        "MaxDamage": "275",
-        "LifetimeMS": "350",
+        "Speed": "190",
+        "MinDamage": "85",
+        "MaxDamage": "110",
+        "LifetimeMS": "450",
         "Size": "80"
       },
       "ActivateOnEquip": [
         {
           "_": "IncrementStat",
           "stat": "3",
           "amount": "50"
         },
@@ -31073,16 +31149,49 @@
           "amount": "5"
         },
         {
           "_": "IncrementStat",
           "stat": "27",
           "amount": "5"
         }
       ],
+      "Activate": [
+        {
+          "_": "StatBoostAura",
+          "stat": "0",
+          "amount": "75",
+          "duration": "4",
+          "range": "4.5",
+          "noStack": "true",
+          "useWisMod": "true"
+        },
+        {
+          "_": "GenericActivate",
+          "effect": "Slowed",
+          "duration": "4",
+          "range": "4.5",
+          "color": "0xff0080",
+          "target": "enemy",
+          "center": "player",
+          "visualEffect": "0",
+          "useWisMod": "true"
+        },
+        {
+          "_": "GenericActivate",
+          "effect": "Hallucinating",
+          "duration": "1",
+          "range": "4.5",
+          "color": "0x808080",
+          "target": "player",
+          "center": "player",
+          "visualEffect": "0",
+          "useWisMod": "false"
+        }
+      ],
       "Usable": "",
       "BagType": "4",
       "FameBonus": "4",
       "MpCost": "100",
       "feedPower": "380",
       "DisplayId": "Seal of the Enchanted Forest"
     },
     {
@@ -31096,71 +31205,75 @@
         "Index": "0x519"
       },
       "SlotType": "1",
       "Description": "Pixies are often a more aggressive fae. It makes great sense that they would provide heroes with swords as fine as this.",
       "RateOfFire": "1",
       "Sound": "weapon/mithril_sword",
       "Projectile": {
         "ObjectId": "Fairy Bullet",
-        "Speed": "100",
-        "MinDamage": "220",
-        "MaxDamage": "275",
-        "LifetimeMS": "350",
+        "Speed": "140",
+        "MinDamage": "75",
+        "MaxDamage": "90",
+        "LifetimeMS": "325",
         "Size": "80"
       },
+      "NumProjectiles": "4",
+      "ArcGap": "10",
       "ActivateOnEquip": {
         "_": "IncrementStat",
         "stat": "20",
         "amount": "1"
       },
       "BagType": "4",
       "FameBonus": "4",
       "OldSound": "bladeSwing",
-      "feedPower": "450",
+      "feedPower": "800",
       "DisplayId": "Pixie-Enchanted Sword"
     },
     {
       "type": "0xf10",
       "id": "Wand of Ancient Terror",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "lofiObj3",
         "Index": "0x500"
       },
       "SlotType": "8",
+      "Tier": "11",
       "Description": "This wand has been used countless times to raise Lord Ruthven from the dead.",
       "RateOfFire": "1",
       "Sound": "weapon/wand_of_death",
       "Projectile": {
         "ObjectId": "Terror Orb",
-        "Speed": "130",
+        "Speed": "150",
+        "LifetimeMS": "600",
         "MinDamage": "90",
-        "MaxDamage": "130",
-        "LifetimeMS": "770",
+        "MaxDamage": "125",
+        "MultiHit": "",
         "ParticleTrail": "0x000000"
       },
       "BagType": "4",
       "FameBonus": "3",
       "OldSound": "magicShoot",
       "feedPower": "310",
       "DisplayId": "Wand of Ancient Terror"
     },
     {
-      "_": "\n      \n      \n      \n      \n      .\n      \n      \n      \n      \n      \n      \n      \n      \n      \n   ",
       "type": "0xf11",
       "id": "Dagger of the Terrible Talon",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "lofiObj3",
         "Index": "0x501"
       },
       "SlotType": "2",
+      "Tier": "11",
       "Description": "A claw-shard from Feargus, the Obsidian Dragon.",
       "RateOfFire": "1",
       "Sound": "weapon/fire_dagger",
       "Projectile": {
         "ObjectId": "Obsidian Vortex",
         "Speed": "140",
         "MinDamage": "90",
         "MaxDamage": "175",
@@ -31177,27 +31290,32 @@
       "id": "Bow of Nightmares",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "lofiObj3",
         "Index": "0x502"
       },
       "SlotType": "3",
+      "Tier": "11",
       "Description": "You can hear the screams of tortured souls as you draw this bow.",
       "RateOfFire": "1",
       "Sound": "weapon/golden_bow",
       "Projectile": {
         "ObjectId": "Purple Batshot",
         "Speed": "160",
         "MinDamage": "45",
         "MaxDamage": "70",
         "LifetimeMS": "440",
         "MultiHit": "",
-        "ParticleTrail": "0x97357f"
+        "ParticleTrail": {
+          "_": "0x97357f",
+          "intensity": "0.5",
+          "lifetimeMS": "200"
+        }
       },
       "BagType": "4",
       "FameBonus": "3",
       "NumProjectiles": "3",
       "OldSound": "arrowShoot",
       "feedPower": "310",
       "DisplayId": "Bow of Nightmares"
     },
@@ -31206,16 +31324,17 @@
       "id": "Staff of Horrific Knowledge",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "lofiObj3",
         "Index": "0x503"
       },
       "SlotType": "17",
+      "Tier": "11",
       "Description": "It seems to dispense special runes upon use. Perhaps...some things are better left unknown.",
       "RateOfFire": "1",
       "Sound": "weapon/wand_of_death",
       "Projectile": {
         "ObjectId": "Runes of Horror",
         "Speed": "180",
         "MinDamage": "55",
         "MaxDamage": "100",
@@ -31237,27 +31356,32 @@
       "id": "Corrupted Cleaver",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "lofiObj3",
         "Index": "0x504"
       },
       "SlotType": "24",
+      "Tier": "11",
       "Description": "This blade is drenched in the blood of heroes. Are you sure this blade is meant for you?",
       "RateOfFire": "1",
       "Sound": "weapon/long_sword",
       "Projectile": {
         "ObjectId": "Cleaved Eyeball",
         "Speed": "120",
         "MinDamage": "110",
         "MaxDamage": "170",
         "LifetimeMS": "350",
         "MultiHit": "",
-        "ParticleTrail": "0xbe0406"
+        "ParticleTrail": {
+          "_": "0xbe0406",
+          "intensity": "0.5",
+          "lifetimeMS": "200"
+        }
       },
       "BagType": "4",
       "FameBonus": "3",
       "OldSound": "bladeSwing",
       "feedPower": "310",
       "DisplayId": "Corrupted Cleaver"
     },
     {
@@ -31484,31 +31608,362 @@
         "_": "UnlockSkin",
         "skinType": "29790"
       },
       "Consumable": "",
       "BagType": "1",
       "DisplayId": "Skeleton Warrior Skin"
     },
     {
+      "type": "0x2374",
+      "id": "Infected Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "76"
+      },
+      "SlotType": "10",
+      "Description": "Join my legions of infected, hero. Thanks to: WunderWafe",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "29791"
+      },
+      "Consumable": "",
+      "BagType": "6",
+      "DisplayId": "Infected Skin"
+    },
+    {
+      "type": "0x747B",
+      "id": "Huntsman Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "77"
+      },
+      "SlotType": "10",
+      "Description": "Unlocked during Halloween 2014. Thanks to: WunderWafe",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "29799"
+      },
+      "Consumable": "",
+      "BagType": "1",
+      "DisplayId": "Huntsman Skin"
+    },
+    {
+      "type": "0x747C",
+      "id": "Demon Spawn Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "78"
+      },
+      "SlotType": "10",
+      "Description": "Unlocked during Halloween 2014. Thanks to: WunderWafe",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "29800"
+      },
+      "Consumable": "",
+      "BagType": "1",
+      "DisplayId": "Demon Spawn Skin"
+    },
+    {
+      "type": "0x7488",
+      "id": "Dark Elf Huntress Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "79"
+      },
+      "SlotType": "10",
+      "Description": "Unlocked during Halloween 2014. Thanks to: Beige",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "29801"
+      },
+      "Consumable": "",
+      "BagType": "6",
+      "DisplayId": "Dark Elf Huntress Skin"
+    },
+    {
+      "type": "0x747D",
+      "id": "Hunchback Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "80"
+      },
+      "SlotType": "10",
+      "Description": "Unlocked during Halloween 2014. Thanks to: Hawkmin",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "29816"
+      },
+      "Consumable": "",
+      "BagType": "1",
+      "DisplayId": "Hunchback Skin"
+    },
+    {
+      "type": "0x747E",
+      "id": "Vampiress Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "81"
+      },
+      "SlotType": "10",
+      "Description": "Unlocked during Halloween 2014. Thanks to: Beige",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "29817"
+      },
+      "Consumable": "",
+      "BagType": "1",
+      "DisplayId": "Vampiress Skin"
+    },
+    {
+      "type": "0x747F",
+      "id": "Frankensteins Monster Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "82"
+      },
+      "SlotType": "10",
+      "Description": "Unlocked during Halloween 2014. Thanks to: Beige",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "29818"
+      },
+      "Consumable": "",
+      "BagType": "1",
+      "DisplayId": "Frankensteins Monster Skin"
+    },
+    {
+      "type": "0x7480",
+      "id": "Jack the Ripper Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "83"
+      },
+      "SlotType": "10",
+      "Description": "Unlocked during Halloween 2014. Thanks to: Beige",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "29808"
+      },
+      "Consumable": "",
+      "BagType": "1",
+      "DisplayId": "Jack the Ripper Skin"
+    },
+    {
+      "type": "0x7481",
+      "id": "Death Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "84"
+      },
+      "SlotType": "10",
+      "Description": "Unlocked during Halloween 2014. Thanks to: Thqdfthqdf",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "29809"
+      },
+      "Consumable": "",
+      "BagType": "1",
+      "DisplayId": "Death Skin"
+    },
+    {
+      "type": "0x7482",
+      "id": "Tiny Avatar Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "85"
+      },
+      "SlotType": "10",
+      "Description": "Unlocked during Halloween 2014. Thanks to: DG",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "29810"
+      },
+      "Consumable": "",
+      "BagType": "1",
+      "DisplayId": "Tiny Avatar Skin"
+    },
+    {
+      "type": "0x7483",
+      "id": "Zombie Nurse Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "86"
+      },
+      "SlotType": "10",
+      "Description": "Unlocked during Halloween 2014. Thanks to: Thqdfthqdf",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "29811"
+      },
+      "Consumable": "",
+      "BagType": "1",
+      "DisplayId": "Zombie Nurse Skin"
+    },
+    {
+      "type": "0x7484",
+      "id": "Ascended Sorcerer Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "67"
+      },
+      "SlotType": "10",
+      "Description": "Unlocked during Halloween 2014.",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "8976"
+      },
+      "Consumable": "",
+      "BagType": "1",
+      "DisplayId": "Ascended Sorcerer Skin"
+    },
+    {
+      "type": "0x7485",
+      "id": "Mischievous Imp Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "88"
+      },
+      "SlotType": "10",
+      "Description": "Unlocked during Halloween 2014. Thanks to: Beige",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "29813"
+      },
+      "Consumable": "",
+      "BagType": "1",
+      "DisplayId": "Mischievous Imp Skin"
+    },
+    {
+      "type": "0x7486",
+      "id": "Vampire Hunter Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "89"
+      },
+      "SlotType": "10",
+      "Description": "Unlocked during Halloween 2014. Thanks to: Thqdfthqdf",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "29814"
+      },
+      "Consumable": "",
+      "BagType": "1",
+      "DisplayId": "Vampire Hunter Skin"
+    },
+    {
+      "type": "0x7487",
+      "id": "Poltergeist Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "90"
+      },
+      "SlotType": "10",
+      "Description": "Unlocked during Halloween 2014. Thanks to: Beige",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "29815"
+      },
+      "Consumable": "",
+      "BagType": "1",
+      "DisplayId": "Poltergeist Skin"
+    },
+    {
       "type": "0x744D",
       "id": "Event Chest",
       "DisplayId": "Event Chest",
       "Class": "Character",
       "Enemy": "",
       "Texture": {
         "File": "lofiObj3",
         "Index": "0x466"
       },
       "MaxHitPoints": "120000",
       "Defense": "0",
       "Size": "160",
       "XpMult": "0.0"
     },
     {
+      "type": "0x2375",
+      "id": "Candy Corn",
+      "Class": "Equipment",
+      "Item": "",
+      "Texture": {
+        "File": "d3LofiObjEmbed",
+        "Index": "0x16"
+      },
+      "SlotType": "10",
+      "Description": "A piece of Halloween candy that restores health and magic points.",
+      "Sound": "use_potion",
+      "Activate": [
+        {
+          "_": "Heal",
+          "amount": "100"
+        },
+        {
+          "_": "Magic",
+          "amount": "100"
+        },
+        {
+          "_": "StatBoostSelf",
+          "stat": "28",
+          "amount": "10",
+          "duration": "25"
+        }
+      ],
+      "ExtraTooltipData": {
+        "EffectInfo": [
+          {
+            "name": "Boost Dexterity",
+            "description": "+10"
+          },
+          {
+            "name": "Duration",
+            "description": "25 sec"
+          }
+        ]
+      },
+      "Consumable": "",
+      "Potion": "",
+      "BagType": "0",
+      "feedPower": "5",
+      "DisplayId": "Candy Corn"
+    },
+    {
       "type": "0x0dc0",
       "id": "Great Temple Snake",
       "Class": "Character",
       "Enemy": "",
       "Size": "100",
       "ShadowSize": "90",
       "MaxHitPoints": "50",
       "Defense": "20",
@@ -45404,16 +45859,17 @@
         "Index": "50"
       },
       "HitSound": "monster/slimes_death",
       "DeathSound": "monster/flying_brain_death",
       "Size": "100",
       "ShadowSize": "0",
       "MaxHitPoints": "2500",
       "Defense": "20",
+      "XpMult": "0.62",
       "Projectile": {
         "id": "0",
         "ObjectId": "Coral Arrow",
         "Damage": "55",
         "Speed": "70",
         "LifetimeMS": "1500",
         "Size": "75"
       },
@@ -45430,16 +45886,17 @@
         "Index": "51"
       },
       "HitSound": "monster/slimes_death",
       "DeathSound": "monster/flying_brain_death",
       "Size": "100",
       "ShadowSize": "0",
       "MaxHitPoints": "2500",
       "Defense": "20",
+      "XpMult": "0.62",
       "Projectile": {
         "id": "0",
         "ObjectId": "Fire Bolt",
         "Damage": "55",
         "Speed": "60",
         "LifetimeMS": "1000",
         "Size": "100"
       },
@@ -45456,16 +45913,17 @@
         "Index": "52"
       },
       "HitSound": "monster/slimes_death",
       "DeathSound": "monster/flying_brain_death",
       "Size": "100",
       "ShadowSize": "0",
       "MaxHitPoints": "2500",
       "Defense": "20",
+      "XpMult": "0.62",
       "Projectile": {
         "id": "0",
         "ObjectId": "Fire Missile",
         "Damage": "55",
         "Speed": "60",
         "LifetimeMS": "1000",
         "Size": "100",
         "Amplitude": "0.5",
@@ -45484,16 +45942,17 @@
         "Index": "53"
       },
       "HitSound": "monster/slimes_death",
       "DeathSound": "monster/flying_brain_death",
       "Size": "100",
       "ShadowSize": "0",
       "MaxHitPoints": "2500",
       "Defense": "20",
+      "XpMult": "0.62",
       "Projectile": {
         "id": "0",
         "ObjectId": "Rainbow Magic",
         "Damage": "55",
         "Speed": "60",
         "LifetimeMS": "1000",
         "Size": "100"
       },
@@ -45510,16 +45969,17 @@
         "Index": "54"
       },
       "HitSound": "monster/slimes_death",
       "DeathSound": "monster/flying_brain_death",
       "Size": "100",
       "ShadowSize": "0",
       "MaxHitPoints": "2500",
       "Defense": "20",
+      "XpMult": "0.62",
       "Projectile": {
         "id": "0",
         "ObjectId": "Directed Explosion",
         "Damage": "55",
         "Speed": "60",
         "LifetimeMS": "1000",
         "Size": "50"
       },
@@ -45536,16 +45996,17 @@
         "Index": "55"
       },
       "HitSound": "monster/slimes_death",
       "DeathSound": "monster/flying_brain_death",
       "Size": "100",
       "ShadowSize": "0",
       "MaxHitPoints": "2500",
       "Defense": "20",
+      "XpMult": "0.62",
       "Projectile": {
         "id": "0",
         "ObjectId": "Stone Slash",
         "Damage": "55",
         "Speed": "60",
         "LifetimeMS": "1000",
         "Size": "100"
       },
@@ -45562,16 +46023,17 @@
         "Index": "56"
       },
       "HitSound": "monster/slimes_death",
       "DeathSound": "monster/flying_brain_death",
       "Size": "100",
       "ShadowSize": "0",
       "MaxHitPoints": "2500",
       "Defense": "20",
+      "XpMult": "0.62",
       "Projectile": {
         "id": "0",
         "ObjectId": "Aqua Slash",
         "Damage": "55",
         "Speed": "60",
         "LifetimeMS": "1000",
         "Size": "100"
       },
@@ -45588,16 +46050,17 @@
         "Index": "57"
       },
       "HitSound": "monster/slimes_death",
       "DeathSound": "monster/flying_brain_death",
       "Size": "100",
       "ShadowSize": "0",
       "MaxHitPoints": "2500",
       "Defense": "20",
+      "XpMult": "0.62",
       "Projectile": {
         "id": "0",
         "ObjectId": "Aqua Missile",
         "Damage": "55",
         "Speed": "60",
         "LifetimeMS": "1000",
         "Size": "100",
         "Amplitude": "0.5",
@@ -45616,16 +46079,17 @@
         "Index": "58"
       },
       "HitSound": "monster/slimes_death",
       "DeathSound": "monster/flying_brain_death",
       "Size": "100",
       "ShadowSize": "0",
       "MaxHitPoints": "2500",
       "Defense": "20",
+      "XpMult": "0.62",
       "Projectile": {
         "id": "0",
         "ObjectId": "Black Arrow",
         "Damage": "55",
         "Speed": "60",
         "LifetimeMS": "1000",
         "Size": "100"
       },
@@ -45642,16 +46106,17 @@
         "Index": "59"
       },
       "HitSound": "monster/slimes_death",
       "DeathSound": "monster/flying_brain_death",
       "Size": "100",
       "ShadowSize": "0",
       "MaxHitPoints": "2500",
       "Defense": "20",
+      "XpMult": "0.62",
       "Projectile": {
         "id": "0",
         "ObjectId": "Crystal Serpent Missile",
         "Damage": "55",
         "Speed": "60",
         "LifetimeMS": "1000",
         "Size": "100",
         "Amplitude": "0.5",
@@ -45670,16 +46135,17 @@
         "Index": "60"
       },
       "HitSound": "monster/slimes_death",
       "DeathSound": "monster/flying_brain_death",
       "Size": "100",
       "ShadowSize": "0",
       "MaxHitPoints": "2500",
       "Defense": "20",
+      "XpMult": "0.62",
       "Projectile": {
         "id": "0",
         "ObjectId": "Spirit Dagger Slash",
         "Damage": "55",
         "Speed": "60",
         "LifetimeMS": "1000",
         "Size": "100"
       },
@@ -45696,16 +46162,17 @@
         "Index": "61"
       },
       "HitSound": "monster/slimes_death",
       "DeathSound": "monster/flying_brain_death",
       "Size": "100",
       "ShadowSize": "0",
       "MaxHitPoints": "2500",
       "Defense": "20",
+      "XpMult": "0.62",
       "Projectile": {
         "id": "0",
         "ObjectId": "Blue Magic",
         "Damage": "55",
         "Speed": "60",
         "LifetimeMS": "1000",
         "Size": "100"
       },
@@ -45722,16 +46189,17 @@
         "Index": "62"
       },
       "HitSound": "monster/slimes_death",
       "DeathSound": "monster/flying_brain_death",
       "Size": "100",
       "ShadowSize": "0",
       "MaxHitPoints": "2500",
       "Defense": "20",
+      "XpMult": "0.62",
       "Projectile": {
         "id": "0",
         "ObjectId": "Green Bolt",
         "Damage": "55",
         "Speed": "60",
         "LifetimeMS": "1000",
         "Size": "100"
       },
@@ -45748,16 +46216,17 @@
         "Index": "63"
       },
       "HitSound": "monster/slimes_death",
       "DeathSound": "monster/flying_brain_death",
       "Size": "100",
       "ShadowSize": "0",
       "MaxHitPoints": "2500",
       "Defense": "20",
+      "XpMult": "0.62",
       "Projectile": {
         "id": "0",
         "ObjectId": "Jewel Slash",
         "Damage": "55",
         "Speed": "60",
         "LifetimeMS": "1000",
         "Size": "100"
       },
@@ -69521,16 +69990,211 @@
         "File": "playerskins",
         "Index": "74"
       },
       "PlayerClassType": "0x031d",
       "UnlockSpecial": "Unlocked during Halloween 2014",
       "DisplayId": "Skeleton Warrior"
     },
     {
+      "type": "0x745F",
+      "id": "Infected Assassin",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "76"
+      },
+      "PlayerClassType": "0x0320",
+      "UnlockSpecial": "Unlocked during Halloween 2014",
+      "DisplayId": "Infected Assassin"
+    },
+    {
+      "type": "0x7467",
+      "id": "Huntsman",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "77"
+      },
+      "PlayerClassType": "0x0307",
+      "UnlockSpecial": "Unlocked during Halloween 2014. Thanks to: WunderWafe",
+      "DisplayId": "Huntsman"
+    },
+    {
+      "type": "0x7468",
+      "id": "Demon Spawn",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "78"
+      },
+      "PlayerClassType": "0x031f",
+      "UnlockSpecial": "Unlocked during Halloween 2014. Thanks to: WunderWafe",
+      "DisplayId": "Demon Spawn"
+    },
+    {
+      "type": "0x7469",
+      "id": "Dark Elf Huntress",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "79"
+      },
+      "PlayerClassType": "0x0322",
+      "UnlockSpecial": "Unlocked during Halloween 2014. Thanks to: Beige",
+      "DisplayId": "Dark Elf Huntress"
+    },
+    {
+      "type": "0x7478",
+      "id": "Hunchback",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "80"
+      },
+      "PlayerClassType": "0x031d",
+      "UnlockSpecial": "Unlocked during Halloween 2014. Thanks to: Hawkmin",
+      "DisplayId": "Hunchback"
+    },
+    {
+      "type": "0x7479",
+      "id": "Vampiress",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "81"
+      },
+      "PlayerClassType": "0x0324",
+      "UnlockSpecial": "Unlocked during Halloween 2014. Thanks to: Beige",
+      "DisplayId": "Vampiress"
+    },
+    {
+      "type": "0x747A",
+      "id": "Frankensteins Monster",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "82"
+      },
+      "PlayerClassType": "0x031e",
+      "UnlockSpecial": "Unlocked during Halloween 2014. Thanks to: Beige",
+      "DisplayId": "Frankensteins Monster"
+    },
+    {
+      "type": "0x7470",
+      "id": "Jack the Ripper",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "83"
+      },
+      "PlayerClassType": "0x0300",
+      "UnlockSpecial": "Unlocked during Halloween 2014. Thanks to: Beige",
+      "DisplayId": "Jack the Ripper"
+    },
+    {
+      "type": "0x7471",
+      "id": "Death",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "84"
+      },
+      "PlayerClassType": "0x0326",
+      "UnlockSpecial": "Unlocked during Halloween 2014. Thanks to: Thqdfthqdf",
+      "DisplayId": "Death"
+    },
+    {
+      "type": "0x7472",
+      "id": "Tiny Avatar",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "85"
+      },
+      "PlayerClassType": "0x0321",
+      "UnlockSpecial": "Unlocked during Halloween 2014. Thanks to: DG",
+      "DisplayId": "Tiny Avatar"
+    },
+    {
+      "type": "0x7473",
+      "id": "Zombie Nurse",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "86"
+      },
+      "PlayerClassType": "0x0310",
+      "UnlockSpecial": "Unlocked during Halloween 2014. Thanks to: Thqdfthqdf",
+      "DisplayId": "Zombie Nurse"
+    },
+    {
+      "type": "0x2310",
+      "id": "Ascended Sorcerer",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "67"
+      },
+      "PlayerClassType": "0x0325",
+      "UnlockSpecial": "Unlocked during Halloween 2014.",
+      "DisplayId": "Ascended Sorcerer"
+    },
+    {
+      "type": "0x7475",
+      "id": "Mischievous Imp",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "88"
+      },
+      "PlayerClassType": "0x030e",
+      "UnlockSpecial": "Unlocked during Halloween 2014. Thanks to: Beige",
+      "DisplayId": "Mischievous Imp"
+    },
+    {
+      "type": "0x7476",
+      "id": "Vampire Hunter",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "89"
+      },
+      "PlayerClassType": "0x0320",
+      "UnlockSpecial": "Unlocked during Halloween 2014. Thanks to: Thqdfthqdf",
+      "DisplayId": "Vampire Hunter"
+    },
+    {
+      "type": "0x7477",
+      "id": "Poltergeist",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "90"
+      },
+      "PlayerClassType": "0x0323",
+      "UnlockSpecial": "Unlocked during Halloween 2014. Thanks to: Beige",
+      "DisplayId": "Poltergeist"
+    },
+    {
       "type": "0x0e28",
       "id": "Snakepit Guard Spawner",
       "Class": "Character",
       "Enemy": "",
       "NoMiniMap": "",
       "AnimatedTexture": {
         "File": "chars16x16dEncounters2",
         "Index": "39"
Binary files ../current/sheets/d3LofiObj.png and ./sheets/d3LofiObj.png differ
Binary files ../current/sheets/playersSkinsMask.png and ./sheets/playersSkinsMask.png differ
Binary files ../current/sheets/playersSkins.png and ./sheets/playersSkins.png differ
diff -r -x 'diff.*' -x client.swf -x version.txt -x '*.xml' '--unified=8' -b -B ../current/strings.json ./strings.json
--- ../current/strings.json	2014-10-17 18:50:21.406450292 +0000
+++ ./strings.json	2014-10-30 21:20:22.567250290 +0000
@@ -1433,29 +1433,31 @@
   "encounters.Dragon_Marker_TR": "Dragon Marker TR",
   "encounters.Grand_Sphinx": "Grand Sphinx",
   "encounters.Guardian_of_the_Lost_Lands": "Guardian of the Lost Lands",
   "encounters.Hermit_God": "Hermit God",
   "encounters.Hermit_God_Drop": "Hermit God Drop",
   "encounters.Hermit_God_Tentacle": "Hermit God Tentacle",
   "encounters.Hermit_God_Tentacle_Spawner": "Hermit God Tentacle Spawner",
   "encounters.Hermit_Minion": "Hermit Minion",
+  "encounters.Horde_Spawner": "Horde Spawner",
   "encounters.Horrid_Reaper": "Horrid Reaper",
   "encounters.Knight_of_the_Lost_Lands": "Knight of the Lost Lands",
   "encounters.Lord_of_the_Lost_Lands": "Lord of the Lost Lands",
   "encounters.Pentaract": "Pentaract",
   "encounters.Pentaract_Eye": "Pentaract Eye",
   "encounters.Pentaract_Tower": "Pentaract Tower",
   "encounters.Pentaract_Tower_Corpse": "Pentaract Tower Corpse",
   "encounters.Pentaract_Tower_Ultra": "Pentaract Tower Ultra",
   "encounters.Protection_Crystal": "Protection Crystal",
   "encounters.Red_Flaming_Skull": "Red Flaming Skull",
   "encounters.Rock_Dragon_Bat": "Rock Dragon Bat",
   "encounters.Skull_Shrine": "Skull Shrine",
   "encounters.Whirlpool": "Whirlpool",
+  "encounters.Zombie_Horde": "Zombie Horde",
   "encounters.shtrs_Defense_System": "Avatar of the Forgotten King",
   "encounters.shtrs_Encounter_Chest": "shtrs Encounter Loot Chest",
   "encounters.shtrs_Encounter_Spawner": "shtrs Encounter Spawner",
   "encounters.shtrs_Pillar_1": "Killer Pillar",
   "encounters.shtrs_Pillar_2": "Killer Pillar",
   "encounters.shtrs_Pillar_3": "Killer Pillar",
   "encounters.shtrs_Pillar_4": "Killer Pillar",
   "encounters.shtrs_Portal1": "Dark Void",
@@ -1562,16 +1564,17 @@
   "epicspiderDen.Silver_Egg_Summoner": "Silver Egg Summoner",
   "epicspiderDen.Silver_Son_of_Arachna_Giant_Egg_Sac": "Silver Son of Arachna Giant Egg Sac",
   "epicspiderDen.Son_of_Arachna": "Son of Arachna",
   "epicspiderDen.The_Crawling_Depths": "The Crawling Depths",
   "epicspiderDen.The_Crawling_Depths_Key": "The Crawling Depths Key",
   "epicspiderDen.The_Crawling_Depths_Portal": "The Crawling Depths Portal",
   "epicspiderDen.Yellow_Egg_Summoner": "Yellow Egg Summoner",
   "epicspiderDen.Yellow_Son_of_Arachna_Giant_Egg_Sac": "Yellow Son of Arachna Giant Egg Sac",
+  "equip.+10": "+10",
   "equip.+20": "+20",
   "equip....finally,_I_cornered_and_killed_the_beast._When_I_awoke_i": "...finally, I cornered and killed the beast. When I awoke in a cold sweat...I felt youthful, powerful.",
   "equip.0_of_8": "0 of 8",
   "equip.1_hour": "1 hour",
   "equip.1_of_2": "1 of 2",
   "equip.1_of_3": "1 of 3",
   "equip.1_of_8": "1 of 8",
   "equip.20_min": "20 min",
@@ -1812,16 +1815,17 @@
   "equip.A_mysterious_runewood_staff_decorated_with_horrific_figures": "A mysterious runewood staff decorated with horrific figures.",
   "equip.A_mysterious_wand_of_otherworldly_origin,_imbued_with_the_p": "A mysterious wand of otherworldly origin, imbued with the purest of arcane energies.",
   "equip.A_mystical_grey_cloak_once_used_by_blackguard_tricksters_fo": "A mystical grey cloak once used by blackguard tricksters for flanking maneuvers and sneak attacks.",
   "equip.A_mystical_shuriken_formed_from_ever-frozen_ice.": "A mystical shuriken formed from ever-frozen ice.",
   "equip.A_ninja-star_with_curved_spiraling_blades.": "A ninja-star with curved spiraling blades.",
   "equip.A_ninja-star_with_four_razor-sharp_points.": "A ninja-star with four razor-sharp points.",
   "equip.A_peerless_triple_bow_crafted_of_nightmatter_and_diamondwir": "A peerless triple bow crafted of nightmatter and diamondwire by the exalted bowyers of the primeval overgods.",
   "equip.A_phenomenal_robe_magically_woven_from_fibers_of_sapphire,_": "A phenomenal robe magically woven from fibers of sapphire, topaz and lapis lazuli, created for the archwizard of the seraphic realms.",
+  "equip.A_piece_of_Halloween_candy_that_restores_health_and_magic_p": "A piece of Halloween candy that restores health and magic points.",
   "equip.A_piece_of_heavy_plate_mail_forged_in_the_dungeons_of_OryxA": "A piece of heavy plate mail forged in the dungeons of Oryx's castle, it is decorated with dark red Almandine stones.",
   "equip.A_pitch-black_shield_looted_from_the_depths_of_OryxAPOSs_Ca": "A pitch-black shield looted from the depths of Oryx's Castle.",
   "equip.A_potent_draught_from_OryxAPOSs_wine_cellar.": "A potent draught from Oryx's wine cellar.",
   "equip.A_potent_trap_powered_by_angelic_spirits,_used_by_demon_hun": "A potent trap powered by angelic spirits, used by demon hunters in the nether realms.",
   "equip.A_potion_that_boosts_the_tier_level_of_dropped_loot._Up_to_": "A potion that boosts the tier level of dropped loot. Up to +3 tiers! Lasts 30 minutes.",
   "equip.A_potion_that_causes_enemies_to_drop_more_lootBANG_Lasts_30": "A potion that causes enemies to drop more loot! Lasts 30 minutes.",
   "equip.A_potion_that_instantly_restores_health_points.": "A potion that instantly restores health points.",
   "equip.A_potion_that_instantly_restores_magic_points.": "A potion that instantly restores magic points.",
@@ -2159,16 +2163,17 @@
   "equip.Breathtaker_Skull": "Breathtaker Skull",
   "equip.Brigand_Skin": "Brigand Skin",
   "equip.Broad_Sword": "Broad Sword",
   "equip.Bronze_Helm": "Bronze Helm",
   "equip.Bronze_Medal": "Bronze Medal",
   "equip.Buster_Katana": "Buster Katana",
   "equip.Cabernet": "Cabernet",
   "equip.Candy-Coated_Armor": "Candy-Coated Armor",
+  "equip.Candy_Corn": "Candy Corn",
   "equip.Candy_Key": "Candy Key",
   "equip.Candy_Ring": "Candy Ring",
   "equip.CaptainAPOSs_Ring": "Captain's Ring",
   "equip.Captain_Davy_JonesAPOS_ring.": "Captain Davy Jones' ring.",
   "equip.Captain_Davy_JonesAPOSs_ring.": "Captain Davy Jones's ring.",
   "equip.Celestial_Blade": "Celestial Blade",
   "equip.Cemetery_Key": "Cemetery Key",
   "equip.Centipede_Poison": "Centipede Poison",
@@ -2256,29 +2261,32 @@
   "equip.Dagger_of_Dire_Hatred": "Dagger of Dire Hatred",
   "equip.Dagger_of_Foul_Malevolence": "Dagger of Foul Malevolence",
   "equip.Dagger_of_Sinister_Deeds": "Dagger of Sinister Deeds",
   "equip.Dagger_of_the_Amethyst_Prism": "Dagger of the Amethyst Prism",
   "equip.Dagger_of_the_Terrible_Talon": "Dagger of the Terrible Talon",
   "equip.Damages_monsters.": "Damages monsters.",
   "equip.Damages_monsters_for_longer_while_celebrating_Independence_": "Damages monsters for longer while celebrating Independence Day. Happy 4th of July!",
   "equip.Damages_monsters_while_celebrating_Independence_Day._Happy_": "Damages monsters while celebrating Independence Day. Happy 4th of July!",
+  "equip.Dark_Elf_Huntress_Skin": "Dark Elf Huntress Skin",
   "equip.DavyAPOSs_Key": "Davy's Key",
   "equip.Deadly_Vixen_Skin": "Deadly Vixen Skin",
   "equip.Deadly_magical_poison_taken_from_the_two_headed_pit_snakes_": "Deadly magical poison taken from the two headed pit snakes of the underworld.",
   "equip.Deadly_poison_of_the_swamp_centipede.": "Deadly poison of the swamp centipede.",
   "equip.Deadwater_Docks_Key": "Deadwater Docks Key",
   "equip.Death_-_Card_XIII_of_the_Major_Arcana._Thanks_to_Dappertron": "Death - Card XIII of the Major Arcana. Thanks to Dappertron.",
+  "equip.Death_Skin": "Death Skin",
   "equip.Death_Tarot_Card": "Death Tarot Card",
   "equip.Deception_Prism": "Deception Prism",
   "equip.Decoy_Prism": "Decoy Prism",
   "equip.Deepforest_Trap": "Deepforest Trap",
   "equip.Def_Test_Sword": "Def Test Sword",
   "equip.Demon_Blade": "Demon Blade",
   "equip.Demon_Edge": "Demon Edge",
+  "equip.Demon_Spawn_Skin": "Demon Spawn Skin",
   "equip.Demonhunter_Trap": "Demonhunter Trap",
   "equip.Desolation_Armor": "Desolation Armor",
   "equip.Despite_having_a_serious_rap_sheet,_heAPOSs_quite_handsome.": "Despite having a serious rap sheet, he's quite handsome. Thanks to: Flawks",
   "equip.Despite_their_normal_pacificity,_priests_of_Geb_were_able_t": "Despite their normal pacificity, priests of Geb were able to protect themselves from aggressors.",
   "equip.Destruction_Sphere_Spell": "Destruction Sphere Spell",
   "equip.Devil_Tarot_Card": "Devil Tarot Card",
   "equip.Diamond_Bladed_Katana": "Diamond Bladed Katana",
   "equip.Diamond_Mystery_Key": "Diamond Mystery Key",
@@ -2366,16 +2374,17 @@
   "equip.Food_for_your_pet._To_quench_your_petAPOSs_thirstBANG": "Food for your pet. To quench your pet's thirst!",
   "equip.For_Testing_Monster_Defense.": "For Testing Monster Defense.",
   "equip.Force_Wand": "Force Wand",
   "equip.Forest_Maze_Key": "Forest Maze Key",
   "equip.Forest_Ward_Skin": "Forest Ward Skin",
   "equip.Forged_from_sunshine,_baby_smiles,_and_the_sparkle_from_uni": "Forged from sunshine, baby smiles, and the sparkle from unicorns.",
   "equip.Found_during_Valentines_Day_2014._Made_by_SlugKing.": "Found during Valentines Day 2014. Made by SlugKing.",
   "equip.Four-Point_Star": "Four-Point Star",
+  "equip.Frankensteins_Monster_Skin": "Frankensteins Monster Skin",
   "equip.Fries": "Fries",
   "equip.Frostbite": "Frostbite",
   "equip.GebAPOSs_Ring_of_Wisdom": "Geb's Ring of Wisdom",
   "equip.Gentleman_Skin": "Gentleman Skin",
   "equip.Get_2x_all_XP_gainedBANG_Lasts_until_level_20_or_death.": "Get 2x all XP gained! Lasts until level 20 or death.",
   "equip.Get_2x_all_XP_gained_for_20_minutesBANG": "Get 2x all XP gained for 20 minutes!",
   "equip.Get_2x_all_XP_gained_for_one_hourBANG": "Get 2x all XP gained for one hour!",
   "equip.Ghost_Huntress_Skin": "Ghost Huntress Skin",
@@ -2442,35 +2451,40 @@
   "equip.Hee_Hee,_Ha_Ha,_Ho_HoBANG_Want_to_hear_a_joke?_Thanks_to:_V": "Hee Hee, Ha Ha, Ho Ho! Want to hear a joke? Thanks to: ViciousTwo and Thq32df",
   "equip.HellAPOSs_Fire_Wand": "Hell's Fire Wand",
   "equip.Helm_of_the_Great_General": "Helm of the Great General",
   "equip.Helm_of_the_Juggernaut": "Helm of the Juggernaut",
   "equip.Hippogriff_Hide_Armor": "Hippogriff Hide Armor",
   "equip.Holy_Avenger_Skin": "Holy Avenger Skin",
   "equip.Holy_Cross": "Holy Cross",
   "equip.Holy_Water": "Holy Water",
+  "equip.Hunchback_Skin": "Hunchback Skin",
   "equip.Hunting_Trap": "Hunting Trap",
+  "equip.Huntsman_Skin": "Huntsman Skin",
   "equip.Hydra_Skin_Armor": "Hydra Skin Armor",
   "equip.IAPOSm_not_really_sure_where_the_term_APOSwitchAPOS_came_fr": "I'm not really sure where the term 'witch' came from.",
   "equip.I_was_a_fool_before,_but_now_everything_is_so_clear._The_ph": "I was a fool before, but now everything is so clear. The phylactery speaks to me, knows me, protects me.",
   "equip.Ice_Star": "Ice Star",
   "equip.Ichimonji": "Ichimonji",
   "equip.Illusion_Prism": "Illusion Prism",
   "equip.Impenetrable_forceplate_armor_worn_by_the_blackguard_conque": "Impenetrable forceplate armor worn by the blackguard conquerers of the necromantic uprising.",
   "equip.Imprisonment_Orb": "Imprisonment Orb",
   "equip.Indestructible_magical_armor_made_for_the_elite_stoneborn_c": "Indestructible magical armor made for the elite stoneborn champions of the eastern citadels.",
+  "equip.Infected_Skin": "Infected Skin",
   "equip.Iron_Mail": "Iron Mail",
   "equip.Iron_Quiver": "Iron Quiver",
   "equip.Iron_Shield": "Iron Shield",
   "equip.Ironwood_Bow": "Ironwood Bow",
   "equip.It_doesnAPOSt_seem_like_drinking_this_would_be_a_good_idea.": "It doesn't seem like drinking this would be a good idea.",
   "equip.It_is_said_that_the_ring_attunes_itAPOSs_wearer_to_the_eart": "It is said that the ring attunes it's wearer to the earth and it's life force.",
   "equip.It_seems_to_dispense_special_runes_upon_use._Perhaps...some": "It seems to dispense special runes upon use. Perhaps...some things are better left unknown.",
+  "equip.Jack_the_Ripper_Skin": "Jack the Ripper Skin",
   "equip.Jester_Skin": "Jester Skin",
   "equip.Jewel_Eye_Katana": "Jewel Eye Katana",
+  "equip.Join_my_legions_of_infected,_hero._Thanks_to:_WunderWafe": "Join my legions of infected, hero. Thanks to: WunderWafe",
   "equip.Kendo_Stick": "Kendo Stick",
   "equip.King_Knifeula_Skin": "King Knifeula Skin",
   "equip.Knight_of_the_Platinum_Order._Thanks_to:_DELer": "Knight of the Platinum Order. Thanks to: DELer",
   "equip.KoalaPOW": "KoalaPOW",
   "equip.Lab_Key": "Lab Key",
   "equip.Large_Firecracker": "Large Firecracker",
   "equip.Leaf_Bow": "Leaf Bow",
   "equip.Leaf_Dragon_Hide_Armor": "Leaf Dragon Hide Armor",
@@ -2537,16 +2551,17 @@
   "equip.Mermaid-maide_armor_woven_from_unbreakable_coral_threads.": "Mermaid-maide armor woven from unbreakable coral threads.",
   "equip.Mermaid_made_armor_woven_from_unbreakable_coral_threads.": "Mermaid made armor woven from unbreakable coral threads.",
   "equip.Meteor_Staff": "Meteor Staff",
   "equip.Midnight_Star": "Midnight Star",
   "equip.Mighty_felplate_armor_designed_for_the_most_powerful_of_dem": "Mighty felplate armor designed for the most powerful of demon lords.",
   "equip.Minor_Health_Potion": "Minor Health Potion",
   "equip.Minor_Magic_Potion": "Minor Magic Potion",
   "equip.Minotaur_Hide_Armor": "Minotaur Hide Armor",
+  "equip.Mischievous_Imp_Skin": "Mischievous Imp Skin",
   "equip.Missile_Wand": "Missile Wand",
   "equip.Mithril_Armor": "Mithril Armor",
   "equip.Mithril_Chainmail": "Mithril Chainmail",
   "equip.Mithril_Dagger": "Mithril Dagger",
   "equip.Mithril_Shield": "Mithril Shield",
   "equip.Morningstar_Skin": "Morningstar Skin",
   "equip.Muramasa": "Muramasa",
   "equip.Muscat": "Muscat",
@@ -2589,16 +2604,17 @@
   "equip.Plain_Katana": "Plain Katana",
   "equip.Planefetter_Orb": "Planefetter Orb",
   "equip.Plate_Mail": "Plate Mail",
   "equip.Platinum_Knight_Skin": "Platinum Knight Skin",
   "equip.Platinum_Rogue_Skin": "Platinum Rogue Skin",
   "equip.Platinum_Warrior_Skin": "Platinum Warrior Skin",
   "equip.Poison_Fang_Dagger": "Poison Fang Dagger",
   "equip.Pollen_Powder": "Pollen Powder",
+  "equip.Poltergeist_Skin": "Poltergeist Skin",
   "equip.Potion_of_Attack": "Potion of Attack",
   "equip.Potion_of_Defense": "Potion of Defense",
   "equip.Potion_of_Dexterity": "Potion of Dexterity",
   "equip.Potion_of_Health1": "Potion of Health1",
   "equip.Potion_of_Health2": "Potion of Health2",
   "equip.Potion_of_Health3": "Potion of Health3",
   "equip.Potion_of_Health4": "Potion of Health4",
   "equip.Potion_of_Health5": "Potion of Health5",
@@ -2923,16 +2939,17 @@
   "equip.Thunderclap_Scepter": "Thunderclap Scepter",
   "equip.Timelock_Orb": "Timelock Orb",
   "equip.Tincture_of_Courage": "Tincture of Courage",
   "equip.Tincture_of_Defense": "Tincture of Defense",
   "equip.Tincture_of_Dexterity": "Tincture of Dexterity",
   "equip.Tincture_of_Fear": "Tincture of Fear",
   "equip.Tincture_of_Life": "Tincture of Life",
   "equip.Tincture_of_Mana": "Tincture of Mana",
+  "equip.Tiny_Avatar_Skin": "Tiny Avatar Skin",
   "equip.Toats_sweet_robobow_broBANG": "Toats sweet robobow bro!",
   "equip.Tomb_of_the_Ancients_Key": "Tomb of the Ancients Key",
   "equip.Tome_of_Divine_Favor": "Tome of Divine Favor",
   "equip.Tome_of_Holy_Guidance": "Tome of Holy Guidance",
   "equip.Tome_of_Holy_Protection": "Tome of Holy Protection",
   "equip.Tome_of_Purification": "Tome of Purification",
   "equip.Tome_of_Rejuvenation": "Tome of Rejuvenation",
   "equip.Tome_of_Renewing": "Tome of Renewing",
@@ -2955,20 +2972,28 @@
   "equip.Uncommon_Insect_Egg": "Uncommon Insect Egg",
   "equip.Uncommon_Mystery_Egg": "Uncommon Mystery Egg",
   "equip.Uncommon_Penguin_Egg": "Uncommon Penguin Egg",
   "equip.Uncommon_Reptile_Egg": "Uncommon Reptile Egg",
   "equip.Uncommon_Spooky_Egg": "Uncommon Spooky Egg",
   "equip.Uncommon_Water_Egg": "Uncommon Water Egg",
   "equip.Uncommon_Woodland_Egg": "Uncommon Woodland Egg",
   "equip.Undead_Lair_Key": "Undead Lair Key",
+  "equip.Unlocked_during_Halloween_2014.": "Unlocked during Halloween 2014.",
+  "equip.Unlocked_during_Halloween_2014._Thanks_to:_Beige": "Unlocked during Halloween 2014. Thanks to: Beige",
+  "equip.Unlocked_during_Halloween_2014._Thanks_to:_DG": "Unlocked during Halloween 2014. Thanks to: DG",
+  "equip.Unlocked_during_Halloween_2014._Thanks_to:_Hawkmin": "Unlocked during Halloween 2014. Thanks to: Hawkmin",
+  "equip.Unlocked_during_Halloween_2014._Thanks_to:_Thqdfthqdf": "Unlocked during Halloween 2014. Thanks to: Thqdfthqdf",
+  "equip.Unlocked_during_Halloween_2014._Thanks_to:_WunderWafe": "Unlocked during Halloween 2014. Thanks to: WunderWafe",
   "equip.Unstable_Anomaly": "Unstable Anomaly",
   "equip.Use_this_to_make_an_awesome_sand_castleBANG_(Heals_nearby_i": "Use this to make an awesome sand castle! (Heals nearby injured players.)",
   "equip.Used_only_by_the_pirates_who_would_make_themselves_kings,_t": "Used only by the pirates who would make themselves kings, this cutlass is said to be cursed as each Pirate King seems to be killed rather unexpectedly.",
   "equip.Useless_Katana": "Useless Katana",
+  "equip.Vampire_Hunter_Skin": "Vampire Hunter Skin",
+  "equip.Vampiress_Skin": "Vampiress Skin",
   "equip.Vengeance_Armor": "Vengeance Armor",
   "equip.Verdant_Bow": "Verdant Bow",
   "equip.Vinesword": "Vinesword",
   "equip.Vintage_Port": "Vintage Port",
   "equip.Wand_of_Ancient_Terror": "Wand of Ancient Terror",
   "equip.Wand_of_Ancient_Warning": "Wand of Ancient Warning",
   "equip.Wand_of_Arcane_Flame": "Wand of Arcane Flame",
   "equip.Wand_of_Budding": "Wand of Budding",
@@ -3007,16 +3032,17 @@
   "equip.XP_Booster": "XP Booster",
   "equip.XP_Booster_1_hr": "XP Booster 1 hr",
   "equip.XP_Booster_20_min": "XP Booster 20 min",
   "equip.XP_Booster_Test": "XP Booster Test",
   "equip.Yellow_Drake_Egg": "Yellow Drake Egg",
   "equip.Yellow_Gumball": "Yellow Gumball",
   "equip.You_are_not_a_unique_snowflake._YouAPOSre_like_one_of_five_": "You are not a unique snowflake. You're like one of five or something.",
   "equip.You_can_hear_the_screams_of_tortured_souls_as_you_draw_this": "You can hear the screams of tortured souls as you draw this bow.",
+  "equip.Zombie_Nurse_Skin": "Zombie Nurse Skin",
   "error.loadError": "Load error, retrying",
   "forbiddenJungle.Basilisk": "Basilisk",
   "forbiddenJungle.Basilisk_Baby": "Basilisk Baby",
   "forbiddenJungle.Boss_Totem": "Boss Totem",
   "forbiddenJungle.Great_Coil_Snake": "Great Coil Snake",
   "forbiddenJungle.Great_Snake_Egg": "Great Snake Egg",
   "forbiddenJungle.Great_Temple_Snake": "Great Temple Snake",
   "forbiddenJungle.Jungle_Brazier": "Jungle Brazier",
@@ -4870,48 +4896,58 @@
   "skins.Artemis": "Artemis",
   "skins.Ascended_Sorcerer": "Ascended Sorcerer",
   "skins.B.B._Wolf": "B.B. Wolf",
   "skins.Bandit": "Bandit",
   "skins.Bashing_Bride": "Bashing Bride",
   "skins.Brigand": "Brigand",
   "skins.Chemist": "Chemist",
   "skins.Cupid": "Cupid",
+  "skins.Dark_Elf_Huntress": "Dark Elf Huntress",
   "skins.Deadly_Vixen": "Deadly Vixen",
+  "skins.Death": "Death",
   "skins.Death_Mage": "Death Mage",
   "skins.Decorated_Paladin": "Decorated Paladin",
+  "skins.Demon_Spawn": "Demon Spawn",
   "skins.Down_Under": "Down Under",
   "skins.Drow_Trickster": "Drow Trickster",
   "skins.Elder_Wizard": "Elder Wizard",
   "skins.Eligible_Bachelor": "Eligible Bachelor",
   "skins.Father_Time": "Father Time",
   "skins.Forest_Ward": "Forest Ward",
   "skins.Founding_Father": "Founding Father",
+  "skins.Frankensteins_Monster": "Frankensteins Monster",
   "skins.Geb_Set_Skin": "Geb Set Skin",
   "skins.Gentleman": "Gentleman",
   "skins.Ghost_Huntress": "Ghost Huntress",
   "skins.Holy_Avenger": "Holy Avenger",
+  "skins.Hunchback": "Hunchback",
+  "skins.Huntsman": "Huntsman",
   "skins.Iceman": "Iceman",
+  "skins.Infected_Assassin": "Infected Assassin",
+  "skins.Jack_the_Ripper": "Jack the Ripper",
   "skins.Jester": "Jester",
   "skins.Juggernaught": "Juggernaught",
   "skins.Juggernaut": "Juggernaut",
   "skins.King_Knifeula": "King Knifeula",
   "skins.Knight_of_the_Round": "Knight of the Round",
   "skins.Lil_Red": "Lil Red",
   "skins.Little_Helper": "Little Helper",
   "skins.Loki": "Loki",
   "skins.Merlin": "Merlin",
+  "skins.Mischievous_Imp": "Mischievous Imp",
   "skins.Morningstar": "Morningstar",
   "skins.Nexus_no_Miko": "Nexus no Miko",
   "skins.Nun": "Nun",
   "skins.Oryx_Set_Skin": "Oryx Set Skin",
   "skins.Phylactery_Set_Skin": "Phylactery Set Skin",
   "skins.Platinum_Knight": "Platinum Knight",
   "skins.Platinum_Rogue": "Platinum Rogue",
   "skins.Platinum_Warrior": "Platinum Warrior",
+  "skins.Poltergeist": "Poltergeist",
   "skins.Puppet_Master": "Puppet Master",
   "skins.Pyramid_Revenant": "Pyramid Revenant",
   "skins.Ranger": "Ranger",
   "skins.Red_Marauder": "Red Marauder",
   "skins.Robed_Priest": "Robed Priest",
   "skins.Robin_Hood": "Robin Hood",
   "skins.Santa": "Santa",
   "skins.Scarlet_Order_Necromancer": "Scarlet Order Necromancer",
@@ -4933,20 +4969,24 @@
   "skins.Slime_Sorcerer": "Slime Sorcerer",
   "skins.Slime_Trickster": "Slime Trickster",
   "skins.Slime_Warrior": "Slime Warrior",
   "skins.Slime_Wizard": "Slime Wizard",
   "skins.Sorceress": "Sorceress",
   "skins.Stanley_the_Spring_Bunny": "Stanley the Spring Bunny",
   "skins.Stealth": "Stealth",
   "skins.Swoll_Paladin_Set_Skin": "Swoll Paladin Set Skin",
+  "skins.Tiny_Avatar": "Tiny Avatar",
   "skins.Traditional": "Traditional",
+  "skins.Vampire_Hunter": "Vampire Hunter",
+  "skins.Vampiress": "Vampiress",
   "skins.Warlock": "Warlock",
   "skins.Witch": "Witch",
   "skins.Witch_Doctor": "Witch Doctor",
+  "skins.Zombie_Nurse": "Zombie Nurse",
   "snakePit.Brown_Python": "Brown Python",
   "snakePit.Fire_Python": "Fire Python",
   "snakePit.Greater_Pit_Snake": "Greater Pit Snake",
   "snakePit.Greater_Pit_Viper": "Greater Pit Viper",
   "snakePit.Pit_Snake": "Pit Snake",
   "snakePit.Pit_Viper": "Pit Viper",
   "snakePit.Snakepit_Button": "Snakepit Button",
   "snakePit.Snakepit_Dart_Thrower": "Snakepit Dart Thrower",
@@ -5176,16 +5216,24 @@
   "stringlist.Skull_Shrine.many.0": "Insects!  {COUNT} Skull Shrines still protect me",
   "stringlist.Skull_Shrine.many.1": "You hairless apes will never overcome my {COUNT} Skull Shrines!",
   "stringlist.Skull_Shrine.many.2": "You frail humans will never defeat my {COUNT} Skull Shrines!",
   "stringlist.Skull_Shrine.many.3": "Miserable worms like you cannot stand against my {COUNT} Skull Shrines!",
   "stringlist.Skull_Shrine.many.4": "Imbeciles!  My {COUNT} Skull Shrines make me invincible!",
   "stringlist.Skull_Shrine.new.0": "Your futile efforts are no match for a Skull Shrine!",
   "stringlist.Skull_Shrine.one.0": "Pathetic fools!  A Skull Shrine guards me!",
   "stringlist.Skull_Shrine.one.1": "Miserable scum!  My Skull Shrine is invincible!",
+  "stringlist.Zombie_Horde.death.0": "The death of my Zombie Horde is unacceptable! You will pay for your insolence!",
+  "stringlist.Zombie_Horde.killed.0": "{KILLER}, I will kill you myself and turn you into the newest member of my Zombie Horde!",
+  "stringlist.Zombie_Horde.many.0": "The full strength of my Zombie Horde has been unleashed!",
+  "stringlist.Zombie_Horde.many.1": "Let the apocalypse begin!",
+  "stringlist.Zombie_Horde.many.2": "Quiver with fear, peasants, my Zombie Horde has arrived!",
+  "stringlist.Zombie_Horde.new.0": "At last, my Zombie Horde will eradicate you like the vermin that you are!",
+  "stringlist.Zombie_Horde.one.0": "A small taste of my Zombie Horde should be enough to eliminate you!",
+  "stringlist.Zombie_Horde.one.1": "My Zombie Horde will teach you the meaning of fear!",
   "stringlist.shtrs_Defense_System.death.0": "The Avatar has been defeated!",
   "stringlist.shtrs_Defense_System.death.1": "How could simpletons kill The Avatar of the Forgotten King!?",
   "stringlist.shtrs_Defense_System.killed.0": "{KILLER} has unleashed an evil upon this Realm.",
   "stringlist.shtrs_Defense_System.killed.1": "{KILLER}, you have awoken the Forgotten King. Enjoy a slow death!",
   "stringlist.shtrs_Defense_System.killed.2": "{KILLER} will never survive what lies in the depths of the Shatters.",
   "stringlist.shtrs_Defense_System.killed.3": "Enjoy your little victory while it lasts, {KILLER}!",
   "stringlist.shtrs_Defense_System.new.0": "The Shatters has been discovered!?!",
   "stringlist.shtrs_Defense_System.new.1": "The Forgotten King has raised his Avatar!",