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
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	2018-06-28 17:10:37.235108403 +0000
+++ ./json/Objects.json	2018-07-05 16:10:37.779352671 +0000
@@ -38394,34 +38394,34 @@
       "id": "Epic Mystery Skin",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x7c"
       },
       "SlotType": "10",
-      "Description": "Grants a random Skin listed below when used!\\n\\n*Wind Flower Skin\\n*Kabuki Ninja Skin\\n*Gnome Trickster Skin\\n*Soubrette Trickster Skin\\n*Mini Phylactery Skin\\n*Icicle Dial Mystic Skin\\n*Necro of Christmas Yet-to-Come Skin\\n*Hollow Prince Necromancer Skin\\n*Patriot Paladin Skin\\n*Mini Swoll Skin\\n*Misery Ghost Bride Huntress Skin\\n*Mini Queen Bee Huntress Skin\\n*Turkey Rogue Skin\\n*Ordinary Box Rogue Skin\\n*Dragon Tamer skin\\n*Explorer Skin\\n*Antique Diver Knight Skin\\n*Mini Oryx Skin\\n*Guerilla Archer Skin\\n*Elf Archer Skin\\n*Mini Twilight Skin\\n*Gentleman Skin\\n*Plague Doctor Assassin Skin\\n*Redcoat Assassin Skin\\n*Mini Geb Skin\\n*Shrine Priestess Skin\\n*Blizzard Sorcerer Skin\\n*Jester Skin",
+      "Description": "Grants a random Skin listed below when used!\\n\\n*Wind Flower Skin\\n*Kabuki Ninja Skin\\n*Gnome Trickster Skin\\n*Soubrette Trickster Skin\\n*Icicle Dial Mystic Skin\\n*Necro of Christmas Yet-to-Come Skin\\n*Hollow Prince Necromancer Skin\\n*Patriot Paladin Skin\\n*Misery Ghost Bride Huntress Skin\\n*Turkey Rogue Skin\\n*Ordinary Box Rogue Skin\\n*Dragon Tamer skin\\n*Explorer Skin\\n*Antique Diver Knight Skin\\n*Guerilla Archer Skin\\n*Elf Archer Skin\\n*Gentleman Skin\\n*Plague Doctor Assassin Skin\\n*Redcoat Assassin Skin\\n*Shrine Priestess Skin\\n*Blizzard Sorcerer Skin",
       "Activate": "MysteryDyes",
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "Track": ""
     },
     {
       "type": "0x23B2",
       "id": "Rare Mystery Skin",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x7b"
       },
       "SlotType": "10",
-      "Description": "Grants a random Skin listed below when used!\\n\\n*Mini Rosen Skin\\n*Death Skin\\n*Loki Trickster Skin\\n*Deadly Vixen Skin\\n*Pilgrim Mother Skin\\n*Seer Mystic Skin\\n*Death Mage Necromancer Skin\\n*Voodoo Magus Necromancer Skin\\n*Pilgrim Father Skin\\n*Nerd Paladin Skin\\n*Drake Hunter Skin\\n*Mini Thessal Skin\\n*Sheep Rogue Skin\\n*Mini Skuld Skin\\n*Sheep Warrior Skin\\n*Princess Warrior Skin\\n*Slurp Knight Skin\\n*Haunted Knight Skin\\n*Sheep Archer Skin\\n*Ethereal Princess Archer Skin\\n*Sheep Wizard Skin\\n*Mischievous Imp Skin\\n*Schankmaid Assassin Skin\\n*Alice Assassin Skin\\n*Ice King Priest Skin\\n*Sheep Priest Skin\\n*Mini Malus Sorcerer Skin\\n*Thunder God Sorcerer Skin",
+      "Description": "Grants a random Skin listed below when used!\\n\\n*Mini Rosen Skin\\n*Death Skin\\n*Loki Trickster Skin\\n*Deadly Vixen Skin\\n*Pilgrim Mother Skin\\n*Seer Mystic Skin\\n*Death Mage Necromancer Skin\\n*Voodoo Magus Necromancer Skin\\n*Pilgrim Father Skin\\n*Nerd Paladin Skin\\n*Drake Hunter Skin\\n*Mini Thessal Skin\\n*Sheep Rogue Skin\\n*Sheep Warrior Skin\\n*Princess Warrior Skin\\n*Slurp Knight Skin\\n*Haunted Knight Skin\\n*Sheep Archer Skin\\n*Ethereal Princess Archer Skin\\n*Sheep Wizard Skin\\n*Mischievous Imp Skin\\n*Schankmaid Assassin Skin\\n*Alice Assassin Skin\\n*Ice King Priest Skin\\n*Sheep Priest Skin\\n*Mini Malus Sorcerer Skin\\n*Thunder God Sorcerer Skin",
       "Activate": "MysteryDyes",
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "Track": ""
     },
     {
       "type": "0x23f6",
@@ -40011,17 +40011,17 @@
       "MpCost": "90",
       "Cooldown": "5",
       "Activate": {
         "_": "ObjectToss",
         "objectId": "Aether Trap",
         "throwTime": "0",
         "color": "0xff1919"
       },
-      "feedPower": "380",
+      "feedPower": "750",
       "Soulbound": ""
     },
     {
       "type": "0xbbc",
       "id": "Abomination's Wrath",
       "setType": "0x000d",
       "setName": "Horrific Sorcerer Set",
       "Class": "Equipment",
@@ -50882,17 +50882,17 @@
       "id": "Lil Beach Rogue Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "playerskins",
         "Index": "353"
       },
       "SlotType": "10",
-      "Description": "Equally strong, but not quite as swoll.\\n\\nSkin Class: Rogue\\nSprite Credits: Mrunibro, Beige",
+      "Description": "Equally strong, but not quite as swoll.\\n\\nSkin Class: Rogue\\nSprite Credits: Mrunibro, Orothorn, Beige",
       "Activate": {
         "_": "UnlockSkin",
         "skinType": "322"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -51053,256 +51053,16 @@
         "skinType": "2180"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
     },
     {
-      "type": "0x18cb",
-      "id": "Beefcake Brutus Warrior Skin",
-      "Class": "Equipment",
-      "Item": "",
-      "AnimatedTexture": {
-        "File": "playerskins16",
-        "Index": "19"
-      },
-      "SlotType": "10",
-      "Description": "After all this time spent fighting in the Arena, Brutus has new challenges to take on... and slash.\\n\\nSkin Class: Warrior",
-      "Activate": {
-        "_": "UnlockSkin",
-        "skinType": "6346"
-      },
-      "Consumable": "",
-      "Soulbound": "",
-      "BagType": "8",
-      "feedPower": "2000"
-    },
-    {
-      "type": "0x606c",
-      "id": "Tin Man Knight Skin",
-      "Class": "Equipment",
-      "Item": "",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "362"
-      },
-      "SlotType": "10",
-      "Description": "The Tin Man likes to hide in his trash can for defense. Unfortunately, it is not very effective.\\n\\nSkin Class: Knight",
-      "Activate": {
-        "_": "UnlockSkin",
-        "skinType": "24683"
-      },
-      "Consumable": "",
-      "BagType": "8",
-      "Soulbound": "",
-      "feedPower": "2000"
-    },
-    {
-      "type": "0x5f36",
-      "id": "Yakuza Member Samurai Skin",
-      "Class": "Equipment",
-      "Item": "",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "363"
-      },
-      "SlotType": "10",
-      "Description": "The nail that sticks up must be hammered down.\\n\\nSkin Class: Samurai",
-      "Activate": {
-        "_": "UnlockSkin",
-        "skinType": "24373"
-      },
-      "Consumable": "",
-      "BagType": "8",
-      "Soulbound": "",
-      "feedPower": "2000"
-    },
-    {
-      "type": "0x1885",
-      "id": "Cowboy Samurai Skin",
-      "Class": "Equipment",
-      "Item": "",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "364"
-      },
-      "SlotType": "10",
-      "Description": "Ya’ll don’t mess with the samurai cowboy, ya hear!\\n\\nSkin Class: Samurai",
-      "Activate": {
-        "_": "UnlockSkin",
-        "skinType": "6276"
-      },
-      "Consumable": "",
-      "BagType": "8",
-      "Soulbound": "",
-      "feedPower": "2000"
-    },
-    {
-      "type": "0x1887",
-      "id": "Oni Demon Samurai Skin",
-      "Class": "Equipment",
-      "Item": "",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "365"
-      },
-      "SlotType": "10",
-      "Description": "You cannot pass the warden of the gates of Hell!\\n\\nSkin Class: Samurai",
-      "Activate": {
-        "_": "UnlockSkin",
-        "skinType": "6278"
-      },
-      "Consumable": "",
-      "BagType": "8",
-      "Soulbound": "",
-      "feedPower": "2000"
-    },
-    {
-      "type": "0x17da",
-      "id": "Tennis Player Archer Skin",
-      "Class": "Equipment",
-      "Item": "",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "366"
-      },
-      "SlotType": "10",
-      "Description": "If you are tired of shooting enemies with the bow, just practice your accuracy with the tennis racket!\\n\\nSkin Class: Archer\\nSprite Credits: Lovens",
-      "Activate": {
-        "_": "UnlockSkin",
-        "skinType": "3586"
-      },
-      "Consumable": "",
-      "BagType": "8",
-      "Soulbound": "",
-      "feedPower": "2000"
-    },
-    {
-      "type": "0x17db",
-      "id": "Beach Assassin Skin",
-      "Class": "Equipment",
-      "Item": "",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "367"
-      },
-      "SlotType": "10",
-      "Description": "Removing that mask from the face helps to get a better tan.\\n\\nSkin Class: Assassin\\nSprite Credits: Lovens",
-      "Activate": {
-        "_": "UnlockSkin",
-        "skinType": "3587"
-      },
-      "Consumable": "",
-      "Soulbound": "",
-      "BagType": "8",
-      "feedPower": "2000"
-    },
-    {
-      "type": "0x17dc",
-      "id": "Snorkeler Knight Skin",
-      "Class": "Equipment",
-      "Item": "",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "368"
-      },
-      "SlotType": "10",
-      "Description": "Have you tried stunning a shark with bare hands? Well, I wouldn't recommend.\\n\\nSkin Class: Knight\\nSprite Credits: Lovens",
-      "Activate": {
-        "_": "UnlockSkin",
-        "skinType": "3588"
-      },
-      "Consumable": "",
-      "BagType": "8",
-      "Soulbound": "",
-      "feedPower": "2000"
-    },
-    {
-      "type": "0x17dd",
-      "id": "Beach Party Necromancer Skin",
-      "Class": "Equipment",
-      "Item": "",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "369"
-      },
-      "SlotType": "10",
-      "Description": "He prefers partying to fighting!\\n\\nSkin Class: Necromancer\\nSprite Credits: Lovens",
-      "Activate": {
-        "_": "UnlockSkin",
-        "skinType": "3589"
-      },
-      "Consumable": "",
-      "BagType": "8",
-      "Soulbound": "",
-      "feedPower": "2000"
-    },
-    {
-      "type": "0x17de",
-      "id": "Banana Boat Paladin Skin",
-      "Class": "Equipment",
-      "Item": "",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "370"
-      },
-      "SlotType": "10",
-      "Description": "This guy can surf as well!\\n\\nSkin Class: Paladin\\nSprite Credits: Lovens",
-      "Activate": {
-        "_": "UnlockSkin",
-        "skinType": "3590"
-      },
-      "Consumable": "",
-      "Soulbound": "",
-      "BagType": "8",
-      "feedPower": "2000"
-    },
-    {
-      "type": "0x17df",
-      "id": "Buckethead Warrior Skin",
-      "Class": "Equipment",
-      "Item": "",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "371"
-      },
-      "SlotType": "10",
-      "Description": "When you can't get your hands on the Helm of the Juggernaut there is always a decent replacement.\\n\\nSkin Class: Warrior\\nSprite Credits: Lovens",
-      "Activate": {
-        "_": "UnlockSkin",
-        "skinType": "3591"
-      },
-      "Consumable": "",
-      "Soulbound": "",
-      "BagType": "8",
-      "feedPower": "2000"
-    },
-    {
-      "type": "0x17e0",
-      "id": "Summer Vacation Wizard Skin",
-      "Class": "Equipment",
-      "Item": "",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "372"
-      },
-      "SlotType": "10",
-      "Description": "This summer drink definitely contains some magic!\\n\\nSkin Class: Wizard\\nSprite Credits: Lovens",
-      "Activate": {
-        "_": "UnlockSkin",
-        "skinType": "3592"
-      },
-      "Consumable": "",
-      "BagType": "8",
-      "Soulbound": "",
-      "feedPower": "2000"
-    },
-    {
       "type": "0x172e",
       "id": "Mixcoatl Summoner",
       "Class": "Character",
       "Texture": {
         "File": "invisible",
         "Index": "0"
       },
       "NoMiniMap": "",
@@ -69544,16 +69304,89 @@
       "Size": "100",
       "ShadowSize": "100",
       "MaxHitPoints": "10000",
       "Defense": "0",
       "Exp": "35",
       "StasisImmune": ""
     },
     {
+      "type": "0x76e",
+      "id": "Thessal Double Boss",
+      "DisplayId": "Thessal the Mermaid Goddess",
+      "Group": "Ocean Trench",
+      "Enemy": "",
+      "Class": "Character",
+      "AnimatedTexture": {
+        "File": "chars16x16dEncounters2",
+        "Index": "16"
+      },
+      "HitSound": "monster/medusa_hit",
+      "DeathSound": "monster/medusa_death",
+      "MaxHitPoints": "69000",
+      "Exp": "1000",
+      "ShadowSize": "0",
+      "God": "",
+      "StasisImmune": "",
+      "ParalyzeImmune": "",
+      "Quest": "",
+      "PerRealmMax": "1",
+      "Level": "20",
+      "Size": "140",
+      "Defense": "60",
+      "NoArticle": "",
+      "EventChestBoss": "",
+      "Projectile": [
+        {
+          "id": "0",
+          "ObjectId": "Thunder Swirl",
+          "Speed": "55",
+          "Damage": "100",
+          "Size": "110",
+          "LifetimeMS": "1600",
+          "ConditionEffect": {
+            "_": "Armor Broken",
+            "duration": "4.0"
+          },
+          "MultiHit": ""
+        },
+        {
+          "id": "1",
+          "ObjectId": "Trident",
+          "Speed": "70",
+          "Damage": "65",
+          "Size": "100",
+          "LifetimeMS": "3000",
+          "MultiHit": ""
+        },
+        {
+          "id": "2",
+          "ObjectId": "Super Trident",
+          "Speed": "60",
+          "Damage": "100",
+          "Size": "110",
+          "LifetimeMS": "3000",
+          "MultiHit": ""
+        },
+        {
+          "id": "3",
+          "ObjectId": "Yellow Wall",
+          "Speed": "60",
+          "Damage": "120",
+          "Size": "160",
+          "LifetimeMS": "3000",
+          "ConditionEffect": {
+            "_": "Weak",
+            "duration": "6"
+          },
+          "MultiHit": ""
+        }
+      ]
+    },
+    {
       "type": "0x172f",
       "id": "Thessal Summoner",
       "Class": "Character",
       "Texture": {
         "File": "invisible",
         "Index": "0"
       },
       "NoMiniMap": "",
@@ -87530,17 +87363,17 @@
       "DisplayId": "Ladybug Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "219"
       },
       "SlotType": "10",
-      "Description": "Don't crush ladybugs, they grant you fortune!\\n\\nSprite Credits: Nazoado\\n\\nUnlocks Ladybug of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "Don't crush ladybugs, they grant you fortune!\\n\\nSprite Credits: Nazoado\\n\\nUnlocks Ladybug Skin of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "5886"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -87578,17 +87411,17 @@
       "DisplayId": "Morpho Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "220"
       },
       "SlotType": "10",
-      "Description": "One day a morpho, frolicking in the wind, came into my sight.\\n\\nSprite Credits: Nazoado\\n\\nUnlocks Morpho of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "One day a morpho, frolicking in the wind, came into my sight.\\n\\nSprite Credits: Nazoado\\n\\nUnlocks Morpho Skin of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "28813"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -87626,17 +87459,17 @@
       "DisplayId": "Zebra Spider Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "221"
       },
       "SlotType": "10",
-      "Description": "Does it seem to have poison...?\\n\\nSprite Credits: Nazoado\\n\\nUnlocks Zebra Spider of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "Does it seem to have poison...?\\n\\nSprite Credits: Nazoado\\n\\nUnlocks Zebra Spider Skin of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "3686"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -87675,17 +87508,17 @@
       "DisplayId": "Violet Larva Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "222"
       },
       "SlotType": "10",
-      "Description": "Well, somewhat I feel evil somethings into this larva...\\n\\nSprite Credits: Nazoado\\n\\nUnlocks Violet Larva of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "Well, somewhat I feel evil somethings into this larva...\\n\\nSprite Credits: Nazoado\\n\\nUnlocks Violet Larva Skin of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "3689"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -87724,17 +87557,17 @@
       "DisplayId": "Verdant Larva Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "218"
       },
       "SlotType": "10",
-      "Description": "It munches leaves.\\n\\nSprite Credits: Nazoado\\n\\nUnlocks Verdant Larva of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "It munches leaves.\\n\\nSprite Credits: Nazoado\\n\\nUnlocks Verdant Larva Skin of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "5883"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -87772,17 +87605,17 @@
       "DisplayId": "Platypus Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "198"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Platypus of the Aquatic family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Platypus Skin of the Aquatic family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "3012"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -87821,17 +87654,17 @@
       "DisplayId": "Seal Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "197"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Seal of the Aquatic family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Seal Skin of the Aquatic family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "3597"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -87869,17 +87702,17 @@
       "DisplayId": "Walrus Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "199"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Warlus of the Aquatic family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Warlus Skin of the Aquatic family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "3015"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -87918,17 +87751,17 @@
       "DisplayId": "Blue Jay Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "200"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Blue Jay of the Avian family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Blue Jay Skin of the Avian family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "3515"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -87966,17 +87799,17 @@
       "DisplayId": "Vulture Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "201"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Vulture of the Avian family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Vulture Skin of the Avian family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "3518"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88014,17 +87847,17 @@
       "DisplayId": "Cockatoo Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "202"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Cockatoo of the Avian family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Cockatoo Skin of the Avian family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "1900"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88062,17 +87895,17 @@
       "DisplayId": "Brown Bulldog Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "203"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Brown Bulldog of the Canine family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Brown Bulldog Skin of the Canine family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "8593"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88110,17 +87943,17 @@
       "DisplayId": "White Bulldog Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "204"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks White Bulldog of the Canine family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks White Bulldog Skin of the Canine family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "8596"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88158,17 +87991,17 @@
       "DisplayId": "Dingo Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "205"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Dingo of the Canine family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Dingo Skin of the Canine family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "8599"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88207,17 +88040,17 @@
       "DisplayId": "Kiwi Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "206"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Kiwi of the Exotic family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Kiwi Skin of the Exotic family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "3660"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88255,17 +88088,17 @@
       "DisplayId": "Red Parrot Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "207"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Red Parrot of the Exotic family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Red Parrot Skin of the Exotic family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "8662"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88303,17 +88136,17 @@
       "DisplayId": "Cow Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "208"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Cow of the Farm family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Cow Skin of the Farm family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "6075"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88351,17 +88184,17 @@
       "DisplayId": "White Duck Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "209"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks White Duck of the Farm family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks White Duck Skin of the Farm family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "6078"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88399,17 +88232,17 @@
       "DisplayId": "Cheetah Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "210"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Cheetah of the Feline family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Cheetah Skin of the Feline family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "8709"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88447,17 +88280,17 @@
       "DisplayId": "Jaguar Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "211"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Jaguar of the Feline family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Jaguar Skin of the Feline family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "8712"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88495,17 +88328,17 @@
       "DisplayId": "Little Tiger Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "212"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Little Tiger of the Feline family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Little Tiger Skin of the Feline family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "6091"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88544,17 +88377,17 @@
       "DisplayId": "Worm Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "213"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Worm of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Worm Skin of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "6094"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88592,17 +88425,17 @@
       "DisplayId": "Blue Butterfly Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "214"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Blue Butterfly of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Blue Butterfly Skin of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "4091"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88640,17 +88473,17 @@
       "DisplayId": "Pink Butterfly Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "215"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Pink of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Pink Butterfly Skin of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "4094"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88688,17 +88521,17 @@
       "DisplayId": "Bear Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "216"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Bear of the Woodland family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Bear Skin of the Woodland family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "6379"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88736,17 +88569,17 @@
       "DisplayId": "Moose Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "217"
       },
       "SlotType": "10",
-      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Moose of the Woodland family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "\\nSprite Credits: Uomo\\n\\nUnlocks Moose Skin of the Woodland family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "6382"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88784,17 +88617,17 @@
       "DisplayId": "Pigboot Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "196"
       },
       "SlotType": "10",
-      "Description": "There's a pig in my boot!\\n\\nSprite Credits: Santeripe\\n\\nUnlocks Pigboot of the Woodland family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "There's a pig in my boot!\\n\\nSprite Credits: Santeripe\\n\\nUnlocks Pigboot Skin of the Woodland family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "2382"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88832,17 +88665,17 @@
       "DisplayId": "Pillbug Pet Skin",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "223"
       },
       "SlotType": "10",
-      "Description": "Rolling rolling...\\n\\nSprite Credits: Nazoado\\n\\nUnlocks Pillbug of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "Rolling rolling...\\n\\nSprite Credits: Nazoado\\n\\nUnlocks Pillbug Skin of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "8389"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "feedPower": "2000"
@@ -88852,28 +88685,534 @@
       "id": "Demon Frog Pet Stone",
       "Class": "Equipment",
       "Item": "",
       "AnimatedTexture": {
         "File": "chars8x8rPets1",
         "Index": "36"
       },
       "SlotType": "10",
-      "Description": "Unlocks Demon Frog of the Aquatic family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Description": "Unlocks Demon Frog Skin of the Aquatic family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
       "Activate": {
         "_": "UnlockPetSkin",
         "skinType": "32852"
       },
       "Consumable": "",
       "Soulbound": "",
       "BagType": "8",
       "DisplayId": "Demon Frog Skin",
       "feedPower": "500"
     },
     {
+      "type": "0x8085",
+      "id": "Pink Lion Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "01"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Pink Lion Skin of the Feline family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32869"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Pink Lion Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x8086",
+      "id": "Midnight Wolf Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "02"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Midnight Wolf Skin of the Canine family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32870"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Midnight Wolf Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x8087",
+      "id": "Phoenix Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "04"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Phoenix Skin of the Avian family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32872"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Phoenix Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x8088",
+      "id": "War Elephant Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "06"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks War Elephant Skin of the Exotic family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32874"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "War Elephant Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x8089",
+      "id": "Night Mare Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "09"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Night Mare Skin of the Farm family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32877"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Night Mare Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x808a",
+      "id": "Silver Doe Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "10"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Silver Doe Skin of the Woodland family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32878"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Silver Doe Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x808b",
+      "id": "Solar Owl Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "11"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Solar Owl Skin of the Woodland family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32879"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Solar Owl Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x808c",
+      "id": "Tandem Cobra Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "12"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Tandem Cobra Skin of the Reptile family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32880"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Tandem Cobra Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x808d",
+      "id": "Ultrawasp Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "15"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Ultrawasp Skin of the Insect family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32883"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Ultrawasp Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x808e",
+      "id": "Battle Penguin Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "16"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Battle Penguin Skin of the Penguin family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32884"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Battle Penguin Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x808f",
+      "id": "Great Shark Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "19"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Great Shark Skin of the Aquatic family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32887"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Great Shark Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x8091",
+      "id": "Blue Landfish Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "20"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Blue Landfish Skin of the Aquatic family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32888"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Blue Landfish Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x8092",
+      "id": "Glowing Skull Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "21"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Glowing Skull Skin of the Spooky family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32889"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Glowing Skull Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x8093",
+      "id": "Monkey Head Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "22"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Monkey Head Skin of the Spooky family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32890"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Monkey Head Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x8094",
+      "id": "Reaper Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "23"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Reaper Skin of the Spooky family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32891"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Reaper Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x8095",
+      "id": "Battle God Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "24"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Battle God Skin of the Humanoid family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32892"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Battle God Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x8096",
+      "id": "Centaur Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "25"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Centaur Skin of the Humanoid family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32893"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Centaur Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x8097",
+      "id": "Forest Fairy Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "26"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Forest Fairy Skin of the Humanoid family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32894"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Forest Fairy Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x8098",
+      "id": "Lil' Oryx Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "chars16x16dEncounters2",
+        "Index": "36"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Lil' Oryx Skin of the ? ? ? ? family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32900"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Lil' Oryx Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x8099",
+      "id": "Shroom Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "27"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Shroom Skin of the ? ? ? ? family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32895"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Shroom Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x809a",
+      "id": "Great Jelly Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "28"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Great Jelly Skin of the ? ? ? ? family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32896"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Great Jelly Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x809b",
+      "id": "Spiderbot Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "29"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Spiderbot Skin of the Automaton family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32897"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Spiderbot Pet Skin",
+      "feedPower": "2000"
+    },
+    {
+      "type": "0x809c",
+      "id": "Cylindron Pet Stone",
+      "Class": "Equipment",
+      "Item": "",
+      "AnimatedTexture": {
+        "File": "petsDivine",
+        "Index": "30"
+      },
+      "ScaleValue": "10",
+      "SlotType": "10",
+      "Description": "Unlocks Cylindron Skin of the Automaton family. The skin will be added to your Pet Wardrobe in the Pet Yard and can be used to change the appearance of your pet!",
+      "Activate": {
+        "_": "UnlockPetSkin",
+        "skinType": "32898"
+      },
+      "Consumable": "",
+      "Soulbound": "",
+      "BagType": "8",
+      "DisplayId": "Cylindron Pet Skin",
+      "feedPower": "2000"
+    },
+    {
       "type": "0x0927",
       "id": "Dreadstump the Pirate King",
       "Enemy": "",
       "Class": "Character",
       "AnimatedTexture": {
         "File": "chars16x16dEncounters",
         "Index": "4"
       },
@@ -107458,124 +107797,16 @@
       "AnimatedTexture": {
         "File": "playerskins",
         "Index": "361"
       },
       "PlayerClassType": "0x0320",
       "NoSkinSelect": ""
     },
     {
-      "type": "0x18ca",
-      "id": "Beefcake Brutus Warrior",
-      "Skin": "",
-      "Class": "Skin",
-      "AnimatedTexture": {
-        "File": "playerskins16",
-        "Index": "19"
-      },
-      "PlayerClassType": "0x031d",
-      "NoSkinSelect": ""
-    },
-    {
-      "type": "0x606b",
-      "id": "Tin Man Knight",
-      "Skin": "",
-      "Class": "Skin",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "362"
-      },
-      "PlayerClassType": "0x031e",
-      "NoSkinSelect": ""
-    },
-    {
-      "type": "0xe02",
-      "id": "Tennis Player Archer",
-      "Skin": "",
-      "Class": "Skin",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "366"
-      },
-      "PlayerClassType": "0x307",
-      "NoSkinSelect": ""
-    },
-    {
-      "type": "0xe03",
-      "id": "Beach Assassin",
-      "Skin": "",
-      "Class": "Skin",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "367"
-      },
-      "PlayerClassType": "0x0320",
-      "NoSkinSelect": ""
-    },
-    {
-      "type": "0xe04",
-      "id": "Snorkeler Knight",
-      "Skin": "",
-      "Class": "Skin",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "368"
-      },
-      "PlayerClassType": "0x031e",
-      "NoSkinSelect": ""
-    },
-    {
-      "type": "0xe05",
-      "id": "Beach Party Necromancer",
-      "Skin": "",
-      "Class": "Skin",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "369"
-      },
-      "PlayerClassType": "0x0321",
-      "NoSkinSelect": ""
-    },
-    {
-      "type": "0xe06",
-      "id": "Banana Boat Paladin",
-      "Skin": "",
-      "Class": "Skin",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "370"
-      },
-      "PlayerClassType": "0x031f",
-      "NoSkinSelect": ""
-    },
-    {
-      "type": "0xe07",
-      "id": "Buckethead Warrior",
-      "Skin": "",
-      "Class": "Skin",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "371"
-      },
-      "PlayerClassType": "0x031d",
-      "NoSkinSelect": ""
-    },
-    {
-      "type": "0xe08",
-      "id": "Summer Vacation Wizard",
-      "Skin": "",
-      "Class": "Skin",
-      "AnimatedTexture": {
-        "File": "playerskins",
-        "Index": "372"
-      },
-      "PlayerClassType": "0x30e",
-      "NoSkinSelect": ""
-    },
-    {
       "type": "0x1731",
       "id": "Stheno Summoner",
       "Class": "Character",
       "Texture": {
         "File": "invisible",
         "Index": "0"
       },
       "NoMiniMap": "",
@@ -125724,17 +125955,17 @@
       "id": "Mystery ST Shard x1",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x9d"
       },
       "SlotType": "10",
-      "Description": "Collect Mystery ST Shards and exchange them for a mystery ST item at the Tinkerer.\\n\\nSprite Credits: Piggby",
+      "Description": "Collect Mystery ST Shards and use them to obtain a Mystery ST Chest.\\n\\nSprite Credits: Piggby",
       "Quantity": "1",
       "ExtraTooltipData": {
         "EffectInfo": [
           {
             "name": "Stack limit",
             "description": "15"
           },
           {
@@ -125753,17 +125984,17 @@
       "id": "Mystery ST Shard x2",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x9d"
       },
       "SlotType": "10",
-      "Description": "Collect Mystery ST Shards and exchange them for a mystery ST item at the Tinkerer.\\n\\nSprite Credits: Piggby",
+      "Description": "Collect Mystery ST Shards and use them to obtain a Mystery ST Chest.\\n\\nSprite Credits: Piggby",
       "Quantity": "2",
       "ExtraTooltipData": {
         "EffectInfo": [
           {
             "name": "Stack limit",
             "description": "15"
           },
           {
@@ -125782,17 +126013,17 @@
       "id": "Mystery ST Shard x3",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x9d"
       },
       "SlotType": "10",
-      "Description": "Collect Mystery ST Shards and exchange them for a mystery ST item at the Tinkerer.\\n\\nSprite Credits: Piggby",
+      "Description": "Collect Mystery ST Shards and use them to obtain a Mystery ST Chest.\\n\\nSprite Credits: Piggby",
       "Quantity": "3",
       "ExtraTooltipData": {
         "EffectInfo": [
           {
             "name": "Stack limit",
             "description": "15"
           },
           {
@@ -125811,17 +126042,17 @@
       "id": "Mystery ST Shard x4",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x9d"
       },
       "SlotType": "10",
-      "Description": "Collect Mystery ST Shards and exchange them for a mystery ST item at the Tinkerer.\\n\\nSprite Credits: Piggby",
+      "Description": "Collect Mystery ST Shards and use them to obtain a Mystery ST Chest.\\n\\nSprite Credits: Piggby",
       "Quantity": "4",
       "ExtraTooltipData": {
         "EffectInfo": [
           {
             "name": "Stack limit",
             "description": "15"
           },
           {
@@ -125840,17 +126071,17 @@
       "id": "Mystery ST Shard x5",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x9d"
       },
       "SlotType": "10",
-      "Description": "Collect Mystery ST Shards and exchange them for a mystery ST item at the Tinkerer.\\n\\nSprite Credits: Piggby",
+      "Description": "Collect Mystery ST Shards and use them to obtain a Mystery ST Chest.\\n\\nSprite Credits: Piggby",
       "Quantity": "5",
       "ExtraTooltipData": {
         "EffectInfo": [
           {
             "name": "Stack limit",
             "description": "15"
           },
           {
@@ -125869,17 +126100,17 @@
       "id": "Mystery ST Shard x6",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x9d"
       },
       "SlotType": "10",
-      "Description": "Collect Mystery ST Shards and exchange them for a mystery ST item at the Tinkerer.\\n\\nSprite Credits: Piggby",
+      "Description": "Collect Mystery ST Shards and use them to obtain a Mystery ST Chest.\\n\\nSprite Credits: Piggby",
       "Quantity": "6",
       "ExtraTooltipData": {
         "EffectInfo": [
           {
             "name": "Stack limit",
             "description": "15"
           },
           {
@@ -125898,17 +126129,17 @@
       "id": "Mystery ST Shard x7",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x9d"
       },
       "SlotType": "10",
-      "Description": "Collect Mystery ST Shards and exchange them for a mystery ST item at the Tinkerer.\\n\\nSprite Credits: Piggby",
+      "Description": "Collect Mystery ST Shards and use them to obtain a Mystery ST Chest.\\n\\nSprite Credits: Piggby",
       "Quantity": "7",
       "ExtraTooltipData": {
         "EffectInfo": [
           {
             "name": "Stack limit",
             "description": "15"
           },
           {
@@ -125927,17 +126158,17 @@
       "id": "Mystery ST Shard x8",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x9d"
       },
       "SlotType": "10",
-      "Description": "Collect Mystery ST Shards and exchange them for a mystery ST item at the Tinkerer.\\n\\nSprite Credits: Piggby",
+      "Description": "Collect Mystery ST Shards and use them to obtain a Mystery ST Chest.\\n\\nSprite Credits: Piggby",
       "Quantity": "8",
       "ExtraTooltipData": {
         "EffectInfo": [
           {
             "name": "Stack limit",
             "description": "15"
           },
           {
@@ -125956,17 +126187,17 @@
       "id": "Mystery ST Shard x9",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x9d"
       },
       "SlotType": "10",
-      "Description": "Collect Mystery ST Shards and exchange them for a mystery ST item at the Tinkerer.\\n\\nSprite Credits: Piggby",
+      "Description": "Collect Mystery ST Shards and use them to obtain a Mystery ST Chest.\\n\\nSprite Credits: Piggby",
       "Quantity": "9",
       "ExtraTooltipData": {
         "EffectInfo": [
           {
             "name": "Stack limit",
             "description": "15"
           },
           {
@@ -125985,17 +126216,17 @@
       "id": "Mystery ST Shard x10",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x9d"
       },
       "SlotType": "10",
-      "Description": "Collect Mystery ST Shards and exchange them for a mystery ST item at the Tinkerer.\\n\\nSprite Credits: Piggby",
+      "Description": "Collect Mystery ST Shards and use them to obtain a Mystery ST Chest.\\n\\nSprite Credits: Piggby",
       "Quantity": "10",
       "ExtraTooltipData": {
         "EffectInfo": [
           {
             "name": "Stack limit",
             "description": "15"
           },
           {
@@ -126014,17 +126245,17 @@
       "id": "Mystery ST Shard x11",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x9d"
       },
       "SlotType": "10",
-      "Description": "Collect Mystery ST Shards and exchange them for a mystery ST item at the Tinkerer.\\n\\nSprite Credits: Piggby",
+      "Description": "Collect Mystery ST Shards and use them to obtain a Mystery ST Chest.\\n\\nSprite Credits: Piggby",
       "Quantity": "11",
       "ExtraTooltipData": {
         "EffectInfo": [
           {
             "name": "Stack limit",
             "description": "15"
           },
           {
@@ -126043,17 +126274,17 @@
       "id": "Mystery ST Shard x12",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x9d"
       },
       "SlotType": "10",
-      "Description": "Collect Mystery ST Shards and exchange them for a mystery ST item at the Tinkerer.\\n\\nSprite Credits: Piggby",
+      "Description": "Collect Mystery ST Shards and use them to obtain a Mystery ST Chest.\\n\\nSprite Credits: Piggby",
       "Quantity": "12",
       "ExtraTooltipData": {
         "EffectInfo": [
           {
             "name": "Stack limit",
             "description": "15"
           },
           {
@@ -126072,17 +126303,17 @@
       "id": "Mystery ST Shard x13",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x9d"
       },
       "SlotType": "10",
-      "Description": "Collect Mystery ST Shards and exchange them for a mystery ST item at the Tinkerer.\\n\\nSprite Credits: Piggby",
+      "Description": "Collect Mystery ST Shards and use them to obtain a Mystery ST Chest.\\n\\nSprite Credits: Piggby",
       "Quantity": "13",
       "ExtraTooltipData": {
         "EffectInfo": [
           {
             "name": "Stack limit",
             "description": "15"
           },
           {
@@ -126101,17 +126332,17 @@
       "id": "Mystery ST Shard x14",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x9d"
       },
       "SlotType": "10",
-      "Description": "Collect Mystery ST Shards and exchange them for a mystery ST item at the Tinkerer.\\n\\nSprite Credits: Piggby",
+      "Description": "Collect Mystery ST Shards and use them to obtain a Mystery ST Chest.\\n\\nSprite Credits: Piggby",
       "Quantity": "14",
       "ExtraTooltipData": {
         "EffectInfo": [
           {
             "name": "Stack limit",
             "description": "15"
           },
           {
@@ -126130,34 +126361,44 @@
       "id": "Mystery ST Shard x15",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
         "Index": "0x9d"
       },
       "SlotType": "10",
-      "Description": "Collect Mystery ST Shards and exchange them for a mystery ST item at the Tinkerer.\\n\\nSprite Credits: Piggby",
+      "Description": "Collect Mystery ST Shards and use them to obtain a Mystery ST Chest.\\n\\nSprite Credits: Piggby",
       "Quantity": "15",
       "ExtraTooltipData": {
         "EffectInfo": [
           {
+            "name": "",
+            "description": "Double click to create a Mystery ST Chest! Doing so will consume the Tokens."
+          },
+          {
             "name": "Stack limit",
             "description": "15"
           },
           {
             "name": "Event",
             "description": "Mystery ST Shard"
           }
         ]
       },
       "Soulbound": "",
       "BagType": "7",
       "Treasure": "",
-      "feedPower": "750"
+      "feedPower": "750",
+      "Activate": {
+        "_": "Exchange",
+        "id": "Mystery ST Chest"
+      },
+      "Track": "",
+      "Consumable": ""
     },
     {
       "type": "0x52A",
       "id": "Summer Mystery Box Shard x1",
       "Class": "Equipment",
       "Item": "",
       "Texture": {
         "File": "d2LofiObjEmbed",
@@ -155313,17 +155554,17 @@
       "DisplayId": "Blue Cnidarian",
       "Enemy": "",
       "Group": "Cnidarian Minions",
       "Size": "95",
       "HitSound": "monster/slimes_hit",
       "DeathSound": "monster/slimes_death",
       "MaxHitPoints": "2500",
       "Defense": "20",
-      "Exp": "100",
+      "Exp": "20",
       "ShadowColor": "0x479CFF",
       "ParalyzeImmune": "",
       "Texture": {
         "File": "cnidarianReefObjects8x8",
         "Index": "0x20"
       },
       "AltTexture": [
         {
@@ -155368,17 +155609,17 @@
       "DisplayId": "Pink Cnidarian",
       "Enemy": "",
       "Group": "Cnidarian Minions",
       "Size": "95",
       "HitSound": "monster/slimes_hit",
       "DeathSound": "monster/slimes_death",
       "MaxHitPoints": "2500",
       "Defense": "20",
-      "Exp": "100",
+      "Exp": "20",
       "ShadowColor": "0xFF478A",
       "StunImmune": "",
       "ParalyzeImmune": "",
       "SlowImmune": "",
       "Texture": {
         "File": "cnidarianReefObjects8x8",
         "Index": "0x1c"
       },
@@ -155421,17 +155662,17 @@
       "DisplayId": "Green Cnidarian",
       "Enemy": "",
       "Group": "Cnidarian Minions",
       "Size": "95",
       "HitSound": "monster/slimes_hit",
       "DeathSound": "monster/slimes_death",
       "MaxHitPoints": "2500",
       "Defense": "20",
-      "Exp": "100",
+      "Exp": "20",
       "ShadowColor": "0x93FF47",
       "ParalyzeImmune": "",
       "SlowImmune": "",
       "Texture": {
         "File": "cnidarianReefObjects8x8",
         "Index": "0x18"
       },
       "AltTexture": [
@@ -155474,19 +155715,19 @@
       "type": "0x9f6",
       "id": "CR Gold Cnidarian",
       "Class": "Character",
       "DisplayId": "Gold Cnidarian",
       "Enemy": "",
       "Size": "95",
       "HitSound": "monster/slimes_hit",
       "DeathSound": "monster/slimes_death",
-      "MaxHitPoints": "8000",
+      "MaxHitPoints": "4000",
       "Defense": "15",
-      "Exp": "1500",
+      "Exp": "500",
       "ShadowColor": "0xFFA447",
       "StasisImmune": "",
       "ParalyzeImmune": "",
       "Texture": {
         "File": "cnidarianReefObjects8x8",
         "Index": "0x14"
       },
       "AltTexture": [
@@ -155531,17 +155772,17 @@
       "Class": "Character",
       "DisplayId": "Royal Cnidarian",
       "Enemy": "",
       "Size": "130",
       "HitSound": "monster/slimes_hit",
       "DeathSound": "monster/slimes_death",
       "MaxHitPoints": "180000",
       "Defense": "35",
-      "Exp": "20000",
+      "Exp": "12000",
       "ShadowColor": "0xFFA447",
       "Quest": "",
       "God": "",
       "StasisImmune": "",
       "ParalyzeImmune": "",
       "StunImmune": "",
       "EventChestBoss": "",
       "Texture": {
@@ -155583,17 +155824,18 @@
           "ObjectId": "Bubble Blast",
           "Damage": "100",
           "Speed": "60",
           "LifetimeMS": "2000",
           "Size": "110",
           "ConditionEffect": {
             "_": "Dazed",
             "duration": "1"
-          }
+          },
+          "MultiHit": ""
         },
         {
           "id": "2",
           "ObjectId": "Bubble Wave",
           "Damage": "140",
           "Speed": "60",
           "LifetimeMS": "2000",
           "Size": "125"
@@ -155603,26 +155845,28 @@
           "ObjectId": "Lightning Blast",
           "Damage": "0",
           "Speed": "100",
           "LifetimeMS": "400",
           "Size": "110",
           "ConditionEffect": {
             "_": "Paralyzed",
             "duration": "0.5"
-          }
+          },
+          "MultiHit": ""
         },
         {
           "id": "4",
           "ObjectId": "Bubble Laser",
           "Damage": "175",
           "Speed": "45",
           "LifetimeMS": "6666",
           "Size": "130",
-          "ArmorPiercing": ""
+          "ArmorPiercing": "",
+          "MultiHit": ""
         }
       ]
     },
     {
       "type": "0x9f8",
       "id": "CR Lasers",
       "Class": "Character",
       "DisplayId": "Royal Cnidarian",
@@ -155644,17 +155888,18 @@
       "Exp": "0",
       "Projectile": {
         "id": "1",
         "ObjectId": "Bubble Laser",
         "Damage": "175",
         "Speed": "60",
         "LifetimeMS": "5000",
         "Size": "130",
-        "ArmorPiercing": ""
+        "ArmorPiercing": "",
+        "MultiHit": ""
       }
     },
     {
       "type": "0x9fe",
       "id": "CR Realm Portal",
       "Class": "GameObject",
       "Texture": {
         "File": "invisible",
Binary files ../current/sheets/chars8x8rPets1.png and ./sheets/chars8x8rPets1.png differ
Binary files ../current/sheets/playersSkins16Mask.png and ./sheets/playersSkins16Mask.png differ
Binary files ../current/sheets/playersSkins16.png and ./sheets/playersSkins16.png differ
Binary files ../current/sheets/playersSkinsMask.png and ./sheets/playersSkinsMask.png differ
Binary files ../current/sheets/playersSkins.png and ./sheets/playersSkins.png differ