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
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	2017-01-13 16:40:25.353836491 +0000
+++ ./json/Objects.json	2017-01-19 14:00:24.522505720 +0000
@@ -35045,16 +35045,470 @@
         "objectId": "Dragon Chain 1"
       },
       "Consumable": "",
       "BagType": "5",
       "Soulbound": "",
       "feedPower": "5000"
     },
     {
+      "type": "0x16d6",
+      "id": "Enchanted Ice Blade",
+      "Class": "Equipment",
+      "Item": "",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x19"
+      },
+      "SlotType": "1",
+      "Description": "A lightweight blade, imbued with frosty runes. Thanks to: Poshun",
+      "RateOfFire": "1",
+      "Sound": "weapon/glass_sword",
+      "Projectile": {
+        "ObjectId": "Enchanted Ice Blade Slash",
+        "Speed": "100",
+        "MinDamage": "180",
+        "MaxDamage": "210",
+        "LifetimeMS": "450"
+      },
+      "BagType": "6",
+      "FameBonus": "3",
+      "OldSound": "bladeSwing",
+      "feedPower": "400",
+      "Soulbound": "",
+      "DisplayId": "Enchanted Ice Blade"
+    },
+    {
+      "type": "0x16d7",
+      "id": "Staff of Iceblast",
+      "Class": "Equipment",
+      "Item": "",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x1a"
+      },
+      "SlotType": "17",
+      "Description": "A frozen staff, used for creating powerful chilly blasts around the user. Thanks to: Poshun",
+      "RateOfFire": "0.4",
+      "Sound": "weapon/sprite_wand",
+      "Projectile": {
+        "ObjectId": "Iceblast Missile",
+        "Speed": "110",
+        "MinDamage": "80",
+        "MaxDamage": "95",
+        "LifetimeMS": "364",
+        "Amplitude": "0.15",
+        "Frequency": "2"
+      },
+      "BagType": "6",
+      "FameBonus": "6",
+      "NumProjectiles": "10",
+      "ArcGap": "36",
+      "OldSound": "magicShoot",
+      "feedPower": "600",
+      "Soulbound": "",
+      "DisplayId": "Staff of Iceblast"
+    },
+    {
+      "type": "0x16d8",
+      "id": "Eternal Snowflake Wand",
+      "Class": "Equipment",
+      "Item": "",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x1b"
+      },
+      "SlotType": "8",
+      "Description": "A cool wand that creates a flurry of beautiful snowflakes. Thanks to: Poshun",
+      "RateOfFire": "0.33",
+      "Sound": "weapon/wand_of_death",
+      "Projectile": {
+        "ObjectId": "Eternal Snowflake Shot",
+        "Speed": "6",
+        "MinDamage": "300",
+        "MaxDamage": "400",
+        "LifetimeMS": "11000",
+        "Parametric": "",
+        "PassesCover": ""
+      },
+      "BagType": "6",
+      "FameBonus": "6",
+      "OldSound": "magicShoot",
+      "feedPower": "650",
+      "Soulbound": "",
+      "DisplayId": "Eternal Snowflake Wand"
+    },
+    {
+      "type": "0x16d9",
+      "id": "Artic Bow",
+      "Class": "Equipment",
+      "Item": "",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x1c"
+      },
+      "SlotType": "3",
+      "Description": "A bow, fashioned from solid ice, enchanted not to melt. Its often used by elven hunters which live in the arctic wastes. Thanks to: Poshun",
+      "RateOfFire": "1.25",
+      "Sound": "weapon/double_bow",
+      "Projectile": {
+        "ObjectId": "Artic Arrow",
+        "Speed": "185",
+        "MinDamage": "60",
+        "MaxDamage": "80",
+        "LifetimeMS": "420",
+        "MultiHit": ""
+      },
+      "BagType": "6",
+      "FameBonus": "6",
+      "NumProjectiles": "2",
+      "OldSound": "arrowShoot",
+      "feedPower": "1200",
+      "Soulbound": "",
+      "DisplayId": "Artic Bow"
+    },
+    {
+      "type": "0x16da",
+      "id": "Frost Drake Hide Armor",
+      "Class": "Equipment",
+      "Item": "",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x1d"
+      },
+      "SlotType": "6",
+      "Description": "Protective leather armor fashioned from the frozen, but resilient scales of a frost drake. Thanks to: Poshun",
+      "ActivateOnEquip": [
+        {
+          "_": "IncrementStat",
+          "stat": "21",
+          "amount": "17"
+        },
+        {
+          "_": "IncrementStat",
+          "stat": "28",
+          "amount": "5"
+        }
+      ],
+      "BagType": "4",
+      "FameBonus": "4",
+      "feedPower": "435",
+      "Soulbound": "",
+      "DisplayId": "Frost Drake Hide Armor"
+    },
+    {
+      "type": "0x16db",
+      "id": "Frost Elementalist Robe",
+      "Class": "Equipment",
+      "Item": "",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x1e"
+      },
+      "SlotType": "14",
+      "Description": "An excellent robe, woven from icy threads. Its typically only worn by the most adept ice mages. Thanks to: Poshun",
+      "ActivateOnEquip": [
+        {
+          "_": "IncrementStat",
+          "stat": "20",
+          "amount": "4"
+        },
+        {
+          "_": "IncrementStat",
+          "stat": "21",
+          "amount": "13"
+        },
+        {
+          "_": "IncrementStat",
+          "stat": "27",
+          "amount": "6"
+        },
+        {
+          "_": "IncrementStat",
+          "stat": "3",
+          "amount": "55"
+        }
+      ],
+      "BagType": "4",
+      "FameBonus": "4",
+      "feedPower": "435",
+      "Soulbound": "",
+      "DisplayId": "Frost Elementalist Robe"
+    },
+    {
+      "type": "0x16dc",
+      "id": "Ice Crown",
+      "Class": "Equipment",
+      "Item": "",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x1f"
+      },
+      "SlotType": "9",
+      "Description": "An ancient artifact, once worn by a corrupt king of the frost realms. Thanks to: Poshun",
+      "ActivateOnEquip": [
+        {
+          "_": "IncrementStat",
+          "stat": "28",
+          "amount": "6"
+        },
+        {
+          "_": "IncrementStat",
+          "stat": "20",
+          "amount": "6"
+        },
+        {
+          "_": "IncrementStat",
+          "stat": "0",
+          "amount": "110"
+        }
+      ],
+      "BagType": "6",
+      "FameBonus": "5",
+      "feedPower": "500",
+      "Soulbound": "",
+      "DisplayId": "Ice Crown"
+    },
+    {
+      "type": "0x16dd",
+      "id": "Frost Citadel Armor",
+      "Class": "Equipment",
+      "Item": "",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x24"
+      },
+      "SlotType": "7",
+      "Description": "A sturdy suit of armor, reinforced with ice plating. It's worn by the bravest warriors known to challenge the Mad God. Thanks to: Poshun",
+      "ActivateOnEquip": {
+        "_": "IncrementStat",
+        "stat": "21",
+        "amount": "24"
+      },
+      "BagType": "4",
+      "FameBonus": "4",
+      "feedPower": "435",
+      "Soulbound": "",
+      "DisplayId": "Frost Citadel Armor"
+    },
+    {
+      "type": "0x16de",
+      "id": "Tome of Frigid Protection",
+      "Class": "Equipment",
+      "Item": "",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x25"
+      },
+      "SlotType": "4",
+      "Description": "A tome that allows the caster to encase themselves in extremely durable ice. However, despite being nearly impenetrable, it will melt after a while. Thanks to: Poshun",
+      "Sound": "spell/major_heal",
+      "ActivateOnEquip": [
+        {
+          "_": "IncrementStat",
+          "stat": "26",
+          "amount": "4"
+        },
+        {
+          "_": "IncrementStat",
+          "stat": "0",
+          "amount": "40"
+        }
+      ],
+      "Usable": "",
+      "BagType": "6",
+      "FameBonus": "6",
+      "MpCost": "120",
+      "Activate": [
+        {
+          "_": "HealNova",
+          "amount": "200",
+          "range": "6",
+          "useWisMod": "true"
+        },
+        {
+          "_": "ConditionEffectSelf",
+          "effect": "Armored",
+          "duration": "4",
+          "useWisMod": "true"
+        }
+      ],
+      "feedPower": "1300",
+      "Soulbound": "",
+      "DisplayId": "Tome of Frigid Protection"
+    },
+    {
+      "type": "0x16eb",
+      "id": "Chinese Dress Trickster Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "119"
+      },
+      "SlotType": "10",
+      "Description": "Fashionable AND dangerous. Thanks to: Beige",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "5859"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "feedPower": "5000",
+      "DisplayId": "Chinese Dress Trickster Skin"
+    },
+    {
+      "type": "0x16ec",
+      "id": "Penguin Knight Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "120"
+      },
+      "SlotType": "10",
+      "Description": "Looks a lot less cute once its sword is in your eye. Thanks to: Beige",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "5860"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "feedPower": "5000",
+      "DisplayId": "Penguin Knight Skin"
+    },
+    {
+      "type": "0x16ed",
+      "id": "Frimar Knight Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "121"
+      },
+      "SlotType": "10",
+      "Description": "Smaller than the real Frimar, but no less dangerous. Thanks to: Poshun",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "5861"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "feedPower": "5000",
+      "DisplayId": "Frimar Knight Skin"
+    },
+    {
+      "type": "0x16ef",
+      "id": "Frozen King Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "122"
+      },
+      "SlotType": "10",
+      "Description": "Once sat on a Frozen Throne, but decided to go adventuring. Thanks to: Beige",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "5862"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "feedPower": "5000",
+      "DisplayId": "Frozen King Skin"
+    },
+    {
+      "type": "0x16f0",
+      "id": "Blizzard Sorcerer Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "123"
+      },
+      "SlotType": "10",
+      "Description": "Some say the world will end in fire, some say in ice. Thanks to: Beige",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "5863"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "feedPower": "5000",
+      "DisplayId": "Blizzard Sorcerer Skin"
+    },
+    {
+      "type": "0x16f1",
+      "id": "Ice King Priest Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "124"
+      },
+      "SlotType": "10",
+      "Description": "Crown not included to preserve sanity. Thanks to: Kingged",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "5864"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "feedPower": "5000",
+      "DisplayId": "Ice King Priest Skin"
+    },
+    {
+      "type": "0x16f2",
+      "id": "Icicle Dial Mystic Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "125"
+      },
+      "SlotType": "10",
+      "Description": "In case of emergency use icicle to stab enemy. Thanks to: Poshun",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "5865"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "feedPower": "5000",
+      "DisplayId": "Icicle Dial Mystic Skin"
+    },
+    {
+      "type": "0x16f3",
+      "id": "Yuki Onna Mystic Skin",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "126"
+      },
+      "SlotType": "10",
+      "Description": "Do not follow, unless you like frostbite. Thanks to: Beige",
+      "Activate": {
+        "_": "UnlockSkin",
+        "skinType": "5866"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "feedPower": "5000",
+      "DisplayId": "Yuki Onna Mystic Skin"
+    },
+    {
       "type": "0x0dc0",
       "id": "Great Temple Snake",
       "Class": "Character",
       "Enemy": "",
       "Size": "100",
       "ShadowSize": "90",
       "MaxHitPoints": "50",
       "Defense": "20",
@@ -52408,41 +52862,41 @@
     {
       "type": "0x6b6",
       "id": "Dragon Chain 1",
       "Class": "Character",
       "Texture": {
         "File": "lofiChar16x8",
         "Index": "0x7a"
       },
-      "Size": "100",
+      "Size": "85",
       "NoMiniMap": "",
       "DisplayId": "Dragon Chain 1"
     },
     {
       "type": "0x6b7",
       "id": "Dragon Chain 2",
       "Class": "Character",
       "Texture": {
         "File": "lofiChar16x8",
         "Index": "0x7a"
       },
-      "Size": "80",
+      "Size": "70",
       "NoMiniMap": "",
       "DisplayId": "Dragon Chain 2"
     },
     {
       "type": "0x6b8",
       "id": "Dragon Chain 3",
       "Class": "Character",
       "Texture": {
         "File": "lofiChar16x8",
         "Index": "0x7a"
       },
-      "Size": "60",
+      "Size": "55",
       "NoMiniMap": "",
       "DisplayId": "Dragon Chain 3"
     },
     {
       "type": "0x6b9",
       "id": "Dragon Chain 4",
       "Class": "Character",
       "Texture": {
@@ -56204,16 +56658,227 @@
       "DungeonName": "Mountain Temple",
       "Texture": {
         "File": "lofiObj3",
         "Index": "0x58a"
       },
       "ShadowSize": "0"
     },
     {
+      "type": "0x7412",
+      "id": "Nexus Anchor",
+      "Class": "Character",
+      "NoMiniMap": "",
+      "Texture": {
+        "File": "lofiInterfaceBig",
+        "Index": "6"
+      },
+      "AltTexture": {
+        "id": "1",
+        "Texture": {
+          "File": "invisible",
+          "Index": "0"
+        }
+      },
+      "MaxHitPoints": "100000",
+      "Size": "0",
+      "DisplayId": "Nexus Anchor"
+    },
+    {
+      "type": "0x7413",
+      "id": "Nexus Chinese Dragon",
+      "Class": "Character",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "37"
+      },
+      "MaxHitPoints": "100000",
+      "Size": "120",
+      "ShadowSize": "60",
+      "Z": "0.8",
+      "Flying": "",
+      "DisplayId": "Nexus Chinese Dragon"
+    },
+    {
+      "type": "0x7414",
+      "id": "Nexus Paper Lantern",
+      "Class": "Character",
+      "Texture": {
+        "File": "d3LofiObjEmbed16",
+        "Index": "0x2a"
+      },
+      "Animation": [
+        {
+          "prob": "0.2",
+          "period": "10",
+          "periodJitter": "5",
+          "Frame": [
+            {
+              "time": "0.2",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x29"
+              }
+            },
+            {
+              "time": "0.2",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x2a"
+              }
+            },
+            {
+              "time": "0.2",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x29"
+              }
+            },
+            {
+              "time": "0.2",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x2a"
+              }
+            },
+            {
+              "time": "0.2",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x29"
+              }
+            }
+          ]
+        },
+        {
+          "prob": "0.2",
+          "period": "35",
+          "periodJitter": "10",
+          "Frame": [
+            {
+              "time": "0.3",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x29"
+              }
+            },
+            {
+              "time": "1.2",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x28"
+              }
+            },
+            {
+              "time": "0.3",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x29"
+              }
+            }
+          ]
+        }
+      ],
+      "MaxHitPoints": "100000",
+      "Size": "80",
+      "ShadowSize": "180",
+      "ShadowColor": "0xff8271",
+      "Z": "0.5",
+      "Flying": "",
+      "DisplayId": "Nexus Paper Lantern"
+    },
+    {
+      "type": "0x7415",
+      "id": "Nexus Paper Lantern Small",
+      "Class": "Character",
+      "Texture": {
+        "File": "d3LofiObjEmbed16",
+        "Index": "0x22"
+      },
+      "Animation": [
+        {
+          "prob": "0.2",
+          "period": "10",
+          "periodJitter": "5",
+          "Frame": [
+            {
+              "time": "0.2",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x21"
+              }
+            },
+            {
+              "time": "0.2",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x22"
+              }
+            },
+            {
+              "time": "0.2",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x21"
+              }
+            },
+            {
+              "time": "0.2",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x22"
+              }
+            },
+            {
+              "time": "0.2",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x21"
+              }
+            }
+          ]
+        },
+        {
+          "prob": "0.2",
+          "period": "35",
+          "periodJitter": "10",
+          "Frame": [
+            {
+              "time": "0.3",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x21"
+              }
+            },
+            {
+              "time": "1.2",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x20"
+              }
+            },
+            {
+              "time": "0.3",
+              "Texture": {
+                "File": "d3LofiObjEmbed16",
+                "Index": "0x21"
+              }
+            }
+          ]
+        }
+      ],
+      "MaxHitPoints": "100000",
+      "Size": "80",
+      "ShadowSize": "100",
+      "ShadowColor": "0xff8271",
+      "Z": "0.4",
+      "Flying": "",
+      "DisplayId": "Nexus Paper Lantern Small"
+    },
+    {
       "type": "0x1700",
       "id": "Fishman Warrior",
       "Group": "Ocean Trench",
       "Enemy": "",
       "Class": "Character",
       "AnimatedTexture": {
         "File": "chars16x16rEncounters",
         "Index": "10"
@@ -60923,16 +61588,52 @@
       "PetId": "Sprite Star",
       "Activate": "CreatePet",
       "Consumable": "",
       "Soulbound": "",
       "BagType": "3",
       "DisplayId": "Sprite Star Egg"
     },
     {
+      "type": "0x16f4",
+      "id": "Valentine Heart Generator",
+      "DisplayId": "Valentine Heart",
+      "Class": "Equipment",
+      "Item": "",
+      "Texture": {
+        "File": "lofiChar28x8",
+        "Index": "0x1a"
+      },
+      "SlotType": "10",
+      "Description": "Send a heart to your  (Requires a buddy!)",
+      "BagType": "2",
+      "InvUse": "",
+      "Activate": {
+        "_": "PermaPet",
+        "objectId": "Valentine Heart",
+        "cooldown": "1",
+        "hideEffect": "true"
+      },
+      "Soulbound": "",
+      "feedPower": "500"
+    },
+    {
+      "type": "0x16f5",
+      "id": "Valentine Heart",
+      "Class": "Character",
+      "Texture": {
+        "File": "invisible",
+        "Index": "0"
+      },
+      "NoMiniMap": "",
+      "ShadowSize": "0",
+      "Size": "0",
+      "DisplayId": "Valentine Heart"
+    },
+    {
       "id": "Black Cat",
       "type": "0x7f05",
       "Pet": "",
       "Class": "Pet",
       "Texture": {
         "File": "lofiObj2",
         "Index": "0x32"
       },
@@ -66189,16 +66890,482 @@
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "4",
       "DisplayId": "Gummy Bear Pet Skin",
       "feedPower": "500"
     },
     {
+      "id": "Fire Rooster",
+      "type": "0x19be",
+      "Pet": "",
+      "Class": "Pet",
+      "Texture": {
+        "File": "lofiObj2",
+        "Index": "0x32"
+      },
+      "Family": "Farm",
+      "Rarity": "Rare",
+      "DefaultSkin": "Fire Rooster Skin",
+      "Size": "80",
+      "DisplayId": "Fire Rooster"
+    },
+    {
+      "type": "0x19bf",
+      "id": "Fire Rooster Skin",
+      "PetSkin": [
+        "",
+        ""
+      ],
+      "DisplayId": "Fire Rooster",
+      "Class": "PetSkin",
+      "AnimatedTexture": {
+        "File": "chars8x8rPets1",
+        "Index": "118"
+      }
+    },
+    {
+      "type": "0x19c0",
+      "id": "Fire Rooster Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "chars8x8rPets1",
+        "Index": "118"
+      },
+      "SlotType": "10",
+      "Description": "Celebrate the 2017 Lunar New Year of the Rooster! Thanks to: Beige",
+      "Activate": {
+        "_": "PetSkin",
+        "skinId": "6590"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "DisplayId": "Fire Rooster Pet Stone",
+      "feedPower": "5000"
+    },
+    {
+      "id": "Rooster of Good Fortune",
+      "type": "0x19c1",
+      "Pet": "",
+      "Class": "Pet",
+      "Texture": {
+        "File": "lofiObj2",
+        "Index": "0x32"
+      },
+      "Family": "Farm",
+      "Rarity": "Rare",
+      "DefaultSkin": "Rooster of Good Fortune Skin",
+      "Size": "80",
+      "DisplayId": "Rooster of Good Fortune"
+    },
+    {
+      "type": "0x19c2",
+      "id": "Rooster of Good Fortune Skin",
+      "PetSkin": [
+        "",
+        ""
+      ],
+      "DisplayId": "Rooster of Good Fortune",
+      "Class": "PetSkin",
+      "AnimatedTexture": {
+        "File": "chars8x8rPets1",
+        "Index": "119"
+      }
+    },
+    {
+      "type": "0x19c3",
+      "id": "Rooster of Good Fortune Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "chars8x8rPets1",
+        "Index": "119"
+      },
+      "SlotType": "10",
+      "Description": "Lucky you! You've been blessed by luck for the entire year of 2017! Thanks to: Beige",
+      "Activate": {
+        "_": "PetSkin",
+        "skinId": "6593"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "DisplayId": "Rooster of Good Fortune Pet Stone",
+      "feedPower": "5000"
+    },
+    {
+      "id": "Mini Chinese Dragon",
+      "type": "0x19c4",
+      "Pet": "",
+      "Class": "Pet",
+      "Texture": {
+        "File": "lofiObj2",
+        "Index": "0x32"
+      },
+      "Family": "Reptile",
+      "Rarity": "Rare",
+      "DefaultSkin": "Mini Chinese Dragon Skin",
+      "Size": "80",
+      "WhileMoving": {
+        "Z": "0.25",
+        "Flying": ""
+      },
+      "DisplayId": "Mini Chinese Dragon"
+    },
+    {
+      "type": "0x19c5",
+      "id": "Mini Chinese Dragon Skin",
+      "PetSkin": [
+        "",
+        ""
+      ],
+      "DisplayId": "Red Dragon",
+      "Class": "PetSkin",
+      "AnimatedTexture": {
+        "File": "chars8x8rPets1",
+        "Index": "120"
+      }
+    },
+    {
+      "type": "0x19c6",
+      "id": "Mini Chinese Dragon Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "chars8x8rPets1",
+        "Index": "120"
+      },
+      "SlotType": "10",
+      "Description": "Smaller than his Western counterpart, but no less dangerous! Thanks to: Beige",
+      "Activate": {
+        "_": "PetSkin",
+        "skinId": "6596"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "DisplayId": "Mini Chinese Dragon Pet Stone",
+      "feedPower": "5000"
+    },
+    {
+      "id": "Gingerbread Man",
+      "type": "0x19c7",
+      "Pet": "",
+      "Class": "Pet",
+      "Texture": {
+        "File": "lofiObj2",
+        "Index": "0x32"
+      },
+      "Family": "? ? ? ?",
+      "Rarity": "Rare",
+      "DefaultSkin": "Gingerbread Man Skin",
+      "Size": "80",
+      "DisplayId": "Gingerbread Man"
+    },
+    {
+      "type": "0x19c8",
+      "id": "Gingerbread Man Skin",
+      "PetSkin": [
+        "",
+        ""
+      ],
+      "DisplayId": "Gingerbread Man",
+      "Class": "PetSkin",
+      "AnimatedTexture": {
+        "File": "chars8x8rPets1",
+        "Index": "121"
+      }
+    },
+    {
+      "type": "0x19c9",
+      "id": "Gingerbread Man Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "chars8x8rPets1",
+        "Index": "121"
+      },
+      "SlotType": "10",
+      "Description": "Don't eat me! Don't eat me! Thanks to: Nmin",
+      "Activate": {
+        "_": "PetSkin",
+        "skinId": "6599"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "DisplayId": "Gingerbread Man Pet Stone",
+      "feedPower": "5000"
+    },
+    {
+      "id": "Mini Polaris",
+      "type": "0x19ca",
+      "Pet": "",
+      "Class": "Pet",
+      "Texture": {
+        "File": "lofiObj2",
+        "Index": "0x32"
+      },
+      "Family": "? ? ? ?",
+      "Rarity": "Rare",
+      "DefaultSkin": "Mini Polaris Skin",
+      "Size": "80",
+      "DisplayId": "Mini Polaris"
+    },
+    {
+      "type": "0x19cb",
+      "id": "Mini Polaris Skin",
+      "PetSkin": [
+        "",
+        ""
+      ],
+      "DisplayId": "Mini Polaris",
+      "Class": "PetSkin",
+      "AnimatedTexture": {
+        "File": "chars8x8rPets1",
+        "Index": "122"
+      }
+    },
+    {
+      "type": "0x19cc",
+      "id": "Mini Polaris Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "chars8x8rPets1",
+        "Index": "122"
+      },
+      "SlotType": "10",
+      "Description": "Little Polaris didn't want to become a boss like Papa Polaris. Thanks to: Poshun",
+      "Activate": {
+        "_": "PetSkin",
+        "skinId": "6602"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "DisplayId": "Mini Polaris Pet Stone",
+      "feedPower": "5000"
+    },
+    {
+      "id": "Mini Paper Lantern",
+      "type": "0x19cd",
+      "Pet": "",
+      "Class": "Pet",
+      "Texture": {
+        "File": "lofiObj2",
+        "Index": "0x32"
+      },
+      "Family": "? ? ? ?",
+      "Rarity": "Divine",
+      "DefaultSkin": "Mini Paper Lantern Skin",
+      "Size": "80",
+      "WhileMoving": {
+        "Z": "0.25",
+        "Flying": ""
+      },
+      "DisplayId": "Mini Paper Lantern"
+    },
+    {
+      "type": "0x19ce",
+      "id": "Mini Paper Lantern Skin",
+      "PetSkin": [
+        "",
+        ""
+      ],
+      "DisplayId": "Mini Paper Lantern",
+      "Class": "PetSkin",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "35"
+      }
+    },
+    {
+      "type": "0x19cf",
+      "id": "Mini Paper Lantern Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x26"
+      },
+      "SlotType": "10",
+      "Description": "Transform your pet into Small Lantern of the ? ? ? ? family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
+      "Activate": {
+        "_": "PetSkin",
+        "skinId": "6605"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "DisplayId": "Mini Paper Lantern Pet Skin",
+      "feedPower": "5000"
+    },
+    {
+      "id": "Paper Lantern",
+      "type": "0x19d0",
+      "Pet": "",
+      "Class": "Pet",
+      "Texture": {
+        "File": "lofiObj2",
+        "Index": "0x32"
+      },
+      "Family": "? ? ? ?",
+      "Rarity": "Divine",
+      "DefaultSkin": "Paper Lantern Skin",
+      "Size": "80",
+      "WhileMoving": {
+        "Z": "0.25",
+        "Flying": ""
+      },
+      "DisplayId": "Paper Lantern"
+    },
+    {
+      "type": "0x19d1",
+      "id": "Paper Lantern Skin",
+      "PetSkin": [
+        "",
+        ""
+      ],
+      "DisplayId": "Paper Lantern",
+      "Class": "PetSkin",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "36"
+      }
+    },
+    {
+      "type": "0x19d2",
+      "id": "Paper Lantern Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x26"
+      },
+      "SlotType": "10",
+      "Description": "Light it up and get ready for the festivities! Thanks to: Beige",
+      "Activate": {
+        "_": "PetSkin",
+        "skinId": "6608"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "DisplayId": "Paper Lantern Pet Skin",
+      "feedPower": "5000"
+    },
+    {
+      "id": "Chinese Dragon",
+      "type": "0x19d3",
+      "Pet": "",
+      "Class": "Pet",
+      "Texture": {
+        "File": "lofiObj2",
+        "Index": "0x32"
+      },
+      "Family": "Reptile",
+      "Rarity": "Divine",
+      "DefaultSkin": "Chinese Dragon Skin",
+      "Size": "80",
+      "WhileMoving": {
+        "Z": "0.25",
+        "Flying": ""
+      },
+      "DisplayId": "Chinese Dragon"
+    },
+    {
+      "type": "0x19d4",
+      "id": "Chinese Dragon Skin",
+      "PetSkin": [
+        "",
+        ""
+      ],
+      "DisplayId": "Chinese Dragon",
+      "Class": "PetSkin",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "37"
+      }
+    },
+    {
+      "type": "0x19d5",
+      "id": "Chinese Dragon Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x28"
+      },
+      "SlotType": "10",
+      "Description": "Smaller than his Western counterpart, but no less dangerous! Thanks to: Beige",
+      "Activate": {
+        "_": "PetSkin",
+        "skinId": "6611"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "DisplayId": "Chinese Dragon Pet Skin",
+      "feedPower": "5000"
+    },
+    {
+      "id": "Desert Cobra",
+      "type": "0x19d6",
+      "Pet": "",
+      "Class": "Pet",
+      "Texture": {
+        "File": "lofiObj2",
+        "Index": "0x32"
+      },
+      "Family": "Reptile",
+      "Rarity": "Rare",
+      "DefaultSkin": "Desert Cobra Skin",
+      "Size": "80",
+      "DisplayId": "Desert Cobra"
+    },
+    {
+      "type": "0x19d7",
+      "id": "Desert Cobra Skin",
+      "PetSkin": [
+        "",
+        ""
+      ],
+      "DisplayId": "Desert Cobra",
+      "Class": "PetSkin",
+      "AnimatedTexture": {
+        "File": "chars8x8rPets1",
+        "Index": "123"
+      }
+    },
+    {
+      "type": "0x19d8",
+      "id": "Desert Cobra Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "chars8x8rPets1",
+        "Index": "123"
+      },
+      "SlotType": "10",
+      "Description": "Transform your pet into Desert Cobra of the Reptile family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
+      "Activate": {
+        "_": "PetSkin",
+        "skinId": "6614"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "4",
+      "DisplayId": "Desert Cobra Pet Stone",
+      "feedPower": "5000"
+    },
+    {
       "type": "0x0927",
       "id": "Dreadstump the Pirate King",
       "Enemy": "",
       "Class": "Character",
       "AnimatedTexture": {
         "File": "chars16x16dEncounters",
         "Index": "4"
       },
@@ -72756,16 +73923,57 @@
       "Class": "Projectile",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x0a"
       },
       "AngleCorrection": "1"
     },
     {
+      "type": "0x16df",
+      "id": "Enchanted Ice Blade Slash",
+      "Class": "Projectile",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x20"
+      },
+      "Rotation": "0",
+      "AngleCorrection": "1"
+    },
+    {
+      "type": "0x16e0",
+      "id": "Iceblast Missile",
+      "Class": "Projectile",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x21"
+      },
+      "AngleCorrection": "1"
+    },
+    {
+      "type": "0x16e1",
+      "id": "Eternal Snowflake Shot",
+      "Class": "Projectile",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x22"
+      },
+      "Rotation": "0"
+    },
+    {
+      "type": "0x16e2",
+      "id": "Artic Arrow",
+      "Class": "Projectile",
+      "Texture": {
+        "File": "d2LofiObjEmbed",
+        "Index": "0x23"
+      },
+      "AngleCorrection": "1"
+    },
+    {
       "type": "0x7433",
       "id": "The Puppet Master",
       "DisplayId": "The Puppet Master",
       "Class": "Character",
       "Group": "Master",
       "Enemy": "",
       "AnimatedTexture": {
         "File": "chars16x16rEncounters",
@@ -79308,16 +80516,120 @@
         "File": "playerskins",
         "Index": "118"
       },
       "PlayerClassType": "0x0300",
       "NoSkinSelect": "",
       "DisplayId": "Snowcloaked Rogue"
     },
     {
+      "type": "0x16e3",
+      "id": "Chinese Dress Trickster",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "119"
+      },
+      "PlayerClassType": "0x0324",
+      "NoSkinSelect": "",
+      "DisplayId": "Chinese Dress Trickster"
+    },
+    {
+      "type": "0x16e4",
+      "id": "Penguin Knight",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "120"
+      },
+      "PlayerClassType": "0x031e",
+      "NoSkinSelect": "",
+      "DisplayId": "Penguin Knight"
+    },
+    {
+      "type": "0x16e5",
+      "id": "Frimar Knight",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "121"
+      },
+      "PlayerClassType": "0x031e",
+      "NoSkinSelect": "",
+      "DisplayId": "Frimar Knight"
+    },
+    {
+      "type": "0x16e6",
+      "id": "Frozen King",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "122"
+      },
+      "PlayerClassType": "0x0321",
+      "NoSkinSelect": "",
+      "DisplayId": "Frozen King"
+    },
+    {
+      "type": "0x16e7",
+      "id": "Blizzard Sorcerer",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "123"
+      },
+      "PlayerClassType": "0x0325",
+      "NoSkinSelect": "",
+      "DisplayId": "Blizzard Sorcerer"
+    },
+    {
+      "type": "0x16e8",
+      "id": "Ice King Priest",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "124"
+      },
+      "PlayerClassType": "0x0310",
+      "NoSkinSelect": "",
+      "DisplayId": "Ice King Priest"
+    },
+    {
+      "type": "0x16e9",
+      "id": "Icicle Dial Mystic",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "125"
+      },
+      "PlayerClassType": "0x0323",
+      "NoSkinSelect": "",
+      "DisplayId": "Icicle Dial Mystic"
+    },
+    {
+      "type": "0x16ea",
+      "id": "Yuki Onna Mystic",
+      "Skin": "",
+      "Class": "Skin",
+      "AnimatedTexture": {
+        "File": "playerskins",
+        "Index": "126"
+      },
+      "PlayerClassType": "0x0323",
+      "NoSkinSelect": "",
+      "DisplayId": "Yuki Onna Mystic"
+    },
+    {
       "type": "0x0e28",
       "id": "Snakepit Guard Spawner",
       "Class": "Character",
       "Enemy": "",
       "NoMiniMap": "",
       "AnimatedTexture": {
         "File": "chars16x16dEncounters2",
         "Index": "39"
Binary files ../current/sheets/chars8x8rPets1.png and ./sheets/chars8x8rPets1.png differ
Binary files ../current/sheets/d2LofiObj.png and ./sheets/d2LofiObj.png differ
Binary files ../current/sheets/d3LofiObj.png and ./sheets/d3LofiObj.png differ
Binary files ../current/sheets/petsDivine.png and ./sheets/petsDivine.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	2017-01-13 16:40:22.033833341 +0000
+++ ./strings.json	2017-01-19 14:00:20.482506968 +0000
@@ -1610,16 +1610,17 @@
   "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.",
+  "equip.A_bow,_fashioned_from_solid_ice,_enchanted_not_to_melt._Its": "A bow, fashioned from solid ice, enchanted not to melt. Its often used by elven hunters which live in the arctic wastes. Thanks to: Poshun",
   "equip.A_bow_fashioned_from_living_coral_found_in_only_the_deepest": "A bow fashioned from living coral found in only the deepest ocean trenches.  It is the favored weapon of those that inhabit the realms beneath the waves.",
   "equip.A_bow_gifted_to_mortals_from_the_gods_themselves._It_shoots": "A bow gifted to mortals from the gods themselves. It shoots powerful arrows in three directions at once.",
   "equip.A_bow_made_from_the_rare_greywood_tree.": "A bow made from the rare greywood tree.",
   "equip.A_bow_mounted_on_a_stock_that_shoots_with_amazing_speed_and": "A bow mounted on a stock that shoots with amazing speed and accuracy.",
   "equip.A_bow_of_light_forged_by_the_angels_for_use_in_their_eterna": "A bow of light forged by the angels for use in their eternal struggle against darkness and evil.",
   "equip.A_bow_that_shoots_arrows_that_burn_with_an_unholy_fire.": "A bow that shoots arrows that burn with an unholy fire.",
   "equip.A_bow_that_somehow_manages_to_shoot_two_arrows_in_different": "A bow that somehow manages to shoot two arrows in different directions.",
   "equip.A_brightly_colored_robe_of_metallic_threads,_woven_in_the_a": "A brightly colored robe of metallic threads, woven in the ancient elvish style and steeped in fey auras.",
@@ -1645,16 +1646,17 @@
   "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_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_cool_wand_that_creates_a_flurry_of_beautiful_snowflakes._": "A cool wand that creates a flurry of beautiful snowflakes. Thanks to: Poshun",
   "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_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.",
@@ -1676,16 +1678,17 @@
   "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.",
   "equip.A_formidable_fire_spell_used_by_dwarven_magi_in_their_war_a": "A formidable fire spell used by dwarven magi in their war against the trolls.",
   "equip.A_foul_poison_harvested_from_the_corpses_of_plague_victims.": "A foul poison harvested from the corpses of plague victims. It infects many targets, but kills slowly.",
+  "equip.A_frozen_staff,_used_for_creating_powerful_chilly_blasts_ar": "A frozen staff, used for creating powerful chilly blasts around the user. Thanks to: Poshun",
   "equip.A_ghostly_fabric_from_the_other_side.": "A ghostly fabric from the other side.",
   "equip.A_gleaming_obsidian_sword_of_imperial_power,_fashioned_by_e": "A gleaming obsidian sword of imperial power, fashioned by enslaved demons for the personal use of a world-conquering leader of mortals.",
   "equip.A_glittering_golden_scepter_charged_with_magical_lightning.": "A glittering golden scepter charged with magical lightning.",
   "equip.A_glittering_magical_prism_that_fabricates_potent_images_in": "A glittering magical prism that fabricates potent images in the minds of the weak-willed.",
   "equip.A_glowing_orb_of_pale_emerald,_used_to_constrain_rogue_elem": "A glowing orb of pale emerald, used to constrain rogue elementals to the astral mists.",
   "equip.A_godly_weapon_belonging_to_the_Cult_of_Admin.": "A godly weapon belonging to the Cult of Admin.",
   "equip.A_golden_field_marshalAPOSs_helm_with_platinum_detailing_an": "A golden field marshal's helm with platinum detailing and a cockatrice plume, able to motivate entire legions to new heights of tenacity and determination.",
   "equip.A_golden_scepter_of_power,_created_by_storm_giants_during_t": "A golden scepter of power, created by storm giants during their long war against the undertrolls.",
@@ -1788,16 +1791,17 @@
   "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_spooky_pet_egg.": "A legendary spooky 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,_imbued_with_frosty_runes._Thanks_to:_P": "A lightweight blade, imbued with frosty runes. Thanks to: Poshun",
   "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.",
   "equip.A_magical_cloak,_made_for_slipping_into_shadows_undetected.": "A magical cloak, made for slipping into shadows undetected.",
   "equip.A_magical_honeycomb_that_was_once_crucial_in_repelling_an_a": "A magical honeycomb that was once crucial in repelling an assault from the Hornet Rebellion.",
   "equip.A_magical_hunting_trap.": "A magical hunting trap.",
@@ -1950,31 +1954,33 @@
   "equip.A_steel_and_platinum_helm_of_ancient_design,_worn_by_earthr": "A steel and platinum helm of ancient design, worn by earthrazer generals during the great orcish war.",
   "equip.A_steel_shield_supported_by_iron_ribbing.": "A steel shield supported by iron ribbing.",
   "equip.A_steel_short_sword.": "A steel short sword.",
   "equip.A_strange_looking_mushroom.": "A strange looking mushroom.",
   "equip.A_striking_fine-edged_weapon.": "A striking fine-edged weapon.",
   "equip.A_strong_quiver_of_magical_iron.": "A strong quiver of magical iron.",
   "equip.A_stunning_costume_to_wear_for_your_theatre_debut.": "A stunning costume to wear for your theatre debut.",
   "equip.A_sturdy_helm_used_by_battlefield_sergeants_to_improve_mora": "A sturdy helm used by battlefield sergeants to improve morale in nearby allies.",
+  "equip.A_sturdy_suit_of_armor,_reinforced_with_ice_plating._ItAPOS": "A sturdy suit of armor, reinforced with ice plating. It's worn by the bravest warriors known to challenge the Mad God. Thanks to: Poshun",
   "equip.A_stylish_witch,_community_choice_winner:_Project_Realmway_": "A stylish witch, community choice winner: Project Realmway 2. Thanks to: DieGo",
   "equip.A_sugary-sweet_natural_grenade_found_in_the_Candyland_Hunti": "A sugary-sweet natural grenade found in the Candyland Hunting Grounds.",
   "equip.A_superior_enchanting_quiver_made_of_high_quality_magesteel": "A superior enchanting quiver made of high quality magesteel.",
   "equip.A_superior_shield_forged_in_deep_armories_for_the_construct": "A superior shield forged in deep armories for the construct armies of the underworld.",
   "equip.A_superlative_bow_of_sunsteel_and_diamondwire,_created_by_a": "A superlative bow of sunsteel and diamondwire, created by a secretive race of star-dwelling entities.",
   "equip.A_sweet_tropical_drink_that_boosts_attack_and_dexterity.": "A sweet tropical drink that boosts attack and dexterity.",
   "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_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_tome_that_allows_the_caster_to_encase_themselves_in_extre": "A tome that allows the caster to encase themselves in extremely durable ice. However, despite being nearly impenetrable, it will melt after a while. Thanks to: Poshun",
   "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_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.",
@@ -2028,16 +2034,17 @@
   "equip.Amulet_of_Resurrection": "Amulet of Dispersion",
   "equip.An_American_heroAPOSs_ring.": "An American hero's ring.",
   "equip.An_Icicle": "An Icicle",
   "equip.An_Olympic_bronze_medal_in_synchronised_swimming.": "An Olympic bronze medal in synchronised swimming.",
   "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_ancient_artifact,_once_worn_by_a_corrupt_king_of_the_fro": "An ancient artifact, once worn by a corrupt king of the frost realms. Thanks to: Poshun",
   "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_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_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.",
@@ -2058,16 +2065,17 @@
   "equip.An_enchanted_cloak_crafted_by_an_ancient_guild_of_timeshift": "An enchanted cloak crafted by an ancient guild of timeshifter thieves.",
   "equip.An_enchanted_cloak_steeped_in_magical_darkness.": "An enchanted cloak steeped in magical darkness.",
   "equip.An_enchanted_quiver_made_of_high-quality_leather_and_brass.": "An enchanted quiver made of high-quality leather and brass.",
   "equip.An_enchanted_robe_of_dark_moonweave.": "An enchanted robe of dark moonweave.",
   "equip.An_enchanted_trap_for_hunting_the_fierce_beasts_of_the_dark": "An enchanted trap for hunting the fierce beasts of the dark forests.",
   "equip.An_evil_blade_that_hungers_for_blood.": "An evil blade that hungers for blood.",
   "equip.An_exalted_holy_tome,_filled_with_prayers_and_blessed_by_an": "An exalted holy tome, filled with prayers and blessed by angels.",
   "equip.An_exalted_weapon_of_the_august_kings_of_old,_hallowed_with": "An exalted weapon of the august kings of old, hallowed with the spirit of nations and yearning to grant power anew.",
+  "equip.An_excellent_robe,_woven_from_icy_threads._Its_typically_on": "An excellent robe, woven from icy threads. Its typically only worn by the most adept ice mages. Thanks to: Poshun",
   "equip.An_exceptional_cloak_used_by_sorcerer-thieves_for_night_ope": "An exceptional cloak used by sorcerer-thieves for night operations in dockyards and storehouses.",
   "equip.An_extremely_sharp_dagger_made_from_the_strongest_and_most_": "An extremely sharp dagger made from the strongest and most desirable of all metals.",
   "equip.An_immensely_powerful_spell_created_by_the_wizard_lords_of_": "An immensely powerful spell created by the wizard lords of the underworld to harness dark energies.",
   "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",
@@ -2112,16 +2120,17 @@
   "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.Artic_Bow": "Artic Bow",
   "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",
@@ -2134,16 +2143,17 @@
   "equip.Battle_armor_made_from_Fire_Dragon_scales,_one_of_the_stron": "Battle armor made from Fire Dragon scales, one of the strongest substances this world has ever seen.",
   "equip.Battle_for_the_Nexus:_Never_Forget.": "Battle for the Nexus: Never Forget.",
   "equip.Beachzone_Key": "Beachzone Key",
   "equip.Bearskin_Armor": "Bearskin Armor",
   "equip.Because_what_kind_of_monster_would_trick_their_fellows_with": "Because what kind of monster would trick their fellows with a fake one?",
   "equip.BellaAPOSs_Key": "Bella's Key",
   "equip.Black_Iron_Helm": "Black Iron Helm",
   "equip.Blessed_water_that_heals_and_purifies_the_user.": "Blessed water that heals and purifies the user.",
+  "equip.Blizzard_Sorcerer_Skin": "Blizzard Sorcerer Skin",
   "equip.Bloodsucker_Skull": "Bloodsucker Skull",
   "equip.Blue_Drake_Egg": "Blue Drake Egg",
   "equip.Blue_Gumball": "Blue Gumball",
   "equip.Blue_Paradise": "Blue Paradise",
   "equip.Blue_Steel_Dagger": "Blue Steel Dagger",
   "equip.Blue_Steel_Mail": "Blue Steel Mail",
   "equip.Blushing?_IAPOSm_not_blushing._Found_during_Valentines_Day_": "Blushing? I'm not blushing. Found during Valentines Day 2014.",
   "equip.Bone_Dagger": "Bone Dagger",
@@ -2179,16 +2189,17 @@
   "equip.Char_Slot_Unlocker": "Char Slot Unlocker",
   "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.Chicken_Leg_of_Doom": "Chicken Leg of Doom",
   "equip.Chimera_Hide_Armor": "Chimera Hide Armor",
+  "equip.Chinese_Dress_Trickster_Skin": "Chinese Dress Trickster Skin",
   "equip.Chocolate_Cream_Sandwich_Cookie": "Chocolate Cream Sandwich Cookie",
   "equip.Christmas_Tree_Pet_Stone": "Christmas Tree Skin",
   "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",
   "equip.Cloak_of_the_Night_Thief": "Cloak of the Night Thief",
@@ -2225,16 +2236,17 @@
   "equip.Corrupted_by_creatures_of_the_frost_realms,_its_arrows_will": "Corrupted by creatures of the frost realms, its arrows will slacken assailants promptly.",
   "equip.Cracked_Crystal_Skull": "Cracked Crystal Skull",
   "equip.Cranberries": "Cranberries",
   "equip.Crashy": "Crashy",
   "equip.Cream_Spirit": "Cream Spirit",
   "equip.Created_by_a_lonely_Sorcerer._This_sentient_eye_doesnAPOSt_": "Created by a lonely Sorcerer. This sentient eye doesn't make a very good friend. It does, however, make fruit. Rarity: Rare, I guess",
   "equip.Crossbow": "Crossbow",
   "equip.Crown": "Crown",
+  "equip.Crown_not_included_to_preserve_sanity._Thanks_to:_Kingged": "Crown not included to preserve sanity. Thanks to: Kingged",
   "equip.Crude,_but_effective.": "Crude, but effective.",
   "equip.Crystal_Bone_Ring": "Crystal Bone Ring",
   "equip.Crystal_Sword": "Crystal Sword",
   "equip.Crystal_Wand": "Crystal Wand",
   "equip.Cube_God_Thrower": "Cube God Thrower",
   "equip.CupidAPOSs_Bow": "Cupid's Bow",
   "equip.Cursed_by_responsibility_and_awesome_knife_skills._Thanks_t": "Cursed by responsibility and awesome knife skills. Thanks to: IrondogdogROTMG",
   "equip.Customize_your_Archer_with_the_Inuit_Skin.": "Customize your Archer with the Inuit Skin.",
@@ -2315,16 +2327,17 @@
   "equip.Destruction_Sphere_Spell": "Destruction Sphere Spell",
   "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.Do_not_follow,_unless_you_like_frostbite._Thanks_to:_Beige": "Do not follow, unless you like frostbite. Thanks to: Beige",
   "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",
@@ -2361,29 +2374,32 @@
   "equip.Elixir_of_Magic_3": "Elixir of Magic",
   "equip.Elixir_of_Magic_4": "Elixir of Magic",
   "equip.Elixir_of_Magic_5": "Elixir of Magic",
   "equip.Elixir_of_Magic_6": "Elixir of Magic",
   "equip.Elixir_of_Magic_7": "Elixir of Magic",
   "equip.Elvencraft_Quiver": "Elvencraft Quiver",
   "equip.Emerald_Mystery_Key": "Emerald Mystery Key",
   "equip.Emeraldshard_Dagger": "Emeraldshard Dagger",
+  "equip.Enchanted_Ice_Blade": "Enchanted Ice Blade",
   "equip.Enchanted_Ice_Shard": "Enchanted Ice Shard",
   "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.Eternal_Snowflake_Wand": "Eternal Snowflake Wand",
   "equip.Etherite_Dagger": "Etherite Dagger",
   "equip.Eucalyptus_can_be_incredibly_effective_at_looking_awesome.": "Eucalyptus can be incredibly effective at looking awesome.",
   "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.Fame": "Fame Chicken",
+  "equip.Fashionable_AND_dangerous._Thanks_to:_Beige": "Fashionable AND dangerous. Thanks to: Beige",
   "equip.Felwasp_Toxin": "Felwasp Toxin",
   "equip.Fire_Bow": "Fire Bow",
   "equip.Fire_Dagger": "Fire Dagger",
   "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",
@@ -2408,19 +2424,24 @@
   "equip.Force_Wand": "Force Wand",
   "equip.Forest_Maze_Key": "Forest Maze Key",
   "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.Freezing_Quiver": "Freezing Quiver",
   "equip.Fries": "Fries",
+  "equip.Frimar_Knight_Skin": "Frimar Knight Skin",
   "equip.Frimarra": "Frimarra",
   "equip.From_the_realms_of_frost,_this_wandAPOSs_ice_magic_penetrat": "From the realms of frost, this wand's ice magic penetrates even the strongest armor.",
+  "equip.Frost_Citadel_Armor": "Frost Citadel Armor",
+  "equip.Frost_Drake_Hide_Armor": "Frost Drake Hide Armor",
+  "equip.Frost_Elementalist_Robe": "Frost Elementalist Robe",
   "equip.Frostbite": "Frostbite",
+  "equip.Frozen_King_Skin": "Frozen King Skin",
   "equip.Frozen_Wand": "Frozen Wand",
   "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",
@@ -2499,23 +2520,27 @@
   "equip.How_else_would_the_minions_of_Oryx_get_their_gifts?_Thanks_": "How else would the minions of Oryx get their gifts? Thanks to: paulo and sonutx",
   "equip.Hunchback_Skin": "Hunchback Skin",
   "equip.Hunting_Trap": "Hunting Trap",
   "equip.Huntsman_Skin": "Huntsman Skin",
   "equip.Hydra_Skin_Armor": "Hydra Skin Armor",
   "equip.IAPOSm_not_really_sure_where_the_term_APOSwitchAPOS_came_fr": "I'm not really sure where the term 'witch' came from.",
   "equip.I_was_a_fool_before,_but_now_everything_is_so_clear._The_ph": "I was a fool before, but now everything is so clear. The phylactery speaks to me, knows me, protects me.",
   "equip.Ice_Cave_Key": "Ice Cave Key",
+  "equip.Ice_Crown": "Ice Crown",
+  "equip.Ice_King_Priest_Skin": "Ice King Priest Skin",
   "equip.Ice_Star": "Ice Star",
   "equip.Ice_Tomb_Key": "Ice Tomb Key",
   "equip.Iceman_Skin": "Iceman Skin",
   "equip.Ichimonji": "Ichimonji",
+  "equip.Icicle_Dial_Mystic_Skin": "Icicle Dial Mystic Skin",
   "equip.Illusion_Prism": "Illusion Prism",
   "equip.Impenetrable_forceplate_armor_worn_by_the_blackguard_conque": "Impenetrable forceplate armor worn by the blackguard conquerers of the necromantic uprising.",
   "equip.Imprisonment_Orb": "Imprisonment Orb",
+  "equip.In_case_of_emergency_use_icicle_to_stab_enemy._Thanks_to:_P": "In case of emergency use icicle to stab enemy. Thanks to: Poshun",
   "equip.Indestructible_magical_armor_made_for_the_elite_stoneborn_c": "Indestructible magical armor made for the elite stoneborn champions of the eastern citadels.",
   "equip.Indomptable": "Indomptable",
   "equip.Infected_Skin": "Infected Skin",
   "equip.Inuit_Skin": "Inuit Skin",
   "equip.Iron_Mail": "Iron Mail",
   "equip.Iron_Quiver": "Iron Quiver",
   "equip.Iron_Shield": "Iron Shield",
   "equip.Ironwood_Bow": "Ironwood Bow",
@@ -2570,16 +2595,17 @@
   "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",
   "equip.Lil_Red_Skin": "Lil Red Skin",
   "equip.Lime_Jungle_Bay": "Lime Jungle Bay",
   "equip.Line_Kutter_Katana": "Line Kutter Katana",
   "equip.Little_Helper_Skin": "Little Helper Skin",
   "equip.Long_Sword": "Long Sword",
   "equip.Looking_for_a_Valentine._Found_during_Valentines_Day_2014.": "Looking for a Valentine. Found during Valentines Day 2014.",
+  "equip.Looks_a_lot_less_cute_once_its_sword_is_in_your_eye._Thanks": "Looks a lot less cute once its sword is in your eye. Thanks to: Beige",
   "equip.Loot_Drop_Potion": "Loot Drop Potion",
   "equip.Loot_Tier_Potion": "Loot Tier Potion",
   "equip.Lucky_Clover": "Lucky Clover",
   "equip.Lvl20": "Level Chicken",
   "equip.Mad_God_Ale": "Mad God Ale",
   "equip.Made_by_a_pretty_lazy_wizard._Hope_it_makes_something_worth": "Made by a pretty lazy wizard. Hope it makes something worthwhile. Rarity: Rare",
   "equip.Made_from_the_Heart_of_Zaarvox_by_Ulricht_the_first_Dragon_": "Made from the Heart of Zaarvox by Ulricht the first Dragon Tamer.",
   "equip.Made_of_a_strange_metal_not_known_to_the_living.": "Made of a strange metal not known to the living.",
@@ -2637,30 +2663,32 @@
   "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.",
   "equip.Nun_Skin": "Nun Skin",
   "equip.Obsidian_Dagger": "Obsidian Dagger",
   "equip.Ocean_Trench_Key": "Ocean Trench Key",
   "equip.Old_Firecracker": "Old Firecracker",
   "equip.Olive_Gladiator_Skin": "Olive Gladiator Skin",
   "equip.On_simple_observation_this_robe_has_known_many_owners._All_": "On simple observation this robe has known many owners. All are dead.",
+  "equip.Once_sat_on_a_Frozen_Throne,_but_decided_to_go_adventuring.": "Once sat on a Frozen Throne, but decided to go adventuring. Thanks to: Beige",
   "equip.Once_the_most_powerful_staff_in_existence;_a_crack_in_its_f": "Once the most powerful staff in existence; a crack in its frame has rendered it incapable of focusing fire. It remains uniquely deadly.",
   "equip.One_of_the_Dark_Elves_that_have_recently_began_showing_up_i": "One of the Dark Elves that have recently began showing up in the Realm. Thanks to: SteeleAlt",
   "equip.One_of_the_legendary_great_blades_of_the_master_Ichimonji.": "One of the legendary great blades of the master Ichimonji.",
   "equip.Only_cheaters_wear_this_armor.": "Only cheaters wear this armor.",
   "equip.Only_cheaters_wear_this_robe.": "Only cheaters wear this robe.",
   "equip.Onyx_Shield_of_the_Mad_God": "Onyx Shield of the Mad God",
   "equip.Orange_Drake_Egg": "Orange Drake Egg",
   "equip.Orb_of_Conflict": "Orb of Conflict",
   "equip.Orb_of_Sweet_Demise": "Orb of Sweet Demise",
   "equip.OryxAPOSs_Castle_Key": "Oryx's Castle Key",
   "equip.Oryx_Stout": "Oryx Stout",
   "equip.Outstanding_leather_armor_made_from_the_virtually_impregnab": "Outstanding leather armor made from the virtually impregnable hide of a great desert wyrm.",
   "equip.Pearl_Necklace": "Pearl Necklace",
   "equip.Penetrating_Blast_Spell": "Penetrating Blast Spell",
+  "equip.Penguin_Knight_Skin": "Penguin Knight Skin",
   "equip.Pentaract_Thrower": "Pentaract Thrower",
   "equip.Perhaps_all_that_remains_of_Esben,_whoever_he_was._Thanks_t": "Perhaps all that remains of Esben, whoever he was. Thanks to Pfiffel for Design Concept.",
   "equip.Pet_Form_Stone": "Pet Form Stone",
   "equip.PharaohAPOSs_Mask": "Pharaoh's Mask",
   "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.Pilgrim_Father_Skin": "Pilgrim Father Skin",
   "equip.Pilgrim_Mother_Skin": "Pilgrim Mother Skin",
   "equip.Pink_Passion_Breeze": "Pink Passion Breeze",
@@ -2707,16 +2735,17 @@
   "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_Dire_Instability": "Prism of Dire Instability",
   "equip.Prism_of_Figments": "Prism of Figments",
   "equip.Prism_of_Phantoms": "Prism of Phantoms",
   "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.Protective_leather_armor_fashioned_from_the_frozen,_but_res": "Protective leather armor fashioned from the frozen, but resilient scales of a frost drake. Thanks to: Poshun",
   "equip.Pumpkin_Head_Pet_Stone": "Pumpkin Head Pet Skin",
   "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.Quiver_of_Elvish_Mastery": "Quiver of Elvish Mastery",
   "equip.Quiver_of_Thunder": "Quiver of Thunder",
@@ -2901,25 +2930,27 @@
   "equip.Slime_Priest_Skin": "Slime Priest Skin",
   "equip.Slime_Rogue_Skin": "Slime Rogue Skin",
   "equip.Slime_Sorcerer_Skin": "Slime Sorcerer Skin",
   "equip.Slime_Trickster_Skin": "Slime Trickster Skin",
   "equip.Slime_Warrior_Skin": "Slime Warrior Skin",
   "equip.Slime_Wizard_Skin": "Slime Wizard Skin",
   "equip.Slurp_Knight_Skin": "Slurp Knight Skin",
   "equip.Small_Firecracker": "Small Firecracker",
+  "equip.Smaller_than_the_real_Frimar,_but_no_less_dangerous._Thanks": "Smaller than the real Frimar, but no less dangerous. Thanks to: Poshun",
   "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.Snow_Queen_Skin": "Snow Queen Skin",
   "equip.Snowcloaked_Rogue_Skin": "Snowcloaked Rogue Skin",
   "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.Some_say_the_world_will_end_in_fire,_some_say_in_ice._Thank": "Some say the world will end in fire, some say in ice. Thanks to: Beige",
   "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.Spawns_500_Fame_worth_of_chickenBANG_Also_functions_as_high": "Spawns 500 Fame worth of chicken! Also functions as high quality pet food. Yum!\\n\\nConsume responsibly!",
   "equip.Spawns_6_chicken_to_get_you_to_level_20.": "Spawns 6 chicken to get you to level 20.",
   "equip.Spawns_a_Cube_God._Do_not_use_in_the_NexusBANG": "Spawns a Cube God. Do not use in the Nexus!",
   "equip.Spawns_a_Pentaract._Do_not_use_in_the_NexusBANG": "Spawns a Pentaract. Do not use in the Nexus!",
@@ -2942,16 +2973,17 @@
   "equip.Staff_of_Adoration": "Staff of Adoration",
   "equip.Staff_of_Astral_Knowledge": "Staff of Astral Knowledge",
   "equip.Staff_of_Destruction": "Staff of Destruction",
   "equip.Staff_of_Diabolic_Secrets": "Staff of Diabolic Secrets",
   "equip.Staff_of_Esben": "Staff of Esben",
   "equip.Staff_of_Extreme_Prejudice": "Staff of Extreme Prejudice",
   "equip.Staff_of_Horrific_Knowledge": "Staff of Horrific Knowledge",
   "equip.Staff_of_Horror": "Staff of Horror",
+  "equip.Staff_of_Iceblast": "Staff of Iceblast",
   "equip.Staff_of_Necrotic_Arcana": "Staff of Necrotic Arcana",
   "equip.Staff_of_Yuletide_Carols": "Staff of Yuletide Carols",
   "equip.Staff_of_the_Cosmic_Whole": "Staff of the Cosmic Whole",
   "equip.Staff_of_the_Crystal_Serpent": "Staff of the Crystal Serpent",
   "equip.Staff_of_the_Fundamental_Core": "Staff of the Fundamental Core",
   "equip.Staff_of_the_Rising_Sun": "Staff of the Rising Sun",
   "equip.Staff_of_the_Vital_Unity": "Staff of the Vital Unity",
   "equip.Stanley_the_Spring_Bunny_Skin": "Stanley the Spring Bunny Skin",
@@ -3052,16 +3084,17 @@
   "equip.Tincture_of_Fear": "Tincture of Fear",
   "equip.Tincture_of_Life": "Tincture of Life",
   "equip.Tincture_of_Mana": "Tincture of Mana",
   "equip.Tiny_Avatar_Skin": "Tiny Avatar Skin",
   "equip.Toats_sweet_robobow_broBANG": "Toats sweet robobow bro!",
   "equip.Tomb_of_the_Ancients_(Heroic)_Key": "Tomb of the Ancients (Heroic) Key",
   "equip.Tomb_of_the_Ancients_Key": "Tomb of the Ancients Key",
   "equip.Tome_of_Divine_Favor": "Tome of Divine Favor",
+  "equip.Tome_of_Frigid_Protection": "Tome of Frigid Protection",
   "equip.Tome_of_Holy_Guidance": "Tome of Holy Guidance",
   "equip.Tome_of_Holy_Protection": "Tome of Holy Protection",
   "equip.Tome_of_Purification": "Tome of Purification",
   "equip.Tome_of_Rejuvenation": "Tome of Rejuvenation",
   "equip.Tome_of_Renewing": "Tome of Renewing",
   "equip.Totem_Key": "Totem Key",
   "equip.Tough,_durable_armor_made_from_wyvern_leather.": "Tough, durable armor made from wyvern leather.",
   "equip.Toxic_Sewers_Key": "Toxic Sewers Key",
@@ -3153,16 +3186,17 @@
   "equip.XP_Booster": "XP Booster",
   "equip.XP_Booster_1_hr": "XP Booster 1 hr",
   "equip.XP_Booster_20_min": "XP Booster 20 min",
   "equip.XP_Booster_Test": "XP Booster Test",
   "equip.Yellow_Drake_Egg": "Yellow Drake Egg",
   "equip.Yellow_Gumball": "Yellow Gumball",
   "equip.You_are_not_a_unique_snowflake._YouAPOSre_like_one_of_five_": "You are not a unique snowflake. You're like one of five or something.",
   "equip.You_can_hear_the_screams_of_tortured_souls_as_you_draw_this": "You can hear the screams of tortured souls as you draw this bow.",
+  "equip.Yuki_Onna_Mystic_Skin": "Yuki Onna Mystic Skin",
   "equip.ZaarvoxAPOSs_Heart": "Zaarvox's Heart",
   "equip.Zombie_Nurse_Skin": "Zombie Nurse Skin",
   "error.loadError": "Load error, retrying",
   "forbiddenJungle.Basilisk": "Basilisk",
   "forbiddenJungle.Basilisk_Baby": "Basilisk Baby",
   "forbiddenJungle.Boss_Totem": "Boss Totem",
   "forbiddenJungle.Great_Coil_Snake": "Great Coil Snake",
   "forbiddenJungle.Great_Snake_Egg": "Great Snake Egg",
@@ -3869,18 +3903,22 @@
   "objects.Loot_Bag_8": "Loot Bag",
   "objects.Loot_Bag_9": "Loot Bag",
   "objects.Loot_Bag_Boost": "Loot Bag",
   "objects.Manor_of_the_Immortals_Portal": "Manor of the Immortals",
   "objects.Merchant": "Merchant",
   "objects.Mountain_Temple_Portal": "Mountain Temple",
   "objects.Mystery_Box": "Mystery Box",
   "objects.Mystery_Box_Ground_Object": "Mystery Box Ground Object",
+  "objects.Nexus_Anchor": "Nexus Anchor",
+  "objects.Nexus_Chinese_Dragon": "Nexus Chinese Dragon",
   "objects.Nexus_Explanation_Obj": "Nexus Explanation Obj",
   "objects.Nexus_Explanation_Portal": "Nexus Explanation",
+  "objects.Nexus_Paper_Lantern": "Nexus Paper Lantern",
+  "objects.Nexus_Paper_Lantern_Small": "Nexus Paper Lantern Small",
   "objects.Nexus_Portal": "Nexus Portal",
   "objects.Nexus_Turkey": "Turkey",
   "objects.Ocean_Trench_Portal": "Ocean Trench",
   "objects.Ocean_Vent": "Ocean Vent",
   "objects.Octa": "Octa",
   "objects.Pet_Upgrader": "Pet Upgrader",
   "objects.Pet_Yard_Portal": "{objects.Pet_Yard_Portal}",
   "objects.Pirate_Cave_Portal": "Pirate Cave",
@@ -4088,32 +4126,35 @@
   "permapets.Red_Ant_Egg": "Red Ant Egg",
   "permapets.Reindeer_Egg": "Reindeer Egg",
   "permapets.Relief_Bluebird_Egg": "Relief Bluebird Egg",
   "permapets.Relief_Cardinal_Egg": "Relief Cardinal Egg",
   "permapets.Relief_Goldfinch_Egg": "Relief Goldfinch Egg",
   "permapets.Relief_Oriole_Egg": "Relief Oriole Egg",
   "permapets.Robobuddy_Egg": "Robobuddy Egg",
   "permapets.Sea_Slurp_Egg": "Sea Slurp Egg",
+  "permapets.Send_a_heart_to_your__(Requires_a_buddyBANG)": "Send a heart to your  (Requires a buddy!)",
   "permapets.Sheepdog_Egg": "Sheepdog Egg",
   "permapets.Skunk_Egg": "Skunk Egg",
   "permapets.Snowman_Egg": "Snowman Egg",
   "permapets.Snowy_Owl_Egg": "Snowy Owl Egg",
   "permapets.Spirit_Egg": "Spirit Egg",
   "permapets.Sprite_Star_Egg": "Sprite Star Egg",
   "permapets.Squirrel_Egg": "Squirrel Egg",
   "permapets.Tan_Cat_Egg": "Tan Cat Egg",
   "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_Egg": "Tomb Snake Egg",
   "permapets.Toucan_Egg": "Toucan Egg",
   "permapets.Turkey_Egg": "Turkey Egg",
   "permapets.Turtle_Egg": "Turtle Egg",
   "permapets.USA_Eagle_Egg": "USA Eagle Egg",
   "permapets.Valentine": "Valentine",
   "permapets.Valentine_Generator": "Valentine",
+  "permapets.Valentine_Heart": "Valentine Heart",
+  "permapets.Valentine_Heart_Generator": "Valentine Heart",
   "permapets.Werewolf_Cub_Egg": "Werewolf Cub Egg",
   "permapets.White_Cat_Egg": "White Cat Egg",
   "permapets.White_Lion_Egg": "White Lion Egg",
   "permapets.Yellow_Cat_Egg": "Yellow Cat Egg",
   "pets.AttackClose": "AttackClose",
   "pets.AttackFar": "AttackFar",
   "pets.AttackMid": "AttackMid",
   "pets.Attack_Close": "Attack Close",
@@ -4157,37 +4198,45 @@
   "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.Cardinal": "Cardinal",
   "pets.Cardinal_Pet_Stone": "Cardinal Pet Skin",
   "pets.Cardinal_Skin": "Cardinal",
+  "pets.Celebrate_the_2017_Lunar_New_Year_of_the_RoosterBANG_Thanks_": "Celebrate the 2017 Lunar New Year of the Rooster! Thanks to: Beige",
   "pets.Centaur": "Centaur",
   "pets.Centaur_Skin": "Centaur",
   "pets.Chameleon": "Chameleon",
   "pets.Chameleon_Skin": "Chameleon",
   "pets.Chick": "Chick",
   "pets.Chick_Skin": "Chick",
+  "pets.Chinese_Dragon": "Chinese Dragon",
+  "pets.Chinese_Dragon_Pet_Stone": "Chinese Dragon Pet Skin",
+  "pets.Chinese_Dragon_Skin": "Chinese Dragon",
   "pets.Christmas_Tree": "Christmas Tree",
   "pets.Christmas_Tree_Skin": "Christmas Tree",
   "pets.CloseRangeAttack": "CloseRangeAttack",
   "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.Desert_Cobra": "Desert Cobra",
+  "pets.Desert_Cobra_Pet_Stone": "Desert Cobra Pet Stone",
+  "pets.Desert_Cobra_Skin": "Desert Cobra",
   "pets.Dino": "Dino",
   "pets.Dino_Pet_Stone": "Dino Pet Skin",
   "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.DonAPOSt_eat_meBANG_DonAPOSt_eat_meBANG_Thanks_to:_Nmin": "Don't eat me! Don't eat me! Thanks to: Nmin",
   "pets.Dragonfly": "Dragonfly",
   "pets.Dragonfly_Skin": "Dragonfly",
   "pets.Dreidel": "Dreidel",
   "pets.Dreidel_Skin": "Dreidel",
   "pets.Duck": "Duck",
   "pets.Duck_Pet_Stone": "Duck Pet Skin",
   "pets.Duck_Skin": "Duck",
   "pets.Eagle": "Eagle",
@@ -4198,27 +4247,33 @@
   "pets.Elephant_Pet_Stone": "Elephant Pet Skin",
   "pets.Elephant_Skin": "Elephant",
   "pets.Elf": "Elf",
   "pets.Elf_Skin": "Elf",
   "pets.Enraged_Yack": "Enraged Yack",
   "pets.Enraged_Yack_Pet_Stone": "Enraged Yack Pet Skin",
   "pets.Enraged_Yack_Skin": "Enraged Yack",
   "pets.FarRangeAttack": "FarRangeAttack",
+  "pets.Fire_Rooster": "Fire Rooster",
+  "pets.Fire_Rooster_Pet_Stone": "Fire Rooster Pet Stone",
+  "pets.Fire_Rooster_Skin": "Fire Rooster",
   "pets.Forest_Fairy": "Forest Fairy",
   "pets.Forest_Fairy_Skin": "Forest Fairy",
   "pets.Frilled_Lizard": "Frilled Lizard",
   "pets.Frilled_Lizard_Pet_Stone": "Frilled Lizard Pet Stone",
   "pets.Frilled_Lizard_Skin": "Frilled Lizard",
   "pets.Funkatron": "Funkatron",
   "pets.Funkatron_Skin": "Funkatron",
   "pets.Gargoyle": "Gargoyle",
   "pets.Gargoyle_Skin": "Gargoyle",
   "pets.Giant_Vampire_Bat": "Giant Vampire Bat",
   "pets.Giant_Vampire_Bat_Skin": "Giant Vampire Bat",
+  "pets.Gingerbread_Man": "Gingerbread Man",
+  "pets.Gingerbread_Man_Pet_Stone": "Gingerbread Man Pet Stone",
+  "pets.Gingerbread_Man_Skin": "Gingerbread Man",
   "pets.Glowing_Skull": "Glowing Skull",
   "pets.Glowing_Skull_Skin": "Glowing Skull",
   "pets.Gold_Bulldog": "Gold Bulldog",
   "pets.Gold_Bulldog_Pet_Stone": "Gold Bulldog Pet Skin",
   "pets.Gold_Bulldog_Skin": "Gold Bulldog",
   "pets.Golden_Crab": "Golden Crab",
   "pets.Golden_Crab_Pet_Stone": "Golden Crab Pet Skin",
   "pets.Golden_Crab_Skin": "Golden Crab",
@@ -4294,37 +4349,49 @@
   "pets.King_Gorilla": "King Gorilla",
   "pets.King_Gorilla_Pet_Stone": "King Gorilla Pet Skin",
   "pets.King_Gorilla_Skin": "King Gorilla",
   "pets.Koala": "Koala",
   "pets.Koala_Skin": "Koala",
   "pets.Leprechaun": "Leprechaun",
   "pets.Leprechaun_Pet_Stone": "Leprechaun Pet Skin",
   "pets.Leprechaun_Skin": "Leprechaun",
+  "pets.Light_it_up_and_get_ready_for_the_festivitiesBANG_Thanks_to:": "Light it up and get ready for the festivities! Thanks to: Beige",
   "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.Lion": "Lion",
   "pets.Lion_Skin": "Lion",
+  "pets.Little_Polaris_didnAPOSt_want_to_become_a_boss_like_Papa_Pol": "Little Polaris didn't want to become a boss like Papa Polaris. Thanks to: Poshun",
+  "pets.Lucky_youBANG_YouAPOSve_been_blessed_by_luck_for_the_entire_": "Lucky you! You've been blessed by luck for the entire year of 2017! Thanks to: Beige",
   "pets.MagicHeal": "MagicHeal",
   "pets.Magic_Heal": "Magic Heal",
   "pets.Mallard": "Mallard",
   "pets.Mallard_Pet_Stone": "Mallard Pet Skin",
   "pets.Mallard_Skin": "Mallard",
   "pets.Marid": "Marid",
   "pets.Marid_Pet_Stone": "Marid Pet Skin",
   "pets.Marid_Skin": "Marid",
   "pets.Mermaid": "Mermaid",
   "pets.Mermaid_Skin": "Mermaid",
   "pets.MidRangeAttack": "MidRangeAttack",
   "pets.Midnight_Wolf": "Midnight Wolf",
   "pets.Midnight_Wolf_Skin": "Shadow Wolf",
+  "pets.Mini_Chinese_Dragon": "Mini Chinese Dragon",
+  "pets.Mini_Chinese_Dragon_Pet_Stone": "Mini Chinese Dragon Pet Stone",
+  "pets.Mini_Chinese_Dragon_Skin": "Red Dragon",
+  "pets.Mini_Paper_Lantern": "Mini Paper Lantern",
+  "pets.Mini_Paper_Lantern_Pet_Stone": "Mini Paper Lantern Pet Skin",
+  "pets.Mini_Paper_Lantern_Skin": "Mini Paper Lantern",
+  "pets.Mini_Polaris": "Mini Polaris",
+  "pets.Mini_Polaris_Pet_Stone": "Mini Polaris Pet Stone",
+  "pets.Mini_Polaris_Skin": "Mini Polaris",
   "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.Muddy_Tidechaser": "Muddy Tidechaser",
   "pets.Muddy_Tidechaser_Pet_Stone": "Muddy Tidechaser Skin",
@@ -4337,16 +4404,19 @@
   "pets.Orange_Cat_Skin": "Orange Cat",
   "pets.Orangutan": "Orangutan",
   "pets.Orangutan_Skin": "Orangutan",
   "pets.Oriole": "Oriole",
   "pets.Oriole_Skin": "Oriole",
   "pets.Panda": "Panda",
   "pets.Panda_Pet_Stone": "Panda Pet Skin",
   "pets.Panda_Skin": "Panda",
+  "pets.Paper_Lantern": "Paper Lantern",
+  "pets.Paper_Lantern_Pet_Stone": "Paper Lantern Pet Skin",
+  "pets.Paper_Lantern_Skin": "Paper Lantern",
   "pets.Penguin": "Penguin",
   "pets.Penguin_Pet_Stone": "Penguin Pet Skin",
   "pets.Penguin_Skin": "Penguin",
   "pets.Peppermint_Snail": "Peppermint Snail",
   "pets.Peppermint_Snail_Pet_Stone": "Peppermint Snail Pet Skin",
   "pets.Peppermint_Snail_Skin": "Candy Snail",
   "pets.PetDecoy": "PetDecoy",
   "pets.PetRisingFury": "PetRisingFury",
@@ -4394,16 +4464,19 @@
   "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.Rising_Fury": "Rising Fury",
   "pets.Robobuddy": "Robobuddy",
   "pets.Robobuddy_Pet_Stone": "Robobuddy Pet Skin",
   "pets.Robobuddy_Skin": "Robobuddy",
+  "pets.Rooster_of_Good_Fortune": "Rooster of Good Fortune",
+  "pets.Rooster_of_Good_Fortune_Pet_Stone": "Rooster of Good Fortune Pet Stone",
+  "pets.Rooster_of_Good_Fortune_Skin": "Rooster of Good Fortune",
   "pets.Savage": "Savage",
   "pets.Sea_Slurp": "Sea Slurp",
   "pets.Sea_Slurp_Skin": "Sea Slurp",
   "pets.Sheepdog": "Sheepdog",
   "pets.Sheepdog_Pet_Stone": "Sheepdog Pet Skin",
   "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_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.",
@@ -4412,16 +4485,17 @@
   "pets.Shroom_Skin": "Shroom",
   "pets.Silver_Doe": "Silver Doe",
   "pets.Silver_Doe_Skin": "Silver Doe",
   "pets.Sir_Bagston": "Sir Bagston",
   "pets.Skull": "Skull",
   "pets.Skull_Skin": "Skull",
   "pets.Skunk": "Skunk",
   "pets.Skunk_Skin": "Skunk",
+  "pets.Smaller_than_his_Western_counterpart,_but_no_less_dangerousB": "Smaller than his Western counterpart, but no less dangerous! Thanks to: Beige",
   "pets.Snowman": "Snowman",
   "pets.Snowman_Skin": "Snowman",
   "pets.Snowy_Owl": "Snowy Owl",
   "pets.Snowy_Owl_Pet_Stone": "Snowy Owl Pet Skin",
   "pets.Snowy_Owl_Skin": "Snowy Owl",
   "pets.Solar_Owl": "Solar Owl",
   "pets.Solar_Owl_Skin": "Solar Owl",
   "pets.Spiderbot": "Spiderbot",
@@ -4448,16 +4522,17 @@
   "pets.Tiger_Skin": "Great Tiger",
   "pets.Tomb_Snake": "Tomb Snake",
   "pets.Tomb_Snake_Skin": "Tomb Snake",
   "pets.Toucan": "Toucan",
   "pets.Toucan_Skin": "Toucan",
   "pets.Transform_your_pet_into_Bee_of_the_Insect_family._This_is_ir": "Transform your pet into Bee of the Insect family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Beetleman_of_the_Insect_family._This": "Transform your pet into Beetleman of the Insect family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Cardinal_of_the_Avian_family._This_i": "Transform your pet into Cardinal of the Avian family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
+  "pets.Transform_your_pet_into_Desert_Cobra_of_the_Reptile_family._": "Transform your pet into Desert Cobra of the Reptile family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Dino_of_the_Reptile_family._This_is_": "Transform your pet into Dino of the Reptile family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Duck_of_the_Farm_family._This_is_irr": "Transform your pet into Duck of the Farm family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Elephant_of_the_Exotic_family._This_": "Transform your pet into Elephant of the Exotic family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Enraged_Yack_of_the_Farm_family._Thi": "Transform your pet into Enraged Yack of the Farm family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Frilled_Lizard_of_the_Reptile_family": "Transform your pet into Frilled Lizard of the Reptile family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Gold_Bulldog_of_the_Canine_family._T": "Transform your pet into Gold Bulldog of the Canine family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Golden_Crab_of_the_Aquatic_family._T": "Transform your pet into Golden Crab of the Aquatic family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Golden_Hyena_of_the_Canine_family._T": "Transform your pet into Golden Hyena of the Canine family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
@@ -4480,16 +4555,17 @@
   "pets.Transform_your_pet_into_Poison_Drake_of_the_Reptile_family._": "Transform your pet into Poison Drake of the Reptile family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Red_Ant_of_the_Insect_family._This_i": "Transform your pet into Red Ant of the Insect family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Red_Bagston_of_the_?_?_?_?_family._T": "Transform your pet into Red Bagston of the ? ? ? ? family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Red_Helper_Bagston_of_the_?_?_?_?_fa": "Transform your pet into Red Helper Bagston of the ? ? ? ? family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Redbot_of_the_Automaton_family._This": "Transform your pet into Redbot of the Automaton family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Robobuddy_of_the_Automaton_family._T": "Transform your pet into Robobuddy of the Automaton family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Sheepdog_of_the_Canine_family._This_": "Transform your pet into Sheepdog of the Canine family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Sir_Bagston_of_the_?_?_?_?_family._T": "Transform your pet into Sir Bagston of the ? ? ? ? family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
+  "pets.Transform_your_pet_into_Small_Lantern_of_the_?_?_?_?_family.": "Transform your pet into Small Lantern of the ? ? ? ? family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Snowy_Owl_of_the_Woodland_family._Th": "Transform your pet into Snowy Owl of the Woodland family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Spirit_of_the_Spooky_family._This_is": "Transform your pet into Spirit of the Spooky family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Sprite_Star_of_the_?_?_?_?_family._T": "Transform your pet into Sprite Star of the ? ? ? ? family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Tan_Cat_of_the_Feline_family._This_i": "Transform your pet into Tan Cat of the Feline family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Tank_Penguin_of_the_Penguin_family._": "Transform your pet into Tank Penguin of the Penguin family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Tiger_of_the_Feline_family._This_is_": "Transform your pet into Tiger of the Feline family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_Turtle_of_the_Aquatic_family._This_i": "Transform your pet into Turtle of the Aquatic family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
   "pets.Transform_your_pet_into_USA_Eagle_of_the_Avian_family._This_": "Transform your pet into USA Eagle of the Avian family. This is irreversible and the item is consumed upon use. The rarity and abilities of your pet will be retained. If you fuse your pet to reach a new rarity level it is not guaranteed that your pet will retain the current skin.",
@@ -4899,17 +4975,19 @@
   "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.Blizzard_Sorcerer": "Blizzard Sorcerer",
   "skins.Brigand": "Brigand",
+  "skins.Chinese_Dress_Trickster": "Chinese Dress Trickster",
   "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",
@@ -4918,24 +4996,28 @@
   "skins.Dragon_Tamer_16": "Dragon Tamer 16",
   "skins.Dragon_Tamer_Set_Skin": "Dragon Tamer Set Skin",
   "skins.Drow_Trickster": "Drow Trickster",
   "skins.Elder_Wizard": "Elder Wizard",
   "skins.Eligible_Bachelor": "Eligible Bachelor",
   "skins.Father_Time": "Father Time",
   "skins.Founding_Father": "Founding Father",
   "skins.FrankensteinAPOSs_Monster": "Frankenstein's Monster",
+  "skins.Frimar_Knight": "Frimar Knight",
+  "skins.Frozen_King": "Frozen King",
   "skins.Geb_Set_Skin": "Geb Set Skin",
   "skins.Gentleman": "Gentleman",
   "skins.Ghost_Huntress": "Ghost Huntress",
   "skins.Headless_Rider": "Headless Rider",
   "skins.Holy_Avenger": "Holy Avenger",
   "skins.Hunchback": "Hunchback",
   "skins.Huntsman": "Huntsman",
+  "skins.Ice_King_Priest": "Ice King Priest",
   "skins.Iceman": "Iceman",
+  "skins.Icicle_Dial_Mystic": "Icicle Dial Mystic",
   "skins.Infected_Assassin": "Infected Assassin",
   "skins.Inuit": "Inuit",
   "skins.Ivory_Gladiator": "Ivory Gladiator",
   "skins.Jack_the_Ripper": "Jack the Ripper",
   "skins.Jester": "Jester",
   "skins.Juggernaut": "Juggernaut",
   "skins.King_Knifeula": "King Knifeula",
   "skins.Knight_of_the_Round": "Knight of the Round",
@@ -4952,16 +5034,17 @@
   "skins.Mini_Swoll": "Mini Swoll",
   "skins.Mini_Thessal": "Mini Thessal",
   "skins.Mischievous_Imp": "Mischievous Imp",
   "skins.Miss_Santa": "Miss Santa",
   "skins.Nexus_no_Miko": "Nexus no Miko",
   "skins.Nun": "Nun",
   "skins.Olive_Gladiator": "Olive Gladiator",
   "skins.Oryx_Set_Skin": "Oryx Set Skin",
+  "skins.Penguin_Knight": "Penguin Knight",
   "skins.Phylactery_Set_Skin": "Phylactery Set Skin",
   "skins.Pilgrim_Father": "Pilgrim Father",
   "skins.Pilgrim_Mother": "Pilgrim Mother",
   "skins.Platinum_Knight": "Platinum Knight",
   "skins.Platinum_Rogue": "Platinum Rogue",
   "skins.Platinum_Warrior": "Platinum Warrior",
   "skins.Poltergeist": "Poltergeist",
   "skins.Puppet_Master": "Puppet Master",
@@ -5003,16 +5086,17 @@
   "skins.Twilight_Archmage_Set_Skin": "Twilight Archmage Set Skin",
   "skins.Vampire_Hunter": "Vampire Hunter",
   "skins.Vampire_Lord": "Vampire Lord",
   "skins.Vampiress": "Vampiress",
   "skins.Warlock": "Warlock",
   "skins.Witch": "Witch",
   "skins.Witch_Doctor": "Witch Doctor",
   "skins.Wizard_Supreme": "Wizard Supreme",
+  "skins.Yuki_Onna_Mystic": "Yuki Onna Mystic",
   "skins.Zombie_Nurse": "Zombie Nurse",
   "snakePit.Brown_Python": "Brown Python",
   "snakePit.Fire_Python": "Fire Python",
   "snakePit.Greater_Pit_Snake": "Greater Pit Snake",
   "snakePit.Greater_Pit_Viper": "Greater Pit Viper",
   "snakePit.Pit_Snake": "Pit Snake",
   "snakePit.Pit_Viper": "Pit Viper",
   "snakePit.Snakepit_Button": "Snakepit Button",