1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
diff -r -x 'diff.*' -x client.swf -x version.txt -x '*.xml' -x _ '--unified=8' -b -B ../current/json/Objects.json ./json/Objects.json
--- ../current/json/Objects.json	2016-08-18 19:00:24.286385110 +0000
+++ ./json/Objects.json	2016-08-29 19:10:24.362531227 +0000
@@ -17467,33 +17467,53 @@
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "4",
       "DisplayId": "Rosen Blade Skin"
     },
     {
       "type": "0x1564",
-      "id": "Ginja Skin",
+      "id": "Djinja Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "playerskins16",
         "Index": "09"
       },
       "SlotType": "10",
-      "Description": "Customize your Ninja with the Ginja Skin.",
+      "Description": "Customize your Ninja with the Djinja Skin.",
       "Activate": {
         "_": "UnlockSkin",
         "skinType": "1030"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "4",
-      "DisplayId": "Ginja Skin"
+      "DisplayId": "Djinja Skin"
+    },
+    {
+      "type": "0x1580",
+      "id": "Baby Djinja Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "102"
+      },
+      "SlotType": "10",
+      "Description": "Customize your Ninja with the Baby Djinja Skin.",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "29840"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "DisplayId": "Baby Djinja Skin"
     },
     {
       "type": "0xab0",
       "id": "Minor Health Potion",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "lofiObj2",
@@ -72616,16 +72636,29 @@
         "File": "playerskins",
         "Index": "90"
       },
       "PlayerClassType": "0x0323",
       "UnlockSpecial": "Unlocked during Halloween 2014. Thanks to: Beige",
       "DisplayId": "Poltergeist"
     },
     {
+      "type": "0x7490",
+      "id": "Baby Djinja",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "102"
+      },
+      "PlayerClassType": "0x0326",
+      "NoSkinSelect": "",
+      "DisplayId": "Baby Djinja"
+    },
+    {
       "type": "0x0401",
       "id": "Oryx Set Skin",
       "Skin": "",
       "Class": "Skin",
       "AnimatedTexture": {
         "File": "playerskins16",
         "Index": "00"
       },
@@ -72740,26 +72773,26 @@
         "Index": "08"
       },
       "PlayerClassType": "0x0326",
       "NoSkinSelect": "",
       "DisplayId": "Rosen Blade"
     },
     {
       "type": "0x0406",
-      "id": "Ginja",
+      "id": "Djinja",
       "Skin": "",
       "Class": "Skin",
       "AnimatedTexture": {
         "File": "playerskins16",
         "Index": "09"
       },
       "PlayerClassType": "0x0326",
       "NoSkinSelect": "",
-      "DisplayId": "Ginja"
+      "DisplayId": "Djinja"
     },
     {
       "type": "0x0e28",
       "id": "Snakepit Guard Spawner",
       "Class": "Character",
       "Enemy": "",
       "NoMiniMap": "",
       "AnimatedTexture": {
Binary files ../current/sheets/chars16x16dEncounters2.png and ./sheets/chars16x16dEncounters2.png differ
Binary files ../current/sheets/chars8x8dEncounters.png and ./sheets/chars8x8dEncounters.png differ
Binary files ../current/sheets/d3LofiObj.png and ./sheets/d3LofiObj.png differ
Binary files ../current/sheets/lofiObj3.png and ./sheets/lofiObj3.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' -x _ '--unified=8' -b -B ../current/strings.json ./strings.json
--- ../current/strings.json	2016-08-18 19:00:20.674385039 +0000
+++ ./strings.json	2016-08-29 19:10:21.230530945 +0000
@@ -27,24 +27,18 @@
   "ArenaQueryPanel.leaderboard": "Leaderboard",
   "ArenaQueryPanel.title": "Arena Guard",
   "BadDomainView.text": "Play at {link}",
   "BattleSummaryDialog.bestSubtitle": "All Time",
   "BattleSummaryDialog.close": "Close",
   "BattleSummaryDialog.currentSubtitle": "This Battle",
   "BattleSummaryDialog.title": "Your Arena Summary",
   "BattleSummaryText.waveNumber": "{waveNumber} waves",
-  "BeginnersPackage.timeLeftPlural": "{time} days left!",
-  "BeginnersPackage.timeLeftSingular": "1 day left!",
   "BeginnersPackageOfferDialog.dayLeft": "{days} day left!",
   "BeginnersPackageOfferDialog.daysLeft": "{days} days left!",
-  "BeserkComparison.armoredEffect": "Armored for {duration} secs",
-  "BeserkComparison.generalEffect": "{condition} for {duration} secs",
-  "BeserkComparison.partyEffect": "Party Effect: {effect}",
-  "BeserkComparison.speedyEffect": "Speedy for {duration} secs",
   "BoostPanel.activeBoosts": "Active Boosts",
   "BoostPanel.dropRate": "{rate} drop rate",
   "BoostPanel.tierLevelIncreased": "Tier level increased",
   "ButtonBar.or": "or",
   "BuyBeginnersPackageCommand.registerDialog": "In order to buy the Beginners package, you must be a registered user.",
   "BuyCharSlotDialog.leftButton": "Cancel",
   "BuyCharSlotDialog.rightButton": "Buy Slot",
   "BuyCharSlotDialog.text": "New Character Slot?",
@@ -88,19 +82,16 @@
   "ClassDetailView.fameTitle": "Most Fame Achieved",
   "ClassDetailView.levelTitle": "Highest Level Achieved",
   "ClassDetailView.nextGoal": "Next Goal:",
   "ClassDetailView.nextGoalDetail": "Earn {goal} Fame with {quest}",
   "ClassDetailView.questCompleted": "Class Quests Completed",
   "ClientUpdate.description": "Client version: {client}\\nServer version: {server}",
   "ClientUpdate.leftButton": "Ok",
   "ClientUpdate.title": "Client Update Needed",
-  "CloakComparison.output": "Invisible for {duration} secs",
-  "CloakComparison.selfEffect": "Effect on Self: {effect}",
-  "CloakComparison.teleport": "Teleport to Target",
   "Close.text": "close",
   "ClosedGiftChest.title": "Gift Chest",
   "ConfirmBuyModal.amount": "Amount: ",
   "ConfirmBuyModal.desc": "Are you sure that you want to buy this item?",
   "ConfirmBuyModal.title": "Confirm Purchase",
   "ConfirmDelete.cancel": "Cancel",
   "ConfirmDelete.delete": "Delete",
   "ConfirmDelete.verifyDeletion": "Verify Deletion",
@@ -200,17 +191,16 @@
   "EquipmentType.Shuriken": "Shuriken",
   "EquipmentType.Skull": "Skull",
   "EquipmentType.Spell": "Spell",
   "EquipmentType.Staff": "Staff",
   "EquipmentType.Sword": "Sword",
   "EquipmentType.Tome": "Tome",
   "EquipmentType.Trap": "Trap",
   "EquipmentType.Wand": "Wand",
-  "EquipmentType.Want": "Want",
   "Error.AccountAlreadyExistsForGUID": "Account already exists for new GUID",
   "Error.accountNotFound": "Account not found",
   "Error.alreadyOwnsSkin": "Skin purchase failed. Player already owns skin.",
   "Error.databaseTransactionError": "DB transaction aborted.",
   "Error.emailAlreadyUsed": "Email already used",
   "Error.emailAlreadyVerified": "Email already verified",
   "Error.emailNotRecognized": "Email not recognized",
   "Error.incorrectEmailOrPassword": "Incorrect email or password",
@@ -228,19 +218,16 @@
   "Error.noSuchEmail": "No such email",
   "Error.notEnoughGold": "Not enough Gold",
   "Error.priceNotFoundForSkin": "Price data of indicated skin not found. Cannot purchase.",
   "Error.skinClassRequirementUnmet": "Player does not meet the skin\\'s class level requirement.",
   "Error.skinNotPurcasable": "This skin is not currently purchasable.",
   "Error.skinTypeIsNotASkin": "Skin type is not a skin",
   "Error.skinTypeIsNotAnItem": "Skin type is not an item.",
   "Error.targetAccountNotFound": "Target account not found",
-  "ErrorDialog.erroHasOccured": "An error has occured:\\n{errorText}",
-  "ErrorDialog.ok": "Ok",
-  "ErrorDialog.oops": "D'oh, this isn't good",
   "ErrorWindow.buttonOK": "OK",
   "EvolveDialog.title": "Your pet is evolving!",
   "ExpBar.level": "Lvl {level}",
   "FameBonus.Accurate": "Bonus: Accurate",
   "FameBonus.AccurateDescription": "Accuracy of better than 25%",
   "FameBonus.Ancestor": "Bonus: Ancestor",
   "FameBonus.AncestorDescription": "The first in a long line of heros",
   "FameBonus.BootsOnGround": "Bonus: Boots on the Ground",
@@ -328,21 +315,18 @@
   "FusionStrength.Good": "GOOD",
   "FusionStrength.Great": "GREAT",
   "FusionStrength.Low": "LOW",
   "FusionStrength.Maxed": "MAXED",
   "FusionStrength.None": "NONE",
   "FusionStrength.text": "Fusion Strength",
   "GameObject.immune": "Immune",
   "GeneralProjectileComparison.armorPiercing": "Ignores defense of target",
-  "GeneralProjectileComparison.damage": "Damage: {data}",
   "GeneralProjectileComparison.multiHit": "Shots hit multiple targets",
   "GeneralProjectileComparison.passesCover": "Shots pass through obstacles",
-  "GeneralProjectileComparison.range": "Range: {range}",
-  "GeneralProjectileComparison.shots": "Shots: {data}",
   "GetAppEngineNewsTask.error": "Unable to get news data",
   "GiftStatusDisplay.text": "New Gift",
   "GiftStatusDisplay.vaultText": "New Gift in Vault",
   "Gold.Buy": "Buy Gold",
   "Gold.NotEnough": "Not Enough Gold",
   "Gold.notEnoughForItem": "You do not have enough Gold for this item. Would you like to buy Gold?",
   "Guild.DemoteLeft": "Cancel",
   "Guild.DemoteRight": "Demote",
@@ -406,17 +390,16 @@
   "LanguagesScreen.title": "Languages",
   "LeaderboardWeeklyResetTime.label": "{time} Until Leaderboard Resets",
   "LeavePetYardDialog.text": "The Caretaker needs a minute\\n to upgrade your yard.\\n\\nPlease leave so we can begin construction!",
   "LeavePetYardDialog.title": "Please leave the pet yard",
   "Legal.tos1": "Our Privacy Policy, Terms of Service, and End User License Agreement have changed.\\n\\n\\nView changes:",
   "Legal.tos2": "{policy}Privacy Policy{_policy}\\n\\n{tou}Terms of Service & EULA{_tou}",
   "Legends.EmptyList": "No Legends Yet!",
   "LinkWebAccountDialog.alphaNumError": "Password must contain both letters and numbers.",
-  "LinkWebAccountDialog.charRepeatError": "No more than 2 of the same characters in a row",
   "LinkWebAccountDialog.leftButton": "Cancel",
   "LinkWebAccountDialog.matchError": "New passwords must match",
   "LinkWebAccountDialog.matchErrorSame": "Password must be different than old.",
   "LinkWebAccountDialog.repeatError": "Password must not repeat characters.",
   "LinkWebAccountDialog.rightButton": "Replace",
   "LinkWebAccountDialog.shortError": "Password must be at least 10 characters.",
   "LinkWebAccountDialog.text": "{warn}ALL PROGRESS, GOLD, ETC.{/warn} on this account will be replaced with your realmofthemadgod.com account.  This process {warn}CAN NOT BE REVERSED{/warn}. Think carefully before hitting Replace.",
   "LinkWebAccountDialog.title": "Replace with an existing web account",
@@ -453,17 +436,16 @@
   "MysteryBoxRollModal.playAgainString": "Play Again for {cost}",
   "MysteryBoxRollModal.playAgainXTimesString": "Play {repeat} Times for {cost}",
   "MysteryBoxRollModal.pleaseTryAgainString": "Please Try Again",
   "MysteryBoxRollModal.purchaseFailedString": "Purchase Failed",
   "MysteryBoxRollModal.rewardsInVaultString": "Rewards will be placed in your Vault!",
   "MysteryBoxRollModal.youWonString": "You Won!",
   "MysteryBoxSelectEntry.newString": "New!",
   "MysteryBoxSelectEntry.onSaleString": "On Sale",
-  "MysteryBoxSelectEntry.saleEndString": "This sale ends in",
   "MysteryBoxSelectModal.titleString": "Mystery Boxes!",
   "NameChangerPanel.change": "Change {cost}",
   "NameChangerPanel.choose": "Choose",
   "NameChangerPanel.requireRank": "Rank Required",
   "NameChangerPanel.text": "Choose Account Name",
   "NameChangerPanel.yourName": "Your name is:\\n{name}",
   "NameChangerPanelMediator.text": "In order to choose an account name, you must be registered",
   "NewAbility.gratz": "New Ability",
@@ -645,45 +627,39 @@
   "Options.UseBuyMagic": "Use/Buy Magic Potion",
   "Options.UseBuyMagicDesc": "This key will use magic potions if available, buy if unavailable",
   "Options.UseSpecialAbility": "Use Special Ability",
   "Options.UseSpecialAbilityDesc": "This key will activate your special ability",
   "Options.chatAll": "Player Chat",
   "Options.chatAllDesc": "Toggle Player chat ON / OFF. Does not hide System messages. NOTE: This also affects Whisper and Guild Chat options.",
   "Options.chatGuild": "Guild Chat",
   "Options.chatGuildDesc": "Toggle Guild chat ON or OFF. Turn this ON, Player Chat OFF, and Whisper Chat OFF to only display chats from Guild members.",
-  "Options.chatStarReq": "Star Requirement",
   "Options.chatStarReqDesc": "Only see chat from players who have earned at least this amount of stars. May help with chat spam.",
   "Options.chatTrade": "Trade Requests",
   "Options.chatTradeDesc": "When turned OFF you will not see any incoming Trade requests. You can still initiate Trades with other players.",
   "Options.chatWhisper": "Whisper Chat",
   "Options.chatWhisperDesc": "Toggle Whisper chat ON or OFF. Turn this ON, Player Chat OFF, and Guild Chat OFF to only display Whispers.  May help with chat spam.",
   "Options.continueButton": "continue",
-  "Options.dubstepMode": "Dubstep Mode",
-  "Options.dubstepModeDesc": "!WARNING! Avoid if prone to light induced seizures.",
   "Options.forceChatQuality": "Force High Quality Chat Text",
   "Options.forceChatQualityDesc": "Even when Flash Player is set to low quality, force chat text to be in high quality.",
   "Options.hidePlayerChat": "Hide Chat Window",
   "Options.hidePlayerChatDesc": "Hides the chat window when turned ON.",
   "Options.homeButton": "back to home",
   "Options.legal1": "Privacy Policy",
   "Options.legal1Desc": "Privacy Policy for Realm of the Mad God",
   "Options.legal2": "Terms of Service & EULA",
   "Options.legal2Desc": "Terms of Service and End User License Agreement for Realm of the Mad God",
   "Options.legalView": "View",
   "Options.resetToDefaultsButton": "reset to defaults",
   "Options.starReq": "Star Requirement",
   "Options.title": "Options",
-  "OrbComparison.damageEffect": "Damaging for {duration} secs",
-  "OrbComparison.selfOutput": "Effect on Self: {effect}",
-  "OrbComparison.speedyEffect": "Speedy for {duration} secs",
-  "OrbComparison.statis": "{duration} secs",
   "OrbComparison.statisOutput": "Stasis on group: {stasis}",
   "PackageButton.day": "1 day",
   "PackageButton.days": "{number} days",
+  "PackageOfferDialog.BuyNow": "Buy Now",
   "PackageOfferDialog.buyNow": "Buy Now",
   "PackagePurchased.body": "Check your vault for any items purchased",
   "PackagePurchased.message": "Your purchase was successful",
   "PackagePurchased.title": "Package Purchased",
   "Panel.enter": "Enter",
   "Panel.viewButton": "View",
   "PaymentType.creditCard": "Credit Cards, etc.",
   "PaymentType.google": "Google Checkout",
@@ -721,26 +697,28 @@
   "Pets.canine": "Canine",
   "Pets.caretakerPanelButtonInfo": "Info",
   "Pets.caretakerPanelButtonUpgrade": "Upgrade",
   "Pets.caretakerPanelTitle": "Yard Caretaker",
   "Pets.common": "Common",
   "Pets.divine": "Divine",
   "Pets.eggHatched": "Egg hatched!",
   "Pets.exotic": "Exotic",
+  "Pets.farm": "Farm",
   "Pets.feline": "Feline",
-  "Pets.fnfollow": "Unfollow",
   "Pets.follow": "Follow",
   "Pets.following": "{petName} is now following you.",
   "Pets.fullyMaxed": "Fully Maxed",
   "Pets.fuseError": "You must have two pets selected in order to fuse",
   "Pets.humanoid": "Humanoid",
+  "Pets.insect": "Insect",
   "Pets.legendary": "Legendary",
   "Pets.miscellaneous": "? ? ? ?",
   "Pets.notFollowing": "Your pet is no longer following you.",
+  "Pets.penguin": "Penguin",
   "Pets.petInteractionPanelFeedPetButton": "Feed Pet",
   "Pets.petInteractionPanelFusePetButton": "Fuse Pet",
   "Pets.petInteractionPanelTitle": "Upgrade Pet",
   "Pets.rare": "Rare",
   "Pets.registerToAllowEntry": "You must be registered to upgrade your pet yard",
   "Pets.reptile": "Reptile",
   "Pets.sendToYard": "Send to yard",
   "Pets.spooky": "Spooky",
@@ -766,28 +744,25 @@
   "PlayerMenu.UnMute": "UnMute",
   "PlayerMenu.Unignore": "Unignore",
   "PlayerMenu.Waiting": "Waiting",
   "PlayerToolTip.clickMessage": "(Click to open menu)",
   "PoisonComparison.data": "{damage} HP over {duration} secs within {radius} sqrs",
   "PoisonComparison.output": "Poison Grenade: {data}",
   "PortalPanel.full": "Full",
   "PortalPanel.locked": "Locked",
-  "PrismComparison.data": "{duration} secs",
   "PrismComparison.output": "Decoy: {data}",
   "ProTipText.text": "Tip: {tip}",
   "ProductionNoServersDialogFactory.body": "Realm of the Mad God is currently offline.\\n\\nGo here for more information: {forums_link}.",
   "ProductionNoServersDialogFactory.tile": "Oryx Sleeping",
   "Purchase.buyFor": "Buy for {cost}",
   "PurchaseCharacter.characterCost": "This character class costs {cost} Gold. Would you like to buy Gold?",
   "PurchaseCharacterCommand.notEnoughGold": "This character class costs {costs}",
   "PurchaseCharacterCommand.registerPrompt": "In order to unlock a class type you must be a registered user.",
   "QuestToolTip.quest": "Quest!",
-  "QuiverComparison.data": "{condition} for {duration} secs",
-  "QuiverComparison.output": "Shot Effect: {data}",
   "RankText.rank": "Rank: ",
   "RankToolTip.completing_class_quests": "You can earn more by completing Class Quests.",
   "RankToolTip.earned": "You have earned {numStars}",
   "RegisterPrompt.left": "Cancel",
   "RegisterPrompt.notRegistered": "Not Registered",
   "RegisterPrompt.right": "Register",
   "RegisterWebAccountDialog.checkbox": "I agree to the {link}Terms of Use{_link}.",
   "RegisterWebAccountDialog.checkboxError": "Must agree to register",
@@ -814,54 +789,41 @@
   "ResurrectionView.YouDied": "YOU HAVE DIED!",
   "ResurrectionView.deathText": "Realm of the Mad God is a perma-death game. If you die, you'll lose your character and any items in your inventory, but you'll gain fame based on your deeds. You've just been saved from death. This won't happen again, so be careful adventurer!",
   "ResurrectionView.text0": "Realm of the Mad God is a perma-death game.",
   "ResurrectionView.text1": "If you die, you'll lose your character and any items in your inventory, but you'll gain fame based on your deeds.",
   "ResurrectionView.text2": "You've just been saved from death. ",
   "ResurrectionView.text3": "This won't happen again, so be careful adventurer!",
   "SaveTextureDialog.Cancel": "Cancel",
   "SaveTextureDialog.Save": "Save",
-  "ScepterComparison.condition": "{condition} for {duration} secs",
-  "ScepterComparison.lightning": "{damage} to {targets} targets",
-  "ScepterComparison.lightningOutput": "Lightning: {data}",
-  "ScepterComparison.shotOutput": "Shot Effect: {effect}",
-  "Screens.": "languages",
   "Screens.account": "account",
   "Screens.back": "back",
   "Screens.classes": "classes",
   "Screens.credits": "credits",
   "Screens.done": "done",
   "Screens.editor": "editor",
   "Screens.languages": "languages",
   "Screens.legends": "legends",
   "Screens.main": "main",
   "Screens.migrate": "migrate",
   "Screens.play": "play",
   "Screens.quit": "quit",
   "Screens.servers": "servers",
   "Screens.support": "support",
-  "SealComparison.damge": "Damaging for {duration} secs",
-  "SealComparison.output": "Party Effect: {effect}",
-  "SealComparison.range": "Within {range} sqrs",
   "SellableObjectPanel.buy": "Buy for {cost}",
   "SellableObjectPanel.requireRank": "{amount} Rank Required",
   "SellableObjectPanel.requireRankSprite": "Rank Required:",
   "SellableObjectPanel.text": "Thing for Sale",
   "SellableObjectPanelMediator.text": "In order to use {type} you must be a registered user.",
   "ServerBox.best": "Best Server",
   "ServerBox.crowded": "Crowded",
   "ServerBox.full": "Full",
   "ServerBox.normal": "Normal",
   "Servers.select": "Select Server",
-  "ShieldComparison.armor": "Armor Broken for {duration} secs",
-  "ShieldComparison.output": "Party Effect: {effect}",
   "Skins.Classic": "Classic",
-  "SkullComparison.output": "Steal: {data}",
-  "SlotComparison.mpCost": "MP Cost: {cost}",
-  "SpellComparison.damage": "Damage {damage}",
   "SpellComparison.range": "{range} Range",
   "StatData.Level": "Level",
   "StatData.MaxHP": "Maximum HP",
   "StatData.MaxMP": "Maximum MP",
   "StatData.Size": "Size",
   "StatData.UnknownStat": "Unknown Stat",
   "StatData.XP": "XP",
   "StatModel.attack.description": "This stat increases the amount of damage done.",
@@ -912,36 +874,30 @@
   "TimeWriter.minute": "{minutes}d",
   "TimeWriter.minutes": "{minutes}m",
   "TimeWriter.second": "{second}s",
   "TimeWriter.seconds": "{seconds}s",
   "Timespan.all": "All Time",
   "Timespan.month": "Month",
   "Timespan.week": "Week",
   "TitleView.Copyright": "© 2016 Deca Games OÜ",
-  "TomeComparison.armored": "Armored for {duration} secs",
   "TomeComparison.clears": "Removes negative conditions",
-  "TomeComparison.heal": "{amount} HP within {range} sqrs",
-  "TomeComparison.self": "Effect on Self: {armored}",
   "Trade.Accept": "Accept",
   "Trade.Reject": "Reject",
   "TradeInventory.clickItemsToTrade": "Click items you want to trade",
   "TradeInventory.notEnoughSpace": "Not enough space for trade!",
   "TradeInventory.playerIsSelectingItems": "Player is selecting items",
   "TradeInventory.tradeAccepted": "Trade accepted!",
   "TradeRequestPanel.wantsTrade": "{name} wants to trade with you",
   "TransferAccountView.kabamemail": "Your Kabam.com email",
   "TransferAccountView.kabampwd": "Your Kabam.com password",
   "TransferAccountView.newemail": "New Email",
   "TransferAccountView.newpwd": "New Password",
   "TransferAccountView.rightButton": "Migrate Account",
-  "TrapComparison.damage": "{damage} HP within {radius} sqrs",
   "TrapComparison.output": "Trap: {data}",
-  "TrapComparison.paralyzed": "Paralyzed for {duration} secs",
-  "TrapComparison.slowed": "Slowed for {duration} secs",
   "Vault.chest": "Vault Chest",
   "Vault.chestDescription": "A chest that will safely store 8 items and is accessible by all of your characters.",
   "VerifyAgeCommand": "Unable to verify age",
   "VerifyWebAccountDialog.button": "Send Verification Email",
   "VerifyWebAccountDialog.title": "Please verify your email address",
   "ViewGuildBoard.close": "Close",
   "ViewGuildBoard.edit": "Edit",
   "WebAccountDetailDialog.changePassword": "Click here to change password",
@@ -1132,39 +1088,33 @@
   "conditionEffect.Stunned": "Stunned",
   "conditionEffect.Unstable": "Unstable",
   "conditionEffect.Weak": "Weak",
   "costText_.text": "or buy now for {unlockCost}",
   "dungeons.Abyss_of_Demons": "Abyss of Demons",
   "dungeons.Battle_for_the_Nexus": "Battle for the Nexus",
   "dungeons.Beachzone": "Beachzone",
   "dungeons.BelladonnaAPOSs_Garden": "Belladonna's Garden",
-  "dungeons.BelladonnaAPOSs_Thicket": "Belladonna's Thicket",
   "dungeons.BilgewaterAPOSs_Grotto": "Bilgewater's Grotto",
   "dungeons.Candyland_Hunting_Grounds": "Candyland Hunting Grounds",
   "dungeons.Cave_of_A_Thousand_Treasures": "Cave of A Thousand Treasures",
   "dungeons.Consolation_of_Draconis": "Consolation of Draconis",
   "dungeons.Court_of_Oryx": "Court of Oryx",
   "dungeons.Davy_JonesAPOS_Locker": "Davy Jones' Locker",
-  "dungeons.Davy_JonesAPOSs_Locker": "Davy Jones's Locker",
   "dungeons.Deadwater_Docks": "Deadwater Docks",
   "dungeons.Dreamscape_Labyrinth": "Dreamscape Labyrinth",
   "dungeons.Empty_Room": "Empty Room",
-  "dungeons.Epic_Forest_Maze": "Epic Forest Maze",
-  "dungeons.Epic_Pirate_Cave": "Epic Pirate Cave",
-  "dungeons.Epic_Spider_Den": "Epic Spider Den",
   "dungeons.Forbidden_Jungle": "Forbidden Jungle",
   "dungeons.Forest_Maze": "Forest Maze",
   "dungeons.Haunted_Cemetery": "Haunted Cemetery",
   "dungeons.Haunted_Cemetery_Final_Battle": "Haunted Cemetery Final Battle",
   "dungeons.Haunted_Cemetery_Gates": "Haunted Cemetery Gates",
   "dungeons.Haunted_Cemetery_Graves": "Haunted Cemetery Graves",
   "dungeons.Ice_Cave": "Ice Cave",
   "dungeons.Lair_of_Draconis": "Lair of Draconis",
-  "dungeons.Lair_of_Shaitain": "Lair of Shaitain",
   "dungeons.Lair_of_Shaitan": "Lair of Shaitan",
   "dungeons.Mad_Lab": "Mad Lab",
   "dungeons.Manor_of_the_Immortals": "Manor of the Immortals",
   "dungeons.Mountain_Temple": "Mountain Temple",
   "dungeons.Ocean_Trench": "Ocean Trench",
   "dungeons.Parasite_Den": "Parasite Den",
   "dungeons.Pirate_Cave": "Pirate Cave",
   "dungeons.Puppet_MasterAPOSs_Encore": "Puppet Master's Encore",
@@ -1490,108 +1440,76 @@
   "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",
   "encounters.shtrs_blobomb_maker": "shtrs blobomb maker",
   "encounters.shtrs_encounterchestspawner": "shtrs encounterchestspawner",
   "encounters.shtrs_encounterportalspawn": "shtrs encounterportalspawn",
   "encounters.shtrs_eyeswarmer": "Eye of the Avatar",
   "encounters.shtrs_portal_maker": "shtrs portal maker",
   "encounters.shtrs_shadowmans": "Shades of the Avatar",
-  "epicforestMaze.Epic_Forest_Goblin": "Forest Goblin Bruiser",
-  "epicforestMaze.Epic_Forest_Goblin_Mage": "Forest Goblin Nechromancer",
-  "epicforestMaze.Epic_Forest_Maze_Key": "Epic Forest Maze Key",
-  "epicforestMaze.Epic_Forest_Maze_Portal": "Epic Forest Maze Portal",
-  "epicforestMaze.Epic_Forest_Turret_1": "Epic Forest Turret 1",
-  "epicforestMaze.Epic_Forest_Turret_2": "Epic Forest Turret 2",
-  "epicforestMaze.Epic_Forest_Turret_3": "Epic Forest Turret 3",
   "epicforestMaze.Epic_Larva": "Megamoth Larva",
   "epicforestMaze.Epic_Mama_Megamoth": "Mammoth Megamoth",
-  "epicforestMaze.Epic_Mini_Megamoth": "Micro Megamoth Sentinel",
-  "epicforestMaze.Epic_Moth_Dust": "Epic Moth Dust",
-  "epicforestMaze.Epic_Ultimate_Squirrel": "Mecha Squirrel",
   "epicforestMaze.Fire_Acorn": "Fire Acorn",
   "epicforestMaze.Larva_Puke": "Larva Puke",
   "epicforestMaze.Mini_Larva": "Mini Larva",
   "epicforestMaze.Murderous_Megamoth": "Murderous Megamoth",
   "epicforestMaze.Woodland_Goblin": "Forest Goblin Bruiser",
   "epicforestMaze.Woodland_Goblin_Mage": "Forest Goblin Nechromancer",
   "epicforestMaze.Woodland_Labyrinth": "Woodland Labyrinth",
-  "epicforestMaze.Woodland_Labyrinth_Key": "Woodland Labyrinth Key",
-  "epicforestMaze.Woodland_Labyrinth_Portal": "Woodland Labyrinth Portal",
   "epicforestMaze.Woodland_Mini_Megamoth": "Micro Megamoth Sentinel",
   "epicforestMaze.Woodland_Moth_Dust": "Woodland Moth Dust",
   "epicforestMaze.Woodland_Paralyze_Turret": "Woodland Paralyze Turret",
   "epicforestMaze.Woodland_Silence_Turret": "Woodland Silence Turret",
   "epicforestMaze.Woodland_Ultimate_Squirrel": "Mecha Squirrel",
   "epicforestMaze.Woodland_Weakness_Turret": "Woodland Weakness Turret",
   "epicforestMaze.Wooland_Armor_Squirrel": "Grizzled Armored Squirrel",
-  "epicforestMaze.epic_armor_squirrel": "Grizzled Armored Squirrel",
   "epicpirateCave.BilgewaterAPOSs_Grotto_Portal": "Bilgewater's Grotto Portal",
   "epicpirateCave.Bilgewater_Darkwater_Spawner": "Bilgewater Darkwater Spawner",
   "epicpirateCave.Bilgewater_Summoner": "Bilgewater Summoner",
-  "epicpirateCave.Bilgewater_Wall_Summoner": "Bilgewater Wall Summoner",
   "epicpirateCave.Bottled_Evil_Water": "Bottled Evil Water",
   "epicpirateCave.Deadwater_Docks": "Deadwater Docks",
   "epicpirateCave.Deadwater_Docks_Admiral": "Deadwater Docks Admiral",
   "epicpirateCave.Deadwater_Docks_Brawler": "Deadwater Docks Brawler",
   "epicpirateCave.Deadwater_Docks_Captain": "Deadwater Docks Captain",
   "epicpirateCave.Deadwater_Docks_Commander": "Deadwater Docks Commander",
-  "epicpirateCave.Deadwater_Docks_Key": "Deadwater Docks Key",
   "epicpirateCave.Deadwater_Docks_Lieutenant": "Deadwater Docks Lieutenant",
   "epicpirateCave.Deadwater_Docks_Macaw": "Deadwater Docks Macaw",
   "epicpirateCave.Deadwater_Docks_Parrot": "Deadwater Docks Parrot",
-  "epicpirateCave.Deadwater_Docks_Portal": "Deadwater Docks Portal",
   "epicpirateCave.Deadwater_Docks_Sailor": "Deadwater Docks Sailor",
   "epicpirateCave.Deadwater_Docks_Veteran": "Deadwater Docks Veteran",
-  "epicpirateCave.Dreadstump_the_Pirate_King_II": "Dreadstump the Pirate King II",
-  "epicpirateCave.Epic_Cave_Pirate_Brawler": "Epic Cave Pirate Brawler",
-  "epicpirateCave.Epic_Cave_Pirate_Sailor": "Epic Cave Pirate Sailor",
-  "epicpirateCave.Epic_Cave_Pirate_Veteran": "Epic Cave Pirate Veteran",
-  "epicpirateCave.Epic_Parrot_1": "Epic Parrot 1",
-  "epicpirateCave.Epic_Parrot_2": "Epic Parrot 2",
-  "epicpirateCave.Epic_Pirate_Admiral": "Epic Pirate Admiral",
-  "epicpirateCave.Epic_Pirate_Captain": "Epic Pirate Captain",
-  "epicpirateCave.Epic_Pirate_Cave_Key": "Epic Pirate Cave Key",
-  "epicpirateCave.Epic_Pirate_Cave_Portal": "Epic Pirate Cave Portal",
-  "epicpirateCave.Epic_Pirate_Commander": "Epic Pirate Commander",
-  "epicpirateCave.Epic_Pirate_Lieutenant": "Epic Pirate Lieutenant",
   "epicpirateCave.Group_Eye_Wall_Nondestruct": "Group Eye Wall Nondestruct",
   "epicpirateCave.Group_Wall_Observer": "Group Wall Observer",
   "epicpirateCave.Jon_Bilgewater_the_Pirate_King": "Jon Bilgewater the Pirate King",
   "epicpirateCave.Massive_Parrot": "Massive Parrot",
-  "epicpirateCave.Massive_Parrot_1": "Massive Parrot 1",
   "epicpirateCave.Parrot_Cage": "Parrot Cage",
   "epicpirateCave.Pirate_King_Healer": "Pirate King Healer",
   "epicpirateCave.The_Heroic_Observer": "The Heroic Observer",
   "epicspiderDen.Blue_Egg_Summoner": "Blue Egg Summoner",
   "epicspiderDen.Blue_Son_of_Arachna_Giant_Egg_Sac": "Blue Son of Arachna Giant Egg Sac",
   "epicspiderDen.Crawling_Depths_Egg_Sac": "Crawling Depths Egg Sac",
   "epicspiderDen.Crawling_Green_Spider": "Crawling Green Spider",
   "epicspiderDen.Crawling_Grey_Spider": "Crawling Grey Spider",
@@ -1602,33 +1520,22 @@
   "epicspiderDen.Epic_Arachna_Web_Spoke_2": "Arachna Element",
   "epicspiderDen.Epic_Arachna_Web_Spoke_3": "Arachna Element",
   "epicspiderDen.Epic_Arachna_Web_Spoke_4": "Arachna Element",
   "epicspiderDen.Epic_Arachna_Web_Spoke_5": "Arachna Element",
   "epicspiderDen.Epic_Arachna_Web_Spoke_6": "Arachna Element",
   "epicspiderDen.Epic_Arachna_Web_Spoke_7": "Arachna Element",
   "epicspiderDen.Epic_Arachna_Web_Spoke_8": "Arachna Element",
   "epicspiderDen.Epic_Arachna_Web_Spoke_9": "Arachna Element",
-  "epicspiderDen.Epic_Blue_Spider_Hatchling": "Epic Blue Spider Hatchling",
-  "epicspiderDen.Epic_Green_Spider": "Epic Green Spider",
-  "epicspiderDen.Epic_Grey_Spider": "Epic Grey Spider",
-  "epicspiderDen.Epic_Grey_Spotted_Spider": "Epic Grey Spotted Spider",
-  "epicspiderDen.Epic_Red_Spotted_Spider": "Epic Red Spotted Spider",
-  "epicspiderDen.Epic_Son_of_Arachna_Spiderling": "Epic Son of Arachna Spiderling",
-  "epicspiderDen.Epic_Spider_Den_Key": "Epic Spider Den Key",
-  "epicspiderDen.Epic_Spider_Den_Portal": "Epic Spider Den Portal",
-  "epicspiderDen.Epic_Spider_Egg_Sac": "Epic Spider Egg Sac",
   "epicspiderDen.Red_Egg_Summoner": "Red Egg Summoner",
   "epicspiderDen.Red_Son_of_Arachna_Giant_Egg_Sac": "Red Son of Arachna Giant Egg Sac",
   "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",
@@ -1643,19 +1550,16 @@
   "equip.30_min": "30 min",
   "equip.3_of_3": "3 of 3",
   "equip.3_of_8": "3 of 8",
   "equip.4_of_8": "4 of 8",
   "equip.5_of_8": "5 of 8",
   "equip.6_of_8": "6 of 8",
   "equip.7_of_8": "7 of 8",
   "equip.8_of_8": "8 of 8",
-  "equip.A_Sorcerer_who_has_mastered_the_art_so_acutely_that_they_ha": "A Sorcerer who has mastered the art so acutely that they have raised their consciousness. Thanks to: NoobLegend",
-  "equip.A_Wizard_who_has_comitted_themselves_to_star_magic._Thanks_": "A Wizard who has comitted themselves to star magic. Thanks to: Ed_Stark",
-  "equip.A_backpack_thatAPOSll_double_your_inventory_spaceBANG": "A backpack that'll double your inventory space!",
   "equip.A_backpack_that_will_double_your_inventory_spaceBANG": "A backpack that will double your inventory space!",
   "equip.A_basic_katana.": "A basic katana.",
   "equip.A_basic_ninja-star.": "A basic ninja-star.",
   "equip.A_beautiful_and_versatile_robe_of_the_lightest_magethread.": "A beautiful and versatile robe of the lightest magethread.",
   "equip.A_beautiful_katana,_forged_and_cooled_by_the_mists_atop_a_g": "A beautiful katana, forged and cooled by the mists atop a great mountain.",
   "equip.A_beautifully_crafted_shuriken.": "A beautifully crafted shuriken.",
   "equip.A_bloodweft_robe_adorned_with_rubies_and_firegarnets,_worn_": "A bloodweft robe adorned with rubies and firegarnets, worn by an ancient sect of masterful wizards.",
   "equip.A_bold_island_drink_that_boosts_defense_and_vitality.": "A bold island drink that boosts defense and vitality.",
@@ -1677,54 +1581,48 @@
   "equip.A_citrine_set_in_a_gold_ring.": "A citrine set in a gold ring.",
   "equip.A_citrine_set_in_a_silver_ring.": "A citrine set in a silver ring.",
   "equip.A_claw-shard_from_Feargus,_the_Obsidian_Dragon.": "A claw-shard from Feargus, the Obsidian Dragon.",
   "equip.A_commanding_scepter_of_authority,_wielded_by_cloud_titan_n": "A commanding scepter of authority, wielded by cloud titan nobles from the elemental plane of air.",
   "equip.A_common__?_?_?_?__pet_egg.": "A common  ? ? ? ?  pet egg.",
   "equip.A_common_aquatic_pet_egg.": "A common aquatic pet egg.",
   "equip.A_common_automaton_pet_egg.": "A common automaton pet egg.",
   "equip.A_common_avian_pet_egg.": "A common avian pet egg.",
-  "equip.A_common_bird_pet_egg.": "A common bird pet egg.",
   "equip.A_common_canine_pet_egg.": "A common canine pet egg.",
   "equip.A_common_exotic_pet_egg.": "A common exotic pet egg.",
   "equip.A_common_farm_pet_egg.": "A common farm pet egg.",
   "equip.A_common_feline_pet_egg.": "A common feline pet egg.",
   "equip.A_common_humanoid_pet_egg.": "A common humanoid pet egg.",
   "equip.A_common_insect_pet_egg.": "A common insect pet egg.",
   "equip.A_common_penguin_pet_egg.": "A common penguin pet egg.",
   "equip.A_common_pet_egg_of_an_unknown_pet_family.": "A common pet egg of an unknown pet family.",
   "equip.A_common_reptile_pet_egg.": "A common reptile pet egg.",
   "equip.A_common_spooky_pet_egg.": "A common spooky pet egg.",
-  "equip.A_common_water_pet_egg.": "A common water pet egg.",
   "equip.A_common_woodland_pet_egg.": "A common woodland pet egg.",
   "equip.A_consecrated_seal_of_the_heavens,_shining_with_divine_bril": "A consecrated seal of the heavens, shining with divine brilliance and godly power.",
   "equip.A_crappy_katana_that_can_barely_cut_anything.": "A crappy katana that can barely cut anything.",
   "equip.A_crimson_felsteel_dagger_saturated_with_evil_magic_and_pri": "A crimson felsteel dagger saturated with evil magic and primordial hatreds.",
   "equip.A_cruel_blade_forged_in_hell_flame_and_blood.": "A cruel blade forged in hell flame and blood.",
   "equip.A_crystal_orb_that_holds_enemies_in_an_ethereal_prison.": "A crystal orb that holds enemies in an ethereal prison.",
   "equip.A_cursed_piece_of_Davy_JonesAPOS_treasure._Using_it_leaves_": "A cursed piece of Davy Jones' treasure. Using it leaves behind a deadly spirit bomb.",
-  "equip.A_cursed_piece_of_Davy_JonesAPOSs_treasure._Using_it_leaves": "A cursed piece of Davy Jones's treasure. Using it leaves behind a deadly spirit bomb.",
   "equip.A_dagger_fashioned_from_the_fang_of_an_enormous_spider.": "A dagger fashioned from the fang of an enormous spider.",
   "equip.A_dagger_imbued_with_Amethyst_magic_to_protect_its_owner_fr": "A dagger imbued with Amethyst magic to protect its owner from harm.",
   "equip.A_dagger_made_of_blued_steel.": "A dagger made of blued steel.",
   "equip.A_dagger_made_of_razor-sharp_bone.": "A dagger made of razor-sharp bone.",
   "equip.A_dagger_made_of_rose-tinted_steel.": "A dagger made of rose-tinted steel.",
-  "equip.A_dagger_made_of_rose_tinted_steel.": "A dagger made of rose tinted steel.",
   "equip.A_dagger_of_rare_purple_agate,_infused_with_powerful_dark_m": "A dagger of rare purple agate, infused with powerful dark magics.",
   "equip.A_dagger_that_was_condemned_to_Davy_JonesAPOS_Locker.": "A dagger that was condemned to Davy Jones' Locker.",
-  "equip.A_dagger_that_was_condemned_to_Davy_JonesAPOSs_Locker.": "A dagger that was condemned to Davy Jones's Locker.",
   "equip.A_dagger_with_a_blade_made_of_volcanic_glass.": "A dagger with a blade made of volcanic glass.",
   "equip.A_dagger_with_a_blade_that_burns_with_an_unholy_magic.": "A dagger with a blade that burns with an unholy magic.",
   "equip.A_dangerous_spell_that_summons_green_fire_from_the_astral_p": "A dangerous spell that summons green fire from the astral plane.",
   "equip.A_deadly_dagger_of_glittering_magical_emerald.": "A deadly dagger of glittering magical emerald.",
   "equip.A_deadly_mechanical_bow_and_a_marvel_of_technology.": "A deadly mechanical bow and a marvel of technology.",
   "equip.A_deadly_spell_created_by_goblin_sorcerers_to_subdue_their_": "A deadly spell created by goblin sorcerers to subdue their orcish enemies.",
   "equip.A_deadly_wand_that_channels_magefire_from_the_nether_planes": "A deadly wand that channels magefire from the nether planes.",
   "equip.A_deep_blue_prism_of_sun_cut_topaz,_used_by_doppelganger_sp": "A deep blue prism of sun cut topaz, used by doppelganger spies to aid in their vile missions of assassination and murder.",
-  "equip.A_deep_blue_prism_of_suncut_topaz,_used_by_doppleganger_spi": "A deep blue prism of suncut topaz, used by doppleganger spies to aid their vile missions of assassination and murder.",
   "equip.A_detailed_sword_crafted_out_of_blackened_metal_and_preciou": "A detailed sword crafted out of blackened metal and precious bloodstone by Oryx's minions as a tribute to their overlord.",
   "equip.A_devious_magical_prism_that_creates_an_illusory_ally.": "A devious magical prism that creates an illusory ally.",
   "equip.A_diamondwire_bow_used_by_guardians_of_the_unseen_ethereal_": "A diamondwire bow used by guardians of the unseen ethereal shrines.",
   "equip.A_dwarven_skull_desecrated_by_foul_enchantments.": "A dwarven skull desecrated by foul enchantments.",
   "equip.A_fearsome_wand_that_fires_bolts_of_penetrating_death_magic": "A fearsome wand that fires bolts of penetrating death magic.",
   "equip.A_festive_piece_of_armor,_complete_with_bells._Try_not_to_g": "A festive piece of armor, complete with bells. Try not to get too crazy.",
   "equip.A_fiery_blade_capable_of_burning_flesh_and_bone.": "A fiery blade capable of burning flesh and bone.",
   "equip.A_forestcloth_quiver_of_highest_quality,_exhibiting_excepti": "A forestcloth quiver of highest quality, exhibiting exceptional magic powers and used by the foremost masters of Elven archery.",
@@ -1742,64 +1640,52 @@
   "equip.A_golden_staff_of_elysian_consciousness,_shining_with_the_b": "A golden staff of elysian consciousness, shining with the base power of empyrean truths.",
   "equip.A_golden_staff_of_transcendent_understanding,_made_from_cry": "A golden staff of transcendent understanding, made from crystals present at the formation of universe.",
   "equip.A_golden_wand_of_breathtaking_power,_created_by_elemental_f": "A golden wand of breathtaking power, created by elemental forces from the realms of ice and flame to unleash revenge on their enemies.",
   "equip.A_great_golden_wand_of_the_heavens,_created_by_angels_to_wr": "A great golden wand of the heavens, created by angels to wreak justice on the slayers of the innocent.",
   "equip.A_great_katana_charged_with_the_power_of_the_sun_itself.": "A great katana charged with the power of the sun itself.",
   "equip.A_great_sword_of_recognition,_forged_by_the_gods_for_the_ch": "A great sword of recognition, forged by the gods for the champions of humankind.",
   "equip.A_hallowed_seal_of_the_immortal_divine,_sanctified_by_the_p": "A hallowed seal of the immortal divine, sanctified by the pious and used since ancient times to inspire great numbers of crusading warriors.",
   "equip.A_hallowed_tome_of_blessed_healing_rituals.": "A hallowed tome of blessed healing rituals.",
-  "equip.A_high-fructose_ring_thatAPOSll_give_you_pep,_but_hurt_your": "A high-fructose ring that'll give you pep, but hurt your concentration.",
   "equip.A_high-fructose_ring_that_will_give_you_pep,_but_hurt_your_": "A high-fructose ring that will give you pep, but hurt your concentration.",
   "equip.A_high-quality_bow_made_of_magical_ironwood.": "A high-quality bow made of magical ironwood.",
   "equip.A_highly_decorated_robe_of_purple_wizardcloth,_imbued_with_": "A highly decorated robe of purple wizardcloth, imbued with powers of sorcery and darkness.",
   "equip.A_highly_effective_bow_fashioned_of_still-living_magical_sp": "A highly effective bow fashioned of still-living magical springwood.",
   "equip.A_holy_paladinAPOSs_skull,_fouled_by_depraved_incantations_": "A holy paladin's skull, fouled by depraved incantations of necromancy.",
   "equip.A_holy_seal_of_divine_favor.": "A holy seal of divine favor.",
   "equip.A_holy_seal_of_godly_protection,_shimmering_with_divine_mig": "A holy seal of godly protection, shimmering with divine might.",
   "equip.A_holy_seal_of_heavenly_omnipotence,_given_to_aid_mortal_wa": "A holy seal of heavenly omnipotence, given to aid mortal warriors in their fight against chaos and darkness.",
   "equip.A_holy_tome_of_healing_prayers.": "A holy tome of healing prayers.",
-  "equip.A_holy_warrior_charged_with_stewardship_over_the_forest.": "A holy warrior charged with stewardship over the forest.",
   "equip.A_horrifically_dangerous_spell,_formulated_in_the_elemental": "A horrifically dangerous spell, formulated in the elemental planes during the great astral wars.",
   "equip.A_huge,_flawless_amethyst_set_in_a_stunningly_beautiful_gol": "A huge, flawless amethyst set in a stunningly beautiful gold ring.",
   "equip.A_huge,_flawless_citrine_set_in_a_stunningly_beautiful_gold": "A huge, flawless citrine set in a stunningly beautiful gold ring.",
   "equip.A_huge,_flawless_emerald_set_in_a_stunningly_beautiful_gold": "A huge, flawless emerald set in a stunningly beautiful gold ring.",
   "equip.A_huge,_flawless_onyx_set_in_a_stunningly_beautiful_gold_ri": "A huge, flawless onyx set in a stunningly beautiful gold ring.",
   "equip.A_huge,_flawless_ruby_set_in_a_stunningly_beautiful_gold_ri": "A huge, flawless ruby set in a stunningly beautiful gold ring.",
   "equip.A_huge,_flawless_sapphire_set_in_a_stunningly_beautiful_gol": "A huge, flawless sapphire set in a stunningly beautiful gold ring.",
   "equip.A_huge,_flawless_spinel_set_in_a_stunningly_beautiful_gold_": "A huge, flawless spinel set in a stunningly beautiful gold ring.",
   "equip.A_huge,_flawless_topaz_set_in_a_stunningly_beautiful_gold_r": "A huge, flawless topaz set in a stunningly beautiful gold ring.",
   "equip.A_human_skull_corrupted_with_life-stealing_necrotic_magic.": "A human skull corrupted with life-stealing necrotic magic.",
   "equip.A_jagged,_wickedly_barbed_blade_of_evil,_charged_with_the_u": "A jagged, wickedly barbed blade of evil, charged with the unreasoning rage of ancestral vendettas.",
   "equip.A_katana_capable_of_cutting_a_razor-thin_line.": "A katana capable of cutting a razor-thin line.",
-  "equip.A_key_that_opens_a_portal_to_Lair_of_Draconis.": "A key that opens a portal to Lair of Draconis.",
-  "equip.A_key_that_opens_a_portal_to_the_Consolation_Room_of_Dracon": "A key that opens a portal to the Consolation Room of Draconis.",
-  "equip.A_key_that_opens_a_portal_to_the_Haunted_Cemetery.": "A key that opens a portal to the Haunted Cemetery.",
-  "equip.A_key_that_opens_an_entrance_to_the_Forest_Maze.": "A key that opens an entrance to the Forest Maze.",
   "equip.A_key_that_opens_the_way_to_Davy_JonesAPOS_Locker.": "A key that opens the way to Davy Jones' Locker.",
-  "equip.A_key_that_opens_the_way_to_Davy_JonesAPOSs_Locker.": "A key that opens the way to Davy Jones's Locker.",
-  "equip.A_key_that_opens_the_way_to_the_Candyland_Hunting_Grounds.": "A key that opens the way to the Candyland Hunting Grounds.",
-  "equip.A_key_that_reveals_the_way_to_the_Mad_Lab.": "A key that reveals the way to the Mad Lab.",
   "equip.A_key_which_opens_a_passage_to_the_Forbidden_Jungle.": "A key which opens a passage to the Forbidden Jungle.",
   "equip.A_key_which_opens_a_passage_to_the_Manor_of_the_Immortals.": "A key which opens a passage to the Manor of the Immortals.",
   "equip.A_key_which_opens_a_portal_to_the_Beachzone.": "A key which opens a portal to the Beachzone.",
   "equip.A_key_which_opens_a_portal_to_the_Haunted_Cemetery.": "A key which opens a portal to the Haunted Cemetery.",
   "equip.A_key_which_opens_a_portal_to_the_Lair_of_Draconis.": "A key which opens a portal to the Lair of Draconis.",
   "equip.A_key_which_opens_a_random_dungeon.": "A key which opens a random dungeon.",
   "equip.A_key_which_opens_an_entrance_to_BelladonnaAPOSs_Garden.": "A key which opens an entrance to Belladonna's Garden.",
-  "equip.A_key_which_opens_an_entrance_to_BelladonnaAPOSs_Thicket.": "A key which opens an entrance to Belladonna's Thicket.",
   "equip.A_key_which_opens_an_entrance_to_Deadwater_Docks.": "A key which opens an entrance to Deadwater Docks.",
   "equip.A_key_which_opens_an_entrance_to_The_Crawling_Depths.": "A key which opens an entrance to The Crawling Depths.",
   "equip.A_key_which_opens_an_entrance_to_The_Shatters.": "A key which opens an entrance to The Shatters.",
-  "equip.A_key_which_opens_an_entrance_to_a_Dungeon.": "A key which opens an entrance to a Dungeon.",
   "equip.A_key_which_opens_an_entrance_to_a_Pirate_Cave.": "A key which opens an entrance to a Pirate Cave.",
   "equip.A_key_which_opens_an_entrance_to_a_Snake_Pit.": "A key which opens an entrance to a Snake Pit.",
   "equip.A_key_which_opens_an_entrance_to_a_Spider_Den.": "A key which opens an entrance to a Spider Den.",
   "equip.A_key_which_opens_an_entrance_to_a_Sprite_World.": "A key which opens an entrance to a Sprite World.",
-  "equip.A_key_which_opens_an_entrance_to_a_Tomb_of_Ancients.": "A key which opens an entrance to a Tomb of Ancients.",
   "equip.A_key_which_opens_an_entrance_to_an_Abyss_of_Demons.": "A key which opens an entrance to an Abyss of Demons.",
   "equip.A_key_which_opens_an_entrance_to_an_Ocean_Trench.": "A key which opens an entrance to an Ocean Trench.",
   "equip.A_key_which_opens_an_entrance_to_an_Undead_Lair.": "A key which opens an entrance to an Undead Lair.",
   "equip.A_key_which_opens_an_entrance_to_the_Forest_Maze.": "A key which opens an entrance to the Forest Maze.",
   "equip.A_key_which_opens_an_entrance_to_the_Puppet_MasterAPOSs_Enc": "A key which opens an entrance to the Puppet Master's Encore.",
   "equip.A_key_which_opens_an_entrance_to_the_Puppet_MasterAPOSs_The": "A key which opens an entrance to the Puppet Master's Theatre",
   "equip.A_key_which_opens_an_entrance_to_the_Tomb_of_the_Ancients.": "A key which opens an entrance to the Tomb of the Ancients.",
   "equip.A_key_which_opens_an_entrance_to_the_Tomb_of_the_Ancients_(": "A key which opens an entrance to the Tomb of the Ancients (Heroic).",
@@ -1827,30 +1713,27 @@
   "equip.A_large_vial_holding_two_doses_of_healing_elixir.": "A large vial holding two doses of healing elixir.",
   "equip.A_large_vial_holding_two_doses_of_magical_essence.": "A large vial holding two doses of magical essence.",
   "equip.A_large_vial_of_healing_elixir.": "A large vial of healing elixir.",
   "equip.A_large_vial_of_magical_essence.": "A large vial of magical essence.",
   "equip.A_legendary__?_?_?_?__pet_egg.": "A legendary  ? ? ? ?  pet egg.",
   "equip.A_legendary_aquatic_pet_egg.": "A legendary aquatic pet egg.",
   "equip.A_legendary_automaton_pet_egg.": "A legendary automaton pet egg.",
   "equip.A_legendary_avian_pet_egg.": "A legendary avian pet egg.",
-  "equip.A_legendary_bird_pet_egg.": "A legendary bird pet egg.",
   "equip.A_legendary_canine_pet_egg.": "A legendary canine pet egg.",
   "equip.A_legendary_exotic_pet_egg.": "A legendary exotic pet egg.",
   "equip.A_legendary_farm_pet_egg.": "A legendary farm pet egg.",
   "equip.A_legendary_feline_pet_egg.": "A legendary feline pet egg.",
   "equip.A_legendary_humanoid_pet_egg.": "A legendary humanoid pet egg.",
   "equip.A_legendary_insect_pet_egg.": "A legendary insect pet egg.",
   "equip.A_legendary_penguin_pet_egg.": "A legendary penguin pet egg.",
   "equip.A_legendary_pet_egg_of_an_unknown_pet_family..": "A legendary pet egg of an unknown pet family..",
   "equip.A_legendary_reptile_pet_egg.": "A legendary reptile pet egg.",
   "equip.A_legendary_shuriken_that_absorbs_the_light_around_it.": "A legendary shuriken that absorbs the light around it.",
-  "equip.A_legendary_shuriken_that_sucks_the_light_in_around_it.": "A legendary shuriken that sucks the light in around it.",
   "equip.A_legendary_spooky_pet_egg.": "A legendary spooky pet egg.",
-  "equip.A_legendary_water_pet_egg.": "A legendary water pet egg.",
   "equip.A_legendary_woodland_pet_egg.": "A legendary woodland pet egg.",
   "equip.A_lesser_demonAPOSs_skull,_empowered_and_amplified_by_dark_": "A lesser demon's skull, empowered and amplified by dark enchantments of the underworld.",
   "equip.A_light-golden_wheat_beer_that_reinvigorates_your_mind.": "A light-golden wheat beer that reinvigorates your mind.",
   "equip.A_lightweight_blade_that_seems_to_dance_in_your_hands.": "A lightweight blade that seems to dance in your hands.",
   "equip.A_long_woolen_robe_favored_by_students_of_magic.": "A long woolen robe favored by students of magic.",
   "equip.A_lucky_shamrock_that_will_make_enemies_drop_more_and_bette": "A lucky shamrock that will make enemies drop more and better loot! Lasts 20 minutes.",
   "equip.A_magic_robe_woven_from_enchanted_threads_of_water_harveste": "A magic robe woven from enchanted threads of water harvested from a great Water Dragon's body.",
   "equip.A_magical_amulet_that_enables_lightning_assaults.": "A magical amulet that enables lightning assaults.",
@@ -1860,17 +1743,16 @@
   "equip.A_magical_quiver_that_enchants_arrows.": "A magical quiver that enchants arrows.",
   "equip.A_magical_robe_of_faintly_glowing_wizardcloth.": "A magical robe of faintly glowing wizardcloth.",
   "equip.A_magical_robe_of_grey_moonsilk.": "A magical robe of grey moonsilk.",
   "equip.A_magical_trap_suited_for_hunting_the_strong_beasts_of_the_": "A magical trap suited for hunting the strong beasts of the untamed country.",
   "equip.A_magical_wooden_staff_topped_with_a_white_crystal.": "A magical wooden staff topped with a white crystal.",
   "equip.A_magnificent_legendary_blade_which_only_cuts_those_who_des": "A magnificent legendary blade which only cuts those who deserve death.",
   "equip.A_majorAPOSs_helm_of_ornate_red_iron,_made_to_arouse_fearle": "A major's helm of ornate red iron, made to arouse fearlessness among the troops.",
   "equip.A_mighty_katana_with_a_crystal_eye_embedded_in_the_hilt.": "A mighty katana with a crystal eye embedded in the hilt.",
-  "equip.A_mighty_katana_with_a_crystal_eye_embeded_in_the_hilt.": "A mighty katana with a crystal eye embeded in the hilt.",
   "equip.A_mighty_trap_strong_enough_for_the_most_vicious_of_magical": "A mighty trap strong enough for the most vicious of magical beasts.",
   "equip.A_mighty_weapon_wielded_by_a_hero_from_long_ago.": "A mighty weapon wielded by a hero from long ago.",
   "equip.A_mind-affecting_prism_that_creates_powerful_psychic_illusi": "A mind-affecting prism that creates powerful psychic illusions.",
   "equip.A_molten_Key_that_links_directly_to_the_Lair_of_Shaitan,_Ad": "A molten Key that links directly to the Lair of Shaitan, Advisor to Oryx.",
   "equip.A_moonsteel_dagger_of_the_underworld,_corrupted_by_loathsom": "A moonsteel dagger of the underworld, corrupted by loathsome enchantments and profane spells.",
   "equip.A_most_effective_magical_trap_used_in_the_titan_wars_to_hob": "A most effective magical trap used in the titan wars to hobble even the largest of enemy combatants.",
   "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.",
@@ -1911,43 +1793,39 @@
   "equip.A_pouch_of_ground_pollen_from_the_flowers_indigenous_to_the": "A pouch of ground pollen from the flowers indigenous to the Forbidden Jungle.",
   "equip.A_powerful_bow_crafted_by_dryads_and_blessed_by_the_spirits": "A powerful bow crafted by dryads and blessed by the spirits of the woodlands.",
   "equip.A_powerful_cloak_used_by_master_spies_to_infiltrate_the_mos": "A powerful cloak used by master spies to infiltrate the most tightly guarded fortresses.",
   "equip.A_powerful_cloak_woven_from_the_shadows_of_twilight.": "A powerful cloak woven from the shadows of twilight.",
   "equip.A_powerful_demon_skull_permeated_with_unspeakably_horrific_": "A powerful demon skull permeated with unspeakably horrific sorceries.",
   "equip.A_powerful_enchanting_quiver_made_by_forest_elves.": "A powerful enchanting quiver made by forest elves.",
   "equip.A_powerful_magic_trap_charged_with_astral_energies_and_used": "A powerful magic trap charged with astral energies and used by the legendary dragon slayers of ancient times.",
   "equip.A_powerful_orb_of_flawless_sun_quartz,_created_by_dark_thau": "A powerful orb of flawless sun quartz, created by dark thaumaturgists of the nether kingdoms.",
-  "equip.A_powerful_orb_of_flawless_sunquartz,_created_by_dark_thaum": "A powerful orb of flawless sunquartz, created by dark thaumaturgists of the nether kingdoms.",
   "equip.A_powerful_robe_of_delicately_embroidered_red_feythread.": "A powerful robe of delicately embroidered red feythread.",
   "equip.A_powerful_scepter_imbued_with_the_energy_of_astral_storms.": "A powerful scepter imbued with the energy of astral storms.",
   "equip.A_powerful_staff_crafted_by_demons_for_waging_war_on_mortal": "A powerful staff crafted by demons for waging war on mortals.",
   "equip.A_powerful_sword_infused_with_the_spirit_of_dark_rituals.": "A powerful sword infused with the spirit of dark rituals.",
   "equip.A_priestess_who_has_devoted_her_life_to_the_care-taking_of_": "A priestess who has devoted her life to the care-taking of the Nexus. Thanks to: DG_spritemaker",
   "equip.A_prism_of_the_underworld_that_harnesses_dark_energy_to_imp": "A prism of the underworld that harnesses dark energy to implant noncorporeal psionic beings into the minds of onlookers.",
   "equip.A_quiver_that_shines_with_gold_and_pulses_with_the_power_of": "A quiver that shines with gold and pulses with the power of elvish archer spirits.",
   "equip.A_rare__?_?_?_?__pet_egg.": "A rare  ? ? ? ?  pet egg.",
   "equip.A_rare_aquatic_pet_egg.": "A rare aquatic pet egg.",
   "equip.A_rare_automaton_pet_egg.": "A rare automaton pet egg.",
   "equip.A_rare_avian_pet_egg.": "A rare avian pet egg.",
-  "equip.A_rare_bird_pet_egg.": "A rare bird pet egg.",
   "equip.A_rare_canine_pet_egg.": "A rare canine pet egg.",
   "equip.A_rare_drink_created_by_Thessal_herself._It_cures_wounds_an": "A rare drink created by Thessal herself. It cures wounds and replenishes mental strength.",
   "equip.A_rare_exotic_pet_egg.": "A rare exotic pet egg.",
   "equip.A_rare_farm_pet_egg.": "A rare farm pet egg.",
   "equip.A_rare_feline_pet_egg.": "A rare feline pet egg.",
   "equip.A_rare_humanoid_pet_egg.": "A rare humanoid pet egg.",
   "equip.A_rare_insect_pet_egg.": "A rare insect pet egg.",
   "equip.A_rare_penguin_pet_egg.": "A rare penguin pet egg.",
   "equip.A_rare_pet_egg_of_an_unknown_pet_family.": "A rare pet egg of an unknown pet family.",
   "equip.A_rare_reptile_pet_egg.": "A rare reptile pet egg.",
   "equip.A_rare_spooky_pet_egg.": "A rare spooky pet egg.",
-  "equip.A_rare_sprout_found_in_the_Forest_Maze_that_give_you_a_spee": "A rare sprout found in the Forest Maze that give you a speed boost when eaten.",
   "equip.A_rare_sprout_found_in_the_Forest_Maze_that_gives_you_a_spe": "A rare sprout found in the Forest Maze that gives you a speed boost when eaten.",
-  "equip.A_rare_water_pet_egg.": "A rare water pet egg.",
   "equip.A_rare_woodland_pet_egg.": "A rare woodland pet egg.",
   "equip.A_refreshing_malted_barley_beer_that_boosts_your_mind_and_b": "A refreshing malted barley beer that boosts your mind and body.",
   "equip.A_refreshing_tropical_drink_that_boosts_life_and_mana.": "A refreshing tropical drink that boosts life and mana.",
   "equip.A_relic_uncovered_from_the_depths_of_the_jungle._It_exudes_": "A relic uncovered from the depths of the jungle. It exudes a deep darkness.",
   "equip.A_rich,_dark_beer_that_strengthens_you_from_within.": "A rich, dark beer that strengthens you from within.",
   "equip.A_ring_crafted_from_the_dangerous_Fire_Coral.": "A ring crafted from the dangerous Fire Coral.",
   "equip.A_ring_crafted_from_the_faceted_eye_of_an_enormous_spider.": "A ring crafted from the faceted eye of an enormous spider.",
   "equip.A_ring_forged_by_the_mad_god_in_the_flames_of_the_suns_surf": "A ring forged by the mad god in the flames of the suns surface. Its magic protects its owner from some harm. Original Design by DieGo.",
@@ -1971,17 +1849,16 @@
   "equip.A_seal_of_blessed_preservation,_gleaming_with_the_sacred_wi": "A seal of blessed preservation, gleaming with the sacred will of the righteous.",
   "equip.A_seal_of_holy_providence_and_mortal_virtue.": "A seal of holy providence and mortal virtue.",
   "equip.A_seal_that_is_said_to_briefly_borrow_the_power_of_the_Gods": "A seal that is said to briefly borrow the power of the Gods themselves.  Some Paladins shun its dark power, others embrace it.",
   "equip.A_sharp_dagger_made_of_steel.": "A sharp dagger made of steel.",
   "equip.A_sharp_druidic_dagger_vibrating_with_primal_energies.": "A sharp druidic dagger vibrating with primal energies.",
   "equip.A_sharp_sword_plated_with_gold,_clearly_intended_for_the_us": "A sharp sword plated with gold, clearly intended for the use of a great lord.",
   "equip.A_shield_made_of_high_quality_steel.": "A shield made of high quality steel.",
   "equip.A_shield_made_of_snake_skin_stretched_across_a_rigid_frame.": "A shield made of snake skin stretched across a rigid frame.",
-  "equip.A_shield_made_of_snake_skin_stretched_across_rigid_frame.": "A shield made of snake skin stretched across rigid frame.",
   "equip.A_shield_made_of_sturdy_wood.": "A shield made of sturdy wood.",
   "equip.A_shield_made_of_well_forged_iron.": "A shield made of well forged iron.",
   "equip.A_shining_gold_wand_of_force,_built_by_a_diabolic_archmagus": "A shining gold wand of force, built by a diabolic archmagus to channel vast corrupting energies into the material plane.",
   "equip.A_short_sword_blade_mounted_on_a_dagger_hilt.": "A short sword blade mounted on a dagger hilt.",
   "equip.A_silver-plated_steel_dagger.": "A silver-plated steel dagger.",
   "equip.A_silver_ring_that_buzzes_with_a_faint_magical_hum.": "A silver ring that buzzes with a faint magical hum.",
   "equip.A_silversilk_robe_masterfully_sewn_with_morningdew_spider_t": "A silversilk robe masterfully sewn with morningdew spider threads.",
   "equip.A_single-edged_broad-bladed_sword.": "A single-edged broad-bladed sword.",
@@ -2023,45 +1900,40 @@
   "equip.A_swift_and_hungry_blade_that_is_never_satisfied_with_just_": "A swift and hungry blade that is never satisfied with just one kill.",
   "equip.A_sword_forged_in_a_great_volcano_and_consecrated_with_drag": "A sword forged in a great volcano and consecrated with dragon magic.",
   "equip.A_sword_formed_from_a_single_shard_of_unbreakable_glass.": "A sword formed from a single shard of unbreakable glass.",
   "equip.A_sword_pulsing_with_the_powerful_magic_of_ancient_beings.": "A sword pulsing with the powerful magic of ancient beings.",
   "equip.A_sword_that,_when_held_by_one_true_of_heart,_will_release_": "A sword that, when held by one true of heart, will release magic from the flawless ruby in its hilt and ignite in flames.",
   "equip.A_tangy_fruit_drink_that_boosts_dexterity_and_life.": "A tangy fruit drink that boosts dexterity and life.",
   "equip.A_tight_fitting_garment_of_snake_skin_that_is_both_function": "A tight fitting garment of snake skin that is both functional and stylish.",
   "equip.A_tome_dedicated_to_the_works_of_a_forgotten_god._It_is_wri": "A tome dedicated to the works of a forgotten god. It is written in a strange script that glows with a pure white light.",
-  "equip.A_tome_dedicated_to_the_works_of_a_forgotten_god_is_written": "A tome dedicated to the works of a forgotten god is written in a strange script that glows with a pure white light.",
   "equip.A_tome_of_blessing,_gifted_by_the_gods_for_the_benefit_of_a": "A tome of blessing, gifted by the gods for the benefit of all good mortals.",
   "equip.A_topaz_set_in_a_gold_ring.": "A topaz set in a gold ring.",
   "equip.A_topaz_set_in_a_silver_ring.": "A topaz set in a silver ring.",
   "equip.A_topical_potion_of_healing_that_upon_use_is_shared_with_fe": "A topical potion of healing that upon use is shared with fellow travelers.",
   "equip.A_trap_imbued_with_deadly_venom_from_the_coral_of_the_Ocean": "A trap imbued with deadly venom from the coral of the Ocean Trench.",
   "equip.A_treasure_from_Davy_JonesAPOS_Locker.": "A treasure from Davy Jones' Locker.",
-  "equip.A_treasure_from_Davy_JonesAPOSs_Locker.": "A treasure from Davy Jones's Locker.",
   "equip.A_treasure_from_the_Abyss_of_Demons.": "A treasure from the Abyss of Demons.",
   "equip.A_treasure_from_the_Mad_Lab.": "A treasure from the Mad Lab.",
   "equip.A_treasure_from_the_Manor_of_the_Immortals.": "A treasure from the Manor of the Immortals.",
-  "equip.A_treasure_from_the_Manor_of_the_Immortals..": "A treasure from the Manor of the Immortals..",
   "equip.A_treasure_from_the_Ocean_Trench.": "A treasure from the Ocean Trench.",
   "equip.A_treasure_from_the_Tomb_of_the_Ancients.": "A treasure from the Tomb of the Ancients.",
   "equip.A_trend-setter_when_it_comes_to_hoods._Thanks_to:_RotMGBeig": "A trend-setter when it comes to hoods. Thanks to: RotMGBeige",
   "equip.A_very_large_amethyst_set_in_a_dazzling_gold_ring.": "A very large amethyst set in a dazzling gold ring.",
   "equip.A_very_large_citrine_set_in_a_dazzling_gold_ring.": "A very large citrine set in a dazzling gold ring.",
   "equip.A_very_large_emerald_set_in_a_dazzling_gold_ring.": "A very large emerald set in a dazzling gold ring.",
   "equip.A_very_large_onyx_set_in_a_dazzling_gold_ring.": "A very large onyx set in a dazzling gold ring.",
   "equip.A_very_large_ruby_set_in_a_dazzling_gold_ring.": "A very large ruby set in a dazzling gold ring.",
   "equip.A_very_large_sapphire_set_in_a_dazzling_gold_ring.": "A very large sapphire set in a dazzling gold ring.",
   "equip.A_very_large_spinel_set_in_a_dazzling_gold_ring.": "A very large spinel set in a dazzling gold ring.",
   "equip.A_very_large_topaz_set_in_a_dazzling_gold_ring.": "A very large topaz set in a dazzling gold ring.",
   "equip.A_very_strong_shield_made_from_the_strongest_and_most_desir": "A very strong shield made from the strongest and most desirable of all metals.",
-  "equip.A_wand_created_from_the_wood_of_Sprite_trees.": "A wand created from the wood of Sprite trees.",
   "equip.A_wand_created_from_the_wood_of_Sprite_trees._Seems_to_be_p": "A wand created from the wood of Sprite trees. Seems to be poorly calibrated, though.",
   "equip.A_wand_made_from_a_brilliant_white_cross_designed_to_ward_o": "A wand made from a brilliant white cross designed to ward off evil.",
   "equip.A_wand_of_demonic_enigmas,_cloaked_in_darkness_and_cracklin": "A wand of demonic enigmas, cloaked in darkness and crackling with dark enchantments.",
-  "equip.A_wand_of_hard-boiled_justice.": "A wand of hard-boiled justice.",
   "equip.A_wand_that_casts_a_bolt_of_pure_magic_force.": "A wand that casts a bolt of pure magic force.",
   "equip.A_wand_that_casts_a_simple_fire_spell.": "A wand that casts a simple fire spell.",
   "equip.A_wand_that_casts_a_strong_fire_spell.": "A wand that casts a strong fire spell.",
   "equip.A_wand_that_casts_a_strong_missile.": "A wand that casts a strong missile.",
   "equip.A_wand_that_emits_bolts_of_pure_force.": "A wand that emits bolts of pure force.",
   "equip.A_wand_that_fires_power_bolts.": "A wand that fires power bolts.",
   "equip.A_wand_that_shoots_dark_eldritch_energy.": "A wand that shoots dark eldritch energy.",
   "equip.A_well-made_commanderAPOSs_helm_of_steel_with_silver_filigr": "A well-made commander's helm of steel with silver filigree, able to inspire gallantry in large numbers of troops.",
@@ -2073,17 +1945,16 @@
   "equip.A_worn_and_battered_suit_of_armor_embedded_with_a_mystic_ge": "A worn and battered suit of armor embedded with a mystic gem that flows with magical strength.",
   "equip.Abyss_of_Demons_Key": "Abyss of Demons Key",
   "equip.Abyssal_Armor": "Abyssal Armor",
   "equip.Acropolis_Armor": "Acropolis Armor",
   "equip.Adds_attack_to_everyone_reduces_speed_for_self.": "Adds attack to everyone reduces speed for self.",
   "equip.Adds_speed_and_reduces_attack.": "Adds speed and reduces attack.",
   "equip.Admin_Staff": "Admin Staff",
   "equip.Admin_Sword": "Admin Sword",
-  "equip.Adventurous_Hobbit_Skin": "Adventurous Hobbit Skin",
   "equip.Agateclaw_Dagger": "Agateclaw Dagger",
   "equip.Agent_Skin": "Agent Skin",
   "equip.All_shall_know_my_power._Not_even_the_Mad_God_can_stop_me.": "All shall know my power. Not even the Mad God can stop me.",
   "equip.Almandine_Armor_of_Anger": "Almandine Armor of Anger",
   "equip.Almandine_Ring_of_Wrath": "Almandine Ring of Wrath",
   "equip.Ambrosia": "Ambrosia",
   "equip.America_Ring": "America Ring",
   "equip.Amulet_of_Resurrection": "Cursed Amulet of Zombification",
@@ -2093,28 +1964,24 @@
   "equip.An_Olympic_gold_medal_in_synchronised_swimming.": "An Olympic gold medal in synchronised swimming.",
   "equip.An_Olympic_silver_medal_in_synchronised_swimming.": "An Olympic silver medal in synchronised swimming.",
   "equip.An_amethyst_set_in_a_gold_ring.": "An amethyst set in a gold ring.",
   "equip.An_amethyst_set_in_a_silver_ring.": "An amethyst set in a silver ring.",
   "equip.An_amulet_that_provides_helpful_benefits_at_the_cost_of_rai": "An amulet that provides helpful benefits at the cost of raising your corpse upon death to attack your friends.",
   "equip.An_ancient_ceremonial_robe_once_worn_by_the_Tlatoani.": "An ancient ceremonial robe once worn by the Tlatoani.",
   "equip.An_ancient_druidic_scepter_created_by_the_nature_gods_thems": "An ancient druidic scepter created by the nature gods themselves, embodying all the fury of the megacosm.",
   "equip.An_ancient_katana_with_a_blade_of_jet_black_steel.": "An ancient katana with a blade of jet black steel.",
-  "equip.An_ancient_king,_cursed_to_walk_the_Realms_forever._Thanks_": "An ancient king, cursed to walk the Realms forever. Thanks to: SprRS",
   "equip.An_ancient_knurlwood_staff_crackling_with_power_and_exuding": "An ancient knurlwood staff crackling with power and exuding thin grey vapors.",
   "equip.An_ancient_staff_used_both_for_sacrifice_and_communion_with": "An ancient staff used both for sacrifice and communion with the gods.",
-  "equip.An_ancient_tome_bound_in_white_Leather,_created_to_aid_in_t": "An ancient tome bound in white leather, created to aid in the struggle against the ultimate evil.",
   "equip.An_ancient_tome_cloaked_in_white_leather,_created_to_aid_in": "An ancient tome cloaked in white leather, created to aid in the struggle against the ultimate evil.",
   "equip.An_ancient_weapon_imbued_with_the_power_of_the_cosmos.": "An ancient weapon imbued with the power of the cosmos.",
   "equip.An_ancient_weapon_that_spells_destruction_for_all_who_oppos": "An ancient weapon that spells destruction for all who oppose its master.",
-  "equip.An_ancient_weapon_that_that_spells_destruction_for_all_who_": "An ancient weapon that that spells destruction for all who oppose it's master.",
   "equip.An_angelic_tome,_empowered_by_divine_might_and_justified_by": "An angelic tome, empowered by divine might and justified by the souls of the righteous.",
   "equip.An_early_prototype_ring.": "An early prototype ring.",
   "equip.An_eerie_reminder_of_what_lays_in_the_depths_of_the_Shatter": "An eerie reminder of what lays in the depths of the Shatters.",
-  "equip.An_egg...for_testing.": "An egg...for testing.",
   "equip.An_egg_that_when_used,_hatches_a_Blue_Drake_to_help_you_in_": "An egg that when used, hatches a Blue Drake to help you in battle for a short time, paralyzing your enemies.",
   "equip.An_egg_that_when_used,_hatches_a_Green_Drake_to_help_you_in": "An egg that when used, hatches a Green Drake to help you in battle for a short time, casting slow upon your enemies.",
   "equip.An_egg_that_when_used,_hatches_a_Purple_Drake_to_help_you_i": "An egg that when used, hatches a Purple Drake to help you in battle for a short time.",
   "equip.An_egg_that_when_used,_hatches_a_White_Drake_to_heal_your_w": "An egg that when used, hatches a White Drake to heal your wounds in battle for a short time.",
   "equip.An_egg_that_when_used,_hatches_a_Yellow_Drake_to_help_you_i": "An egg that when used, hatches a Yellow Drake to help you in battle for a short time, causing bleeding to your enemies.",
   "equip.An_egg_that_when_used,_hatches_an_Orange_Drake_to_help_you_": "An egg that when used, hatches an Orange Drake to help you in battle for a short time, placing your enemies in stasis.",
   "equip.An_eldritch_cloak_of_the_afterworld_which_grants_invisibili": "An eldritch cloak of the afterworld which grants invisibility by enveloping its user in death itself.",
   "equip.An_elvish_wizardAPOSs_skull,_defiled_with_life-stealing_nec": "An elvish wizard's skull, defiled with life-stealing necrotic spells.",
@@ -2134,68 +2001,63 @@
   "equip.An_imposing_golden_staff_of_tremendous_otherworldly_power.": "An imposing golden staff of tremendous otherworldly power.",
   "equip.An_incantation_that_unlocks_the_Wine_Cellar.": "An incantation that unlocks the Wine Cellar.",
   "equip.An_infiltratorAPOSs_prism_used_by_eldritch_spies_to_create_": "An infiltrator's prism used by eldritch spies to create diversions behind the battle lines.",
   "equip.An_iron-reinforced_bow.": "An iron-reinforced bow.",
   "equip.An_odd_energy_source_known_for_the_amazing_ability_to_fire_": "An odd energy source known for the amazing ability to fire hats. Rarity: Uncommon",
   "equip.An_odd_stone,_eminating_a_dark_and_mysterious_energy.": "An odd stone, eminating a dark and mysterious energy.",
   "equip.An_onyx_set_in_a_gold_ring.": "An onyx set in a gold ring.",
   "equip.An_onyx_set_in_a_silver_ring.": "An onyx set in a silver ring.",
-  "equip.An_orb_of_astral_amethyst,_crystalized_beneath_the_titanic_": "An orb of astral amethyst, crystalized beneath the titanic mountains of the earth plane and used to secure dangerous creatures in distant realms.",
   "equip.An_orb_of_astral_amethyst,_crystallized_beneath_the_titanic": "An orb of astral amethyst, crystallized beneath the titanic mountains of the earth plane and used to secure dangerous creatures in distant realms.",
   "equip.An_orb_of_pure_diamond,_shining_with_an_eerie_blackness_and": "An orb of pure diamond, shining with an eerie blackness and thirsting to consume the life essence of mortals.",
   "equip.An_orb_that_temporarily_shackles_enemies_to_another_plane.": "An orb that temporarily shackles enemies to another plane.",
   "equip.An_orb_used_by_starwizards_to_bind_their_demonic_opponents.": "An orb used by starwizards to bind their demonic opponents.",
   "equip.An_ornate_but_strong_shield_plated_with_gold.": "An ornate but strong shield plated with gold.",
   "equip.An_ornate_robe_worn_by_servants_of_the_faith.": "An ornate robe worn by servants of the faith.",
   "equip.An_otherworldly_staff_of_omnipresent_elation,_embodied_of_c": "An otherworldly staff of omnipresent elation, embodied of cardinal essence and the power of deathless peace.",
-  "equip.An_second_egg...for_testing.": "An second egg...for testing.",
   "equip.An_uncommon__?_?_?_?__pet_egg.": "An uncommon  ? ? ? ?  pet egg.",
   "equip.An_uncommon_aquatic_pet_egg.": "An uncommon aquatic pet egg.",
   "equip.An_uncommon_automaton_pet_egg.": "An uncommon automaton pet egg.",
   "equip.An_uncommon_avian_pet_egg.": "An uncommon avian pet egg.",
-  "equip.An_uncommon_bird_pet_egg.": "An uncommon bird pet egg.",
   "equip.An_uncommon_canine_pet_egg.": "An uncommon canine pet egg.",
   "equip.An_uncommon_exotic_pet_egg.": "An uncommon exotic pet egg.",
   "equip.An_uncommon_farm_pet_egg.": "An uncommon farm pet egg.",
   "equip.An_uncommon_feline_pet_egg.": "An uncommon feline pet egg.",
   "equip.An_uncommon_humanoid_pet_egg.": "An uncommon humanoid pet egg.",
   "equip.An_uncommon_insect_pet_egg.": "An uncommon insect pet egg.",
   "equip.An_uncommon_penguin_pet_egg.": "An uncommon penguin pet egg.",
   "equip.An_uncommon_pet_egg_of_an_unknown_pet_family.": "An uncommon pet egg of an unknown pet family.",
   "equip.An_uncommon_reptile_pet_egg.": "An uncommon reptile pet egg.",
   "equip.An_uncommon_spooky_pet_egg.": "An uncommon spooky pet egg.",
-  "equip.An_uncommon_water_pet_egg.": "An uncommon water pet egg.",
   "equip.An_uncommon_woodland_pet_egg.": "An uncommon woodland pet egg.",
   "equip.An_unfathomably_powerful_sword_that_absorbs_the_skulls_of_e": "An unfathomably powerful sword that absorbs the skulls of enemies and unleashes them with magical energy.",
   "equip.An_unfathomably_powerful_sword_wielded_by_titanic_air_eleme": "An unfathomably powerful sword wielded by titanic air elementals in their great war of revolution.",
   "equip.An_unimaginably_destructive_spell,_devised_by_the_great_mou": "An unimaginably destructive spell, devised by the great mountain thaumaturgists to battle against demonic giants.",
   "equip.An_unsettling_glow_looms_beneath_the_ancient_gemAPOSs_surfa": "An unsettling glow looms beneath the ancient gem's surface. Soon enough its power will be unleashed again.",
   "equip.Anatis_Staff": "Anatis Staff",
   "equip.Ancient_Spell:_Pierce": "Ancient Spell: Pierce",
   "equip.Ancient_Stone_Sword": "Ancient Stone Sword",
   "equip.Annihilation_Armor": "Annihilation Armor",
   "equip.Annoying_Firecracker_Katana": "Annoying Firecracker Katana",
   "equip.ArbiterAPOSs_Wrath": "Arbiter's Wrath",
-  "equip.Arbiters_Wrath": "Arbiters Wrath",
   "equip.Arcblast_Scepter": "Arcblast Scepter",
   "equip.Archon_Sword": "Archon Sword",
   "equip.Armor_made_from_interlocking_iron_links.": "Armor made from interlocking iron links.",
   "equip.Armor_made_from_interlocking_links_of_metal.": "Armor made from interlocking links of metal.",
   "equip.Armor_made_from_overlapping_plates_of_metal.": "Armor made from overlapping plates of metal.",
   "equip.Armor_made_from_the_scales_of_a_full_grown_dragon.": "Armor made from the scales of a full grown dragon.",
   "equip.Armor_made_from_the_strongest_and_most_desirable_of_all_met": "Armor made from the strongest and most desirable of all metals.",
   "equip.Armor_made_from_the_thick_leather_of_a_dire_bear.": "Armor made from the thick leather of a dire bear.",
   "equip.Armor_made_of_hardened_leather.": "Armor made of hardened leather.",
   "equip.Artemis_Skin": "Artemis Skin",
-  "equip.As_I_lifted_the_stone_from_itAPOSs_resting_place_it_became_": "As I lifted the stone from it's resting place it became readily apparent there was more to it than met the eye...",
   "equip.As_I_lifted_the_stone_from_its_resting_place_it_became_read": "As I lifted the stone from its resting place it became readily apparent there was more to it than met the eye...",
   "equip.Ascended_Sorcerer_Skin": "Ascended Sorcerer Skin",
   "equip.Avenger_Staff": "Avenger Staff",
   "equip.B.B._Wolf_Skin": "B.B. Wolf Skin",
+  "equip.Baby_Djinja_Skin": "Baby Djinja Skin",
   "equip.Backpack": "Backpack",
   "equip.Bahama_Sunrise": "Bahama Sunrise",
   "equip.Baneserpent_Poison": "Baneserpent Poison",
   "equip.Banishment_Orb": "Banishment Orb",
   "equip.Barely_Attuned_Magic_Thingy": "Barely Attuned Magic Thingy",
   "equip.Bashing_Bride_Skin": "Bashing Bride Skin",
   "equip.Basic_Star": "Basic Star",
   "equip.Basilisk_Hide_Armor": "Basilisk Hide Armor",
@@ -2235,29 +2097,25 @@
   "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",
   "equip.Chainmail": "Chainmail",
   "equip.Chainmail_made_with_reinforcing_mithril_ribs.": "Chainmail made with reinforcing mithril ribs.",
   "equip.Chardonnay": "Chardonnay",
   "equip.Chasuble_of_Holy_Light": "Chasuble of Holy Light",
   "equip.Cheater_Heavy_Armor": "Cheater Heavy Armor",
   "equip.Cheater_Light_Armor": "Cheater Light Armor",
   "equip.Cheater_Robe": "Cheater Robe",
-  "equip.Cheeseburger_Delux": "Cheeseburger Delux",
-  "equip.Chemist_Skin": "Chemist Skin",
   "equip.Chicken_Leg_of_Doom": "Chicken Leg of Doom",
   "equip.Chimera_Hide_Armor": "Chimera Hide Armor",
   "equip.Chocolate_Cream_Sandwich_Cookie": "Chocolate Cream Sandwich Cookie",
   "equip.Cloak_of_Darkness": "Cloak of Darkness",
   "equip.Cloak_of_Endless_Twilight": "Cloak of Endless Twilight",
   "equip.Cloak_of_Ghostly_Concealment": "Cloak of Ghostly Concealment",
   "equip.Cloak_of_Shadows": "Cloak of Shadows",
   "equip.Cloak_of_Speed": "Cloak of Speed",
@@ -2267,32 +2125,29 @@
   "equip.Cloudflash_Scepter": "Cloudflash Scepter",
   "equip.Colossus_Shield": "Colossus Shield",
   "equip.Combat_Helm": "Combat Helm",
   "equip.Comet_Staff": "Comet Staff",
   "equip.Common_????_Egg": "Common ???? Egg",
   "equip.Common_Aquatic_Egg": "Common Aquatic Egg",
   "equip.Common_Automaton_Egg": "Common Automaton Egg",
   "equip.Common_Avian_Egg": "Common Avian Egg",
-  "equip.Common_Bird_Egg": "Common Bird Egg",
   "equip.Common_Canine_Egg": "Common Canine Egg",
   "equip.Common_Exotic_Egg": "Common Exotic Egg",
   "equip.Common_Farm_Egg": "Common Farm Egg",
   "equip.Common_Feline_Egg": "Common Feline Egg",
   "equip.Common_Humanoid_Egg": "Common Humanoid Egg",
   "equip.Common_Insect_Egg": "Common Insect Egg",
   "equip.Common_Mystery_Egg": "Common Mystery Egg",
   "equip.Common_Penguin_Egg": "Common Penguin Egg",
   "equip.Common_Reptile_Egg": "Common Reptile Egg",
   "equip.Common_Spooky_Egg": "Common Spooky Egg",
-  "equip.Common_Water_Egg": "Common Water Egg",
   "equip.Common_Woodland_Egg": "Common Woodland Egg",
   "equip.Concentrated,_lethal_venom_of_the_winged_ethereal_baneserpe": "Concentrated, lethal venom of the winged ethereal baneserpent.",
   "equip.Conducting_Wand": "Conducting Wand",
-  "equip.Consolation_Key": "Consolation Key",
   "equip.Coral_Bow": "Coral Bow",
   "equip.Coral_Juice": "Coral Juice",
   "equip.Coral_Ring": "Coral Ring",
   "equip.Coral_Silk_Armor": "Coral Silk Armor",
   "equip.Coral_Venom_Trap": "Coral Venom Trap",
   "equip.Corrupted_Cleaver": "Corrupted Cleaver",
   "equip.Cracked_Crystal_Skull": "Cracked Crystal Skull",
   "equip.Cranberries": "Cranberries",
@@ -2310,33 +2165,33 @@
   "equip.Customize_your_Archer_with_the_Slime_Skin._Rarity:_Common": "Customize your Archer with the Slime Skin. Rarity: Common",
   "equip.Customize_your_Assassin_with_the_Agent_Skin._Rarity:_Rare": "Customize your Assassin with the Agent Skin. Rarity: Rare",
   "equip.Customize_your_Assassin_with_the_Slime_Skin.": "Customize your Assassin with the Slime Skin.",
   "equip.Customize_your_Huntress_with_the_Scarlett_Skin.": "Customize your Huntress with the Scarlett Skin.",
   "equip.Customize_your_Huntress_with_the_Slime_Skin.": "Customize your Huntress with the Slime Skin.",
   "equip.Customize_your_Knight_with_the_Slime_Skin._Rarity:_Uncommon": "Customize your Knight with the Slime Skin. Rarity: Uncommon",
   "equip.Customize_your_Mystic_with_the_Slime_Skin.": "Customize your Mystic with the Slime Skin.",
   "equip.Customize_your_Necromancer_with_the_Slime_Skin.": "Customize your Necromancer with the Slime Skin.",
-  "equip.Customize_your_Ninja_with_the_Ginja_Skin.": "Customize your Ninja with the Ginja Skin.",
+  "equip.Customize_your_Ninja_with_the_Baby_Djinja_Skin.": "Customize your Ninja with the Baby Djinja Skin.",
+  "equip.Customize_your_Ninja_with_the_Djinja_Skin.": "Customize your Ninja with the Djinja Skin.",
   "equip.Customize_your_Ninja_with_the_Rosen_Blade_Skin.": "Customize your Ninja with the Rosen Blade Skin.",
   "equip.Customize_your_Ninja_with_the_Slime_Skin.": "Customize your Ninja with the Slime Skin.",
   "equip.Customize_your_Paladin_with_the_Holy_Avenger_Skin._Thanks_t": "Customize your Paladin with the Holy Avenger Skin. Thanks to: Uomo",
   "equip.Customize_your_Paladin_with_the_Slime_Skin.": "Customize your Paladin with the Slime Skin.",
   "equip.Customize_your_Priest_with_the_Slime_Skin._Rarity:_Common": "Customize your Priest with the Slime Skin. Rarity: Common",
   "equip.Customize_your_Rogue_with_the_Brigand_Skin._Rarity:_Uncommo": "Customize your Rogue with the Brigand Skin. Rarity: Uncommon",
   "equip.Customize_your_Rogue_with_the_Slime_Skin.": "Customize your Rogue with the Slime Skin.",
   "equip.Customize_your_Sorcerer_with_the_Slime_Skin.": "Customize your Sorcerer with the Slime Skin.",
   "equip.Customize_your_Trickster_with_the_Slime_Skin.": "Customize your Trickster with the Slime Skin.",
   "equip.Customize_your_Warrior_with_the_Ivory_Gladiator_Skin.": "Customize your Warrior with the Ivory Gladiator Skin.",
   "equip.Customize_your_Warrior_with_the_Olive_Gladiator_Skin.": "Customize your Warrior with the Olive Gladiator Skin.",
   "equip.Customize_your_Warrior_with_the_Shoveguy_Skin.": "Customize your Warrior with the Shoveguy Skin.",
   "equip.Customize_your_Warrior_with_the_Slime_Skin.": "Customize your Warrior with the Slime Skin.",
   "equip.Customize_your_Wizard_with_the_Gentleman_Skin._Rarity:_Rare": "Customize your Wizard with the Gentleman Skin. Rarity: Rare Indeed",
   "equip.Cut_from_a_fallen_star,_a_deep_purple_emanating_an_unearthl": "Cut from a fallen star, a deep purple emanating an unearthly glow, hinting at the power fused within.",
-  "equip.Dagger_of_Amethyst_Protection": "Dagger of Amethyst Protection",
   "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!",
@@ -2353,43 +2208,41 @@
   "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",
   "equip.Diamonds_are_a_girls_best_friend,_they_also_happen_to_make_": "Diamonds are a girls best friend, they also happen to make for great blades…so shiny!",
   "equip.Dirk": "Dirk",
   "equip.Dirk_of_Cronus": "Dirk of Cronus",
   "equip.Discharge_Scepter": "Discharge Scepter",
+  "equip.Djinja_Skin": "Djinja Skin",
   "equip.Doctor_Swordsworth": "Doctor Swordsworth",
   "equip.Doku_No_Ken": "Doku No Ken",
   "equip.Dominion_Armor": "Dominion Armor",
   "equip.DonAPOSt_make_me_hit_you_with_this_rulerBANG": "Don't make me hit you with this ruler!",
   "equip.Doom_Bow": "Doom Bow",
   "equip.Doom_Circle": "Doom Circle",
   "equip.Double_Bow": "Double Bow",
   "equip.Double_Cheeseburger_Deluxe": "Double Cheeseburger Deluxe",
   "equip.Draconis_Key": "Draconis Key",
   "equip.Draconis_Potion": "Draconis Potion",
   "equip.Dragonscale_Armor": "Dragonscale Armor",
   "equip.Dragonsoul_Sword": "Dragonsoul Sword",
   "equip.Dragonstalker_Trap": "Dragonstalker Trap",
   "equip.Drain_10_MP/sec": "Drain 10 MP/sec",
   "equip.Drake_Hide_Armor": "Drake Hide Armor",
   "equip.Drow_Trickster_Skin": "Drow Trickster Skin",
-  "equip.Dungeon_Key": "Dungeon Key",
   "equip.Duration": "Duration",
   "equip.Dusky_Rose_Dagger": "Dusky Rose Dagger",
   "equip.Ear_of_Corn": "Ear of Corn",
   "equip.Effusion_of_Defense": "Effusion of Defense",
   "equip.Effusion_of_Dexterity": "Effusion of Dexterity",
   "equip.Effusion_of_Life": "Effusion of Life",
   "equip.Effusion_of_Mana": "Effusion of Mana",
   "equip.Eldritch_Wand": "Eldritch Wand",
@@ -2412,17 +2265,16 @@
   "equip.Elvencraft_Quiver": "Elvencraft Quiver",
   "equip.Emerald_Mystery_Key": "Emerald Mystery Key",
   "equip.Emeraldshard_Dagger": "Emeraldshard Dagger",
   "equip.Energy_Staff": "Energy Staff",
   "equip.Enter_this_destroyed_Nexus_at_your_own_peril.": "Enter this destroyed Nexus at your own peril.",
   "equip.Essence_Tap_Skull": "Essence Tap Skull",
   "equip.Etherite_Dagger": "Etherite Dagger",
   "equip.Eucalyptus_can_be_incredibly_effective_at_looking_awesome.": "Eucalyptus can be incredibly effective at looking awesome.",
-  "equip.Event_Chest": "Event Chest",
   "equip.Experimental_Ring": "Experimental Ring",
   "equip.Exquisitely_decorated_adamantine_armor_smithed_by_underdeep": "Exquisitely decorated adamantine armor smithed by underdeep dwarves for the wardens of the demonclefts.",
   "equip.Eye_of_Osiris": "Eye of Osiris",
   "equip.Fa_la_la_la_la,_la_la_la_la.": "Fa la la la la, la la la la.",
   "equip.Fairy_Plate": "Fairy Plate",
   "equip.Falchion": "Falchion",
   "equip.Felwasp_Toxin": "Felwasp Toxin",
   "equip.Fire_Bow": "Fire Bow",
@@ -2430,57 +2282,49 @@
   "equip.Fire_Dragon_Battle_Armor": "Fire Dragon Battle Armor",
   "equip.Fire_Nova_Spell": "Fire Nova Spell",
   "equip.Fire_Spray_Spell": "Fire Spray Spell",
   "equip.Fire_Sword": "Fire Sword",
   "equip.Fire_Wand": "Fire Wand",
   "equip.Fire_Water": "Fire Water",
   "equip.Firebrand_Staff": "Firebrand Staff",
   "equip.Flame_Burst_Spell": "Flame Burst Spell",
-  "equip.Food_for_your_pet._A_classicBANG": "Food for your pet. A classic!",
-  "equip.Food_for_your_pet._A_delux_burgerBANG": "Food for your pet. A delux burger!",
   "equip.Food_for_your_pet._A_hearty_classicBANG": "Food for your pet. A hearty classic!",
   "equip.Food_for_your_pet._A_whole_Thanksgiving_turkeyBANG": "Food for your pet. A whole Thanksgiving turkey!",
   "equip.Food_for_your_pet._Buttery_and_Delicious.": "Food for your pet. Buttery and Delicious.",
   "equip.Food_for_your_pet._Cheesy_and_delicious.": "Food for your pet. Cheesy and delicious.",
-  "equip.Food_for_your_pet._Cheesy_and_delicous.": "Food for your pet. Cheesy and delicous.",
-  "equip.Food_for_your_pet._Cointains_fresh_salsaBANG": "Food for your pet. Cointains fresh salsa!",
   "equip.Food_for_your_pet._Contains_fresh_salsaBANG": "Food for your pet. Contains fresh salsa!",
   "equip.Food_for_your_pet._Fresh_cut_and_steaming_hotBANG": "Food for your pet. Fresh cut and steaming hot!",
   "equip.Food_for_your_pet._Fresh_out_of_OryxAPOSs_kitchen.": "Food for your pet. Fresh out of Oryx's kitchen.",
   "equip.Food_for_your_pet._Goes_best_with_milkBANG": "Food for your pet. Goes best with milk!",
   "equip.Food_for_your_pet._Nice_and_sweet.": "Food for your pet. Nice and sweet.",
   "equip.Food_for_your_pet._Super_healthy,_super_delicious,_super_wr": "Food for your pet. Super healthy, super delicious, super wrathful!",
-  "equip.Food_for_your_pet._Super_healthy,_super_delicousBANG": "Food for your pet. Super healthy, super delicous!",
   "equip.Food_for_your_pet._Tart_and_tangy.": "Food for your pet. Tart and tangy.",
   "equip.Food_for_your_pet._The_nectar_of_the_gods_which_holds_great": "Food for your pet. The nectar of the gods which holds great power!",
-  "equip.Food_for_your_pet._The_necter_of_the_gods_which_holds_great": "Food for your pet. The necter of the gods which holds great power!",
   "equip.Food_for_your_pet._The_ultimate_deluxe_cheeseburgerBANG": "Food for your pet. The ultimate deluxe cheeseburger!",
   "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.Ghastly_Drape": "Ghastly Drape",
   "equip.Ghost_Huntress_Skin": "Ghost Huntress Skin",
   "equip.Ghost_Pirate_Rum": "Ghost Pirate Rum",
   "equip.Ghostly_Prism": "Ghostly Prism",
   "equip.Giantcatcher_Trap": "Giantcatcher Trap",
-  "equip.Ginja_Skin": "Ginja Skin",
   "equip.Glass_Sword": "Glass Sword",
   "equip.Gold_Medal": "Gold Medal",
   "equip.Golden_Ankh": "Golden Ankh",
   "equip.Golden_Bolt": "Golden Bolt",
   "equip.Golden_Bow": "Golden Bow",
   "equip.Golden_Candelabra": "Golden Candelabra",
   "equip.Golden_Chainmail": "Golden Chainmail",
   "equip.Golden_Chalice": "Golden Chalice",
@@ -2491,17 +2335,16 @@
   "equip.Golden_Helm": "Golden Helm",
   "equip.Golden_Horn_Conch": "Golden Horn Conch",
   "equip.Golden_Nut": "Golden Nut",
   "equip.Golden_Quiver": "Golden Quiver",
   "equip.Golden_Ribcage": "Golden Ribcage",
   "equip.Golden_Shield": "Golden Shield",
   "equip.Golden_Skull": "Golden Skull",
   "equip.Golden_Sword": "Golden Sword",
-  "equip.Grapes": "Grapes",
   "equip.Grapes_of_Wrath": "Grapes of Wrath",
   "equip.Great_Taco": "Great Taco",
   "equip.Greater_Health_Potion": "Greater Health Potion",
   "equip.Greater_Magic_Potion": "Greater Magic Potion",
   "equip.Greater_Potion_of_Attack": "Greater Potion of Attack",
   "equip.Greater_Potion_of_Defense": "Greater Potion of Defense",
   "equip.Greater_Potion_of_Dexterity": "Greater Potion of Dexterity",
   "equip.Greater_Potion_of_Life": "Greater Potion of Life",
@@ -2514,31 +2357,28 @@
   "equip.Greywood_Bow": "Greywood Bow",
   "equip.Griffon_Hide_Armor": "Griffon Hide Armor",
   "equip.Gum_that_temporarily_boosts_your_attack.": "Gum that temporarily boosts your attack.",
   "equip.Gum_that_temporarily_boosts_your_defense.": "Gum that temporarily boosts your defense.",
   "equip.Gum_that_temporarily_boosts_your_dexterity.": "Gum that temporarily boosts your dexterity.",
   "equip.Gum_that_temporarily_boosts_your_speed.": "Gum that temporarily boosts your speed.",
   "equip.Gum_that_temporarily_boosts_your_vitality.": "Gum that temporarily boosts your vitality.",
   "equip.Hallucination_Prism": "Hallucination Prism",
-  "equip.Hamburger": "Hamburger",
   "equip.Harbinger_of_hard-boiled_justice._Sprite_by_Linkshot,_Sues,": "Harbinger of hard-boiled justice. Sprite by Linkshot, Sues, and Wylem.",
   "equip.Harlequin_Armor": "Harlequin Armor",
-  "equip.Harnessing_Bella_Donna’s_unusual_powers,_these_flowers_are_": "Harnessing Bella Donna’s unusual powers, these flowers are beautiful but deadly!",
   "equip.Harnessing_the_unusual_power_of_Bella_DonnaAPOSs_flowers_th": "Harnessing the unusual power of Bella Donna's flowers these shots are beautiful but deadly!",
   "equip.HeAPOSs_big,_heAPOSs_bad,_and_heAPOSs_a_wolf._Thanks_to:_Ro": "He's big, he's bad, and he's a wolf. Thanks to: RotMGBeige",
   "equip.He_does_not_kill_his_victims._He_becomes_them.": "He does not kill his victims. He becomes them.",
   "equip.Heal": "Heal",
   "equip.Healing_Ichor": "Healing Ichor",
   "equip.Healing_Tome": "Healing Tome",
   "equip.Health_Potion": "Health Potion",
   "equip.Heartfind_Dagger": "Heartfind Dagger",
   "equip.Heartstealer_Skull": "Heartstealer Skull",
   "equip.Heavy_Crossbow": "Heavy Crossbow",
-  "equip.Hee_Hee,_Ha_Ha,_Ho_HoBANG_Want_to_hear_a_joke?": "Hee Hee, Ha Ha, Ho Ho! Want to hear a joke?",
   "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",
@@ -2576,39 +2416,36 @@
   "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",
   "equip.Leather_Armor": "Leather Armor",
   "equip.Leather_armor_fashioned_from_the_scaly_skin_of_a_fire_breat": "Leather armor fashioned from the scaly skin of a fire breathing drake.",
-  "equip.Leather_armor_fashioned_from_the_scaly_skin_of_firebreathin": "Leather armor fashioned from the scaly skin of firebreathing drake.",
   "equip.Leather_armor_fashioned_from_wolf_pelts.": "Leather armor fashioned from wolf pelts.",
   "equip.Leather_armor_made_from_the_durable_hide_of_a_roc.": "Leather armor made from the durable hide of a roc.",
   "equip.Leather_armor_made_from_the_protective_skin_of_hippogriffs.": "Leather armor made from the protective skin of hippogriffs.",
   "equip.Leather_armor_made_from_the_skin_of_a_magical_lizard.": "Leather armor made from the skin of a magical lizard.",
   "equip.Leather_armor_made_from_the_tough_hide_of_a_minotaur.": "Leather armor made from the tough hide of a minotaur.",
   "equip.Leather_armor_studded_with_metal_rivets_that_provide_extra_": "Leather armor studded with metal rivets that provide extra protection.",
   "equip.Legendary_????_Egg": "Legendary ???? Egg",
   "equip.Legendary_Aquatic_Egg": "Legendary Aquatic Egg",
   "equip.Legendary_Automaton_Egg": "Legendary Automaton Egg",
   "equip.Legendary_Avian_Egg": "Legendary Avian Egg",
-  "equip.Legendary_Bird_Egg": "Legendary Bird Egg",
   "equip.Legendary_Canine_Egg": "Legendary Canine Egg",
   "equip.Legendary_Exotic_Egg": "Legendary Exotic Egg",
   "equip.Legendary_Farm_Egg": "Legendary Farm Egg",
   "equip.Legendary_Feline_Egg": "Legendary Feline Egg",
   "equip.Legendary_Humanoid_Egg": "Legendary Humanoid Egg",
   "equip.Legendary_Insect_Egg": "Legendary Insect Egg",
   "equip.Legendary_Mystery_Egg": "Legendary Mystery Egg",
   "equip.Legendary_Penguin_Egg": "Legendary Penguin Egg",
   "equip.Legendary_Reptile_Egg": "Legendary Reptile Egg",
   "equip.Legendary_Spooky_Egg": "Legendary Spooky Egg",
-  "equip.Legendary_Water_Egg": "Legendary Water Egg",
   "equip.Legendary_Woodland_Egg": "Legendary Woodland Egg",
   "equip.Lethal_aquatic_poison_extracted_from_the_glands_of_the_magi": "Lethal aquatic poison extracted from the glands of the magical demon ray.",
   "equip.Lethargic_Sentience": "Lethargic Sentience",
   "equip.Lets_you_choose_and_change_the_physical_form_of_your_pet.\\n": "Lets you choose and change the physical form of your pet.\\nYou must be in the pet yard to use it.",
   "equip.Leviathan_Armor": "Leviathan Armor",
   "equip.Lifedrinker_Skull": "Lifedrinker Skull",
   "equip.Light_armor_crafted_from_the_hard-as-steel_leafy_scales_of_": "Light armor crafted from the hard-as-steel leafy scales of a Leaf Dragon.",
   "equip.Lightning_Scepter": "Lightning Scepter",
@@ -2639,34 +2476,30 @@
   "equip.Mail_made_from_blued_steel.": "Mail made from blued steel.",
   "equip.Manor_Key": "Manor Key",
   "equip.Mantle_of_Skuld": "Mantle of Skuld",
   "equip.Many_do_not_realize_how_powerful_a_kind_wish_is.": "Many do not realize how powerful a kind wish is.",
   "equip.Masamune": "Masamune",
   "equip.Melon_Liqueur": "Melon Liqueur",
   "equip.MeowBANG_Meow_meow_meowBANG_MEOWMEOWMEOW._Rarity:_Uncommon": "Meow! Meow meow meow! MEOWMEOWMEOW. Rarity: Uncommon",
   "equip.Mermaid-made_armor_woven_from_unbreakable_coral_threads.": "Mermaid-made armor woven from unbreakable coral threads.",
-  "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",
-  "equip.Necromancer_of_the_Ancient_Scarlet_Order._Thanks_to:_Maldir": "Necromancer of the Ancient Scarlet Order. Thanks to: Maldir6",
   "equip.Necrotic_Skull": "Necrotic Skull",
   "equip.Neutralization_Orb": "Neutralization Orb",
   "equip.Never_judge_a_book_by_its_cover.": "Never judge a book by its cover.",
   "equip.Nexus_no_Miko_Skin": "Nexus no Miko Skin",
   "equip.Night_Edge": "Night Edge",
   "equip.Nightwing_Venom": "Nightwing Venom",
   "equip.No_mortal_can_fire_this_dreaded_bow_without_resting_in_betw": "No mortal can fire this dreaded bow without resting in between shots. It requires tremendous skill to wield.",
   "equip.Not_all_sorcerers_are_male.": "Not all sorcerers are male.",
@@ -2694,17 +2527,16 @@
   "equip.Piercing._Thought_to_have_been_lost_to_the_ages,_the_wisdom": "Piercing. Thought to have been lost to the ages, the wisdom imparted in this tablet will summon a power unrivaled by any modern spell.",
   "equip.Pink_Passion_Breeze": "Pink Passion Breeze",
   "equip.Pirate_Cave_Key": "Pirate Cave Key",
   "equip.Pirate_KingAPOSs_Cutlass": "Pirate King's Cutlass",
   "equip.Pirate_Rum": "Pirate Rum",
   "equip.Pit_Viper_Poison": "Pit Viper Poison",
   "equip.Pixie-Enchanted_Sword": "Pixie-Enchanted Sword",
   "equip.Pixies_are_often_a_more_aggressive_fae._It_makes_great_sens": "Pixies are often a more aggressive fae. It makes great sense that they would provide heroes with swords as fine as this.",
-  "equip.Pizza_Slice": "Pizza Slice",
   "equip.Plague_Poison": "Plague Poison",
   "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",
@@ -2735,59 +2567,53 @@
   "equip.Power_Pizza": "Power Pizza",
   "equip.Power_Wand": "Power Wand",
   "equip.Precisely_Calibrated_Stringstick": "Precisely Calibrated Stringstick",
   "equip.Present_Dispensing_Wand": "Present Dispensing Wand",
   "equip.Prism_of_Apparitions": "Prism of Apparitions",
   "equip.Prism_of_Dancing_Swords": "Prism of Dancing Swords",
   "equip.Prism_of_Figments": "Prism of Figments",
   "equip.Prism_of_Phantoms": "Prism of Phantoms",
-  "equip.Protect_the_helpless,_embolden_the_heroic,_dispense_justice": "Protect the helpless, embolden the heroic, dispense justice to the unjust. - Inscription, in Fae.",
   "equip.Protect_the_helpless,_embolden_the_heroic,_slow_the_progres": "Protect the helpless, embolden the heroic, slow the progress of evil. - Inscription, in Fae.",
   "equip.Pumpkin_Pie": "Pumpkin Pie",
   "equip.Puppet_MasterAPOSs_Encore_Key": "Puppet Master's Encore Key",
   "equip.Puppet_Master_Skin": "Puppet Master Skin",
   "equip.Purple_Drake_Egg": "Purple Drake Egg",
   "equip.Purple_Gumball": "Purple Gumball",
-  "equip.Pyramid_Revenant_Skin": "Pyramid Revenant Skin",
   "equip.Quiver_of_Elvish_Mastery": "Quiver of Elvish Mastery",
   "equip.Quiver_of_Thunder": "Quiver of Thunder",
   "equip.Ragetalon_Dagger": "Ragetalon Dagger",
   "equip.Ranger_Skin": "Ranger Skin",
   "equip.Rare_????_Egg": "Rare ???? Egg",
   "equip.Rare_Aquatic_Egg": "Rare Aquatic Egg",
   "equip.Rare_Automaton_Egg": "Rare Automaton Egg",
   "equip.Rare_Avian_Egg": "Rare Avian Egg",
-  "equip.Rare_Bird_Egg": "Rare Bird Egg",
   "equip.Rare_Canine_Egg": "Rare Canine Egg",
   "equip.Rare_Exotic_Egg": "Rare Exotic Egg",
   "equip.Rare_Farm_Egg": "Rare Farm Egg",
   "equip.Rare_Feline_Egg": "Rare Feline Egg",
   "equip.Rare_Humanoid_Egg": "Rare Humanoid Egg",
   "equip.Rare_Insect_Egg": "Rare Insect Egg",
   "equip.Rare_Mystery_Egg": "Rare Mystery Egg",
   "equip.Rare_Penguin_Egg": "Rare Penguin Egg",
   "equip.Rare_Reptile_Egg": "Rare Reptile Egg",
   "equip.Rare_Spooky_Egg": "Rare Spooky Egg",
-  "equip.Rare_Water_Egg": "Rare Water Egg",
   "equip.Rare_Woodland_Egg": "Rare Woodland Egg",
   "equip.Ravenheart_Sword": "Ravenheart Sword",
   "equip.Ray_Katana": "Ray Katana",
   "equip.Realm-wheat_Hefeweizen": "Realm-wheat Hefeweizen",
   "equip.Red_Gumball": "Red Gumball",
   "equip.Red_Iron_Helm": "Red Iron Helm",
-  "equip.Red_Marauder_Skin": "Red Marauder Skin",
   "equip.Reinforced_Bow": "Reinforced Bow",
   "equip.Reinforced_Quiver": "Reinforced Quiver",
   "equip.Reinforced_Shield": "Reinforced Shield",
   "equip.Reinforced_with_magical_hard_candy_from_the_candy_forest._S": "Reinforced with magical hard candy from the candy forest. Sticky but strong.",
   "equip.Remedy_Tome": "Remedy Tome",
   "equip.Resurrected_WarriorAPOSs_Armor": "Resurrected Warrior's Armor",
   "equip.Rice_Wine": "Rice Wine",
-  "equip.Ring_Pop": "Ring Pop",
   "equip.Ring_of_Attack": "Ring of Attack",
   "equip.Ring_of_Decades": "Ring of Decades",
   "equip.Ring_of_Defense": "Ring of Defense",
   "equip.Ring_of_Dexterity": "Ring of Dexterity",
   "equip.Ring_of_Divine_Faith": "Ring of Divine Faith",
   "equip.Ring_of_Exalted_Attack": "Ring of Exalted Attack",
   "equip.Ring_of_Exalted_Defense": "Ring of Exalted Defense",
   "equip.Ring_of_Exalted_Dexterity": "Ring of Exalted Dexterity",
@@ -2853,17 +2679,16 @@
   "equip.Robe_of_the_Master": "Robe of the Master",
   "equip.Robe_of_the_Moon_Wizard": "Robe of the Moon Wizard",
   "equip.Robe_of_the_Neophyte": "Robe of the Neophyte",
   "equip.Robe_of_the_Shadow_Magus": "Robe of the Shadow Magus",
   "equip.Robe_of_the_Star_Mother": "Robe of the Star Mother",
   "equip.Robe_of_the_Student": "Robe of the Student",
   "equip.Robe_of_the_Summer_Solstice": "Robe of the Summer Solstice",
   "equip.Robe_of_the_Tlatoani": "Robe of the Tlatoani",
-  "equip.Robes_of_Twilight": "Robes of Twilight",
   "equip.Robobow": "Robobow",
   "equip.Roc_Leather_Armor": "Roc Leather Armor",
   "equip.Rock_Candy": "Rock Candy",
   "equip.Rogue_of_the_Platinum_Order._Thanks_to:_DELer": "Rogue of the Platinum Order. Thanks to: DELer",
   "equip.Rosen_Blade_Skin": "Rosen Blade Skin",
   "equip.Ruby_Gemstone": "Ruby Gemstone",
   "equip.Ruby_Mystery_Key": "Ruby Mystery Key",
   "equip.Rum_with_ghostly_properties_that_can_help_the_drinker_enter": "Rum with ghostly properties that can help the drinker enter the spirit realm. It has fermented under the sea for ages.",
@@ -2874,17 +2699,16 @@
   "equip.Sand_Pail_1": "Sand Pail",
   "equip.Sand_Pail_2": "Sand Pail",
   "equip.Sand_Pail_3": "Sand Pail",
   "equip.Sand_Pail_4": "Sand Pail",
   "equip.Sand_Pail_5": "Sand Pail",
   "equip.Santa_Skin": "Santa Skin",
   "equip.Sauvignon_Blanc": "Sauvignon Blanc",
   "equip.Savage_Trap": "Savage Trap",
-  "equip.Scarlet_Order_Necromancer_Skin": "Scarlet Order Necromancer Skin",
   "equip.Scarlett_Skin": "Scarlett Skin",
   "equip.Scepter_of_Fulmination": "Scepter of Fulmination",
   "equip.Scepter_of_Geb": "Scepter of Geb",
   "equip.Scepter_of_Skybolts": "Scepter of Skybolts",
   "equip.Scepter_of_Storms": "Scepter of Storms",
   "equip.Scorching_Blast_Spell": "Scorching Blast Spell",
   "equip.Seal_of_Blasphemous_Prayer": "Seal of Blasphemous Prayer",
   "equip.Seal_of_the_Aspirant": "Seal of the Aspirant",
@@ -2936,17 +2760,16 @@
   "equip.Small_Firecracker": "Small Firecracker",
   "equip.Snake_Eye_Ring": "Snake Eye Ring",
   "equip.Snake_Oil": "Snake Oil",
   "equip.Snake_Pit_Key": "Snake Pit Key",
   "equip.Snake_Skin_Armor": "Snake Skin Armor",
   "equip.Snake_Skin_Shield": "Snake Skin Shield",
   "equip.So_hot,_itAPOSs_cool._The_unique_combo_of_hot_and_cold_elem": "So hot, it's cool. The unique combo of hot and cold elements allows it to generate devastating ice attacks.",
   "equip.Soft_Drink": "Soft Drink",
-  "equip.Sometimes_working_with_toxins_requires_a_serious_amount_of_": "Sometimes working with toxins requires a serious amount of protection. Thanks to: Phophull",
   "equip.Sorceress_Skin": "Sorceress Skin",
   "equip.Soul_Siphon_Skull": "Soul Siphon Skull",
   "equip.Soul_of_the_Bearer": "Soul of the Bearer",
   "equip.Soulless_Robe": "Soulless Robe",
   "equip.Spectral_Cloth_Armor": "Spectral Cloth Armor",
   "equip.Spectral_Ring_of_Horrors": "Spectral Ring of Horrors",
   "equip.Speed_Sprout": "Speed Sprout",
   "equip.Speedy_on_self": "Speedy on self",
@@ -2988,27 +2811,21 @@
   "equip.Suitable_for_practice.": "Suitable for practice.",
   "equip.Sunshine_Shiv": "Sunshine Shiv",
   "equip.Super_regalBANG": "Super regal!",
   "equip.Superburger": "Superburger",
   "equip.Superior_leather_armor_made_from_the_magical_hide_of_a_grif": "Superior leather armor made from the magical hide of a griffon.",
   "equip.Superlative_leather_armor_fashioned_from_the_skin_of_a_twel": "Superlative leather armor fashioned from the skin of a twelve-headed swamp hydra.",
   "equip.Suspension_Orb": "Suspension Orb",
   "equip.Sword_of_Acclaim": "Sword of Acclaim",
-  "equip.Sword_of_Celebration": "Sword of Celebration",
   "equip.Sword_of_Illumination": "Sword of Illumination",
   "equip.Sword_of_Majesty": "Sword of Majesty",
   "equip.Sword_of_Splendor": "Sword of Splendor",
   "equip.Sword_of_the_Mad_God": "Sword of the Mad God",
   "equip.Tablet_of_the_KingAPOSs_Avatar": "Tablet of the King's Avatar",
-  "equip.Taco": "Taco",
-  "equip.Test_Egg_1": "Test Egg 1",
-  "equip.Test_Egg_2": "Test Egg 2",
-  "equip.Test_Egg_4": "Test Egg 4",
-  "equip.Test_Egg_Specific": "Test Egg Specific",
   "equip.Thanksgiving_Turkey": "Thanksgiving Turkey",
   "equip.The_Chariot_-_Card_VII_of_the_Major_Arcana._Thanks_to_Dappe": "The Chariot - Card VII of the Major Arcana. Thanks to Dappertron.",
   "equip.The_Chariot_Tarot_Card": "The Chariot Tarot Card",
   "equip.The_Crawling_Depths_Key": "The Crawling Depths Key",
   "equip.The_Devil_-_Card_XV_of_the_Major_Arcana._Thanks_to_Dappertr": "The Devil - Card XV of the Major Arcana. Thanks to Dappertron. ",
   "equip.The_Devil_Tarot_Card": "The Devil Tarot Card",
   "equip.The_Fool_Tarot_Card": "The Fool Tarot Card",
   "equip.The_Forgotten_Crown": "The Forgotten Crown",
@@ -3028,17 +2845,16 @@
   "equip.The_World_Tarot_Card": "The World Tarot Card",
   "equip.The_azule_stone_makes_you_feel_ready_for_any_situation.": "The azule stone makes you feel ready for any situation.",
   "equip.The_dolomite_stone_makes_you_feel_able_to_stand_against_any": "The dolomite stone makes you feel able to stand against anything.",
   "equip.The_fabled_weapon_of_the_Sauce_Boss_himself.": "The fabled weapon of the Sauce Boss himself.",
   "equip.The_fool_represents_innocence,_it_is_the_beginning._When_in": "The fool represents innocence, it is the beginning. When inverted, the fool represents recklessness.",
   "equip.The_malachite_stone_makes_you_feel_at_peace_with_the_land.": "The malachite stone makes you feel at peace with the land.",
   "equip.The_metal_is_icy_cold_to_the_touch_and_delivers_a_biting_st": "The metal is icy cold to the touch and delivers a biting sting upon cutting.",
   "equip.The_sacred_blade_of_the_Cult_of_Admin._Not_to_be_trifled_wi": "The sacred blade of the Cult of Admin. Not to be trifled with.",
-  "equip.The_sacred_blade_of_the_Cult_of_Admin.__Not_to_be_trifled_w": "The sacred blade of the Cult of Admin.  Not to be trifled with.",
   "equip.The_skull_of_a_vampire_lord,_further_desecrated_with_the_de": "The skull of a vampire lord, further desecrated with the depraved magics of soul thievery.",
   "equip.The_skull_still_seems_to_contain_some_of_the_Dark_SpiritAPO": "The skull still seems to contain some of the Dark Spirit's power.",
   "equip.The_unusual_shots_that_this_staff_fires_have_been_known_to_": "The unusual shots that this staff fires have been known to bind the hearts of your foes for all eternity, or at least until death do you part.",
   "equip.Theatre_Key": "Theatre Key",
   "equip.This?_DonAPOSt_be_afraid_of_me._My_spell_just_backfired,_it": "This? Don't be afraid of me. My spell just backfired, it will wear off soon.",
   "equip.This_blade_is_drenched_in_the_blood_of_heroes._Are_you_sure": "This blade is drenched in the blood of heroes. Are you sure this blade is meant for you?",
   "equip.This_bunny_is_hopping_mad_that_players_have_been_looting_al": "This bunny is hopping mad that players have been looting all the eggs he hid.",
   "equip.This_colorful_platemail_is_enchanted_with_special_protectio": "This colorful platemail is enchanted with special protections, a gift from the kind fairies that dwell in the Realm.",
@@ -3047,27 +2863,24 @@
   "equip.This_helm_was_forged_of_metal_that_fell_from_the_sky.__It_i": "This helm was forged of metal that fell from the sky.  It is strangely light and emits a faint hum.",
   "equip.This_legendary_dagger_was_commissioned_by_a_band_of_mad_rog": "This legendary dagger was commissioned by a band of mad rogues to prove the worth of the Dirk.",
   "equip.This_legendary_sword_is_used_to_summon_the_beautiful_power_": "This legendary sword is used to summon the beautiful power of bears.",
   "equip.This_massive_shield_was_created_for_the_wealthy_and_powerfu": "This massive shield was created for the wealthy and powerful Ogre kings as a sign of their unrivaled strength.",
   "equip.This_orb_of_ancient_bloodstone_has_a_dark_reputation_of_twi": "This orb of ancient bloodstone has a dark reputation of twisting those who wield it.",
   "equip.This_prism_has_a_deep_flaw_that_causes_it_to_scatter_light_": "This prism has a deep flaw that causes it to scatter light in two directions.",
   "equip.This_probably_doesnAPOSt_have_a_chance_of_making_monsters_f": "This probably doesn't have a chance of making monsters fall in love with you. I mean, I don't think so.",
   "equip.This_scepterAPOSs_blast_is_so_powerful_it_will_slow_opponen": "This scepter's blast is so powerful it will slow opponents.",
-  "equip.This_skull_glows_with_stolen_life_force_of_Shaitan.": "This skull glows with stolen life force of Shaitan.",
-  "equip.This_skull_glows_with_stolen_lifeforce_of_ancient_demons.": "This skull glows with stolen lifeforce of ancient demons.",
   "equip.This_skull_glows_with_the_stolen_life_force_of_Shaitan.": "This skull glows with the stolen life force of Shaitan.",
   "equip.This_spellAPOSs_destructive_power_is_so_notorious_that_cast": "This spell's destructive power is so notorious that casting it was banned for many generations.",
   "equip.This_strange_quiver_that_was_created_in_a_forgotten_age_by_": "This strange quiver that was created in a forgotten age by a lost tribe of Dark Elves.",
   "equip.This_strange_weapon_was_used_by_ancient_battle_mages_to_det": "This strange weapon was used by ancient battle mages to deter invaders. The secret to its construction has long been lost.",
   "equip.This_wand_has_been_used_countless_times_to_raise_Lord_Ruthv": "This wand has been used countless times to raise Lord Ruthven from the dead.",
   "equip.This_wand_is_powerful_at_conducting_magical_energy_into_a_d": "This wand is powerful at conducting magical energy into a devastating blast.",
   "equip.This_was_all_the_rage_a_few_Winter_Solstices_ago.__Rarity:_": "This was all the rage a few Winter Solstices ago.  Rarity: Common",
   "equip.Though_the_whispers_can_be_heard_in_your_head,_theyAPOSre_n": "Though the whispers can be heard in your head, they're not THAT loud.",
-  "equip.Thought_to_have_been_lost_to_the_ages,_the_wisdom_imparted_": "Thought to have been lost to the ages, the wisdom imparted in this tablet will summon a power unrivaled by any modern spell.",
   "equip.Thousand_Shot": "Thousand Shot",
   "equip.Thousand_Suns_Spell": "Thousand Suns Spell",
   "equip.Thunder_Katana": "Thunder Katana",
   "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",
@@ -3089,28 +2902,26 @@
   "equip.Toy_Knife": "Toy Knife",
   "equip.Transformation_Potion": "Transformation Potion",
   "equip.Treasure": "Treasure",
   "equip.Tremendously_strong_plate_armor_shrouded_by_an_aura_of_demo": "Tremendously strong plate armor shrouded by an aura of demonic revenge.",
   "equip.Uncommon_????_Egg": "Uncommon ???? Egg",
   "equip.Uncommon_Aquatic_Egg": "Uncommon Aquatic Egg",
   "equip.Uncommon_Automaton_Egg": "Uncommon Automaton Egg",
   "equip.Uncommon_Avian_Egg": "Uncommon Avian Egg",
-  "equip.Uncommon_Bird_Egg": "Uncommon Bird Egg",
   "equip.Uncommon_Canine_Egg": "Uncommon Canine Egg",
   "equip.Uncommon_Exotic_Egg": "Uncommon Exotic Egg",
   "equip.Uncommon_Farm_Egg": "Uncommon Farm Egg",
   "equip.Uncommon_Feline_Egg": "Uncommon Feline Egg",
   "equip.Uncommon_Humanoid_Egg": "Uncommon Humanoid Egg",
   "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",
@@ -3122,36 +2933,33 @@
   "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",
   "equip.Wand_of_Budding_Romance": "Wand of Budding Romance",
   "equip.Wand_of_Dark_Magic": "Wand of Dark Magic",
   "equip.Wand_of_Death": "Wand of Death",
   "equip.Wand_of_Deep_Sorcery": "Wand of Deep Sorcery",
   "equip.Wand_of_Egg-cellence": "Wand of Egg-cellence",
   "equip.Wand_of_Evocation": "Wand of Evocation",
   "equip.Wand_of_Recompense": "Wand of Recompense",
   "equip.Wand_of_Retribution": "Wand of Retribution",
   "equip.Wand_of_Shadow": "Wand of Shadow",
   "equip.Wand_of_the_Bulwark": "Wand of the Bulwark",
   "equip.Warrior_of_the_Platinum_Order._Thanks_to:_DELer": "Warrior of the Platinum Order. Thanks to: DELer",
   "equip.Water_Dragon_Silk_Robe": "Water Dragon Silk Robe",
-  "equip.Wearing_it_makes_you_feel_particularly_quick.": "Wearing it makes you feel particularly quick.",
   "equip.Wearing_it_makes_you_feel_particularly_strong.": "Wearing it makes you feel particularly strong.",
   "equip.Well-made_chainmail_plated_with_gold,_clearly_intended_for_": "Well-made chainmail plated with gold, clearly intended for the use of a great lord.",
   "equip.Well-made_chainmail_plated_with_silver.": "Well-made chainmail plated with silver.",
   "equip.When_Key_Released": "When Key Released",
   "equip.While_Key_Held": "While Key Held",
-  "equip.While_it_is_not_often_that_Hobbits_seek_adventure,_some_are": "While it is not often that Hobbits seek adventure, some are known to roam the Realm. Thanks to: Gardons",
   "equip.While_it_may_be_alive,_it_canAPOSt_speak._But,_it_CAN_kill.": "While it may be alive, it can't speak. But, it CAN kill.",
   "equip.White_Drake_Egg": "White Drake Egg",
   "equip.Why_donAPOSt_you_try_throwing_a_leaf?": "Why don't you try throwing a leaf?",
   "equip.Wilderlands_Trap": "Wilderlands Trap",
   "equip.Wind_Circle": "Wind Circle",
   "equip.Wine_Cellar_Incantation": "Wine Cellar Incantation",
   "equip.Witch_Doctor_Skin": "Witch Doctor Skin",
   "equip.Witch_Skin": "Witch Skin",
@@ -3216,19 +3024,17 @@
   "forestMaze.Forrest_Shady_Floor_DR": "Forrest Shady Floor DR",
   "forestMaze.Forrest_Shady_Floor_UL": "Forrest Shady Floor UL",
   "forestMaze.Forrest_Shady_Floor_UR": "Forrest Shady Floor UR",
   "forestMaze.Forrest_Shady_OCorner_DL": "Forrest Shady OCorner DL",
   "forestMaze.Forrest_Shady_OCorner_DR": "Forrest Shady OCorner DR",
   "forestMaze.Forrest_Shady_OCorner_UL": "Forrest Shady OCorner UL",
   "forestMaze.Forrest_Shady_OCorner_UR": "Forrest Shady OCorner UR",
   "forestMaze.Mama_Megamoth": "Mama Megamoth",
-  "forestMaze.Mama_Mothra": "Mama Mothra",
   "forestMaze.Mini_Megamoth": "Mini Megamoth",
-  "forestMaze.Mini_Mothra": "Mini Mothra",
   "forestMaze.Ultimate_Squirrel": "Ultimate Squirrel",
   "ghostShip.Beach_Bum": "Beach Bum",
   "ghostShip.Beach_Spectre": "Beach Spectre",
   "ghostShip.Beach_Spectre_Spawner": "Beach Spectre Spawner",
   "ghostShip.Captain_Summoner": "Captain Summoner",
   "ghostShip.Davy_Jones": "Davy Jones",
   "ghostShip.GhostShip_Rat": "Ghost Ship Rat",
   "ghostShip.Ghost_Lanturn_Off": "Ghost Lanturn Off",
@@ -3314,25 +3120,23 @@
   "hauntedCemetery.Mini_Werewolf": "Mini Werewolf",
   "hauntedCemetery.Skuld_Apparition": "Skuld Apparition",
   "hauntedCemetery.Skuld_Portal": "Skuld Portal",
   "hauntedCemetery.Skuld_Summoner": "Skuld Summoner",
   "hauntedCemetery.Troll_1": "Forest Troll",
   "hauntedCemetery.Troll_2": "Troll Pathfinder",
   "hauntedCemetery.Troll_3": "Troll Matriarch",
   "hauntedCemetery.Werewolf": "Werewolf",
-  "hauntedCemetery.Werewolf_Cub": "Werewolf Cub",
   "hauntedCemetery.Zombie_Hulk": "Zombie Hulk",
   "hauntedCemetery.Zombie_Rise": "Zombie Rise",
   "helpCommand": "Help:    \\n[/pause]: pause the game (until you [/pause] again)        \\n[/who]: list players online        \\n[/tutorial]: enter the tutorial        \\n[/yell <message>]: send message to all players in Nexus    \\n[/tell <player name> <message>]: send a private message to a player    \\n[/guild <message>]: send a message to your guild    \\n[/block <player name>]: don't show chat messages from player    \\n[/unignore <player name>]: stop ignoring a player    \\n[/teleport <player name>]: teleport to a player    \\n[/trade <player name>]: request a trade with a player    \\n[/invite <player name>]: invite a player to your guild    \\n[/join <guild name>]: join a guild (invite necessary)    \\n[/lock <player name>]: lock a player to the player grid    \\n[/unlock <player name>]: unlock a player from the player grid    \\n[/help]: this message    \\n",
   "high.135-315_Diagonal_Trap": "Trap Element",
   "high.45-225_Diagonal_Trap": "Trap Element",
   "high.Adult_White_Dragon": "Adult White Dragon",
   "high.Beer_God": "Beer God",
-  "high.Beer_God_Dead": "Beer God Dead",
   "high.Dragon_Egg": "Dragon Egg",
   "high.Flamer": "Flamer",
   "high.Flamer_King": "Flamer King",
   "high.Flayer": "Flayer",
   "high.Flayer_God": "Flayer God",
   "high.Flayer_Veteran": "Flayer Veteran",
   "high.Juvenile_White_Dragon": "Juvenile White Dragon",
   "high.Left_Horizontal_Trap": "Trap Element",
@@ -3384,19 +3188,16 @@
   "kitchen_original.Oh_noBANG_YouAPOSve_been|captured_by_OryxBANG": "Oh no! You've been|captured by Oryx!",
   "kitchen_original.Start_on_the_beachBANG|Forests_are_dangerous|for": "Start on the beach!|Forests are dangerous|for the inexperienced!",
   "kitchen_original.This_portal_leads|to_OryxAPOSs_RealmBANG": "This portal leads|to Oryx's Realm!",
   "kitchen_original.You_have_escaped|OryxAPOSs_kitchensBANG": "You have escaped|Oryx's kitchens!",
   "kitchen_original.You_must_find|a_way_to_escapeBANG": "You must find|a way to escape!",
   "kitchen_original.Your_progress_is|saved_automatically": "Your progress is|saved automatically",
   "label.email": "Email",
   "label.password": "Password",
-  "lairOfDraconis.Blue_Dragon_Ice_Bomb": "Blue Dragon Ice Bomb",
-  "lairOfDraconis.Blue_Dragon_Ice_Trigger": "Blue Dragon Ice Trigger",
-  "lairOfDraconis.Consolation_of_Draconis_Portal": "Consolation of Draconis Portal",
   "lairOfDraconis.Ivory_Wyvern_Key": "Ivory Wyvern Key",
   "lairOfDraconis.Ivory_Wyvern_Portal": "Ivory Wyvern Portal",
   "lairOfDraconis.Lair_of_Draconis_Portal": "Lair of Draconis Portal",
   "lairOfDraconis.NM_Altar_of_Draconis": "Altar of Draconis",
   "lairOfDraconis.NM_Black_Dragon_Dead": "NM Black Dragon Dead",
   "lairOfDraconis.NM_Black_Dragon_God": "Feargus the Obsidian Dragon",
   "lairOfDraconis.NM_Black_Dragon_God_Hardmode": "Feargus the Demented",
   "lairOfDraconis.NM_Black_Dragon_Hardmode_Dead": "NM Black Dragon Hardmode Dead",
@@ -3455,18 +3256,16 @@
   "lairOfDraconis.lod_Mirror_Wyvern1": "Mirror Wyvern",
   "lairOfDraconis.lod_Mirror_Wyvern2": "Mirror Wyvern",
   "lairOfDraconis.lod_Mirror_Wyvern3": "Mirror Wyvern",
   "lairOfDraconis.lod_Mirror_Wyvern4": "Mirror Wyvern",
   "lairOfDraconis.lod_Red_HM_Loot_Balloon": "lod Red HM Loot Balloon",
   "lairOfDraconis.lod_Red_Loot_Balloon": "lod Red Loot Balloon",
   "lairOfDraconis.lod_Red_Soul_Flame": "Red Soul of Pyrr",
   "lairOfDraconis.lod_White_Dragon_Orb": "lod White Dragon Orb",
-  "lairOfShaitan.atst_Low_Range_Obj": "atst Low Range Obj",
-  "lairOfShaitan.atst_Wall": "atst Wall",
   "lairOfShaitan.md1_CreepyHands": "Creepy Small Hands",
   "lairOfShaitan.md1_CreepyHead": "Creepy Small Heads",
   "lairOfShaitan.md1_Governor": "md1 Governor",
   "lairOfShaitan.md1_Head_of_Shaitan": "Shaitan the Advisor",
   "lairOfShaitan.md1_Lava_Makers": "md1 Lava Makers",
   "lairOfShaitan.md1_LeftHandSmash": "md1 LeftHandSmash",
   "lairOfShaitan.md1_Left_Burst": "md1 Left Burst",
   "lairOfShaitan.md1_Left_Hand_of_Shaitan": "Left Hand of Shaitan",
@@ -3783,38 +3582,35 @@
   "objects.Arena_Portal": "Arena Portal",
   "objects.Arena_Spectator": "Arena Spectator",
   "objects.Arena_Spectator_High": "Arena Spectator High",
   "objects.Arena_Spectator_Spawner": "Arena Spectator Spawner",
   "objects.Arena_Spectator_Spawner_High": "Arena Spectator Spawner High",
   "objects.Battle_Nexus_Portal": "Battle Nexus Portal",
   "objects.Beachzone_Portal": "Beachzone Portal",
   "objects.BelladonnaAPOSs_Garden_Portal": "Belladonna's Garden",
-  "objects.BelladonnaAPOSs_Thicket_Portal": "Belladonna's Thicket",
   "objects.Big_Cube": "Big Cube",
   "objects.Black_Den_Spider": "Black Den Spider",
   "objects.Black_Spotted_Den_Spider": "Black Spotted Den Spider",
   "objects.Brown_Den_Spider": "Brown Den Spider",
   "objects.Candyland_Portal": "Candyland Portal",
   "objects.Charachter_Changer_Maker": "Charachter Changer Maker",
   "objects.Charachter_Changer_Maker_LF": "Charachter Changer Maker LF",
   "objects.Closed_Vault_Chest": "Closed Vault Chest",
   "objects.Cloth_Bazaar_Portal": "Cloth Bazaar Portal",
   "objects.Cloth_Bazaar_Portal_Maker": "Cloth Bazaar Portal Maker",
   "objects.Court_of_Oryx_Portal": "Court of Oryx",
   "objects.Cube": "Cube",
   "objects.Daily_Quest_Portal": "Daily Quest Portal",
   "objects.Davy_JonesAPOS_Locker_Portal": "Davy Jones' Locker",
-  "objects.Davy_JonesAPOSs_Locker_Portal": "Davy Jones's Locker",
   "objects.Decoy": "Decoy",
   "objects.Dodec": "Dodec",
   "objects.Dreamscape_Labyrinth_Portal": "Dreamscape Labyrinth Portal",
   "objects.Dungeon_Portal": "Dungeon Portal",
   "objects.Event_Chest": "Event Chest",
-  "objects.Event_Chest_Portal": "Event Chest",
   "objects.Forbidden_Jungle_Portal": "Forbidden Jungle Portal",
   "objects.Fortune_Ground_Object": "Fortune Ground Object",
   "objects.G_Door_Opener": "G Door Opener",
   "objects.Gift_Chest": "Gift Chest",
   "objects.Gift_Chest_Closed": "Gift Chest Closed",
   "objects.Glowing_Portal": "Glowing Portal",
   "objects.Glowing_Portal_of_Cowardice": "Glowing Portal of Cowardice",
   "objects.Glowing_Realm_Portal": "Glowing Realm Portal",
@@ -3838,17 +3634,16 @@
   "objects.Guild_Hall_Upgrade_3": "Guild Hall Upgrade",
   "objects.Halloween_Bat": "Halloween Bat",
   "objects.Haunted_Cemetery_Portal": "Haunted Cemetery Portal",
   "objects.Ice_Cave_Portal": "Ice Cave",
   "objects.Ico": "Ico",
   "objects.Inner_Sanctum_Portal": "Inner Sanctum Portal",
   "objects.Invisible_Placeholder": "Invisible Placeholder",
   "objects.Kitchen_Portal": "Kitchen Portal",
-  "objects.Lair_of_Shaitain_Portal": "Shaitan's Portal",
   "objects.Lair_of_Shaitan_Portal": "Shaitan's Portal",
   "objects.Locked_Wine_Cellar_Portal": "Locked Wine Cellar Portal",
   "objects.Loot_Bag": "Loot Bag",
   "objects.Loot_Bag_2": "Loot Bag",
   "objects.Loot_Bag_3": "Loot Bag",
   "objects.Loot_Bag_4": "Loot Bag",
   "objects.Loot_Bag_5": "Loot Bag",
   "objects.Loot_Bag_6": "Loot Bag",
@@ -3870,18 +3665,16 @@
   "objects.Pet_Upgrader": "Pet Upgrader",
   "objects.Pet_Yard_Portal": "{objects.Pet_Yard_Portal}",
   "objects.Pirate_Cave_Portal": "Pirate Cave Portal",
   "objects.Portal_of_Cowardice": "Portal of Cowardice",
   "objects.Portal_to_Nexus": "Portal to Nexus",
   "objects.Pumpkin1": "Creepy Talking Jack-O-Lantern",
   "objects.Puppet_Encore_Portal": "The Puppet Master's Encore",
   "objects.Puppet_Theatre_Boss_Spawn": "Puppet Theatre Boss Spawn",
-  "objects.Puppet_Theatre_Observer_Halls": "Puppet Theatre Observer Halls",
-  "objects.Puppet_Theatre_Observer_Halls_2": "Puppet Theatre Observer Halls 2",
   "objects.Puppet_Theatre_Portal": "The Puppet Master's Theatre",
   "objects.Pyramid": "Pyramid",
   "objects.Quest_Rewards": "The Tinkerer",
   "objects.Quest_Rewards_Inv_Object": "Quest Rewards Inv Object",
   "objects.Random_Realm_Portal": "Random Realm Portal",
   "objects.Realm_Portal": "Realm Portal",
   "objects.Red_Spotted_Den_Spider": "Red Spotted Den Spider",
   "objects.Sheep": "Sheep",
@@ -3994,349 +3787,111 @@
   "oryxWineCellar.WineSpill_DR": "WineSpill DR",
   "oryxWineCellar.WineSpill_L": "WineSpill L",
   "oryxWineCellar.WineSpill_Puddle": "WineSpill Puddle",
   "oryxWineCellar.WineSpill_R": "WineSpill R",
   "oryxWineCellar.WineSpill_U": "WineSpill U",
   "oryxWineCellar.WineSpill_UL": "WineSpill UL",
   "oryxWineCellar.WineSpill_UR": "WineSpill UR",
   "oryxWineCellar.Wine_Barrel": "Wine Barrel",
-  "permapets.A_baby_dragon.": "A baby dragon.",
-  "permapets.A_beautiful_white_owl.": "A beautiful white owl.",
-  "permapets.A_brave,_majestic_wolf.": "A brave, majestic wolf.",
-  "permapets.A_brave_and_protective_sheepdog.": "A brave and protective sheepdog.",
-  "permapets.A_brilliant_yellow_duck.": "A brilliant yellow duck.",
-  "permapets.A_curious_young_chicken.": "A curious young chicken.",
-  "permapets.A_cute_and_affectionate_cat.": "A cute and affectionate cat.",
-  "permapets.A_cute_little_frog.": "A cute little frog.",
-  "permapets.A_cute_little_penguin.": "A cute little penguin.",
-  "permapets.A_ferocious_predator_from_the_past.": "A ferocious predator from the past.",
-  "permapets.A_fierce_but_friendly_lion.": "A fierce but friendly lion.",
-  "permapets.A_friendly_honey_bee.": "A friendly honey bee.",
-  "permapets.A_gummy_buddy._NOT_FOR_EATINGBANGBANGBANG": "A gummy buddy. NOT FOR EATING!!!",
-  "permapets.A_hamster_in_a_ballBANG": "A hamster in a ball!",
-  "permapets.A_handsome_wild_duck.": "A handsome wild duck.",
-  "permapets.A_hungry_piglet.": "A hungry piglet.",
-  "permapets.A_jelly_buddyBANG": "A jelly buddy!",
-  "permapets.A_little_bat.": "A little bat.",
-  "permapets.A_living_particle_from_Sprite_Wold.": "A living particle from Sprite Wold.",
-  "permapets.A_living_snowmanBANG": "A living snowman!",
-  "permapets.A_lost_soul_found_in_Davy_JonesAPOSs_Locker.": "A lost soul found in Davy Jones's Locker.",
-  "permapets.A_loyal_and_friendly_pup.": "A loyal and friendly pup.",
-  "permapets.A_one_eyed_monster.": "A one eyed monster.",
-  "permapets.A_passive_little_spirit.": "A passive little spirit.",
-  "permapets.A_patriotic_bird_for_the_presidential_inauguration.": "A patriotic bird for the presidential inauguration.",
   "permapets.A_pet_egg._Use_it_in_the_Pet_Yard_located_in_your_Vault": "A pet egg. Use it in the Pet Yard located in your Vault!",
-  "permapets.A_quick_and_cunning_fox.": "A quick and cunning fox.",
-  "permapets.A_rare,_beautiful_panda.": "A rare, beautiful panda.",
-  "permapets.A_serpent_from_the_egyptian_tombs.": "A serpent from the egyptian tombs.",
-  "permapets.A_slimy_but_lovable_snail.": "A slimy but lovable snail.",
-  "permapets.A_special_penguin_trained_in_the_martial_arts.": "A special penguin trained in the martial arts.",
-  "permapets.A_spinning_top_pet_to_help_you_celebrate_the_holidays.": "A spinning top pet to help you celebrate the holidays.",
-  "permapets.A_stealthy_feline.": "A stealthy feline.",
-  "permapets.A_sweet_bluebird.": "A sweet bluebird.",
-  "permapets.A_symbol_of_strength_and_courage.": "A symbol of strength and courage.",
-  "permapets.A_tame_sea_slurp.": "A tame sea slurp.",
-  "permapets.A_technological_marvel.": "A technological marvel.",
-  "permapets.A_turkey_for_turkey_dayBANG": "A turkey for turkey day!",
-  "permapets.A_woodland_classic.": "A woodland classic.",
-  "permapets.Adorable,_but_watch_out_for_the_smellBANG": "Adorable, but watch out for the smell!",
-  "permapets.An_adorable,_yet_horrific_abominationBANG": "An adorable, yet horrific abomination!",
-  "permapets.An_adorable_Australian_petBANG": "An adorable Australian pet!",
-  "permapets.An_adorable_little_Turtle.": "An adorable little Turtle.",
-  "permapets.An_amphibian_from_the_abyss.": "An amphibian from the abyss.",
-  "permapets.An_elegant_and_noble_insect.": "An elegant and noble insect.",
-  "permapets.An_exotic_bird_with_a_large_colorful_bill.": "An exotic bird with a large colorful bill.",
-  "permapets.An_ominous_black_bird.": "An ominous black bird.",
-  "permapets.Baby": "Baby New Years",
-  "permapets.Baby_Dragon": "Baby Dragon",
   "permapets.Baby_Dragon_Egg": "Baby Dragon Egg",
-  "permapets.Baby_Dragon_Generator": "Baby Dragon",
   "permapets.Baby_Egg": "Baby Egg",
-  "permapets.Baby_Generator": "Baby New Years",
-  "permapets.Ball": "Ball",
-  "permapets.Ball_Generator": "Beach Ball",
-  "permapets.Bat": "Bat",
   "permapets.Bat_Egg": "Bat Egg",
-  "permapets.Bat_Generator": "Bat",
   "permapets.Beach_Ball": "Beach Ball",
   "permapets.Beach_Ball_Generator": "Beach Ball",
-  "permapets.Bee": "Bee",
   "permapets.Bee_Egg": "Bee Egg",
-  "permapets.Bee_Generator": "Bee",
   "permapets.Beer_Slurp": "Beer Slurp",
-  "permapets.Beer_Slurp_Egg": "Beer Slurp Egg",
   "permapets.Beer_Slurp_Generator": "Beer Slurp",
-  "permapets.Black_Ant": "Black Ant",
   "permapets.Black_Ant_Egg": "Black Ant Egg",
-  "permapets.Black_Ant_Generator": "Black Ant",
-  "permapets.Black_Cat": "Black Cat",
   "permapets.Black_Cat_Egg": "Black Cat Egg",
-  "permapets.Black_Cat_Generator": "Black Cat",
-  "permapets.Black_Wolf": "Black Wolf",
   "permapets.Black_Wolf_Egg": "Black Wolf Egg",
-  "permapets.Black_Wolf_Generator": "Black Wolf",
-  "permapets.Blue_Ant": "Blue Ant",
   "permapets.Blue_Ant_Egg": "Blue Ant Egg",
-  "permapets.Blue_Ant_Generator": "Blue Ant",
   "permapets.Blue_Parrot_Egg": "Blue Parrot Egg",
-  "permapets.Blue_Snail": "Blue Snail",
   "permapets.Blue_Snail_Egg": "Blue Snail Egg",
-  "permapets.Blue_Snail_Generator": "Blue Snail",
-  "permapets.Bluebird": "Bluebird",
-  "permapets.Bluebird_Generator": "Bluebird",
-  "permapets.Brown_Fox": "Brown Fox",
   "permapets.Brown_Fox_Egg": "Brown Fox Egg",
-  "permapets.Brown_Fox_Generator": "Brown Fox",
-  "permapets.Brown_Pup": "Brown Pup",
   "permapets.Brown_Pup_Egg": "Brown Pup Egg",
-  "permapets.Brown_Pup_Generator": "Brown Pup",
-  "permapets.Carved_of_living_stone.": "Carved of living stone.",
-  "permapets.Chick": "Chick",
   "permapets.Chick_Egg": "Chick Egg",
-  "permapets.Chick_Generator": "Chick",
-  "permapets.Crab": "Crab",
   "permapets.Crab_Egg": "Crab Egg",
-  "permapets.Crab_Generator": "Crab",
-  "permapets.Demon_Frog": "Demon Frog",
   "permapets.Demon_Frog_Egg": "Demon Frog Egg",
-  "permapets.Demon_Frog_Generator": "Demon Frog",
-  "permapets.Dino": "Dino",
   "permapets.Dino_Egg": "Dino Egg",
-  "permapets.Dino_Generator": "Dino",
-  "permapets.Dragonfly": "Dragonfly",
   "permapets.Dragonfly_Egg": "Dragonfly Egg",
-  "permapets.Dragonfly_Generator": "Dragonfly",
-  "permapets.Dreidel": "Dreidel",
   "permapets.Dreidel_Egg": "Dreidel Egg",
-  "permapets.Dreidel_Generator": "Dreidel",
-  "permapets.Duck": "Duck",
   "permapets.Duck_Egg": "Duck Egg",
-  "permapets.Duck_Generator": "Duck",
-  "permapets.Eagle": "Eagle",
   "permapets.Eagle_Egg": "Eagle Egg",
-  "permapets.Eagle_Generator": "Eagle",
-  "permapets.Elephant": "Elephant",
   "permapets.Elephant_Egg": "Elephant Egg",
-  "permapets.Elephant_Generator": "Elephant",
-  "permapets.Elf": "Elf",
   "permapets.Elf_Egg": "Elf Egg",
-  "permapets.Elf_Generator": "Elf",
-  "permapets.Every_evil_boss_creates_miniature_versions_of_himself._": "Every evil boss creates miniature versions of himself.  It's just something they do.",
-  "permapets.Gargoyle": "Gargoyle",
   "permapets.Gargoyle_Egg": "Gargoyle Egg",
-  "permapets.Gargoyle_Generator": "Gargoyle",
   "permapets.Give_this_to_someone_you_care_aboutBANG": "Give this to someone you care about!",
-  "permapets.Give_this_to_somone_you_care_aboutBANG": "Give this to somone you care about!",
-  "permapets.Give_this_valentine_to_a_friendBANG": "Give this valentine to a friend!",
-  "permapets.Golden_Pup": "Golden Pup",
   "permapets.Golden_Pup_Egg": "Golden Pup Egg",
-  "permapets.Golden_Pup_Generator": "Golden Pup",
-  "permapets.Golden_Sheepdog": "Golden Sheepdog",
   "permapets.Golden_Sheepdog_Egg": "Golden Sheepdog Egg",
-  "permapets.Golden_Sheepdog_Generator": "Golden Sheepdog",
   "permapets.Grape_Penguin_Egg": "Grape Penguin Egg",
-  "permapets.Grass_Penguin": "Grass Penguin",
   "permapets.Grass_Penguin_Egg": "Grass Penguin Egg",
-  "permapets.Grass_Penguin_Generator": "Grass Penguin",
-  "permapets.Green_Ant": "Green Ant",
   "permapets.Green_Ant_Egg": "Green Ant Egg",
-  "permapets.Green_Ant_Generator": "Green Ant",
-  "permapets.Green_Frog": "Green Frog",
   "permapets.Green_Frog_Egg": "Green Frog Egg",
-  "permapets.Green_Frog_Generator": "Green Frog",
-  "permapets.Green_Penguin": "Green Penguin",
   "permapets.Green_Penguin_Egg": "Green Penguin Egg",
-  "permapets.Green_Penguin_Generator": "Green Penguin",
-  "permapets.Grey_Cat": "Grey Cat",
   "permapets.Grey_Cat_Egg": "Grey Cat Egg",
-  "permapets.Grey_Cat_Generator": "Grey Cat",
-  "permapets.Grey_Fox": "Grey Fox",
   "permapets.Grey_Fox_Egg": "Grey Fox Egg",
-  "permapets.Grey_Fox_Generator": "Grey Fox",
-  "permapets.Grey_Pup": "Grey Pup",
   "permapets.Grey_Pup_Egg": "Grey Pup Egg",
-  "permapets.Grey_Pup_Generator": "Grey Pup",
-  "permapets.Grey_Wolf": "Grey Wolf",
   "permapets.Grey_Wolf_Egg": "Grey Wolf Egg",
-  "permapets.Grey_Wolf_Generator": "Grey Wolf",
-  "permapets.Gummy_Bear": "Gummy Bear",
   "permapets.Gummy_Bear_Egg": "Gummy Bear Egg",
-  "permapets.Gummy_Bear_Generator": "Gummy Bear",
-  "permapets.Hamster": "Hamster",
   "permapets.Hamster_Egg": "Hamster Egg",
-  "permapets.Hamster_Generator": "Hamster",
   "permapets.Helps_locate_Beer_Gods_in_the_Realm": "Helps locate Beer Gods in the Realm",
-  "permapets.His_bright_nose_will_lead_the_wayBANG": "His bright nose will lead the way!",
-  "permapets.ItAPOSs_a_little_Leprechaun._Happy_Saint_PatrickAPOSs_D": "It's a little Leprechaun. Happy Saint Patrick's Day!!!",
-  "permapets.Jelly": "Jelly",
   "permapets.Jelly_Egg": "Jelly Egg",
-  "permapets.Jelly_Generator": "Jelly",
-  "permapets.Kangaroo": "Kangaroo",
-  "permapets.Kangaroo_Generator": "Kangaroo",
-  "permapets.Karate_Penguin_Blue": "Karate Penguin Blue",
   "permapets.Karate_Penguin_Blue_Egg": "Karate Penguin Blue Egg",
-  "permapets.Karate_Penguin_Blue_Generator": "Karate Penguin",
-  "permapets.Karate_Penguin_Purple": "Karate Penguin Purple",
   "permapets.Karate_Penguin_Purple_Egg": "Karate Penguin Purple Egg",
-  "permapets.Karate_Penguin_Purple_Generator": "Karate Penguin",
-  "permapets.Karate_Penguin_Red": "Karate Penguin Red",
   "permapets.Karate_Penguin_Red_Egg": "Karate Penguin Red Egg",
-  "permapets.Karate_Penguin_Red_Generator": "Karate Penguin",
-  "permapets.Karate_Penguin_Yellow": "Karate Penguin Yellow",
   "permapets.Karate_Penguin_Yellow_Egg": "Karate Penguin Yellow Egg",
-  "permapets.Karate_Penguin_Yellow_Generator": "Karate Penguin",
-  "permapets.Koala": "Koala",
   "permapets.Koala_Egg": "Koala Egg",
-  "permapets.Koala_Generator": "Koala",
-  "permapets.Leprechaun": "Leprechaun",
   "permapets.Leprechaun_Egg": "Leprechaun Egg",
-  "permapets.Leprechaun_Generator": "Leprechaun",
-  "permapets.LilAPOS_Cyclops": "Lil' Cyclops",
   "permapets.LilAPOS_Cyclops_Egg": "Lil' Cyclops Egg",
-  "permapets.LilAPOS_Cyclops_Generator": "Cyclops",
-  "permapets.LilAPOS_Ghost": "Lil' Ghost",
   "permapets.LilAPOS_Ghost_Egg": "Lil' Ghost Egg",
-  "permapets.LilAPOS_Ghost_Generator": "Lil' Ghost",
-  "permapets.LilAPOS_Oryx": "Lil' Oryx",
   "permapets.LilAPOS_Oryx_Egg": "Lil' Oryx Egg",
-  "permapets.LilAPOS_Oryx_Generator": "Lil' Oryx",
-  "permapets.Lion": "Lion",
   "permapets.Lion_Egg": "Lion Egg",
-  "permapets.Lion_Generator": "Lion",
-  "permapets.Mallard": "Mallard",
   "permapets.Mallard_Egg": "Mallard Egg",
-  "permapets.Mallard_Generator": "Mallard",
-  "permapets.Ninja_Cat": "Ninja Cat",
   "permapets.Ninja_Cat_Egg": "Ninja Cat Egg",
-  "permapets.Ninja_Cat_Generator": "Ninja Cat",
-  "permapets.Orange_Cat": "Orange Cat",
   "permapets.Orange_Cat_Egg": "Orange Cat Egg",
-  "permapets.Orange_Cat_Generator": "Orange Cat",
-  "permapets.Panda": "Panda",
   "permapets.Panda_Egg": "Panda Egg",
-  "permapets.Panda_Generator": "Panda",
-  "permapets.Penguin": "Penguin",
   "permapets.Penguin_Egg": "Penguin Egg",
-  "permapets.Penguin_Generator": "Penguin",
-  "permapets.Peppermint_Snail": "Peppermint Snail",
   "permapets.Peppermint_Snail_Egg": "Peppermint Snail Egg",
-  "permapets.Peppermint_Snail_Generator": "Peppermint Snail",
-  "permapets.Pig": "Pig",
   "permapets.Pig_Egg": "Pig Egg",
-  "permapets.Pig_Generator": "Pig",
   "permapets.Play_with_this_ball_on_the_beachBANG_(Requires_a_buddyB": "Play with this ball on the beach! (Requires a buddy!)",
-  "permapets.Praying_Mantis": "Praying Mantis",
   "permapets.Praying_Mantis_Egg": "Praying Mantis Egg",
-  "permapets.Praying_Mantis_Generator": "Praying Mantis",
-  "permapets.Purple_Ant": "Purple Ant",
   "permapets.Purple_Ant_Egg": "Purple Ant Egg",
-  "permapets.Purple_Ant_Generator": "Purple Ant",
-  "permapets.Purple_Frog": "Purple Frog",
   "permapets.Purple_Frog_Egg": "Purple Frog Egg",
-  "permapets.Purple_Frog_Generator": "Purple Frog",
-  "permapets.Purple_Penguin": "Purple Penguin",
-  "permapets.Purple_Penguin_Generator": "Purple Penguin",
-  "permapets.Purple_Snail": "Purple Snail",
   "permapets.Purple_Snail_Egg": "Purple Snail Egg",
-  "permapets.Purple_Snail_Generator": "Purple Snail",
-  "permapets.Raven": "Raven",
   "permapets.Raven_Egg": "Raven Egg",
-  "permapets.Raven_Generator": "Raven",
-  "permapets.RealmAPOSs_first_marsupial.": "Realm's first marsupial.",
-  "permapets.Red_Ant": "Red Ant",
   "permapets.Red_Ant_Egg": "Red Ant Egg",
-  "permapets.Red_Ant_Generator": "Red Ant",
-  "permapets.Reindeer": "Reindeer",
   "permapets.Reindeer_Egg": "Reindeer Egg",
-  "permapets.Reindeer_Generator": "Reindeer",
-  "permapets.Relief_Bluebird": "Bluebird",
   "permapets.Relief_Bluebird_Egg": "Relief Bluebird Egg",
-  "permapets.Relief_Bluebird_Generator": "Bluebird",
-  "permapets.Relief_Cardinal": "Cardinal",
   "permapets.Relief_Cardinal_Egg": "Relief Cardinal Egg",
-  "permapets.Relief_Cardinal_Generator": "Cardinal",
-  "permapets.Relief_Goldfinch": "Goldfinch",
   "permapets.Relief_Goldfinch_Egg": "Relief Goldfinch Egg",
-  "permapets.Relief_Goldfinch_Generator": "Goldfinch",
-  "permapets.Relief_Oriole": "Oriole",
   "permapets.Relief_Oriole_Egg": "Relief Oriole Egg",
-  "permapets.Relief_Oriole_Generator": "Oriole",
-  "permapets.Robobuddy": "Robobuddy",
   "permapets.Robobuddy_Egg": "Robobuddy Egg",
-  "permapets.Robobuddy_Generator": "Robobuddy",
-  "permapets.Sea_Slurp": "Sea Slurp",
   "permapets.Sea_Slurp_Egg": "Sea Slurp Egg",
-  "permapets.Sea_Slurp_Generator": "Sea Slurp",
-  "permapets.Sheepdog": "Sheepdog",
   "permapets.Sheepdog_Egg": "Sheepdog Egg",
-  "permapets.Sheepdog_Generator": "Sheepdog",
-  "permapets.Skunk": "Skunk",
   "permapets.Skunk_Egg": "Skunk Egg",
-  "permapets.Skunk_Generator": "Skunk",
-  "permapets.Snowman": "Snowman",
   "permapets.Snowman_Egg": "Snowman Egg",
-  "permapets.Snowman_Generator": "Snowman",
-  "permapets.Snowy_Owl": "Snowy Owl",
   "permapets.Snowy_Owl_Egg": "Snowy Owl Egg",
-  "permapets.Snowy_Owl_Generator": "Snowy Owl",
-  "permapets.Spirit": "Spirit",
   "permapets.Spirit_Egg": "Spirit Egg",
-  "permapets.Spirit_Generator": "Spirit",
-  "permapets.Sprite_Star": "Sprite Star",
   "permapets.Sprite_Star_Egg": "Sprite Star Egg",
-  "permapets.Sprite_Star_Generator": "Sprite Star",
-  "permapets.Squirrel": "Squirrel",
   "permapets.Squirrel_Egg": "Squirrel Egg",
-  "permapets.Squirrel_Generator": "Squirrel",
-  "permapets.TEST_FOR:_ObjectToss": "TEST FOR: ObjectToss",
-  "permapets.Take_good_care_of_himBANG": "Take good care of him!",
-  "permapets.Tamed_Werewolf_Cub": "Tamed Werewolf Cub",
-  "permapets.Tamed_Werewolf_Cub_Generator": "Tamed Werewolf Cub",
-  "permapets.Tamed_wildlife_from_the_Candyland_Hunting_Grounds.": "Tamed wildlife from the Candyland Hunting Grounds.",
-  "permapets.Tan_Cat": "Tan Cat",
   "permapets.Tan_Cat_Egg": "Tan Cat Egg",
-  "permapets.Tan_Cat_Generator": "Tan Cat",
-  "permapets.The_majestic_king_of_the_skies.": "The majestic king of the skies.",
-  "permapets.The_smallest_elephant_in_the_world.": "The smallest elephant in the world.",
-  "permapets.This_limited-edition_bird_will_keep_you_company_on_all_": "This limited-edition bird will keep you company on all of your adventures. Proceeds go to help the victims of Hurricane Sandy.",
   "permapets.This_special_sea_slurp_is_trained_to_seek_out_the_elusi": "This special sea slurp is trained to seek out the elusive Beer God.",
-  "permapets.Tomb_Snake": "Tomb Snake",
   "permapets.Tomb_Snake_Egg": "Tomb Snake Egg",
-  "permapets.Tomb_Snake_Generator": "Tomb Snake",
-  "permapets.Toucan": "Toucan",
   "permapets.Toucan_Egg": "Toucan Egg",
-  "permapets.Toucan_Generator": "Toucan",
-  "permapets.Turkey": "Turkey",
   "permapets.Turkey_Egg": "Turkey Egg",
-  "permapets.Turkey_Generator": "Turkey",
-  "permapets.Turtle": "Turtle",
   "permapets.Turtle_Egg": "Turtle Egg",
-  "permapets.Turtle_Generator": "Turtle",
-  "permapets.USA_Eagle": "USA Eagle",
   "permapets.USA_Eagle_Egg": "USA Eagle Egg",
-  "permapets.USA_Eagle_Generator": "USA Eagle",
   "permapets.Valentine": "Valentine",
   "permapets.Valentine_Generator": "Valentine",
   "permapets.Werewolf_Cub_Egg": "Werewolf Cub Egg",
-  "permapets.White_Cat": "White Cat",
   "permapets.White_Cat_Egg": "White Cat Egg",
-  "permapets.White_Cat_Generator": "White Cat",
-  "permapets.White_Lion": "White Lion",
   "permapets.White_Lion_Egg": "White Lion Egg",
-  "permapets.White_Lion_Generator": "White Lion",
-  "permapets.Yellow_Cat": "Yellow Cat",
   "permapets.Yellow_Cat_Egg": "Yellow Cat Egg",
-  "permapets.Yellow_Cat_Generator": "Yellow Cat",
-  "permapets.Your_little_helper.": "Your little helper.",
-  "permapets.Your_very_own_pet_antBANG": "Your very own pet ant!",
-  "pets.??": "??",
-  "pets.???": "???",
-  "pets.???_Skin": "???",
-  "pets.??_Skin": "??",
   "pets.AttackClose": "AttackClose",
   "pets.AttackFar": "AttackFar",
   "pets.AttackMid": "AttackMid",
   "pets.Attack_Close": "Attack Close",
   "pets.Attack_Far": "Attack Far",
   "pets.Attack_Mid": "Attack Mid",
   "pets.Baby": "Baby",
   "pets.Baby_Dragon": "Baby Dragon",
@@ -4345,99 +3900,77 @@
   "pets.Bat": "Bat",
   "pets.Bat_Skin": "Bat",
   "pets.Battle_God": "Battle God",
   "pets.Battle_God_Skin": "Battle God",
   "pets.Battle_Penguin": "Battle Penguin",
   "pets.Battle_Penguin_Skin": "Battle P.",
   "pets.Bee": "Bee",
   "pets.Bee_Skin": "Bee",
-  "pets.Beer_Slurp": "Beer Slurp",
-  "pets.Beer_Slurp_Skin": "Beer Slurp",
   "pets.Beetleman": "Beetleman",
   "pets.Beetleman_Skin": "Beetleman",
-  "pets.Big_Firecracker": "Big Firecracker",
   "pets.Black_Ant": "Black Ant",
   "pets.Black_Ant_Skin": "Black Ant",
   "pets.Black_Cat": "Black Cat",
   "pets.Black_Cat_Skin": "Black Cat",
   "pets.Black_Wolf": "Black Wolf",
   "pets.Black_Wolf_Skin": "Black Wolf",
-  "pets.BladeShootForward": "BladeShootForward",
-  "pets.BladeShootRange": "BladeShootRange",
-  "pets.BladeShootValue": "BladeShootValue",
   "pets.Blue_Ant": "Blue Ant",
   "pets.Blue_Ant_Skin": "Blue Ant",
-  "pets.Blue_Drake": "Blue Drake",
   "pets.Blue_Landfish": "Blue Landfish",
   "pets.Blue_Landfish_Skin": "Blue Landfish",
   "pets.Blue_Parrot": "Blue Parrot",
   "pets.Blue_Parrot_Skin": "Blue Parrot",
   "pets.Blue_Snail": "Blue Snail",
   "pets.Blue_Snail_Skin": "Blue Snail",
   "pets.Blue_Thing": "Blue Thing",
   "pets.Blue_Thing_Skin": "Blue Thing",
   "pets.Bluebird": "Bluebird",
   "pets.Bluebird_Skin": "Bluebird",
   "pets.Brown_Fox": "Brown Fox",
   "pets.Brown_Fox_Skin": "Brown Fox",
   "pets.Brown_Pup": "Brown Pup",
   "pets.Brown_Pup_Skin": "Brown Pup",
-  "pets.Carbon_Canine": "Carbon Canine",
-  "pets.Carbon_Canine_Skin": "Carbon Wolf",
   "pets.Cardinal": "Cardinal",
   "pets.Cardinal_Skin": "Cardinal",
   "pets.Centaur": "Centaur",
   "pets.Centaur_Skin": "Centaur",
   "pets.Chameleon": "Chameleon",
   "pets.Chameleon_Skin": "Chameleon",
   "pets.Chick": "Chick",
   "pets.Chick_Skin": "Chick",
   "pets.CloseRangeAttack": "CloseRangeAttack",
-  "pets.Common_Drake_Pet_1": "Common Drake Pet 1",
-  "pets.Common_Drake_Pet_2": "Common Drake Pet 2",
-  "pets.Common_Undead_Pet": "Common Undead Pet",
   "pets.Crab": "Crab",
   "pets.Crab_Skin": "Crab",
   "pets.Cylindron": "Cylindron",
   "pets.Cylindron_Skin": "Cylindron",
   "pets.Decoy": "Decoy",
   "pets.Demon_Frog": "Demon Frog",
   "pets.Demon_Frog_Skin": "Demon Frog",
   "pets.Dino": "Dino",
   "pets.Dino_Skin": "Dino",
   "pets.Disabled_Pet_Skin": "Disabled Pet",
   "pets.Distracts_enemies_for_a_short_while.\\n\\nLevel_this_ability_u": "Distracts enemies for a short while.\\n\\nLevel this ability up to increase its range, duration and shorten its cooldown time.",
-  "pets.Divine_Drake_Pet": "Divine Drake Pet",
-  "pets.Divine_Undead_Pet": "Divine Undead Pet",
   "pets.Dragonfly": "Dragonfly",
   "pets.Dragonfly_Skin": "Dragonfly",
-  "pets.Drake_Skin_1": "Drake Skin 1",
-  "pets.Drake_Skin_2": "Drake Skin 2",
-  "pets.Drake_Skin_3": "Drake Skin 3",
-  "pets.Drake_Skin_4": "Drake Skin 4",
-  "pets.Drake_Skin_5": "Drake Skin 5",
   "pets.Dreidel": "Dreidel",
   "pets.Dreidel_Skin": "Dreidel",
   "pets.Duck": "Duck",
   "pets.Duck_Skin": "Duck",
-  "pets.Dummy": "Dummy",
   "pets.Eagle": "Eagle",
   "pets.Eagle_Skin": "Eagle",
   "pets.Electric": "Electric",
   "pets.ElectricZap": "ElectricZap",
   "pets.Elephant": "Elephant",
   "pets.Elephant_Skin": "Elephant",
   "pets.Elf": "Elf",
   "pets.Elf_Skin": "Elf",
   "pets.Enraged_Yack": "Enraged Yack",
   "pets.Enraged_Yack_Skin": "Enraged Yack",
   "pets.FarRangeAttack": "FarRangeAttack",
-  "pets.Farm": "Farm",
-  "pets.Farm_Skin": "Farm Skin",
   "pets.Forest_Fairy": "Forest Fairy",
   "pets.Forest_Fairy_Skin": "Forest Fairy",
   "pets.Funkatron": "Funkatron",
   "pets.Funkatron_Skin": "Funkatron",
   "pets.Gargoyle": "Gargoyle",
   "pets.Gargoyle_Skin": "Gargoyle",
   "pets.Glowing_Skull": "Glowing Skull",
   "pets.Glowing_Skull_Skin": "Glowing Skull",
@@ -4458,17 +3991,16 @@
   "pets.Grass_Penguin": "Grass Penguin",
   "pets.Grass_Penguin_Skin": "Grass Penguin",
   "pets.Great_Jelly": "Great Jelly",
   "pets.Great_Jelly_Skin": "Great Jelly",
   "pets.Great_Shark": "Great Shark",
   "pets.Great_Shark_Skin": "Great Shark",
   "pets.Green_Ant": "Green Ant",
   "pets.Green_Ant_Skin": "Green Ant",
-  "pets.Green_Drake": "Green Drake",
   "pets.Green_Frog": "Green Frog",
   "pets.Green_Frog_Skin": "Green Frog",
   "pets.Green_Penguin": "Green Penguin",
   "pets.Green_Penguin_Skin": "Green Penguin",
   "pets.Grey_Cat": "Grey Cat",
   "pets.Grey_Cat_Skin": "Grey Cat",
   "pets.Grey_Fox": "Grey Fox",
   "pets.Grey_Fox_Skin": "Grey Fox",
@@ -4481,50 +4013,42 @@
   "pets.Gummy_Bear": "Gummy Bear",
   "pets.Gummy_Bear_Skin": "Gummy Bear",
   "pets.Gutsbot": "Gutsbot",
   "pets.Gutsbot_Skin": "Gutsbot",
   "pets.Hamster": "Hamster",
   "pets.Hamster_Skin": "Hamster",
   "pets.Heal": "Heal",
   "pets.Heals_you_periodically.\\n\\nLevel_this_ability_up_to_increase": "Heals you periodically.\\n\\nLevel this ability up to increase its power and frequency.",
-  "pets.Heals_you_periodically._Level_this_ability_up_to_increase_it": "Heals you periodically. Level this ability up to increase its power and frequency.",
   "pets.Helmbot": "Helmbot",
   "pets.Helmbot_Skin": "Helmbot",
-  "pets.Insect": "Insect",
-  "pets.Insect_B": "Insect B",
-  "pets.Insect_B_Skin": "Insect B",
-  "pets.Insect_Skin": "Insect",
   "pets.Jalapeno": "Jalapeno",
   "pets.Jalapeno_Skin": "Jalapeno",
   "pets.Jelly": "Jelly",
   "pets.Jelly_Skin": "Jelly",
   "pets.Karate_Blue": "Karate Blue",
   "pets.Karate_Blue_Skin": "Karate B.",
   "pets.Karate_Purple": "Karate Purple",
   "pets.Karate_Purple_Skin": "Karate P.",
   "pets.Karate_Red": "Karate Red",
   "pets.Karate_Red_Skin": "Karate R.",
   "pets.Karate_Yellow": "Karate Yellow",
   "pets.Karate_Yellow_Skin": "Karate Y.",
   "pets.King_Gorilla": "King Gorilla",
   "pets.King_Gorilla_Skin": "King Gorilla",
-  "pets.King_Jelley": "King Jelley",
-  "pets.King_Jelley_Skin": "King Jelley",
   "pets.Koala": "Koala",
   "pets.Koala_Skin": "Koala",
   "pets.Leprechaun": "Leprechaun",
   "pets.Leprechaun_Skin": "Leprechaun",
   "pets.LilAPOS_Cyclops": "Lil' Cyclops",
   "pets.LilAPOS_Cyclops_Skin": "Lil' Cyclops",
   "pets.LilAPOS_Ghost": "Lil' Ghost",
   "pets.LilAPOS_Ghost_Skin": "Lil' Ghost",
   "pets.LilAPOS_Oryx": "Lil' Oryx",
   "pets.LilAPOS_Oryx_Skin": "Lil' Oryx",
-  "pets.Lil_Firecracker": "Lil Firecracker",
   "pets.Lion": "Lion",
   "pets.Lion_Skin": "Lion",
   "pets.MagicHeal": "MagicHeal",
   "pets.Magic_Heal": "Magic Heal",
   "pets.Mallard": "Mallard",
   "pets.Mallard_Skin": "Mallard",
   "pets.Mermaid": "Mermaid",
   "pets.Mermaid_Skin": "Mermaid",
@@ -4532,98 +4056,76 @@
   "pets.Midnight_Wolf": "Midnight Wolf",
   "pets.Midnight_Wolf_Skin": "Shadow Wolf",
   "pets.Monkey": "Monkey",
   "pets.Monkey_Head": "Monkey Head",
   "pets.Monkey_Head_Skin": "Monkey Head",
   "pets.Monkey_Skin": "Monkey",
   "pets.Monster_Eye": "Monster Eye",
   "pets.Monster_Eye_Skin": "Monster Eye",
-  "pets.NONE": "NONE",
-  "pets.NONE_Skin": "NONE",
   "pets.Night_Mare": "Night Mare",
   "pets.Night_Mare_Skin": "Night Mare",
   "pets.Ninja_Cat": "Ninja Cat",
   "pets.Ninja_Cat_Skin": "Ninja Cat",
   "pets.Orange_Cat": "Orange Cat",
   "pets.Orange_Cat_Skin": "Orange Cat",
-  "pets.Orange_Drake": "Orange Drake",
   "pets.Orangutan": "Orangutan",
   "pets.Orangutan_Skin": "Orangutan",
   "pets.Oriole": "Oriole",
   "pets.Oriole_Skin": "Oriole",
   "pets.Panda": "Panda",
   "pets.Panda_Skin": "Panda",
   "pets.Penguin": "Penguin",
-  "pets.Penguin_B": "Penguin B",
-  "pets.Penguin_B_Skin": "Penguin B",
   "pets.Penguin_Skin": "Penguin",
   "pets.Peppermint_Snail": "Peppermint Snail",
   "pets.Peppermint_Snail_Skin": "Candy Snail",
-  "pets.PetBladeRange": "PetBladeRange",
-  "pets.PetBladeValue": "PetBladeValue",
   "pets.PetDecoy": "PetDecoy",
   "pets.PetRisingFury": "PetRisingFury",
   "pets.PetSavage": "PetSavage",
-  "pets.PetShootForward": "PetShootForward",
-  "pets.PetShootRange": "PetShootRange",
-  "pets.PetShootValue": "PetShootValue",
   "pets.Phoenix": "Phoenix",
   "pets.Phoenix_Skin": "Phoenix",
   "pets.Pig": "Pig",
   "pets.Pig_Skin": "Pig",
   "pets.Pigeon": "Pigeon",
   "pets.Pigeon_Skin": "Pigeon",
   "pets.Pink_Lion": "Pink Lion",
   "pets.Pink_Lion_Skin": "Pink Lion",
   "pets.Poison_Drake": "Poison Drake",
   "pets.Poison_Drake_Skin": "Poison Drake",
   "pets.Praying_Mantis": "Praying Mantis",
   "pets.Praying_Mantis_Skin": "Mantis",
   "pets.Purple_Ant": "Purple Ant",
   "pets.Purple_Ant_Skin": "Purple Ant",
-  "pets.Purple_Drake": "Purple Drake",
   "pets.Purple_Frog": "Purple Frog",
   "pets.Purple_Frog_Skin": "Purple Frog",
   "pets.Purple_Snail": "Purple Snail",
   "pets.Purple_Snail_Skin": "Purple Snail",
   "pets.Raccoon": "Raccoon",
   "pets.Raccoon_Skin": "Raccoon",
-  "pets.Rare_Drake_Pet": "Rare Drake Pet",
-  "pets.Rare_Reptile_2": "Rare Reptile 2",
-  "pets.Rare_Reptile_2_Skin": "RR",
-  "pets.Rare_Undead_Pet_1": "Rare Undead Pet 1",
-  "pets.Rare_Undead_Pet_2": "Rare Undead Pet 2",
   "pets.Raven": "Raven",
   "pets.Raven_Skin": "Raven",
   "pets.Reaper": "Reaper",
   "pets.Reaper_Skin": "Reaper",
   "pets.Red_Ant": "Red Ant",
   "pets.Red_Ant_Skin": "Red Ant",
-  "pets.Red_Drake": "Red Drake",
   "pets.Redbot": "Redbot",
   "pets.Redbot_Skin": "Redbot",
   "pets.Reindeer": "Reindeer",
   "pets.Reindeer_Skin": "Reindeer",
   "pets.Restores_your_Magic_Points_periodically.\\n\\nLevel_this_abili": "Restores your Magic Points periodically.\\n\\nLevel this ability up to increase its power and frequency.",
-  "pets.Restores_your_Magic_Points_periodically._Level_this_ability_": "Restores your Magic Points periodically. Level this ability up to increase its power and frequency.",
   "pets.Rising_Fury": "Rising Fury",
   "pets.Robobuddy": "Robobuddy",
   "pets.Robobuddy_Skin": "Robobuddy",
-  "pets.Rock_Candy_Grenade": "Rock Candy Grenade",
-  "pets.Sand_Castle": "Sand Castle",
   "pets.Savage": "Savage",
   "pets.Sea_Slurp": "Sea Slurp",
   "pets.Sea_Slurp_Skin": "Sea Slurp",
   "pets.Sheepdog": "Sheepdog",
   "pets.Sheepdog_Skin": "Sheepdog",
   "pets.Shoots_at_any_close-range_enemies_and_deals_heavy_damage.\\n\\": "Shoots at any close-range enemies and deals heavy damage.\\n\\nLevel this ability up to increase its power and frequency.",
-  "pets.Shoots_at_any_close-range_enemies_and_deals_heavy_damage._Le": "Shoots at any close-range enemies and deals heavy damage. Level this ability up to increase its power and frequency.",
   "pets.Shoots_at_any_mid-range_enemies_and_deals_medium_damage.\\n\\n": "Shoots at any mid-range enemies and deals medium damage.\\n\\nLevel this ability up to increase its power and frequency.",
-  "pets.Shoots_at_any_mid-range_enemies_and_deals_medium_damage._Lev": "Shoots at any mid-range enemies and deals medium damage. Level this ability up to increase its power and frequency.",
   "pets.Shoots_at_any_nearby_far-range_enemies_and_deals_light_damag": "Shoots at any nearby far-range enemies and deals light damage.\\n\\nLevel this ability up to increase its power and frequency.",
   "pets.Shroom": "Shroom",
   "pets.Shroom_Skin": "Shroom",
   "pets.Silver_Doe": "Silver Doe",
   "pets.Silver_Doe_Skin": "Silver Doe",
   "pets.Skull": "Skull",
   "pets.Skull_Skin": "Skull",
   "pets.Skunk": "Skunk",
@@ -4632,20 +4134,17 @@
   "pets.Snowman_Skin": "Snowman",
   "pets.Snowy_Owl": "Snowy Owl",
   "pets.Snowy_Owl_Skin": "Snowy Owl",
   "pets.Solar_Owl": "Solar Owl",
   "pets.Solar_Owl_Skin": "Solar Owl",
   "pets.Spiderbot": "Spiderbot",
   "pets.Spiderbot_Skin": "Spiderbot",
   "pets.Spirit": "Spirit",
-  "pets.Spirit_Prism_Bomb": "Spirit Prism Bomb",
   "pets.Spirit_Skin": "Spirit",
-  "pets.Spooky_C": "Spooky C",
-  "pets.Spooky_C_Skin": "Spooky C",
   "pets.Sprite_Star": "Sprite Star",
   "pets.Sprite_Star_Skin": "Sprite Star",
   "pets.Squirrel": "Squirrel",
   "pets.Squirrel_Skin": "Squirrel",
   "pets.Standing_still_will_charge_this_attack._Begin_moving_to_rele": "Standing still will charge this attack. Begin moving to release a blast of fury that hurts nearby enemies.\\n\\nLevel this ability up to increase its damage and range + decrease its charge time and cooldown.",
   "pets.Tan_Cat": "Tan Cat",
   "pets.Tan_Cat_Skin": "Tan Cat",
   "pets.Tandem_Cobra": "Tandem Cobra",
@@ -4661,38 +4160,26 @@
   "pets.Turkey": "Turkey",
   "pets.Turkey_Skin": "Turkey",
   "pets.Turtle": "Turtle",
   "pets.Turtle_Skin": "Turtle",
   "pets.USA_Eagle": "USA Eagle",
   "pets.USA_Eagle_Skin": "USA Eagle",
   "pets.Ultrawasp": "Ultrawasp",
   "pets.Ultrawasp_Skin": "Ultrawasp",
-  "pets.Undead_Skin_1": "Undead Skin 1",
-  "pets.Undead_Skin_2": "Undead Skin 2",
-  "pets.Undead_Skin_3": "Undead Skin 3",
-  "pets.Undead_Skin_4": "Undead Skin 4",
-  "pets.Undead_Skin_5": "Undead Skin 5",
-  "pets.Valentine": "Valentine",
-  "pets.Valentine_Skin": "Valentine Skin",
   "pets.War_Elephant": "War Elephant",
   "pets.War_Elephant_Skin": "War Elephant",
   "pets.Werewolf_Cub": "Werewolf Cub",
   "pets.Werewolf_Cub_Skin": "Werewolf",
   "pets.White_Cat": "White Cat",
   "pets.White_Cat_Skin": "White Cat",
-  "pets.White_Drake": "White Drake",
   "pets.White_Lion": "White Lion",
   "pets.White_Lion_Skin": "White Lion",
-  "pets.Winter_Stare": "Winter Stare",
-  "pets.Woodland_B": "Woodland B",
-  "pets.Woodland_Skin": "Woodland Skin",
   "pets.Yellow_Cat": "Yellow Cat",
   "pets.Yellow_Cat_Skin": "Yellow Cat",
-  "pets.Yellow_Drake": "Yellow Drake",
   "pets.Your_pet_will_run_towards_nearby_enemies.\\n\\nLevel_this_abil": "Your pet will run towards nearby enemies.\\n\\nLevel this ability up to increase its frequency and range.",
   "pets.Zaps_any_enemy_foolish_enough_to_touch_your_pet._This_attack": "Zaps any enemy foolish enough to touch your pet. This attack has a chance of paralyzing your foes.\\n\\nLevel this ability up to increase its power, range, chance of paralyzing, and duration of paralyze effect.",
   "pirateCave.Cave_Pirate_Brawler": "Cave Pirate Brawler",
   "pirateCave.Cave_Pirate_Cabin_Boy": "Cave Pirate Cabin Boy",
   "pirateCave.Cave_Pirate_Hunchback": "Cave Pirate Hunchback",
   "pirateCave.Cave_Pirate_Macaw": "Cave Pirate Macaw",
   "pirateCave.Cave_Pirate_Moll": "Cave Pirate Moll",
   "pirateCave.Cave_Pirate_Monkey": "Cave Pirate Monkey",
@@ -5012,17 +4499,16 @@
   "shatters.shtrs_Laser3": "shtrs Laser3",
   "shatters.shtrs_Laser4": "shtrs Laser4",
   "shatters.shtrs_Laser5": "shtrs Laser5",
   "shatters.shtrs_Laser6": "shtrs Laser6",
   "shatters.shtrs_Lava_Souls": "Helpless Souls",
   "shatters.shtrs_Loot_Balloon_Bridge": "Test Chest",
   "shatters.shtrs_Loot_Balloon_King": "Test Chest",
   "shatters.shtrs_Loot_Balloon_Mage": "Test Chest",
-  "shatters.shtrs_Loot_Balloon_Test": "Test Chest",
   "shatters.shtrs_Mage_Balloon_Spawner": "shtrs Mage Balloon Spawner",
   "shatters.shtrs_Mage_Bridge_Check": "shtrs Mage Bridge Check",
   "shatters.shtrs_Mage_Closer_1": "shtrs Mage Closer 1",
   "shatters.shtrs_MagiGenerators": "Magi-Generator",
   "shatters.shtrs_Monster_Cluster": "shtrs Monster Cluster",
   "shatters.shtrs_Paladin_Obelisk": "Paladin Obelisk",
   "shatters.shtrs_Pause_Watcher": "shtrs Pause Watcher",
   "shatters.shtrs_Player_Check": "shtrs Player Check",
@@ -5051,82 +4537,74 @@
   "shore.Green_Gelatinous_Cube": "Green Gelatinous Cube",
   "shore.Pirate": "Pirate",
   "shore.Piratess": "Piratess",
   "shore.Poison_Scorpion": "Poison Scorpion",
   "shore.Purple_Gelatinous_Cube": "Purple Gelatinous Cube",
   "shore.Red_Gelatinous_Cube": "Red Gelatinous Cube",
   "shore.Scorpion_Queen": "Scorpion Queen",
   "shore.Snake": "Snake",
-  "skins.Adventurous_Hobbit": "Adventurous Hobbit",
   "skins.Agent": "Agent",
   "skins.Amazonian": "Amazonian",
   "skins.Artemis": "Artemis",
   "skins.Ascended_Sorcerer": "Ascended Sorcerer",
   "skins.B.B._Wolf": "B.B. Wolf",
+  "skins.Baby_Djinja": "Baby Djinja",
   "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.Djinja": "Djinja",
   "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.FrankensteinAPOSs_Monster": "Frankenstein's Monster",
-  "skins.Frankensteins_Monster": "Frankensteins Monster",
   "skins.Geb_Set_Skin": "Geb Set Skin",
   "skins.Gentleman": "Gentleman",
   "skins.Ghost_Huntress": "Ghost Huntress",
-  "skins.Ginja": "Ginja",
   "skins.Holy_Avenger": "Holy Avenger",
   "skins.Hunchback": "Hunchback",
   "skins.Huntsman": "Huntsman",
   "skins.Iceman": "Iceman",
   "skins.Infected_Assassin": "Infected Assassin",
   "skins.Ivory_Gladiator": "Ivory Gladiator",
   "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.Olive_Gladiator": "Olive Gladiator",
   "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.Rosen_Blade": "Rosen Blade",
   "skins.Santa": "Santa",
-  "skins.Scarlet_Order_Necromancer": "Scarlet Order Necromancer",
   "skins.Scarlett": "Scarlett",
   "skins.Seer": "Seer",
   "skins.Shadow": "Shadow",
   "skins.Shoveguy": "Shoveguy",
   "skins.Skeleton_Warrior": "Skeleton Warrior",
   "skins.Skuld_Set_Skin": "Skuld Set Skin",
   "skins.Slime_Archer": "Slime Archer",
   "skins.Slime_Assassin": "Slime Assassin",
@@ -5391,24 +4869,16 @@
   "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!",
@@ -5432,17 +4902,16 @@
   "textiles.Large_Bold_Diamond_Cloth": "Large Bold Diamond Cloth",
   "textiles.Large_Bright_Floral_Cloth": "Large Bright Floral Cloth",
   "textiles.Large_Bright_Stripes_Cloth": "Large Bright Stripes Cloth",
   "textiles.Large_Brown_Lined_Cloth": "Large Brown Lined Cloth",
   "textiles.Large_Brown_Stitch_Cloth": "Large Brown Stitch Cloth",
   "textiles.Large_Cactus_Zag_Cloth": "Large Cactus Zag Cloth",
   "textiles.Large_Celtic_Knot_Cloth": "Large Celtic Knot Cloth",
   "textiles.Large_Chainmail_Cloth": "Large Chainmail Cloth",
-  "textiles.Large_Cheetah_Print_Cloth": "Large Cheetah Print Cloth",
   "textiles.Large_Clanranald_Cloth": "Large Clanranald Cloth",
   "textiles.Large_Cloud_Cloth": "Large Cloud Cloth",
   "textiles.Large_Colored_Egg_Cloth": "Large Colored Egg Cloth",
   "textiles.Large_Cow_Print_Cloth": "Large Cow Print Cloth",
   "textiles.Large_Crisscross_Cloth": "Large Crisscross Cloth",
   "textiles.Large_Crossbox_Cloth": "Large Crossbox Cloth",
   "textiles.Large_Dark_Blue_Stripe_Cloth": "Large Dark Blue Stripe Cloth",
   "textiles.Large_Dark_Camo_Cloth": "Large Dark Camo Cloth",
@@ -5527,17 +4996,16 @@
   "textiles.Small_Bold_Diamond_Cloth": "Small Bold Diamond Cloth",
   "textiles.Small_Bright_Floral_Cloth": "Small Bright Floral Cloth",
   "textiles.Small_Bright_Stripes_Cloth": "Small Bright Stripes Cloth",
   "textiles.Small_Brown_Lined_Cloth": "Small Brown Lined Cloth",
   "textiles.Small_Brown_Stitch_Cloth": "Small Brown Stitch Cloth",
   "textiles.Small_Cactus_Zag_Cloth": "Small Cactus Zag Cloth",
   "textiles.Small_Celtic_Knot_Cloth": "Small Celtic Knot Cloth",
   "textiles.Small_Chainmail_Cloth": "Small Chainmail Cloth",
-  "textiles.Small_Cheetah_Print_Cloth": "Small Cheetah Print Cloth",
   "textiles.Small_Clanranald_Cloth": "Small Clanranald Cloth",
   "textiles.Small_Cloud_Cloth": "Small Cloud Cloth",
   "textiles.Small_Colored_Egg_Cloth": "Small Colored Egg Cloth",
   "textiles.Small_Cow_Print_Cloth": "Small Cow Print Cloth",
   "textiles.Small_Crisscross_Cloth": "Small Crisscross Cloth",
   "textiles.Small_Crossbox_Cloth": "Small Crossbox Cloth",
   "textiles.Small_Dark_Blue_Stripe_Cloth": "Small Dark Blue Stripe Cloth",
   "textiles.Small_Dark_Camo_Cloth": "Small Dark Camo Cloth",