This module stores item data across most of places found on the wiki. It's in format of a Lua table and stores the following information:
Title | Propriety | Description | Allowed values |
---|---|---|---|
Item name | (item key) | Specifies item ID for the table, must be unique. By standard it's the item name from game's PlayFab catalogue | Any string |
Item class | class |
Specifies item class as specified in game PlayFab catalogue | See #Classes |
Item rarity | rarity |
Rarity of an item | 0 – Common 1 – Uncommon |
Original item rarity | original_rarity |
Original rarity of an item | See item rarity |
Item image | file |
Image representing item in form of file name on the wiki | Any string that is a proper file name without "File:" prefix |
Item description | description |
Description describing given item. Note that it may require <br> at start. Templates inside the strings are evaluated | Any string |
Item event | event |
The event in which the item was added/is from | Any string that is a valid page name |
Original item description | original_description |
Description describing given item when the item was originally added. Note that it may require <br> at start. Templates inside the strings are evaluated | Any string |
Item sorting key | group |
While the items are automatically sorted based on rarity, items can be additionally sorted within rarity using sorting keys. Sorting is ascending number form. | Any number |
Item link | link |
A name of page that the item name should link to | Any string that is a valid page name |
Item custom name | name |
If the name of the item is different from *Item name* that is also an item key, custom name can be specified in here | Any string |
Item framing | framed |
If the item has a frame in game, this argument can be added | Any (preferably 1) |
Item store type | store |
Sets which store the item is associated with "S.A.W. Shop" or "Cackling Carls Cart" | "saw" or "carl" |
Item currency type | currency |
Sets which currency an item is using; defined by "name =" (name of currency) and "amount =" (item cost) | See Currency "name" and "amount" |
Original item currency type | original_currency |
Sets which currency an item was using when it was originally added; defined by "name =" (name of currency) and "amount =" (item cost) | See Currency "name" and "amount" |
Item currency name | name |
Sets the type of currency for the item, defined within "currency = {" |
|
Item currency amount | amount |
Sets the cost for the item | Any number |
Item Bundles | bundle |
Set which bundle the item belongs to. | Any string that is a valid bundle name" |
Item visibility | hidden |
If this argument is true, the item will be hidden from displaying on the wiki | true or false
|
The Lua table is supposed to be developed based on game's PlayFab catalogue. To help with managing the table there are tools to help with its development, hosted in here.
Classes[]
There are several classes inside PlayFab catalogue, however not all classes are used on the wiki.
- `MeleeSkin` – Melee weapon Skins
- `Character` – Animals
- `Umbrella` – Umbrellas
- `CharacterSkin` – Breeds
- `DNA` – DNA
- `Glasses` – Facewear
- `Beard` – Facial Hair
- `Clothes` – Outfits
- `DeathExplosion` – Death Explosions
- `GunSkin` – Gun Skins
- `Hat` – Hats
- `Pet` – Mini Animal Pets
- `Neck` – Neckwear
return { ["Super Fox"] = { class = "Character", rarity = 0, file = "Char-fox.png", baseAnimal = "Fox", description = "<span style=\"color:#6bbf00; font-weight:bold\">Free</span>", }, ["Super Bear"] = { class = "Character", rarity = 0, file = "Char-bear.png", baseAnimal = "Bear", description = "<span style=\"color:#6bbf00; font-weight:bold\">Free</span>", }, ["Super Skullcat"] = { class = "Character", rarity = 0, file = "Char-skullcat.png", baseAnimal = "Skullcat", description = "<span style=\"color:#6bbf00; font-weight:bold\">Free</span>", }, ["Super Tiger"] = { class = "Character", rarity = 0, file = "Char-tiger.png", baseAnimal = "Tiger", description = "<span style=\"color:#6bbf00; font-weight:bold\">Free</span>", }, ["Super Deer"] = { class = "Character", rarity = 0, file = "Char-deer.png", baseAnimal = "Deer", currencies = { { name = "DNA", amount = 75, }, { name = "Serum", amount = 15, }, }, }, ["Super Panda"] = { class = "Character", rarity = 0, file = "Char-panda.png", baseAnimal = "Panda", currencies = { { name = "DNA", amount = 125, }, { name = "Serum", amount = 30, }, }, }, ["Super Raccoon"] = { class = "Character", rarity = 0, file = "Char-raccoon.png", baseAnimal = "Raccoon", currencies = { { name = "DNA", amount = 75, }, { name = "Serum", amount = 15, }, }, }, ["Super Sloth"] = { class = "Character", rarity = 0, file = "Char-sloth.png", baseAnimal = "Sloth", currencies = { { name = "DNA", amount = 125, }, { name = "Serum", amount = 30, }, }, }, ["Red Umbrella"] = { class = "Umbrella", rarity = 0, file = "umbrella_base_red-resources.assets-261.png", description = "Available to all players", group = 50, }, ["Blue Umbrella"] = { class = "Umbrella", rarity = 0, file = "umbrella_base_blue-resources.assets-4114.png", description = "[[Level-Up Random Drop]]", group = 100, }, ["Green Umbrella"] = { class = "Umbrella", rarity = 0, file = "umbrella_base_green-resources.assets-3159.png", description = "[[Level-Up Random Drop]]", group = 150, }, ["Orange Umbrella"] = { class = "Umbrella", rarity = 0, file = "umbrella_base_orange-resources.assets-2715.png", description = "[[Level-Up Random Drop]]", group = 200, }, ["Pink Umbrella"] = { class = "Umbrella", rarity = 0, file = "umbrella_base_pink-resources.assets-2788.png", description = "[[Level-Up Random Drop]]", group = 250, }, ["Brown Umbrella"] = { class = "Umbrella", rarity = 0, file = "umbrella_base_brown-resources.assets-3595.png", description = "[[Level-Up Random Drop]]", group = 300, }, ["Yellow Umbrella"] = { class = "Umbrella", rarity = 0, file = "umbrella_base_yellow-resources.assets-2643.png", description = "[[Level-Up Random Drop]]", group = 350, }, ["Aquamarine Parasol"] = { class = "Umbrella", rarity = 2, file = "umbrella_parisol_aquamarine-resources.assets-1632.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 850, }, ["Blue Parasol"] = { class = "Umbrella", rarity = 2, file = "umbrella_parisol_blue-resources.assets-786.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 900, }, ["Green Parasol"] = { class = "Umbrella", rarity = 2, file = "umbrella_parisol_green-resources.assets-1414.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 950, }, ["Pink Parasol"] = { class = "Umbrella", rarity = 2, file = "umbrella_parisol_pink-resources.assets-2147.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1000, }, ["Violet Parasol"] = { class = "Umbrella", rarity = 2, file = "umbrella_parisol_violet-resources.assets-984.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1050, }, ["White Parasol"] = { class = "Umbrella", rarity = 2, file = "umbrella_parisol_white-resources.assets-243.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1100, }, ["Yellow Parasol"] = { class = "Umbrella", rarity = 2, file = "umbrella_parisol_yellow-resources.assets-2775.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1150, }, ["Red Polka Dot Umbrella"] = { class = "Umbrella", rarity = 1, file = "umbrella_polkadot_red-resources.assets-1110.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 400, }, ["Blue Polka Dot Umbrella"] = { class = "Umbrella", rarity = 1, file = "umbrella_polkadot_blue-resources.assets-2124.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 450, }, ["Brown Polka Dot Umbrella"] = { class = "Umbrella", rarity = 1, file = "umbrella_polkadot_brown-resources.assets-1020.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 500, }, ["Green Polka Dot Umbrella"] = { class = "Umbrella", rarity = 1, file = "umbrella_polkadot_green-resources.assets-324.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 550, }, ["Orange Polka Dot Umbrella"] = { class = "Umbrella", rarity = 1, file = "umbrella_polkadot_orange-resources.assets-134.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 600, }, ["Pink Polka Dot Umbrella"] = { class = "Umbrella", rarity = 1, file = "umbrella_polkadot_pink-resources.assets-312.png", description = "[[Level-Up Random Drop]]", group = 650, }, ["Yellow Polka Dot Umbrella"] = { class = "Umbrella", rarity = 1, file = "umbrella_polkadot_yellow-resources.assets-2992.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 700, }, ["Red Paper Umbrella"] = { class = "Umbrella", rarity = 3, file = "umbrella_paper_red-resources.assets-2319.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1450, }, ["Blue Paper Umbrella"] = { class = "Umbrella", rarity = 3, file = "umbrella_paper_blue-resources.assets-273.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1500, }, ["Brown Paper Umbrella"] = { class = "Umbrella", rarity = 3, file = "umbrella_paper_brown-resources.assets-1307.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1550, }, ["Green Paper Umbrella"] = { class = "Umbrella", rarity = 3, file = "umbrella_paper_green-resources.assets-4151.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1600, }, ["Orange Paper Umbrella"] = { class = "Umbrella", rarity = 3, file = "umbrella_paper_orange-resources.assets-2996.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1650, }, ["Pink Paper Umbrella"] = { class = "Umbrella", rarity = 3, file = "umbrella_paper_pink-resources.assets-618.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1700, }, ["Yellow Paper Umbrella"] = { class = "Umbrella", rarity = 3, file = "umbrella_paper_yellow-resources.assets-2306.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1750, }, ["Bear Umbrella"] = { class = "Umbrella", rarity = 4, file = "umbrella_animal_bear-resources.assets-2310.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 2400, }, ["Deer Umbrella"] = { class = "Umbrella", rarity = 4, file = "umbrella_animal_deer-resources.assets-2388.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 2450, }, ["Fox Umbrella"] = { class = "Umbrella", rarity = 4, file = "umbrella_animal_fox-resources.assets-3886.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 2500, }, ["Panda Umbrella"] = { class = "Umbrella", rarity = 4, file = "umbrella_animal_panda-resources.assets-2225.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 2550, }, ["Raccoon Umbrella"] = { class = "Umbrella", rarity = 4, file = "umbrella_animal_raccoon-resources.assets-1120.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 2600, }, ["Skullcat Umbrella"] = { class = "Umbrella", rarity = 4, file = "umbrella_animal_skullcat-resources.assets-3357.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 2650, }, ["Tiger Umbrella"] = { class = "Umbrella", rarity = 4, file = "umbrella_animal_tiger-resources.assets-1352.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 2700, }, ["Experience Boost +25%"] = { class = "ExpBoost", rarity = 0, }, ["Experience Boost +10%"] = { class = "ExpBoost", rarity = 0, }, ["Basic Gravestone"] = { class = "Gravestone", rarity = 0, file = "gravestone_1-resources.assets-113.png", description = "Available to all players", group = 50, }, ["R.I.P. Gravestone"] = { class = "Gravestone", rarity = 0, file = "gravestone_2-resources.assets-1045.png", description = "[[Level-Up Random Drop]]", group = 100, }, ["Skull & Sticks Gravestone"] = { class = "Gravestone", rarity = 1, file = "gravestone_3-resources.assets-2759.png", description = "[[Level-Up Random Drop]]", group = 200, }, ["Skull R.I.P. Gravestone"] = { class = "Gravestone", rarity = 2, file = "gravestone_4-resources.assets-3546.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 450, }, ["Skull on Cross Gravestone"] = { class = "Gravestone", rarity = 2, file = "gravestone_5-resources.assets-2089.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 500, }, ["Paw R.I.P. Gravestone"] = { class = "Gravestone", rarity = 3, file = "gravestone_6-resources.assets-3008.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1000, }, ["Double Paw R.I.P. Gravestone"] = { class = "Gravestone", rarity = 3, file = "gravestone_7-resources.assets-479.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1050, }, ["Maroon Vigil Gravestone"] = { class = "Gravestone", rarity = 3, file = "gravestone_8-resources.assets-1633.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1100, }, ["Default Dance"] = { class = "Emote", rarity = 0, file = "Default_dance.png", }, ["Simple Wave"] = { class = "Emote", rarity = 0, file = "Wave.png", description = "Play 20 Team-Based Matches", }, ["Floss Dance"] = { class = "Emote", rarity = 3, file = "Floss.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, }, ["Cheer!"] = { class = "Emote", rarity = 2, file = "Cheer.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Clap"] = { class = "Emote", rarity = 1, file = "Clap.png", }, ["Heel Click"] = { class = "Emote", rarity = 3, file = "Heel_click.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, }, ["Hand Stand"] = { class = "Emote", rarity = 3, file = "Handstand.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, }, ["Super Black Bear"] = { class = "CharacterSkin", rarity = 1, file = "Char-bear-black.png", baseAnimal = "Bear", currencies = { { name = "DNA", amount = 65, }, { name = "Serum", amount = 12, }, }, }, ["Super Cat"] = { class = "Character", rarity = 0, file = "Char-cat-calico.png", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 35, }, { name = "Serum", amount = 10, }, }, }, ["Super Grey Tabby Cat"] = { class = "CharacterSkin", rarity = 2, file = "Char-cat-grey-tabby.png", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Super Red Tabby Cat"] = { class = "CharacterSkin", rarity = 2, file = "Char-cat-red-tabby.png", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Super Tuxedo Cat"] = { class = "CharacterSkin", rarity = 1, file = "Char-cat-tuxedo.png", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 80, }, { name = "Serum", amount = 15, }, }, }, ["Super Pink Deer"] = { class = "CharacterSkin", rarity = 2, file = "Char-deer-pink.png", baseAnimal = "Deer", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Supercharge Fox"] = { class = "CharacterSkin", rarity = 3, file = "Char-fox-yellow.png", baseAnimal = "Fox", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, group = 150, }, ["Super White Fox"] = { class = "CharacterSkin", rarity = 3, file = "Char-fox-white.png", baseAnimal = "Fox", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, group = 200, }, ["Super Metal Panda"] = { class = "CharacterSkin", rarity = 4, file = "Char-panda-metal.png", baseAnimal = "Panda", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Swamp Skullcat"] = { class = "CharacterSkin", rarity = 3, file = "Char-skullcat-sepia.png", baseAnimal = "Skullcat", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 40, }, }, group = 50, }, ["Super White Tiger"] = { class = "CharacterSkin", rarity = 3, file = "Char-tiger-white.png", baseAnimal = "Tiger", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 40, }, }, group = 50, }, ["Super Shadow Fox"] = { class = "CharacterSkin", rarity = 3, file = "Char-fox-black.png", baseAnimal = "Fox", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 40, }, }, group = 50, }, ["Supersonic Fox"] = { class = "CharacterSkin", rarity = 2, file = "Char-fox-blue.png", baseAnimal = "Fox", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, group = 50, }, ["Super Polar Bear"] = { class = "CharacterSkin", rarity = 3, file = "Char-bear-polar.png", baseAnimal = "Bear", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 35, }, }, group = 50, }, ["Super Red Bear"] = { class = "CharacterSkin", rarity = 2, file = "Char-bear-red.png", baseAnimal = "Bear", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 25, }, }, group = 50, }, ["Super Shadow Skullcat"] = { class = "CharacterSkin", rarity = 2, file = "Char-skullcat-black.png", baseAnimal = "Skullcat", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Super Pink Tiger"] = { class = "CharacterSkin", rarity = 1, file = "Char-tiger-pink.png", baseAnimal = "Tiger", currencies = { { name = "DNA", amount = 65, }, { name = "Serum", amount = 12, }, }, group = 50, }, ["Super Blue Deer"] = { class = "CharacterSkin", rarity = 1, file = "Char-deer-blue.png", baseAnimal = "Deer", currencies = { { name = "DNA", amount = 115, }, { name = "Serum", amount = 30, }, }, }, ["Super Shadow Deer"] = { class = "CharacterSkin", rarity = 3, file = "Char-deer-black.png", baseAnimal = "Deer", currencies = { { name = "DNA", amount = 190, }, { name = "Serum", amount = 50, }, }, }, ["Super Blue Raccoon"] = { class = "CharacterSkin", rarity = 1, file = "Char-raccoon-blue.png", baseAnimal = "Raccoon", currencies = { { name = "DNA", amount = 115, }, { name = "Serum", amount = 25, }, }, }, ["Super Dog"] = { class = "Character", rarity = 0, file = "Char-dog-hound.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 35, }, { name = "Serum", amount = 10, }, }, }, ["Super Pug"] = { class = "CharacterSkin", rarity = 1, file = "Char-dog-pug.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 65, }, { name = "Serum", amount = 13, }, }, }, ["Super Shiba Inu"] = { class = "CharacterSkin", rarity = 2, file = "Char-dog-shiba-inu.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Super Boston Terrier"] = { class = "CharacterSkin", rarity = 1, file = "Char-dog-boston-terrier.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 80, }, { name = "Serum", amount = 15, }, }, }, ["Super Bunny"] = { class = "Character", rarity = 0, file = "Char-rabbit-brown.png", baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 100, }, { name = "Serum", amount = 24, }, }, }, ["Super Gray Bunny"] = { class = "CharacterSkin", rarity = 1, file = "Char-rabbit-grey.png", baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Super Green Bunny"] = { class = "CharacterSkin", rarity = 2, file = "Char-rabbit-green.png", baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 55, }, }, }, ["Super Pink Bunny"] = { class = "CharacterSkin", rarity = 3, file = "Char-rabbit-pink.png", baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 60, }, }, }, ["Super Monkey"] = { class = "Character", rarity = 0, file = "Char-monkey.png", baseAnimal = "Monkey", currencies = { { name = "DNA", amount = 100, }, { name = "Serum", amount = 24, }, }, }, ["Super Shadow Raccoon"] = { class = "CharacterSkin", rarity = 3, file = "Char-raccoon-dark.png", baseAnimal = "Raccoon", currencies = { { name = "DNA", amount = 190, }, { name = "Serum", amount = 55, }, }, }, ["Standard (Yellow) Explosion"] = { class = "DeathExplosion", rarity = 0, file = "death_standard_icon_yellow-resources.assets-199.png", description = "Available to all players", group = 50, }, ["Super Husky"] = { class = "CharacterSkin", rarity = 3, file = "Char-dog-husky.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 40, }, }, }, ["Bear DNA"] = { class = "DNA", rarity = 0, name = "Super Bear DNA", file = "DNA_Bear.png", }, ["Fox DNA"] = { class = "DNA", rarity = 0, name = "Super Fox DNA", file = "DNA_Fox.png", }, ["Cat DNA"] = { class = "DNA", rarity = 0, name = "Super Cat DNA", file = "DNA_Cat.png", }, ["Deer DNA"] = { class = "DNA", rarity = 0, name = "Super Deer DNA", file = "DNA_Deer.png", }, ["Dog DNA"] = { class = "DNA", rarity = 0, name = "Super Dog DNA", file = "DNA_Dog.png", }, ["Monkey DNA"] = { class = "DNA", rarity = 0, name = "Super Monkey DNA", file = "DNA_Monkey.png", }, ["Panda DNA"] = { class = "DNA", rarity = 0, name = "Super Panda DNA", file = "DNA_Panda.png", }, ["Bunny DNA"] = { class = "DNA", rarity = 0, name = "Super Bunny DNA", file = "DNA_Bunny.png", }, ["Raccoon DNA"] = { class = "DNA", rarity = 0, name = "Super Raccoon DNA", file = "DNA_Raccoon.png", }, ["Skullcat DNA"] = { class = "DNA", rarity = 0, name = "Super Skullcat DNA", file = "DNA_Skullcat.png", }, ["Sloth DNA"] = { class = "DNA", rarity = 0, name = "Super Sloth DNA", file = "DNA_Sloth.png", }, ["Tiger DNA"] = { class = "DNA", rarity = 0, name = "Super Tiger DNA", file = "DNA_Tiger.png", }, ["Black Secretary Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses secretary black-resources.assets-2678.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 200, }, ["Black Round Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses round black-resources.assets-1900.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 550, }, ["Monocle"] = { class = "Glasses", rarity = 2, file = "Glasses monacle-resources.assets-3022.png", description = "[[Level-Up Random Drop]]", group = 1350, }, ["Beard 3 (Dark)"] = { class = "Beard", rarity = 2, file = "Beard3 dark-resources.assets-1138.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 800, }, ["Beard 5 (Dark)"] = { class = "Beard", rarity = 2, file = "Beard5 dark-resources.assets-3275.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1300, }, ["Moustache 1 (Dark)"] = { class = "Beard", rarity = 1, file = "Moustache1 dark-resources.assets-1044.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 300, }, ["Moustache 5 (Dark)"] = { class = "Beard", rarity = 2, file = "Moustache5 dark-resources.assets-2370.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1550, }, ["Brown Jacket"] = { class = "Clothes", rarity = 1, file = "Clothes jacket brown.png", description = "[[Level-Up Random Drop]]", group = 750, }, ["Black Evening Dress"] = { class = "Clothes", rarity = 3, file = "Clothes night dress black.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 6850, }, ["Blue Spring Dress"] = { class = "Clothes", rarity = 2, file = "Clothes spring dress blue.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 3500, }, ["Black Suit"] = { class = "Clothes", rarity = 3, file = "Clothes suit black.png", description = "[[Level-Up Random Drop]]", group = 6950, }, ["Green Tee"] = { class = "Clothes", rarity = 0, file = "Clothes tshirt green.png", description = "[[Level-Up Random Drop]]", group = 50, }, ["Blue Striped Tee"] = { class = "Clothes", rarity = 1, file = "Clothes tshirt striped blue.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 1850, }, ["Standard (Green) Explosion"] = { class = "DeathExplosion", rarity = 0, file = "death_standard_icon_green-resources.assets-295.png", description = "Available to all players", group = 100, }, ["Standard (Blue) Explosion"] = { class = "DeathExplosion", rarity = 0, file = "death_standard_icon_blue-resources.assets-824.png", description = "Available to all players", group = 150, }, ["Standard (Red) Explosion"] = { class = "DeathExplosion", rarity = 0, file = "death_standard_icon_red-resources.assets-4237.png", description = "Available to all players", group = 200, }, ["Standard (Pink) Explosion"] = { class = "DeathExplosion", rarity = 0, file = "death_standard_icon_pink-resources.assets-1971.png", description = "Available to all players", group = 250, }, ["Standard (Orange) Explosion"] = { class = "DeathExplosion", rarity = 0, file = "death_standard_icon_orange-resources.assets-2436.png", description = "Available to all players", group = 300, }, ["Balloons Explosion"] = { class = "DeathExplosion", rarity = 2, file = "death_icon_balloons-resources.assets-3558.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 500, }, ["Spaghetti Explosion"] = { class = "DeathExplosion", rarity = 4, file = "death_spaghetti-resources.assets-3013.png", description = "[[Level-Up Random Drop]]", group = 1200, }, ["70's Explosion"] = { class = "DeathExplosion", rarity = 2, file = "death_icon_70s-resources.assets-1426.png", description = "[[Level-Up Random Drop]]", group = 550, }, ["Twister Explosion"] = { class = "DeathExplosion", rarity = 4, file = "Death_twister-resources.assets-589.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 1250, }, ["Hearts Explosion"] = { class = "DeathExplosion", rarity = 2, file = "death_icon_hearts-resources.assets-407.png", description = "[[Level-Up Random Drop]]", group = 600, }, ["Fireworks Explosion"] = { class = "DeathExplosion", rarity = 4, file = "death fireworks-resources.assets-3613.png", framed = 1, description = "[[Special Cosmetics#Founder's Edition|Founder's Edition]]", group = 1300, }, ["Popcorn Explosion"] = { class = "DeathExplosion", rarity = 3, file = "death_popcorn-resources.assets-159.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1000, }, ["Thunderbolt Explosion"] = { class = "DeathExplosion", rarity = 3, file = "Death_thunderbolt-resources.assets-476.png", description = "[[Level-Up Random Drop]]", group = 1050, }, ["Emoji (Angel) Explosion"] = { class = "DeathExplosion", rarity = 1, file = "Death_emoji_angel-resources.assets-1168.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 350, }, ["Emoji (Thumbs Down) Explosion"] = { class = "DeathExplosion", rarity = 1, file = "Death_emoji_icon_thumbsdown-resources.assets-5028.png", description = "[[Level-Up Random Drop]]", group = 400, }, ["Emoji (Thinking) Explosion"] = { class = "DeathExplosion", rarity = 2, file = "Death_emoji_thinking-resources.assets-635.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 650, }, ["Emoji (Kisses) Explosion"] = { class = "DeathExplosion", rarity = 2, file = "Death_emoji_icon_kissing-resources.assets-4726.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 700, }, ["Emoji (Sad) Explosion"] = { class = "DeathExplosion", rarity = 2, file = "Death_emoji_sad-resources.assets-1127.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 750, }, ["Emoji (Sleepy) Explosion"] = { class = "DeathExplosion", rarity = 2, file = "Death_emoji_icon_zzz-resources.assets-260.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 800, }, ["Emoji (Screaming) Explosion"] = { class = "DeathExplosion", rarity = 3, file = "death_emoji_icon_scream-resources.assets-668.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1100, }, ["Emoji (Broken Heart) Explosion"] = { class = "DeathExplosion", rarity = 1, file = "Death_emoji_broken_heart-resources.assets-372.png", description = "[[Level-Up Random Drop]]", group = 450, }, ["Emoji (Death) Explosion"] = { class = "DeathExplosion", rarity = 2, file = "Death_emoji_death-resources.assets-1190.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 850, }, ["Emoji (Poop) Explosion"] = { class = "DeathExplosion", rarity = 3, file = "death_emoji_icon_poop-resources.assets-1383.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1150, }, ["Emoji (Wink) Explosion"] = { class = "DeathExplosion", rarity = 2, file = "death_emoji_winking-resources.assets-1499.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 950, }, ["Baseball Cap (Red)"] = { class = "Hat", rarity = 1, file = "Hat baseball red-resources.assets-2895.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 250, }, ["Beta Blue Beanie"] = { class = "Hat", rarity = 5, file = "Hat beanie blue-resources.assets-2151.png", description = "[[Special Cosmetics#Beta|Beta Purchase Reward]]", group = 6050, }, ["Black Tophat"] = { class = "Hat", rarity = 3, file = "Hat suit black-resources.assets-290.png", description = "[[Level-Up Random Drop]]", group = 3400, }, ["Yellow Pistol"] = { class = "GunSkin", rarity = 2, file = "Gun-pistol_yellow.png", group = 550, description = "50 Pistol kills", super_edition = 1, link = "Pistol", framed = 1, }, ["Yellow Magnum"] = { class = "GunSkin", rarity = 2, file = "Gun-magnum_yellow.png", group = 200, description = "80 Magnum kills", super_edition = 1, link = "Magnum", framed = 1, }, ["Yellow Silenced Pistol"] = { class = "GunSkin", rarity = 2, file = "Gun-silenced-pistol_yellow.png", group = 6, description = "110 Silenced Pistol kills", super_edition = 1, link = "Silenced Pistol", framed = 1, }, ["Yellow SMG"] = { class = "GunSkin", rarity = 2, file = "Gun-smg_yellow.png", group = 6, description = "300 SMG kills", super_edition = 1, link = "SMG", framed = 1, }, ["Yellow Shotgun"] = { class = "GunSkin", rarity = 2, file = "Gun-shotgun_yellow.png", group = 6, description = "300 Shotgun kills", super_edition = 1, link = "Shotgun", framed = 1, }, ["Yellow AK"] = { class = "GunSkin", rarity = 2, file = "Gun-ak_yellow.png", group = 6, description = "300 AK kills", super_edition = 1, link = "AK", framed = 1, }, ["Yellow M16"] = { class = "GunSkin", rarity = 2, file = "Gun-m16_yellow.png", group = 6, description = "140 M16 kills", super_edition = 1, link = "M16", framed = 1, }, ["Yellow Sniper"] = { class = "GunSkin", rarity = 2, file = "Gun-sniper_yellow.png", group = 6, description = "50 Sniper kills", super_edition = 1, link = "Sniper", framed = 1, }, ["Yellow Minigun"] = { class = "GunSkin", rarity = 2, file = "Gun-minigun_yellow.png", group = 6, description = "50 Minigun kills", super_edition = 1, link = "Minigun", framed = 1, }, ["Blue AK"] = { class = "GunSkin", rarity = 1, file = "Gun-ak_blue.png", group = 3, description = "100 AK kills", link = "AK", }, ["Blue M16"] = { class = "GunSkin", rarity = 1, file = "Gun-m16_blue.png", group = 3, description = "45 M16 kills", link = "M16", }, ["Blue Magnum"] = { class = "GunSkin", rarity = 1, file = "Gun-magnum_blue.png", group = 3, description = "20 Magnum kills", link = "Magnum", }, ["Blue Minigun"] = { class = "GunSkin", rarity = 1, file = "Gun-minigun_blue.png", group = 3, description = "10 Minigun kills", link = "Minigun", }, ["Blue Pistol"] = { class = "GunSkin", rarity = 1, file = "Gun-pistol_blue.png", group = 3, description = "10 Pistol kills", link = "Pistol", }, ["Blue SMG"] = { class = "GunSkin", rarity = 1, file = "Gun-smg_blue.png", group = 3, description = "100 SMG kills", link = "SMG", }, ["Blue Shotgun"] = { class = "GunSkin", rarity = 1, file = "Gun-shotgun_blue.png", group = 3, description = "100 Shotgun kills", link = "Shotgun", }, ["Blue Silenced Pistol"] = { class = "GunSkin", rarity = 1, file = "Gun-silenced-pistol_blue.png", group = 3, description = "30 Silenced Pistol kills", link = "Silenced Pistol", }, ["Blue Sniper"] = { class = "GunSkin", rarity = 1, file = "Gun-sniper_blue.png", group = 3, description = "10 Sniper kills", link = "Sniper", }, ["Green AK"] = { class = "GunSkin", rarity = 0, file = "Gun-ak_green.png", group = 2, description = "50 AK kills", link = "AK", }, ["Green M16"] = { class = "GunSkin", rarity = 0, file = "Gun-m16_green.png", group = 2, description = "25 M16 kills", link = "M16", }, ["Green Magnum"] = { class = "GunSkin", rarity = 0, file = "Gun-magnum_green.png", group = 2, description = "10 Magnum kills", link = "Magnum", }, ["Green Minigun"] = { class = "GunSkin", rarity = 0, file = "Gun-minigun_green.png", group = 2, description = "5 Minigun kills", link = "Minigun", }, ["Green Pistol"] = { class = "GunSkin", rarity = 0, file = "Gun-pistol_green.png", group = 2, description = "5 Pistol kills", link = "Pistol", }, ["Green SMG"] = { class = "GunSkin", rarity = 0, file = "Gun-smg_green.png", group = 2, description = "50 SMG kills", link = "SMG", }, ["Green Shotgun"] = { class = "GunSkin", rarity = 0, file = "Gun-shotgun_green.png", group = 2, description = "50 Shotgun kills", link = "Shotgun", }, ["Green Silenced Pistol"] = { class = "GunSkin", rarity = 0, file = "Gun-silenced-pistol_green.png", group = 2, description = "15 Silenced Pistol kills", link = "Silenced Pistol", }, ["Green Sniper"] = { class = "GunSkin", rarity = 0, file = "Gun-sniper_green.png", group = 2, description = "5 Sniper kills", link = "Sniper", }, ["Orange AK"] = { class = "GunSkin", rarity = 0, file = "Gun-ak_orange.png", group = 1, description = "20 AK kills", link = "AK", }, ["Orange M16"] = { class = "GunSkin", rarity = 0, file = "Gun-m16_orange.png", group = 1, description = "10 M16 kills", link = "M16", }, ["Orange Magnum"] = { class = "GunSkin", rarity = 0, file = "Gun-magnum_orange.png", group = 1, description = "5 Magnum kills", link = "Magnum", }, ["Orange Minigun"] = { class = "GunSkin", rarity = 0, file = "Gun-minigun_orange.png", group = 1, description = "2 Minigun kills", link = "Minigun", }, ["Orange Pistol"] = { class = "GunSkin", rarity = 0, file = "Gun-pistol_orange.png", group = 1, description = "2 Pistol kills", link = "Pistol", }, ["Orange SMG"] = { class = "GunSkin", rarity = 0, file = "Gun-smg_orange.png", group = 1, description = "20 SMG kills", link = "SMG", }, ["Orange Shotgun"] = { class = "GunSkin", rarity = 0, file = "Gun-shotgun_orange.png", group = 1, description = "20 Shotgun kills", link = "Shotgun", }, ["Orange Silenced Pistol"] = { class = "GunSkin", rarity = 0, file = "Gun-silenced-pistol_orange.png", group = 1, description = "5 Silenced Pistol kills", link = "Silenced Pistol", }, ["Orange Sniper"] = { class = "GunSkin", rarity = 0, file = "Gun-sniper_orange.png", group = 1, description = "2 Sniper kills", link = "Sniper", }, ["Pink AK"] = { class = "GunSkin", rarity = 2, file = "Gun-ak_pink.png", group = 7, description = "375 AK kills", super_edition = 1, link = "AK", framed = 1, }, ["Pink M16"] = { class = "GunSkin", rarity = 2, file = "Gun-m16_pink.png", group = 7, description = "190 M16 kills", super_edition = 1, link = "M16", framed = 1, }, ["Pink Magnum"] = { class = "GunSkin", rarity = 2, file = "Gun-magnum_pink.png", group = 250, description = "110 Magnum kills", super_edition = 1, link = "Magnum", framed = 1, }, ["Pink Minigun"] = { class = "GunSkin", rarity = 2, file = "Gun-minigun_pink.png", group = 7, description = "70 Minigun kills", super_edition = 1, link = "Minigun", framed = 1, }, ["Pink Pistol"] = { class = "GunSkin", rarity = 2, file = "Gun-pistol_pink.png", group = 600, description = "70 Pistol kills", super_edition = 1, link = "Pistol", framed = 1, }, ["Pink SMG"] = { class = "GunSkin", rarity = 2, file = "Gun-smg_pink.png", group = 7, description = "375 SMG kills", super_edition = 1, link = "SMG", framed = 1, }, ["Pink Shotgun"] = { class = "GunSkin", rarity = 2, file = "Gun-shotgun_pink.png", group = 7, description = "375 Shotgun kills", super_edition = 1, link = "Shotgun", framed = 1, }, ["Pink Silenced Pistol"] = { class = "GunSkin", rarity = 2, file = "Gun-silenced-pistol_pink.png", group = 7, description = "150 Silenced Pistol kills", super_edition = 1, link = "Silenced Pistol", framed = 1, }, ["Pink Sniper"] = { class = "GunSkin", rarity = 2, file = "Gun-sniper_pink.png", group = 7, description = "70 Sniper kills", super_edition = 1, link = "Sniper", framed = 1, }, ["Purple AK"] = { class = "GunSkin", rarity = 1, file = "Gun-ak_purple.png", group = 5, description = "225 AK kills", super_edition = 1, link = "AK", framed = 1, }, ["Purple M16"] = { class = "GunSkin", rarity = 1, file = "Gun-m16_purple.png", group = 5, description = "100 M16 kills", super_edition = 1, link = "M16", framed = 1, }, ["Purple Magnum"] = { class = "GunSkin", rarity = 1, file = "Gun-magnum_purple.png", group = 5, description = "55 Magnum kills", super_edition = 1, link = "Magnum", framed = 1, }, ["Purple Minigun"] = { class = "GunSkin", rarity = 1, file = "Gun-minigun_purple.png", group = 5, description = "35 Minigun kills", super_edition = 1, link = "Minigun", framed = 1, }, ["Purple Pistol"] = { class = "GunSkin", rarity = 1, file = "Gun-pistol_purple.png", group = 5, description = "35 Pistol kills", super_edition = 1, link = "Pistol", framed = 1, }, ["Purple SMG"] = { class = "GunSkin", rarity = 1, file = "Gun-smg_purple.png", group = 5, description = "225 SMG kills", super_edition = 1, link = "SMG", framed = 1, }, ["Purple Shotgun"] = { class = "GunSkin", rarity = 1, file = "Gun-shotgun_purple.png", group = 5, description = "225 Shotgun kills", super_edition = 1, link = "Shotgun", framed = 1, }, ["Purple Silenced Pistol"] = { class = "GunSkin", rarity = 1, file = "Gun-silenced-pistol_purple.png", group = 5, description = "75 Silenced Pistol kills", super_edition = 1, link = "Silenced Pistol", framed = 1, }, ["Purple Sniper"] = { class = "GunSkin", rarity = 1, file = "Gun-sniper_purple.png", group = 5, description = "35 Sniper kills", super_edition = 1, link = "Sniper", framed = 1, }, ["Red AK"] = { class = "GunSkin", rarity = 1, file = "Gun-ak_red.png", group = 4, description = "150 AK kills", link = "AK", }, ["Red M16"] = { class = "GunSkin", rarity = 1, file = "Gun-m16_red.png", group = 4, description = "70 M16 kills", link = "M16", }, ["Red Magnum"] = { class = "GunSkin", rarity = 1, file = "Gun-magnum_red.png", group = 4, description = "35 Magnum kills", link = "Magnum", }, ["Red Minigun"] = { class = "GunSkin", rarity = 1, file = "Gun-minigun_red.png", group = 4, description = "20 Minigun kills", link = "Minigun", }, ["Red Pistol"] = { class = "GunSkin", rarity = 1, file = "Gun-pistol_red.png", group = 4, description = "20 Pistol kills", link = "Pistol", }, ["Red SMG"] = { class = "GunSkin", rarity = 1, file = "Gun-smg_red.png", group = 4, description = "150 SMG kills", link = "SMG", }, ["Red Shotgun"] = { class = "GunSkin", rarity = 1, file = "Gun-shotgun_red.png", group = 4, description = "150 Shotgun kills", link = "Shotgun", }, ["Red Silenced Pistol"] = { class = "GunSkin", rarity = 1, file = "Gun-silenced-pistol_red.png", group = 4, description = "50 Silenced Pistol kills", link = "Silenced Pistol", }, ["Red Sniper"] = { class = "GunSkin", rarity = 1, file = "Gun-sniper_red.png", group = 4, description = "20 Sniper kills", link = "Sniper", }, ["Super Pixile Fox"] = { class = "CharacterSkin", rarity = 2, file = "Char-fox-purple.png", description = "<small>[[Founder's Edition]]</small>", baseAnimal = "Fox", framed = 1, group = 1000, }, ["Super Hellfire Skullcat"] = { class = "CharacterSkin", rarity = 3, file = "Char-skullcat-fire.png", description = "<small>[[Founder's Edition]]</small>", baseAnimal = "Skullcat", framed = 1, group = 1000, }, ["Super Black Panther"] = { class = "CharacterSkin", rarity = 3, file = "Char-tiger-jaguar.png", description = "<small>[[Founder's Edition]]</small>", baseAnimal = "Tiger", framed = 1, group = 1000, }, ["Pixile Purple Tee"] = { class = "Clothes", rarity = 1, file = "Clothes tshirt pixile purple.png", description = "[[Special Cosmetics#Founder's Edition|Founder's Edition]]", framed = 1, group = 1500, }, ["Pixile White Tee"] = { class = "Clothes", rarity = 1, file = "Clothes tshirt pixile white.png", description = "[[Special Cosmetics#Founder's Edition|Founder's Edition]]", framed = 1, group = 1600, }, ["Heart Glasses"] = { class = "Glasses", rarity = 3, file = "Glasses_hearts-resources.assets-503.png", description = "[[Special Cosmetics#Founder's Edition|Founder's Edition]]", framed = 1, group = 2150, }, ["White Shutter Shades"] = { class = "Glasses", rarity = 2, file = "Glasses shutter shades white-resources.assets-2475.png", description = "[[Special Cosmetics#Founder's Edition|Founder's Edition]]", framed = 1, group = 1400, }, ["Golden M16"] = { class = "GunSkin", rarity = 3, file = "Gun-m16_golden.png", description = "''[[Special Cosmetics#Founder's Edition|Founder's Edition]]''", link = "M16", framed = 1, }, ["Golden Silenced Pistol"] = { class = "GunSkin", rarity = 3, file = "Gun-silenced-pistol_golden.png", description = "''[[Special Cosmetics#Founder's Edition|Founder's Edition]]''", link = "Silenced Pistol", framed = 1, }, ["Juggling Roulette"] = { class = "Emote", rarity = 4, file = "Juggle.png", description = "''[[Founder's Edition]]''", framed = 1, }, ["Charcoal Suit & Pixile Tie"] = { class = "Clothes", rarity = 3, file = "Clothes suit grey.png", description = "[[Special Cosmetics#Founder's Edition|Founder's Edition]]", framed = 1, group = 7050, }, ["Halo"] = { class = "Hat", rarity = 4, file = "Hat halo-resources.assets-1101.png", description = "[[Special Cosmetics#Founder's Edition|Founder's Edition]]", framed = 1, group = 5300, }, ["Katana"] = { class = "MeleeSkin", rarity = 0, file = "Katana.png", description = "Available to all players", group = 50, }, ["Super Red Panda"] = { class = "Character", rarity = 0, file = "Char-redpanda.png", baseAnimal = "Red Panda", currencies = { { name = "DNA", amount = 185, }, { name = "Serum", amount = 45, }, }, }, ["Red Panda DNA"] = { class = "DNA", rarity = 0, name = "Super Red Panda DNA", file = "DNA Red Panda.png", }, ["Wolf DNA"] = { class = "DNA", rarity = 0, name = "Super Wolf DNA", file = "DNA_Wolf.png", }, ["Super Wolf"] = { class = "Character", rarity = 0, file = "Char-wolf.png", baseAnimal = "Wolf", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Capybara DNA"] = { class = "DNA", rarity = 0, name = "Super Capybara DNA", file = "DNA_Capybara.png", }, ["Super Capybara"] = { class = "Character", rarity = 0, file = "Char-capybara.png", baseAnimal = "Capybara", currencies = { { name = "DNA", amount = 175, }, { name = "Serum", amount = 45, }, }, }, ["None"] = { class = "Token", rarity = 0, }, ["Donkey DNA"] = { class = "DNA", rarity = 0, name = "Super Donkey DNA", file = "DNA_Donkey.png", }, ["Super Donkey"] = { class = "Character", rarity = 0, file = "Char-donkey.png", baseAnimal = "Donkey", currencies = { { name = "DNA", amount = 100, }, { name = "Serum", amount = 24, }, }, }, ["Pinstripe Tophat"] = { class = "Hat", rarity = 3, file = "Hat suit pinstripe-resources.assets-2360.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 3450, }, ["Diamonds Sweater"] = { class = "Clothes", rarity = 2, file = "Clothes sweater diamonds.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 3600, }, ["Teal Striped Sweater"] = { class = "Clothes", rarity = 1, file = "Clothes sweater striped.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 2200, }, ["Blue Print Tee"] = { class = "Clothes", rarity = 1, file = "Clothes tshirt print blue.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 1650, }, ["Green Print Tee"] = { class = "Clothes", rarity = 1, file = "Clothes tshirt print green.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 1700, }, ["Red Fancy Shirt"] = { class = "Clothes", rarity = 2, file = "Clothes shirt red.png", description = "[[Level-Up Random Drop]]", group = 3650, }, ["Purple Fancy Shirt"] = { class = "Clothes", rarity = 2, file = "Clothes shirt purple.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 3700, }, ["Lumberjack Shirt"] = { class = "Clothes", rarity = 3, file = "Clothes shirt lumberjack.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 7250, }, ["Pink Princess Dress"] = { class = "Clothes", rarity = 4, file = "Clothes_princess_pink.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 10100, }, ["Red College Jacket"] = { class = "Clothes", rarity = 2, file = "Clothes college jacket red.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 3250, }, ["Black College Jacket"] = { class = "Clothes", rarity = 2, file = "Clothes college jacket black.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 3300, }, ["Super Spider Monkey"] = { class = "CharacterSkin", rarity = 1, file = "Char-monkey-black.png", baseAnimal = "Monkey", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Super Crimson Monkey"] = { class = "CharacterSkin", rarity = 2, file = "Char-monkey-red.png", baseAnimal = "Monkey", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 55, }, }, }, ["Super Howler Monkey"] = { class = "CharacterSkin", rarity = 3, file = "Char-monkey-white.png", baseAnimal = "Monkey", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 65, }, }, }, ["Beta Tee"] = { class = "Clothes", rarity = 5, file = "Clothes tshirt beta.png", description = "[[Special Cosmetics#Beta|Beta Purchase Reward]]", group = 10850, }, ["!Keyme Tee"] = { class = "Clothes", rarity = 5, name = "!keyme Tee", file = "Clothes tshirt key.png", description = "[[Special Cosmetics#Beta|Beta Purchase Reward]]", group = 10900, }, ["Kinda Funny Tee"] = { class = "Clothes", rarity = 1, file = "Clothes tshirt kindafunny.png", description = "''Greg Miller Streamer Item''", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 950, }, ["Team Fat Tee"] = { class = "Clothes", rarity = 1, file = "Clothes tshirt teamfat.png", description = "''Greg Miller Streamer Item''<br>[[Level-Up Random Drop]]", group = 1000, }, ["Blue Tee"] = { class = "Clothes", rarity = 0, file = "Clothes tshirt blue.png", description = "[[Level-Up Random Drop]]", group = 100, }, ["Maroon Jacket"] = { class = "Clothes", rarity = 2, file = "Clothes jacket maroon.png", description = "[[Level-Up Random Drop]]", group = 3150, }, ["Lion DNA"] = { class = "DNA", rarity = 0, name = "Super Lion DNA", file = "DNA_Lion.png", }, ["Super Lion"] = { class = "Character", rarity = 0, file = "Char-lion.png", baseAnimal = "Lion", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Super Shady Lion"] = { class = "CharacterSkin", rarity = 2, file = "Char-lion-dark.png", baseAnimal = "Lion", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Super Arctic Lion"] = { class = "CharacterSkin", rarity = 3, file = "Char-lion-white.png", baseAnimal = "Lion", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Stone Lion"] = { class = "CharacterSkin", rarity = 4, file = "Char-lion-stone.png", baseAnimal = "Lion", currencies = { { name = "DNA", amount = 450, }, { name = "Serum", amount = 120, }, }, }, ["Super Timber Wolf"] = { class = "CharacterSkin", rarity = 1, file = "Char-wolf-brown.png", baseAnimal = "Wolf", currencies = { { name = "DNA", amount = 225, }, { name = "Serum", amount = 65, }, }, }, ["Super Arctic Wolf"] = { class = "CharacterSkin", rarity = 3, file = "Char-wolf-arctic.png", baseAnimal = "Wolf", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Cotton Candy Deer"] = { class = "CharacterSkin", rarity = 4, file = "Char-deer-cotton-candy.png", baseAnimal = "Deer", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Ushanka"] = { class = "Hat", rarity = 3, file = "Hat ushanka-resources.assets-2567.png", description = "[[Level-Up Random Drop]]", group = 3550, }, ["Grey Beanie"] = { class = "Hat", rarity = 0, file = "Hat beanie grey-resources.assets-3241.png", description = "[[Level-Up Random Drop]]", group = 150, }, ["Black Aviator Sunglasses"] = { class = "Glasses", rarity = 1, name = "Black Aviator Glasses", file = "Glasses rayban black-resources.assets-3425.png", description = "[[Level-Up Random Drop]]", group = 800, }, ["Blue Aviator Sunglasses"] = { class = "Glasses", rarity = 1, name = "Blue Aviator Glasses", file = "Glasses rayban blue-resources.assets-947.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 850, }, ["Blue Sunglasses"] = { class = "Glasses", rarity = 0, file = "Glasses sunglasses blue-resources.assets-842.png", description = "[[Level-Up Random Drop]]", group = 50, }, ["Red Sunglasses"] = { class = "Glasses", rarity = 2, file = "Glasses sunglasses red-resources.assets-2916.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1450, }, ["Super Wiener Dog"] = { class = "CharacterSkin", rarity = 3, file = "Char-dog-wiener.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 40, }, }, }, ["Golden Video Jacket"] = { class = "Clothes", rarity = 5, file = "Clothes jacket golden.png", description = "[[Special Cosmetics#SAR Tonight|SAR Tonight]]", group = 10950, }, ["Super Corgi"] = { class = "CharacterSkin", rarity = 4, file = "Char-dog-corgi.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 42, }, }, }, ["Super Golden Lab"] = { class = "CharacterSkin", rarity = 2, file = "Char-dog-labrador-golden.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Super Chocolate Lab"] = { class = "CharacterSkin", rarity = 2, file = "Char-dog-labrador-chocolate.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Super Black Lab"] = { class = "CharacterSkin", rarity = 2, file = "Char-dog-labrador-black.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Hyena DNA"] = { class = "DNA", rarity = 0, name = "Super Hyena DNA", file = "DNA_Hyena.png", }, ["Super Hyena"] = { class = "Character", rarity = 0, file = "Char-hyena.png", baseAnimal = "Hyena", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Super Rudolph Deer"] = { class = "CharacterSkin", rarity = 3, name = "Super Red-Nosed Deer", file = "Char-deer-reindeer.png", baseAnimal = "Deer", currencies = { { name = "DNA", amount = 190, }, { name = "Serum", amount = 52, }, }, }, ["Santa Outfit"] = { class = "Clothes", rarity = 5, original_rarity = 5, file = "Clothes santa.png", event = "Christmas Event 2018", group = 11700, }, ["Festive Sweater"] = { class = "Clothes", rarity = 5, original_rarity = 5, file = "Clothes sweater christmas.png", event = "Christmas Event 2018", group = 11750, }, ["Santa Hat"] = { class = "Hat", rarity = 5, original_rarity = 5, file = "Hat santa-resources.assets-1805.png", event = "Christmas Event 2018", group = 6250, }, ["Dab"] = { class = "Emote", rarity = 1, file = "Dab.png", }, ["Hole in One!"] = { class = "Emote", rarity = 4, file = "Hole_in_one.png", }, ["Russian Dance"] = { class = "Emote", rarity = 3, file = "Emote-russian.png", original_description = "Win a match between December 20, 2018 and January 5, 2019", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, }, ["Red Beanie"] = { class = "Hat", rarity = 0, file = "Hat beanie red-resources.assets-802.png", description = "[[Level-Up Random Drop]]", group = 50, }, ["Banana Beanie"] = { class = "Hat", rarity = 0, file = "Hat beanie yellow-resources.assets-370.png", description = "[[Level-Up Random Drop]]", group = 100, }, ["Baseball Cap (Blue)"] = { class = "Hat", rarity = 1, file = "Hat baseball blue-resources.assets-1009.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 300, }, ["Baseball Cap (Yellow)"] = { class = "Hat", rarity = 1, file = "Hat baseball yellow-resources.assets-1820.png", description = "[[Level-Up Random Drop]]", group = 350, }, ["Red Mohawk"] = { class = "Hat", rarity = 3, file = "Hat mohawk red-resources.assets-1348.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 3600, }, ["Captain's Hat"] = { class = "Hat", rarity = 2, file = "Hat captain-resources.assets-1500.png", description = "[[Level-Up Random Drop]]", group = 1350, }, ["Military Hat (Beige)"] = { class = "Hat", rarity = 2, file = "Hat military beige-resources.assets-1249.png", description = "[[Level-Up Random Drop]]", group = 1400, }, ["Military Hat (Blue)"] = { class = "Hat", rarity = 2, file = "Hat military blue-resources.assets-497.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1450, }, ["Military Hat (Green)"] = { class = "Hat", rarity = 2, file = "Hat military green-resources.assets-809.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1500, }, ["Khaki Trenchcoat"] = { class = "Clothes", rarity = 4, file = "Clothes trenchcoat khaki.png", description = "[[Level-Up Random Drop]]", group = 10250, }, ["Blue College Jacket"] = { class = "Clothes", rarity = 2, file = "Clothes college jacket blue.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 3350, }, ["White College Jacket"] = { class = "Clothes", rarity = 2, file = "Clothes college jacket white.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 3400, }, ["Super Maroon Fox"] = { class = "CharacterSkin", rarity = 1, file = "Char-fox-red.png", baseAnimal = "Fox", currencies = { { name = "DNA", amount = 80, }, { name = "Serum", amount = 15, }, }, }, ["Super Pink Fox"] = { class = "CharacterSkin", rarity = 1, file = "Char-fox-pink.png", baseAnimal = "Fox", currencies = { { name = "DNA", amount = 80, }, { name = "Serum", amount = 15, }, }, }, ["Super Yellow Bear"] = { class = "CharacterSkin", rarity = 1, file = "Char-bear-yellow.png", baseAnimal = "Bear", currencies = { { name = "DNA", amount = 80, }, { name = "Serum", amount = 15, }, }, }, ["Super Siamese Cat"] = { class = "CharacterSkin", rarity = 2, file = "Char-cat-siamese.png", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Super Navy Skullcat"] = { class = "CharacterSkin", rarity = 1, file = "Char-skullcat-blue.png", baseAnimal = "Skullcat", currencies = { { name = "DNA", amount = 65, }, { name = "Serum", amount = 12, }, }, }, ["Super Arctic Fox"] = { class = "CharacterSkin", rarity = 4, file = "Char-fox-arctic asset.png", baseAnimal = "Fox", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Super Sloth Blues"] = { class = "CharacterSkin", rarity = 1, file = "Char-sloth-blue.png", baseAnimal = "Sloth", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 35, }, }, }, ["Super Mossy Sloth"] = { class = "CharacterSkin", rarity = 2, file = "Char-sloth-green.png", baseAnimal = "Sloth", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Candy Cane"] = { class = "MeleeSkin", rarity = 3, original_rarity = 5, name = "Peppermint Candy Cane", file = "Candycane.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 2750, }, ["Blue Visor"] = { class = "Hat", rarity = 1, file = "Hat visor blue-resources.assets-3846.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 500, }, ["Green Visor"] = { class = "Hat", rarity = 1, file = "Hat visor green-resources.assets-1303.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 550, }, ["Orange Visor"] = { class = "Hat", rarity = 1, file = "Hat visor orange-resources.assets-3687.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 600, }, ["Red Visor"] = { class = "Hat", rarity = 1, file = "Hat visor red-resources.assets-374.png", description = "[[Level-Up Random Drop]]", group = 650, }, ["Teal Visor"] = { class = "Hat", rarity = 1, file = "Hat visor teal-resources.assets-3696.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 700, }, ["Pink Visor"] = { class = "Hat", rarity = 2, file = "Hat visor pink-resources.assets-2640.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1600, }, ["Devil Horns"] = { class = "Hat", rarity = 2, file = "Hat devil horns-resources.assets-1113.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1650, }, ["Propeller Hat"] = { class = "Hat", rarity = 3, file = "Hat propeller-resources.assets-3917.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 3700, }, ["Blue Round Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses round blue-resources.assets-4088.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 600, }, ["Maroon Round Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses round maroon-resources.assets-2542.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 650, }, ["White Round Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses round white-resources.assets-2717.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 700, }, ["Eye Patch"] = { class = "Glasses", rarity = 3, file = "Glasses patch-resources.assets-1379.png", description = "[[Level-Up Random Drop]]", group = 2200, }, ["Pirate Hat"] = { class = "Hat", rarity = 3, file = "Hat pirate-resources.assets-237.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 3750, }, ["Black Pirate Costume"] = { class = "Clothes", rarity = 4, file = "Clothes pirate black.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 10300, }, ["Blue Pirate Costume"] = { class = "Clothes", rarity = 4, file = "Clothes pirate blue.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 10350, }, ["Brown Pirate Costume"] = { class = "Clothes", rarity = 4, file = "Clothes pirate brown.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 10400, }, ["Green Pirate Costume"] = { class = "Clothes", rarity = 4, file = "Clothes pirate green.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 10450, }, ["Blue Fancy Shirt"] = { class = "Clothes", rarity = 2, file = "Clothes shirt blue.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 3800, }, ["Green Fancy Shirt"] = { class = "Clothes", rarity = 2, file = "Clothes shirt green.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 3750, }, ["Super Bear Beanie"] = { class = "Hat", rarity = 4, file = "Hat beanies bear-resources.assets-3450.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 5350, }, ["Super Deer Beanie"] = { class = "Hat", rarity = 4, file = "Hat beanies deer-resources.assets-2655.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 5400, }, ["Super Fox Beanie"] = { class = "Hat", rarity = 4, file = "Hat beanies fox-resources.assets-3303.png", description = "[[Special Cosmetics#Superfree|Coupon Code]]", group = 5450, store = "carl", currency = { name = "Carl Coins", amount = 3000, }, }, ["Super Panda Beanie"] = { class = "Hat", rarity = 4, file = "Hat beanies panda-resources.assets-3139.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 5500, }, ["Super Raccoon Beanie"] = { class = "Hat", rarity = 4, file = "Hat beanies raccoon-resources.assets-2978.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 5550, }, ["Super Skullcat Beanie"] = { class = "Hat", rarity = 4, file = "Hat beanies skullcat-resources.assets-3451.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 5600, }, ["Super Tiger Beanie"] = { class = "Hat", rarity = 4, file = "Hat beanies tiger-resources.assets-3072.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 5650, }, ["SAR Tonight Cap"] = { class = "Hat", rarity = 5, file = "Hat baseball SARtonight-resources.assets-2626.png", description = "[[Special Cosmetics#SAR Tonight|SAR Tonight]]", group = 6150, }, ["Howl Tee"] = { class = "Clothes", rarity = 5, file = "Clothes tshirt print Howl.png", description = "[[Special Cosmetics#SAR Tonight|SAR Tonight]]", group = 11050, }, ["Donk Tee"] = { class = "Clothes", rarity = 5, file = "Clothes tshirt print Donk.png", description = "[[Special Cosmetics#SAR Tonight|SAR Tonight]]", group = 11000, }, ["Tiger Silhouette Tee"] = { class = "Clothes", rarity = 5, file = "Clothes tshirt silhouette tiger.png", description = "[[Special Cosmetics#SAR Tonight|SAR Tonight]]", group = 11100, }, ["Fox Silhouette Tee"] = { class = "Clothes", rarity = 5, file = "clothes_tshirt_silhouette_fox-resources.assets-4489.png", description = "[[Special Cosmetics#SAR Tonight|SAR Tonight]]", group = 11150, }, ["SAR Tonight Tee"] = { class = "Clothes", rarity = 5, file = "Clothes tshirt SARtonight logo.png", description = "[[Special Cosmetics#SAR Tonight|SAR Tonight]]", group = 11200, }, ["Beauty Sloth Beanie"] = { class = "Hat", rarity = 4, group = 5850, file = "Beauty_Sloth_Beanie.png", description = "[[Super Animal Developers|Clogg's Developer Item]]<br>{{hidetext|Hint|'''HINT'''<br>Play 1 game dressed as a Beauty Sloth.<br>{{hidetext|Spoiler|'''SPOILER'''<br>This is a Spoiler and will reveal how to get the Milestone.<br>'''How to get the Beauty Sloth Beanie Hat'''<br>Written instructions:<br> Play as a [[Animals#Sloth|Super Sloth]] and equip a [[Hats|Flower pin]] and a [[Outfits|Dress]] of any sort.<br>}}}}", }, ["Mango Umbrella"] = { class = "Umbrella", rarity = 3, file = "umbrella_base_mango-resources.assets-4159.png", description = "[[Super Animal Mods|Mango Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1800, }, ["Blue Jacket"] = { class = "Clothes", rarity = 1, file = "Clothes jacket blue-resources.assets-3074.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 800, }, ["Black Jacket"] = { class = "Clothes", rarity = 2, file = "Clothes jacket black-resources.assets-2427.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 3200, }, ["Pink Jacket"] = { class = "Clothes", rarity = 3, file = "Clothes jacket pink-resources.assets-1663.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 6700, }, ["Red Evening Dress"] = { class = "Clothes", rarity = 1, file = "Clothes night dress red-resources.assets-1906.png", description = "[[Level-Up Random Drop]]", group = 850, }, ["White Evening Dress"] = { class = "Clothes", rarity = 2, file = "Clothes night dress white-resources.assets-631.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 3450, }, ["Pink Spring Dress"] = { class = "Clothes", rarity = 2, file = "Clothes spring dress pink-resources.assets-3742.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 3550, }, ["Yellow Spring Dress"] = { class = "Clothes", rarity = 1, file = "Clothes spring dress yellow-resources.assets-1025.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 900, }, ["Red Spring Dress"] = { class = "Clothes", rarity = 3, file = "Clothes spring dress red-resources.assets-795.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 6900, }, ["Moustache 1 (Brown)"] = { class = "Beard", rarity = 1, file = "Moustache1 brown-resources.assets-3661.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 350, }, ["Moustache 5 (Brown)"] = { class = "Beard", rarity = 2, file = "Moustache5 brown-resources.assets-412.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1600, }, ["Moustache 1 (Light Gray)"] = { class = "Beard", rarity = 1, file = "Moustache1 lightgrey-resources.assets-3958.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 400, }, ["Moustache 5 (Light Gray)"] = { class = "Beard", rarity = 2, file = "Moustache5 lightgrey-resources.assets-3436.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1650, }, ["Beard 3 (Brown)"] = { class = "Beard", rarity = 2, file = "Beard3 brown-resources.assets-3412.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 850, }, ["Beard 3 (Light Gray)"] = { class = "Beard", rarity = 2, file = "Beard3 lightgrey-resources.assets-3666.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 900, }, ["Beard 5 (Brown)"] = { class = "Beard", rarity = 2, file = "Beard5 brown-resources.assets-1428.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1350, }, ["Beard 5 (Light Gray)"] = { class = "Beard", rarity = 2, file = "Beard5 lightgrey-resources.assets-539.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1400, }, ["Laughing"] = { class = "Emote", rarity = 2, file = "Laugh.png", }, ["Super Blue Bear"] = { class = "CharacterSkin", rarity = 2, file = "Char-bear-blue.png", baseAnimal = "Bear", currencies = { { name = "DNA", amount = 120, }, { name = "Serum", amount = 28, }, }, group = 100, }, ["Super Blue Tiger"] = { class = "CharacterSkin", rarity = 1, file = "Char-tiger-blue.png", baseAnimal = "Tiger", currencies = { { name = "DNA", amount = 80, }, { name = "Serum", amount = 15, }, }, group = 100, }, ["Super Dark Tiger"] = { class = "CharacterSkin", rarity = 3, file = "Char_tiger_negative-resources.assets-3061.png", baseAnimal = "Tiger", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 45, }, }, group = 150, }, ["Super Hot Tiger"] = { class = "CharacterSkin", rarity = 4, file = "Char tiger fire-resources.assets-2464.png", baseAnimal = "Tiger", currencies = { { name = "DNA", amount = 210, }, { name = "Serum", amount = 60, }, }, group = 50, }, ["Super Black Cat"] = { class = "CharacterSkin", rarity = 1, file = "Char_cat_black-resources.assets-2817.png", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 80, }, { name = "Serum", amount = 15, }, }, }, ["Super Snowshoe Cat"] = { class = "CharacterSkin", rarity = 3, file = "Char_cat_snowshoe-resources.assets-1099.png", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Super Mint Deer"] = { class = "CharacterSkin", rarity = 1, file = "Char-deer-green.png", baseAnimal = "Deer", currencies = { { name = "DNA", amount = 105, }, { name = "Serum", amount = 25, }, }, }, ["Super Brown Raccoon"] = { class = "CharacterSkin", rarity = 2, file = "Char-raccoon-brown.png", baseAnimal = "Raccoon", currencies = { { name = "DNA", amount = 145, }, { name = "Serum", amount = 40, }, }, }, ["Super Vanilla Raccoon"] = { class = "CharacterSkin", rarity = 2, file = "Char-raccoon-beige.png", baseAnimal = "Raccoon", currencies = { { name = "DNA", amount = 160, }, { name = "Serum", amount = 48, }, }, }, ["Super Tanuki"] = { class = "CharacterSkin", rarity = 4, file = "Char_raccoon_tanuki-resources.assets-2967.png", baseAnimal = "Raccoon", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Super Shadow Bunny"] = { class = "CharacterSkin", rarity = 3, file = "Char rabbit black-resources.assets-835.png", baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 65, }, }, }, ["Super Red Bunny"] = { class = "CharacterSkin", rarity = 2, file = "Char-rabbit-red.png", baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 55, }, }, }, ["Super Phantom Sloth"] = { class = "CharacterSkin", rarity = 2, file = "Char_sloth_pale-resources.assets-3601.png", baseAnimal = "Sloth", currencies = { { name = "DNA", amount = 210, }, { name = "Serum", amount = 55, }, }, }, ["Super Yellow Panda"] = { class = "CharacterSkin", rarity = 1, file = "Char_panda_yellow-resources.assets-4091.png", baseAnimal = "Panda", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 35, }, }, }, ["Super Blue Panda"] = { class = "CharacterSkin", rarity = 2, file = "Char_panda_blue-resources.assets-197.png", baseAnimal = "Panda", currencies = { { name = "DNA", amount = 190, }, { name = "Serum", amount = 50, }, }, }, ["Super Purple Panda"] = { class = "CharacterSkin", rarity = 2, file = "Char_panda_purple-resources.assets-674.png", baseAnimal = "Panda", currencies = { { name = "DNA", amount = 210, }, { name = "Serum", amount = 55, }, }, }, ["Super Shadow Wolf"] = { class = "CharacterSkin", rarity = 2, file = "Char-wolf-black.png", baseAnimal = "Wolf", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 85, }, }, }, ["Super Red Lion"] = { class = "CharacterSkin", rarity = 1, file = "Char-lion-redhead.png", baseAnimal = "Lion", currencies = { { name = "DNA", amount = 225, }, { name = "Serum", amount = 60, }, }, }, ["Super Mango Red Panda"] = { class = "CharacterSkin", rarity = 1, file = "Char_redpanda_orange-resources.assets-2191.png", baseAnimal = "Red Panda", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 72, }, }, group = 50, }, ["Super Berry Red Panda"] = { class = "CharacterSkin", rarity = 2, file = "Char_redpanda_blue-resources.assets-2219.png", baseAnimal = "Red Panda", currencies = { { name = "DNA", amount = 330, }, { name = "Serum", amount = 90, }, }, }, ["Super Bubblegum Red Panda"] = { class = "CharacterSkin", rarity = 3, file = "Char_redpanda_pink-resources.assets-4189.png", baseAnimal = "Red Panda", currencies = { { name = "DNA", amount = 410, }, { name = "Serum", amount = 110, }, }, }, ["Super Pink Capybara"] = { class = "CharacterSkin", rarity = 1, file = "Char_capybara_pink-resources.assets-2436.png", baseAnimal = "Capybara", currencies = { { name = "DNA", amount = 245, }, { name = "Serum", amount = 70, }, }, }, ["Super Golden Capybara"] = { class = "CharacterSkin", rarity = 3, file = "Char_capybara_golden-resources.assets-3651.png", baseAnimal = "Capybara", currencies = { { name = "DNA", amount = 400, }, { name = "Serum", amount = 105, }, }, }, ["Super Swamp Hyena"] = { class = "CharacterSkin", rarity = 1, file = "Char-hyena-green.png", baseAnimal = "Hyena", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Super Purple Hyena"] = { class = "CharacterSkin", rarity = 2, file = "Char-hyena-purple.png", baseAnimal = "Hyena", currencies = { { name = "DNA", amount = 390, }, { name = "Serum", amount = 100, }, }, }, ["Super Blonde Hyena"] = { class = "CharacterSkin", rarity = 3, file = "Char-hyena-tan.png", baseAnimal = "Hyena", currencies = { { name = "DNA", amount = 480, }, { name = "Serum", amount = 125, }, }, }, ["Sheep DNA"] = { class = "DNA", rarity = 0, name = "Super Sheep DNA", file = "DNA_Sheep.png", }, ["Super Sheep"] = { class = "Character", rarity = 0, file = "Char-sheep.png", baseAnimal = "Sheep", currencies = { { name = "DNA", amount = 125, }, { name = "Serum", amount = 30, }, }, }, ["Super Green Sheep"] = { class = "CharacterSkin", rarity = 1, file = "Char-sheep-green.png", baseAnimal = "Sheep", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 35, }, }, }, ["Super Baby Blue Sheep"] = { class = "CharacterSkin", rarity = 1, file = "Char-sheep-blue.png", baseAnimal = "Sheep", currencies = { { name = "DNA", amount = 160, }, { name = "Serum", amount = 40, }, }, }, ["Super Brown Sheep"] = { class = "CharacterSkin", rarity = 2, file = "Char-sheep-brown.png", baseAnimal = "Sheep", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Super Pink Sheep"] = { class = "CharacterSkin", rarity = 2, file = "Char-sheep-pink.png", baseAnimal = "Sheep", currencies = { { name = "DNA", amount = 220, }, { name = "Serum", amount = 60, }, }, }, ["Super Black Sheep"] = { class = "CharacterSkin", rarity = 3, file = "Char-sheep-black.png", baseAnimal = "Sheep", currencies = { { name = "DNA", amount = 320, }, { name = "Serum", amount = 95, }, }, }, ["Super Dark Sheep"] = { class = "CharacterSkin", rarity = 3, file = "Char-sheep-black-invert.png", baseAnimal = "Sheep", currencies = { { name = "DNA", amount = 290, }, { name = "Serum", amount = 80, }, }, }, ["Claymore"] = { class = "MeleeSkin", rarity = 3, file = "melee-sword.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 2850, }, ["Knife"] = { class = "MeleeSkin", rarity = 1, file = "melee_knife-resources.assets-4120.png", description = "[[Level-Up Random Drop]]", group = 200, }, ["Golf Club"] = { class = "MeleeSkin", rarity = 2, file = "melee_golfclub-resources.assets-3163.png", description = "[[Level-Up Random Drop]]", group = 1100, }, ["Newspaper"] = { class = "MeleeSkin", rarity = 3, file = "Melee newspaper-resources.assets-1996.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 2900, }, ["Ruler"] = { class = "MeleeSkin", rarity = 5, file = "melee_ruler-resources.assets-1331.png", description = "[[Special_Cosmetics#Admin|Admin]]", group = 4500, }, ["Stick"] = { class = "MeleeSkin", rarity = 1, file = "melee-stick.png", description = "[[Level-Up Random Drop]]", group = 250, }, ["Wood Plank"] = { class = "MeleeSkin", rarity = 2, file = "melee-woodplank.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1150, }, ["Wrench"] = { class = "MeleeSkin", rarity = 2, file = "melee-wrench.png", description = "[[Level-Up Random Drop]]", group = 1200, }, ["Tai Chi Sword"] = { class = "MeleeSkin", rarity = 2, original_rarity = 5, file = "melee-taichi_sword.png", event = "Year of the Super Pig 2019", group = 4650, store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Bamboo Stick"] = { class = "MeleeSkin", rarity = 2, original_rarity = 5, file = "melee-bamboo.png", event = "Year of the Super Pig 2019", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1450, }, ["Backscratcher"] = { class = "MeleeSkin", rarity = 2, file = "melee-backscratcher.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1500, }, ["Lunar Black Hat"] = { class = "Hat", rarity = 2, original_rarity = 5, file = "Hat chinese black.png", event = "Year of the Super Pig 2019", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 6350, }, ["Lunar Red Hat"] = { class = "Hat", rarity = 2, original_rarity = 5, file = "Hat chinese red.png", event = "Year of the Super Pig 2019", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 6400, }, ["Lunar Shirt"] = { class = "Clothes", rarity = 1, original_rarity = 5, file = "Clothes shirt chinese.png", event = "Year of the Super Pig 2019", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 11800, }, ["Lunar Dress"] = { class = "Clothes", rarity = 2, original_rarity = 5, file = "Clothes dress chinese.png", event = "Year of the Super Pig 2019", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 11500, }, ["Lunar Traditional Outfit"] = { class = "Clothes", rarity = 2, original_rarity = 5, file = "Clothes outfit chinese.png", event = "Year of the Super Pig 2019", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 12200, }, ["Lunar Vest"] = { class = "Clothes", rarity = 2, original_rarity = 5, file = "Clothes vest chinese.png", event = "Year of the Super Pig 2019", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 12250, }, ["Pig DNA"] = { class = "DNA", rarity = 0, name = "Super Pig DNA", file = "DNA_Pig.png", }, ["Boar DNA"] = { class = "DNA", rarity = 0, name = "Super Boar DNA", file = "DNA_Boar.png", }, ["Super Pig"] = { class = "Character", rarity = 0, file = "Char-pig.png", baseAnimal = "Pig", currencies = { { name = "DNA", amount = 100, }, { name = "Serum", amount = 20, }, }, }, ["Super Lunar Pig"] = { class = "CharacterSkin", rarity = 2, file = "Char-pig-red.png", baseAnimal = "Pig", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Super Golden Pig"] = { class = "CharacterSkin", rarity = 4, file = "Char-pig-golden.png", baseAnimal = "Pig", currencies = { { name = "DNA", amount = 350, }, { name = "Serum", amount = 82, }, }, }, ["Super Boar"] = { class = "Character", rarity = 0, file = "Char-boar.png", baseAnimal = "Boar", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Super Woodland Boar"] = { class = "CharacterSkin", rarity = 1, file = "Char-boar-fawn.png", baseAnimal = "Boar", currencies = { { name = "DNA", amount = 225, }, { name = "Serum", amount = 65, }, }, }, ["Super Dark Boar"] = { class = "CharacterSkin", rarity = 2, file = "Char-boar-grey.png", baseAnimal = "Boar", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 85, }, }, }, ["Super Jindo"] = { class = "CharacterSkin", rarity = 3, file = "Char-dog-jindo.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 40, }, }, }, ["Duos Day Rose"] = { class = "MeleeSkin", rarity = 5, file = "melee_rose-resources.assets-4153.png", event = "Super Duos Day 2019", group = 4700, }, ["Super Shepweiler"] = { class = "CharacterSkin", rarity = 3, file = "Char-dog-odin.png", description = "<small>''Freak_OTRT Super Content Creator Item''</small>", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 40, }, }, }, ["Paintbrush"] = { class = "MeleeSkin", rarity = 5, file = "melee_paintbrush-resources.assets-4056.png", description = "[[Special_Cosmetics#Super Artist|Super Artist]]", group = 4600, }, ["Pen"] = { class = "MeleeSkin", rarity = 5, file = "Melee pen-resources.assets-3548.png", description = "[[Special_Cosmetics#Translator|Translator]]", group = 4550, }, ["Pencil"] = { class = "MeleeSkin", rarity = 5, file = "Melee_pencil.png", description = "[[Special Cosmetics#Super Fanart Contest|Super Fanart Contest]]", group = 5800, }, ["Super Lioness"] = { class = "CharacterSkin", rarity = 3, file = "Char-lion-lioness.png", baseAnimal = "Lion", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Maned Wolf"] = { class = "CharacterSkin", rarity = 4, file = "Char-wolf-maned.png", baseAnimal = "Wolf", currencies = { { name = "DNA", amount = 450, }, { name = "Serum", amount = 120, }, }, }, ["Super Maltese Donkey"] = { class = "CharacterSkin", rarity = 1, file = "Char-donkey-fawn.png", baseAnimal = "Donkey", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Super Asinara Donkey"] = { class = "CharacterSkin", rarity = 1, file = "Char-donkey-white.png", baseAnimal = "Donkey", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Super Mule"] = { class = "CharacterSkin", rarity = 2, file = "Char-donkey-mule.png", baseAnimal = "Donkey", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 55, }, }, }, ["Super Zebra"] = { class = "CharacterSkin", rarity = 4, file = "Char-donkey-zebra.png", baseAnimal = "Donkey", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 75, }, }, }, ["Super Snowball Pig"] = { class = "CharacterSkin", rarity = 1, file = "Char_pig_snowball-resources.assets-4600.png", baseAnimal = "Pig", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 35, }, }, }, ["Super Saddleback Pig"] = { class = "CharacterSkin", rarity = 2, file = "Char_pig_bicolor-resources.assets-4608.png", baseAnimal = "Pig", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Super Spotted Pig"] = { class = "CharacterSkin", rarity = 3, file = "Char_pig_spotted-resources.assets-3925.png", baseAnimal = "Pig", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 65, }, }, }, ["Moustache 1 (Blonde)"] = { class = "Beard", rarity = 1, file = "Moustache1 blonde-resources.assets-3124.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 450, }, ["Moustache 1 (Gray)"] = { class = "Beard", rarity = 1, file = "Moustache1 grey-resources.assets-3428.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 500, }, ["Moustache 5 (Blonde)"] = { class = "Beard", rarity = 2, file = "Moustache5 blonde-resources.assets-663.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1700, }, ["Moustache 5 (Gray)"] = { class = "Beard", rarity = 2, file = "Moustache5 grey-resources.assets-2621.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1750, }, ["Moustache 4 (Blonde)"] = { class = "Beard", rarity = 2, file = "Moustache4 blonde-resources.assets-1923.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1200, }, ["Moustache 4 (Brown)"] = { class = "Beard", rarity = 2, file = "Moustache4 brown-resources.assets-260.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1100, }, ["Moustache 4 (Dark)"] = { class = "Beard", rarity = 2, file = "Moustache4 dark-resources.assets-2825.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1050, }, ["Moustache 4 (Gray)"] = { class = "Beard", rarity = 2, file = "Moustache4 grey-resources.assets-2042.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1250, }, ["Moustache 4 (Light Gray)"] = { class = "Beard", rarity = 2, file = "Moustache4 lightgrey-resources.assets-3308.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1150, }, ["Moustache 2 (Blonde)"] = { class = "Beard", rarity = 1, file = "Moustache2 blonde-resources.assets-2783.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 700, }, ["Moustache 2 (Brown)"] = { class = "Beard", rarity = 1, file = "Moustache2 brown-resources.assets-4789.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 600, }, ["Moustache 2 (Dark)"] = { class = "Beard", rarity = 1, file = "Moustache2 dark-resources.assets-2654.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 550, }, ["Moustache 2 (Gray)"] = { class = "Beard", rarity = 1, file = "Moustache2 grey-resources.assets-2515.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 750, }, ["Moustache 2 (Light Gray)"] = { class = "Beard", rarity = 1, file = "Moustache2 lightgrey-resources.assets-4137.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 650, }, ["Beard 3 (Blonde)"] = { class = "Beard", rarity = 2, file = "Beard3 blonde-resources.assets-1715.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 950, }, ["Beard 3 (Gray)"] = { class = "Beard", rarity = 2, file = "Beard3 grey-resources.assets-3882.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1000, }, ["Beard 5 (Blonde)"] = { class = "Beard", rarity = 2, file = "Beard5 blonde-resources.assets-4468.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1450, }, ["Beard 5 (Gray)"] = { class = "Beard", rarity = 2, file = "Beard5 grey-resources.assets-3550.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1500, }, ["Beard 1 (Blonde)"] = { class = "Beard", rarity = 1, file = "Beard1 blonde-resources.assets-1523.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 200, }, ["Beard 1 (Brown)"] = { class = "Beard", rarity = 1, file = "Beard1 brown-resources.assets-1335.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 100, }, ["Beard 1 (Dark)"] = { class = "Beard", rarity = 1, file = "Beard1 dark-resources.assets-1419.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 50, }, ["Beard 1 (Gray)"] = { class = "Beard", rarity = 1, file = "Beard1 grey-resources.assets-895.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 250, }, ["Beard 1 (Light Gray)"] = { class = "Beard", rarity = 1, file = "Beard1 lightgrey-resources.assets-3176.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 150, }, ["Light Blue Round Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses round lightblue-resources.assets-349.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 750, }, ["Brown Aviator Sunglasses"] = { class = "Glasses", rarity = 1, name = "Brown Aviator Glasses", file = "Glasses rayban brown-resources.assets-2764.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 900, }, ["Green Aviator Sunglasses"] = { class = "Glasses", rarity = 1, name = "Green Aviator Glasses", file = "Glasses rayban green-resources.assets-4275.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 950, }, ["Blue Secretary Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses secretary blue-resources.assets-3282.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 250, }, ["Green Secretary Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses secretary green-resources.assets-4697.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 300, }, ["Pink Secretary Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses secretary pink-resources.assets-4866.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 350, }, ["Purple Secretary Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses secretary purple-resources.assets-763.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 400, }, ["Red Secretary Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses secretary red-resources.assets-4543.png", description = "[[Level-Up Random Drop]]", group = 450, }, ["Yellow Secretary Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses secretary yellow-resources.assets-3706.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 500, }, ["Green Sunglasses"] = { class = "Glasses", rarity = 0, file = "Glasses sunglasses green-resources.assets-1375.png", description = "[[Level-Up Random Drop]]", group = 100, }, ["Orange Sunglasses"] = { class = "Glasses", rarity = 1, file = "Glasses sunglasses orange-resources.assets-988.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 1000, }, ["Yellow Sunglasses"] = { class = "Glasses", rarity = 0, file = "Glasses sunglasses yellow-resources.assets-599.png", description = "[[Level-Up Random Drop]]", group = 150, }, ["Super Fennec Fox"] = { class = "CharacterSkin", rarity = 3, file = "Char fox fennec-resources.assets-4159.png", baseAnimal = "Fox", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, group = 250, }, ["Super Wicked Monkey"] = { class = "CharacterSkin", rarity = 2, file = "Char_monkey_green-resources.assets-1291.png", baseAnimal = "Monkey", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 55, }, }, }, ["Super Deadly Panda"] = { class = "CharacterSkin", rarity = 3, file = "Char_panda_dark-resources.assets-2517.png", baseAnimal = "Panda", currencies = { { name = "DNA", amount = 290, }, { name = "Serum", amount = 80, }, }, }, ["Super Twilight Raccoon"] = { class = "CharacterSkin", rarity = 3, file = "Char_raccoon_smoky-resources.assets-1296.png", baseAnimal = "Raccoon", currencies = { { name = "DNA", amount = 190, }, { name = "Serum", amount = 55, }, }, }, ["Black Mohawk"] = { class = "Hat", rarity = 3, file = "Hat mohawk black-resources.assets-1679.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 3650, }, ["Green Robe"] = { class = "Clothes", rarity = 2, file = "Clothes robe green-resources.assets-3891.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 4400, }, ["Orange Robe"] = { class = "Clothes", rarity = 2, file = "Clothes robe orange-resources.assets-4891.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 4450, }, ["White Robe"] = { class = "Clothes", rarity = 2, file = "Clothes robe white-resources.assets-759.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 4500, }, ["Yellow Robe"] = { class = "Clothes", rarity = 2, file = "Clothes robe yellow-resources.assets-3763.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 4550, }, ["Blue Plaid Robe"] = { class = "Clothes", rarity = 3, file = "Clothes robe pattern-resources.assets-522.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 7800, }, ["Green Striped Robe"] = { class = "Clothes", rarity = 3, file = "Clothes robe striped-resources.assets-1709.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 7850, }, ["Purple Robe"] = { class = "Clothes", rarity = 5, file = "Clothes robe twitch-resources.assets-343.png", description = "[[Special Cosmetics#Content Creator|Content Creator]]", group = 11300, }, ["Red Robe"] = { class = "Clothes", rarity = 5, file = "Clothes robe youtube-resources.assets-2320.png", description = "[[Special Cosmetics#Content Creator|Content Creator]]", group = 11350, }, ["Just Sweatpants (Gray)"] = { class = "Clothes", rarity = 1, file = "Clothes pants sweatpants-resources.assets-4479.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 2600, }, ["Just Khaki Pants"] = { class = "Clothes", rarity = 2, file = "Clothes pants khaki-resources.assets-4716.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 4600, }, ["Just Jeans"] = { class = "Clothes", rarity = 2, file = "Clothes pants jeans-resources.assets-599.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 4650, }, ["Geologist Outfit"] = { class = "Clothes", rarity = 4, file = "Clothes_geologist-resources.assets-629.png", description = "''RockitSage Super Content Creator Item''", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 10500, }, ["Geologist's Hammer"] = { class = "MeleeSkin", rarity = 2, file = "melee_geologist-resources.assets-4413.png", description = "''RockitSage Super Content Creator Item''", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1550, }, ["Geologist Hat"] = { class = "Hat", rarity = 3, file = "Hat geologist-resources.assets-906.png", description = "''RockitSage Super Content Creator Item''", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 4000, }, ["Lucky Top Hat"] = { class = "Hat", rarity = 5, file = "Hat tophat green-resources.assets-2399.png", event = "St. Pawtrick's Day 2019", group = 6200, }, ["Lucky Suit"] = { class = "Clothes", rarity = 5, file = "Clothes suit green-resources.assets-4778.png", event = "St. Pawtrick's Day 2019", group = 11550, }, ["Lucky Beard"] = { class = "Beard", rarity = 5, file = "Beard6 red-resources.assets-122.png", event = "St. Pawtrick's Day 2019", group = 1950, }, ["DNA Magnet"] = { class = "Magnet", rarity = 0, name = "Super DNA Magnet", file = "Super dna magnet-sharedassets0.assets-51.png", }, ["Daily Challenge"] = { class = "Challenge", rarity = 0, }, ["Pink Moustache"] = { class = "Beard", rarity = 4, file = "Moustache6 pink-resources.assets-2866.png", description = "''Markiplier Streamer Item''", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 1850, }, ["Purple Jacket"] = { class = "Clothes", rarity = 4, file = "Clothes jacket purple-resources.assets-4237.png", description = "''Muyskerm Streamer Item''", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 9900, }, ["Star Glasses"] = { class = "Glasses", rarity = 5, file = "Glasses stars-resources.assets-254.png", description = "[[Special Cosmetics#Content Creator|Content Creator]]", group = 2800, }, ["Banana"] = { class = "MeleeSkin", rarity = 3, original_rarity = 5, file = "melee_banana-resources.assets-4256.png", original_description = "Complete any match", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 3100, }, ["Songbird DNA"] = { class = "DNA", rarity = 0, name = "Super Songbird DNA", }, ["Blue Jay DNA"] = { class = "DNA", rarity = 0, name = "Super Blue Jay DNA", }, ["Owl DNA"] = { class = "DNA", rarity = 0, name = "Super Owl DNA", }, ["Raven DNA"] = { class = "DNA", rarity = 0, name = "Super Raven DNA", }, ["Super Songbird"] = { class = "Character", rarity = 0, file = "char_bird-resources.assets-1814.png", baseAnimal = "Songbird", currencies = { { name = "DNA", amount = 35, }, { name = "Serum", amount = 10, }, }, }, ["Super Canary"] = { class = "CharacterSkin", rarity = 1, file = "char_bird_canary-resources.assets-3392.png", baseAnimal = "Songbird", currencies = { { name = "DNA", amount = 65, }, { name = "Serum", amount = 13, }, }, }, ["Super Blackbird"] = { class = "CharacterSkin", rarity = 1, file = "char_bird_blackbird-resources.assets-2766.png", baseAnimal = "Songbird", currencies = { { name = "DNA", amount = 80, }, { name = "Serum", amount = 15, }, }, }, ["Super Lark"] = { class = "CharacterSkin", rarity = 2, file = "char_bird_lark-resources.assets-2198.png", baseAnimal = "Songbird", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Super Robin"] = { class = "CharacterSkin", rarity = 2, file = "char_bird_robin-resources.assets-2981.png", baseAnimal = "Songbird", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Super Zebra Finch"] = { class = "CharacterSkin", rarity = 2, file = "char_bird_zebrafinch-resources.assets-3496.png", baseAnimal = "Songbird", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Super Bullfinch"] = { class = "CharacterSkin", rarity = 2, file = "char_bird_bullfinch-resources.assets-1076.png", baseAnimal = "Songbird", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Super Sparrow"] = { class = "CharacterSkin", rarity = 3, file = "char_bird_sparrow-resources.assets-3151.png", baseAnimal = "Songbird", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 40, }, }, }, ["Super Red Cardinal"] = { class = "CharacterSkin", rarity = 3, file = "char_bird_redcardinal-resources.assets-4168.png", baseAnimal = "Songbird", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 40, }, }, }, ["Super Blue Jay"] = { class = "Character", rarity = 0, file = "char_bluejay-resources.assets-281.png", baseAnimal = "Blue Jay", currencies = { { name = "DNA", amount = 75, }, { name = "Serum", amount = 15, }, }, }, ["Super Grape Blue Jay"] = { class = "CharacterSkin", rarity = 1, file = "char_bluejay_purple-resources.assets-4818.png", baseAnimal = "Blue Jay", currencies = { { name = "DNA", amount = 115, }, { name = "Serum", amount = 25, }, }, }, ["Super Berry Blue Jay"] = { class = "CharacterSkin", rarity = 2, file = "char_bluejay_lightblue-resources.assets-2396.png", baseAnimal = "Blue Jay", currencies = { { name = "DNA", amount = 145, }, { name = "Serum", amount = 40, }, }, }, ["Super Bubblegum Blue Jay"] = { class = "CharacterSkin", rarity = 3, file = "char_bluejay_red-resources.assets-4122.png", baseAnimal = "Blue Jay", currencies = { { name = "DNA", amount = 190, }, { name = "Serum", amount = 50, }, }, }, ["Super Owl"] = { class = "Character", rarity = 0, file = "char_owl-resources.assets-2297.png", baseAnimal = "Owl", currencies = { { name = "DNA", amount = 125, }, { name = "Serum", amount = 30, }, }, }, ["Super Barn Owl"] = { class = "CharacterSkin", rarity = 1, file = "char_owl_barn-resources.assets-2860.png", baseAnimal = "Owl", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 35, }, }, }, ["Super Pygmy Owl"] = { class = "CharacterSkin", rarity = 1, file = "char_owl_pygmy-resources.assets-2687.png", baseAnimal = "Owl", currencies = { { name = "DNA", amount = 160, }, { name = "Serum", amount = 40, }, }, }, ["Super Gray Owl"] = { class = "CharacterSkin", rarity = 2, file = "char_owl_grey-resources.assets-2190.png", baseAnimal = "Owl", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Super Snowy Owl"] = { class = "CharacterSkin", rarity = 2, file = "char_owl_snowy-resources.assets-757.png", baseAnimal = "Owl", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Super Eagle Owl"] = { class = "CharacterSkin", rarity = 3, file = "char_owl_eurasian-resources.assets-2733.png", baseAnimal = "Owl", currencies = { { name = "DNA", amount = 290, }, { name = "Serum", amount = 80, }, }, }, ["Super Horned Owl"] = { class = "CharacterSkin", rarity = 3, file = "char_owl_horned-resources.assets-2552.png", baseAnimal = "Owl", currencies = { { name = "DNA", amount = 290, }, { name = "Serum", amount = 80, }, }, }, ["Super Raven"] = { class = "Character", rarity = 0, file = "char_raven-resources.assets-936.png", baseAnimal = "Raven", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Super Hooded Crow"] = { class = "CharacterSkin", rarity = 1, file = "char_raven_hooded-resources.assets-1130.png", baseAnimal = "Raven", currencies = { { name = "DNA", amount = 225, }, { name = "Serum", amount = 60, }, }, }, ["Super Shadow Raven"] = { class = "CharacterSkin", rarity = 2, file = "char_raven_night-resources.assets-4117.png", baseAnimal = "Raven", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Super Albino Raven"] = { class = "CharacterSkin", rarity = 3, file = "char_raven_albino-resources.assets-1642.png", baseAnimal = "Raven", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["SAR Tonight Umbrella"] = { class = "Umbrella", rarity = 5, description = "[[Special Cosmetics#SAR Tonight|SAR Tonight]]", group = 2700, file = "Umbrella base SARtonight-resources.assets-2346.png", }, ["SAR Tonight Microphone"] = { class = "MeleeSkin", rarity = 5, file = "melee_reporter-resources.assets-4426.png", description = "[[Special Cosmetics#SAR Tonight|SAR Tonight]]", group = 4750, }, ["Larkson Outfit"] = { class = "Clothes", rarity = 3, file = "clothes_Larkson-resources.assets-2807.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 7900, }, ["Lady Caw Caw Outfit"] = { class = "Clothes", rarity = 3, file = "clothes_dress_CawCaw-resources.assets-2956.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 7950, }, ["Blue Jay Z Jacket"] = { class = "Clothes", rarity = 3, file = "clothes_jacket_BlueJayZ-resources.assets-3040.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 6800, }, ["ChocoTaco Tee"] = { class = "Clothes", rarity = 1, file = "clothes_tshirt_chocotaco-resources.assets-1372.png", description = "''ChocoTaco Streamer Item''", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 1050, }, ["CrankGameplays Tee"] = { class = "Clothes", rarity = 1, file = "CrankGameplays Tee.png", description = "''CrankGameplays Streamer Item''", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 1100, }, ["Blue Jay Z Cap"] = { class = "Hat", rarity = 3, file = "Hat BlueJayZ-resources.assets-1145.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 4050, }, ["Lady Caw Caw Hat"] = { class = "Hat", rarity = 3, file = "Hat CawCaw-resources.assets-1080.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 4100, }, ["ChocoTaco Hat"] = { class = "Hat", rarity = 2, file = "hat_chocotaco-resources.assets-966.png", description = "''ChocoTaco Streamer Item''", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1800, }, ["Lady Caw Caw Glasses"] = { class = "Glasses", rarity = 3, file = "glasses_CawCaw-resources.assets-574.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 2250, }, ["Bunny Ears"] = { class = "Hat", rarity = 2, original_rarity = 5, file = "hat_bunnyears-sharedassets0.assets-46.png", event = "Super Easter 2019", original_currency = { name = "Eggs", amount = 150, }, group = 6450, }, ["Blue Bow"] = { class = "Neck", rarity = 1, file = "Clothes_bow_blue-resources.assets-1537.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 11950, }, ["Yellow Bow"] = { class = "Neck", rarity = 1, original_rarity = 5, file = "clothes_bow_yellow-sharedassets0.assets-19.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, original_currency = { name = "Egg", amount = 20, }, group = 12000, }, ["Pink Bow"] = { class = "Neck", rarity = 1, file = "Clothes_bow_pink-resources.assets-843.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 12050, }, ["Easter Bow"] = { class = "Neck", rarity = 2, original_rarity = 5, file = "clothes_bow_easter-sharedassets0.assets-115.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Eggs", amount = 75, }, group = 14200, }, ["Super White Bunny"] = { class = "CharacterSkin", rarity = 3, original_rarity = 3, file = "char_rabbit_white-sharedassets0.assets-128.png", baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 60, }, }, original_currency = { name = "Eggs", amount = 350, }, }, ["Super Chocolate Bunny"] = { class = "CharacterSkin", rarity = 4, original_rarity = 4, file = "Char rabbit chocolate-sharedassets0.assets-57.png", baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 310, }, { name = "Serum", amount = 80, }, }, original_currency = { name = "Eggs", amount = 500, }, }, ["Larkson Glasses"] = { class = "Glasses", rarity = 3, file = "glasses_Larkson-resources.assets-659.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 2300, }, ["Super Greyhound"] = { class = "CharacterSkin", rarity = 3, description = "''Jenna & Julien Streamer Item''", file = "char_dog_greyhound-resources.assets-2738.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 40, }, }, }, ["Super Peach Greyhound"] = { class = "CharacterSkin", rarity = 3, description = "''Jenna & Julien Streamer Item''", file = "char_dog_greyhound_tan-resources.assets-4378.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 40, }, }, }, ["Warning"] = { class = "Warning", rarity = 0, }, ["Pink Onesie"] = { class = "Clothes", rarity = 3, file = "clothes_onesie_pink-resources.assets-4717.png", description = "''JennaJulien Streamer Item''", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 7500, }, ["Red Onesie"] = { class = "Clothes", rarity = 3, file = "clothes_onesie_red-resources.assets-588.png", description = "''JennaJulien Streamer Item''", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 7550, }, ["Skunk DNA"] = { class = "DNA", rarity = 0, name = "Super Skunk DNA", file = "DNA_Skunk.png", }, ["Super Skunk"] = { class = "Character", rarity = 0, file = "Char-skunk.png", baseAnimal = "Skunk", currencies = { { name = "DNA", amount = 100, }, { name = "Serum", amount = 24, }, }, }, ["Super Grape Skunk"] = { class = "CharacterSkin", rarity = 1, file = "Char-skunk-purple.png", baseAnimal = "Skunk", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 35, }, }, }, ["Super Skunk Blues"] = { class = "CharacterSkin", rarity = 2, file = "Char-skunk-petrol.png", baseAnimal = "Skunk", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Super Vanilla Skunk"] = { class = "CharacterSkin", rarity = 3, file = "Char-skunk-bleached.png", baseAnimal = "Skunk", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 65, }, }, }, ["Super White Light Sword"] = { class = "MeleeSkin", rarity = 0, file = "Melee lightsaber white-resources.assets-260.png", description = "[[Level-Up Random Drop]]", group = 100, }, ["Super Green Light Sword"] = { class = "MeleeSkin", rarity = 1, file = "Melee lightsaber green-resources.assets-216.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 400, }, ["Super Blue Light Sword"] = { class = "MeleeSkin", rarity = 2, file = "Melee lightsaber blue-resources.assets-3974.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1600, }, ["Super Purple Light Sword"] = { class = "MeleeSkin", rarity = 3, file = "Melee lightsaber purple-resources.assets-5106.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 3150, }, ["Super Gold Light Sword"] = { class = "MeleeSkin", rarity = 4, file = "Melee lightsaber orange-resources.assets-3457.png", description = "[[Level-Up Random Drop]]", group = 4150, }, ["Super Red Light Sword"] = { class = "MeleeSkin", rarity = 4, file = "Melee lightsaber red-resources.assets-3543.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 4200, }, ["Red Tee"] = { class = "Clothes", rarity = 0, file = "Clothes tshirt red.png", description = "[[Level-Up Random Drop]]", group = 150, }, ["Purple Tee"] = { class = "Clothes", rarity = 0, file = "Clothes tshirt purple.png", description = "[[Level-Up Random Drop]]", group = 200, }, ["Red Striped Tee"] = { class = "Clothes", rarity = 1, file = "Clothes tshirt striped red.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 1900, }, ["Green Striped Tee"] = { class = "Clothes", rarity = 1, file = "Clothes tshirt striped green.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 1950, }, ["Navy Striped Tee"] = { class = "Clothes", rarity = 1, file = "Clothes tshirt striped navy.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 2000, }, ["Pink Striped Tee"] = { class = "Clothes", rarity = 1, file = "Clothes tshirt striped pink.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 2050, }, ["Red Print Tee"] = { class = "Clothes", rarity = 1, file = "Clothes tshirt print red.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 1750, }, ["White Print Tee"] = { class = "Clothes", rarity = 1, file = "Clothes tshirt print white.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 1800, }, ["Blue Striped Sweater"] = { class = "Clothes", rarity = 1, file = "Clothes sweater striped blue.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 2250, }, ["Pink Striped Sweater"] = { class = "Clothes", rarity = 1, file = "Clothes sweater striped pink.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 2300, }, ["Red Striped Sweater"] = { class = "Clothes", rarity = 1, file = "Clothes sweater striped red.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 2350, }, ["Black Princess Dress"] = { class = "Clothes", rarity = 4, file = "Clothes princess black.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 9950, }, ["Blue Princess Dress"] = { class = "Clothes", rarity = 4, file = "Clothes princess blue.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 10000, }, ["Green Princess Dress"] = { class = "Clothes", rarity = 4, file = "Clothes princess green.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 10050, }, ["Purple Princess Dress"] = { class = "Clothes", rarity = 4, file = "Clothes princess purple.png", group = 10150, store = "carl", currency = { name = "Carl Coins", amount = 3000, }, }, ["Yellow Princess Dress"] = { class = "Clothes", rarity = 4, file = "Clothes princess yellow.png", group = 10200, store = "carl", currency = { name = "Carl Coins", amount = 3000, }, }, ["Super Otter"] = { class = "Character", rarity = 0, file = "Char_otter-resources.assets-2549.png", baseAnimal = "Otter", currencies = { { name = "DNA", amount = 125, }, { name = "Serum", amount = 30, }, }, }, ["Otter DNA"] = { class = "DNA", rarity = 0, name = "Super Otter DNA", file = "DNA_Otter.png", }, ["Ferret DNA"] = { class = "DNA", rarity = 0, name = "Super Ferret DNA", }, ["Super Navy Otter"] = { class = "CharacterSkin", rarity = 1, file = "Char_otter_blue-resources.assets-3715.png", baseAnimal = "Otter", currencies = { { name = "DNA", amount = 160, }, { name = "Serum", amount = 40, }, }, }, ["Super Chestnut Otter"] = { class = "CharacterSkin", rarity = 1, file = "Char_otter_brown-resources.assets-853.png", baseAnimal = "Otter", currencies = { { name = "DNA", amount = 170, }, { name = "Serum", amount = 42, }, }, }, ["Super Red Otter"] = { class = "CharacterSkin", rarity = 2, file = "Char_otter_red-resources.assets-3505.png", baseAnimal = "Otter", currencies = { { name = "DNA", amount = 220, }, { name = "Serum", amount = 50, }, }, }, ["Super Golden Otter"] = { class = "CharacterSkin", rarity = 2, file = "Char_otter_yellow-resources.assets-4574.png", baseAnimal = "Otter", currencies = { { name = "DNA", amount = 230, }, { name = "Serum", amount = 55, }, }, }, ["Super Sea Otter"] = { class = "CharacterSkin", rarity = 3, file = "Char_otter_sea-resources.assets-5023.png", baseAnimal = "Otter", currencies = { { name = "DNA", amount = 290, }, { name = "Serum", amount = 80, }, }, }, ["Super Ferret"] = { class = "Character", rarity = 0, file = "Char_ferret-resources.assets-1959.png", baseAnimal = "Ferret", currencies = { { name = "DNA", amount = 75, }, { name = "Serum", amount = 15, }, }, }, ["Super Silver Ferret"] = { class = "CharacterSkin", rarity = 3, file = "Char_ferret_silver-resources.assets-661.png", baseAnimal = "Ferret", currencies = { { name = "DNA", amount = 190, }, { name = "Serum", amount = 50, }, }, }, ["Super Cinnamon Ferret"] = { class = "CharacterSkin", rarity = 2, file = "Char_ferret_cinnamon-resources.assets-4535.png", baseAnimal = "Ferret", currencies = { { name = "DNA", amount = 145, }, { name = "Serum", amount = 40, }, }, }, ["Super Vanilla Ferret"] = { class = "CharacterSkin", rarity = 1, file = "Char_ferret_white-resources.assets-3053.png", baseAnimal = "Ferret", currencies = { { name = "DNA", amount = 115, }, { name = "Serum", amount = 25, }, }, }, ["Police Hat"] = { class = "Hat", rarity = 5, file = "Hat_police.png", description = "''AlpacaPatrol Streamer Item''<br>[[Special Cosmetics#Northernlion Live Super Show|Northernlion Live Super Show]]", group = 6500, }, ["DreamHack Umbrella"] = { class = "Umbrella", rarity = 5, file = "Umbrella base dreamhack-resources.assets-1925.png", description = "[[Special Cosmetics#DreamHack Dallas 2019|DreamHack special event]]", group = 2800, }, ["Duck DNA"] = { class = "DNA", rarity = 0, name = "Super Duck DNA", }, ["Hawk DNA"] = { class = "DNA", rarity = 0, name = "Super Hawk DNA", }, ["Super Duck"] = { class = "Character", rarity = 0, file = "Char-ducks.png", baseAnimal = "Duck", currencies = { { name = "DNA", amount = 75, }, { name = "Serum", amount = 15, }, }, }, ["Super Green Mallard"] = { class = "CharacterSkin", rarity = 1, file = "char_duck_mallard_green-resources.assets-4442.png", baseAnimal = "Duck", currencies = { { name = "DNA", amount = 115, }, { name = "Serum", amount = 25, }, }, }, ["Super Blue Mallard"] = { class = "CharacterSkin", rarity = 1, file = "char_duck_mallard_blue-resources.assets-3335.png", baseAnimal = "Duck", currencies = { { name = "DNA", amount = 115, }, { name = "Serum", amount = 25, }, }, }, ["Super Purple Mallard"] = { class = "CharacterSkin", rarity = 1, file = "char_duck_mallard_purple-resources.assets-1597.png", baseAnimal = "Duck", currencies = { { name = "DNA", amount = 115, }, { name = "Serum", amount = 25, }, }, }, ["Super White Duck"] = { class = "CharacterSkin", rarity = 2, file = "char_duck_white-resources.assets-1598.png", baseAnimal = "Duck", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 38, }, }, }, ["Super Black Duck"] = { class = "CharacterSkin", rarity = 2, file = "char_duck_black-resources.assets-4369.png", baseAnimal = "Duck", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 38, }, }, }, ["Super Duckling"] = { class = "CharacterSkin", rarity = 3, file = "Char duckling-resources.assets-2139.png", baseAnimal = "Duck", currencies = { { name = "DNA", amount = 190, }, { name = "Serum", amount = 50, }, }, }, ["Super Swan"] = { class = "CharacterSkin", rarity = 4, file = "Char-duck-swan.png", baseAnimal = "Duck", currencies = { { name = "DNA", amount = 240 }, { name = "Serum", amount = 65 } } }, ["Super Hawk"] = { class = "Character", rarity = 0, file = "Char-hawks.png", baseAnimal = "Hawk", currencies = { { name = "DNA", amount = 175, }, { name = "Serum", amount = 45, }, }, }, ["Super Goshawk"] = { class = "CharacterSkin", rarity = 1, file = "Char_hawk_goshawk-resources.assets-158.png", baseAnimal = "Hawk", currencies = { { name = "DNA", amount = 240, }, { name = "Serum", amount = 70, }, }, }, ["Super Osprey"] = { class = "CharacterSkin", rarity = 1, file = "Char_hawk_osprey-resources.assets-4482.png", baseAnimal = "Hawk", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 70, }, }, }, ["Super Peregrine"] = { class = "CharacterSkin", rarity = 1, file = "Char_hawk_peregrine-resources.assets-5014.png", baseAnimal = "Hawk", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 70, }, }, }, ["Super Kestrel"] = { class = "CharacterSkin", rarity = 2, file = "Char_hawk_kestrel-resources.assets-1630.png", baseAnimal = "Hawk", currencies = { { name = "DNA", amount = 330, }, { name = "Serum", amount = 90, }, }, }, ["Super Eagle"] = { class = "CharacterSkin", rarity = 3, file = "Char_hawk_eagle-resources.assets-517.png", baseAnimal = "Hawk", currencies = { { name = "DNA", amount = 400, }, { name = "Serum", amount = 105, }, }, }, ["Hedgehog DNA"] = { class = "DNA", rarity = 0, name = "Super Hedgehog DNA", }, ["Super Hedgehog"] = { class = "Character", rarity = 0, file = "Char_hedgehog-resources.assets-2522.png", baseAnimal = "Hedgehog", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Super Speedy Hedgehog"] = { class = "CharacterSkin", rarity = 3, file = "Char_hedgehog_blue-resources.assets-908.png", baseAnimal = "Hedgehog", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Pink Hedgehog"] = { class = "CharacterSkin", rarity = 1, file = "Char_hedgehog_pink-resources.assets-3335.png", baseAnimal = "Hedgehog", currencies = { { name = "DNA", amount = 225, }, { name = "Serum", amount = 60, }, }, }, ["Super Red Hedgehog"] = { class = "CharacterSkin", rarity = 2, file = "Char_hedgehog_red-resources.assets-4504.png", baseAnimal = "Hedgehog", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Carrot"] = { class = "MeleeSkin", rarity = 2, file = "Melee_carrot-resources.assets-700.png", description = "''ShiaBun Super Content Creator Item''", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1650, }, ["Corn"] = { class = "MeleeSkin", rarity = 2, file = "Melee corn.png", description = "''Shirakami Fubuki Streamer Item''", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1700, }, ["Fish Pajamas"] = { class = "Clothes", rarity = 3, file = "pajamas_fish.png", description = "[[Super Animal Mods|Slofin Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 7650, }, ["Security Guard Outfit"] = { class = "Clothes", rarity = 3, file = "Clothes_securityguard-resources.assets-2127.png", description = "[[Super Animal Mods|Foxinter Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 7100, }, ["Chartreux Beanie"] = { class = "Hat", rarity = 3, file = "beanies_catler.png", description = "[[Super Animal Mods|Catler Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 3800, }, ["Steampunk Goggles"] = { class = "Hat", rarity = 3, file = "steampunk_goggles_foxysongbird.png", description = "[[Super Animal Mods|Mochi_Mei Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 4150, }, ["Harlecorn"] = { class = "Hat", rarity = 3, file = "Hat Harle unicorn horn.png", description = "[[Super Animal Mods|Harle Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 4200, }, ["Baseball Cap (Rainbow)"] = { class = "Hat", rarity = 5, file = "Hat_baseball_rainbow-resources.assets-4813.png", description = "[[Special Cosmetics#Pride|Pride]]", group = 6550, }, ["Leftstickdown Beanie"] = { class = "Hat", rarity = 3, file = "beanie_LSD.png", description = "[[Super Animal Mods|Leftstickdown Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 3850, }, ["Shirakami Scarf"] = { class = "Neck", rarity = 3, file = "Clothes scarf shirakami.png", description = "''Shirakami Fubuki Streamer Item''", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 7300, }, ["Rainbow Umbrella"] = { class = "Umbrella", rarity = 5, file = "Umbrella_base_rainbow-resources.assets-2272.png", description = "[[Special Cosmetics#Pride|Pride]]", group = 2850, }, ["Lyze's Key"] = { class = "MeleeSkin", rarity = 3, file = "Melee_key-resources.assets-1437.png", description = "<small>''[[Super Animal Mods|Lyze Mod Item]]''</small>", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 3250, }, ["Duck Newspaper"] = { class = "MeleeSkin", rarity = 3, file = "Duck Newspaper.png", description = "[[Super Animal Mods|Murder Mittens Mod Item]]<br>[[Level-Up Random Drop]]", group = 3300, }, ["Pro Gamer Hoodie"] = { class = "Clothes", rarity = 3, file = "Clothes_hoodie_pink_full.png", description = "[[Super Animal Mods|TeTo Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 7700, }, ["Rat DNA"] = { class = "DNA", rarity = 0, name = "Super Rat DNA", file = "DNA_Rat.png", }, ["Bat DNA"] = { class = "DNA", rarity = 0, name = "Super Bat DNA", file = "DNA_Bat.png", }, ["Super Berry Blue Owl"] = { class = "CharacterSkin", rarity = 4, file = "Char_owl_blue-resources.assets-1438.png", description = "<small>''[[Super Animal Mods|Lyze Mod Item]]''</small>", baseAnimal = "Owl", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Stars & Stripes Baseball Bat"] = { class = "MeleeSkin", rarity = 5, file = "Melee_baseballbat_USA-resources.assets-3928.png", description = "[[Special Cosmetics#Independence Day 2019|Independence Day 2019]]", group = 4800, }, ["Hockey Stick"] = { class = "MeleeSkin", rarity = 5, file = "Melee_hockeystick-resources.assets-5024.png", description = "[[Special Cosmetics#Canada Day 2019|Canada Day 2019]]", group = 4850, }, ["Mountie Hat"] = { class = "Hat", rarity = 5, file = "Hat_mountie-resources.assets-4207.png", description = "[[Special Cosmetics#Canada Day 2019|Canada Day 2019]]", group = 6600, }, ["Stars & Stripes Hat"] = { class = "Hat", rarity = 5, file = "Hat_unclesam-resources.assets-4020.png", description = "[[Special Cosmetics#Independence Day 2019|Independence Day 2019]]", group = 6650, }, ["Mountie Outfit"] = { class = "Clothes", rarity = 5, file = "Clothes_mountie-resources.assets-3210.png", description = "[[Special Cosmetics#Canada Day 2019|Canada Day 2019]]", group = 11650, }, ["Uncle Sam Outfit"] = { class = "Clothes", rarity = 5, file = "Clothes_suit_unclesam-resources.assets-3571.png", description = "[[Special Cosmetics#Independence Day 2019|Independence Day 2019]]", group = 11600, }, ["Super Rat"] = { class = "Character", rarity = 0, file = "Char_rat-resources.assets-4564.png", baseAnimal = "Rat", currencies = { { name = "DNA", amount = 100, }, { name = "Serum", amount = 24, }, }, }, ["Super Black Rat"] = { class = "CharacterSkin", rarity = 1, file = "Char_rat_black-resources.assets-4003.png", baseAnimal = "Rat", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 35, }, }, }, ["Super Albino Rat"] = { class = "CharacterSkin", rarity = 1, file = "Char_rat_white-resources.assets-3670.png", baseAnimal = "Rat", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 35, }, }, }, ["Super Spotted Rat"] = { class = "CharacterSkin", rarity = 2, file = "Char_rat_spotted-resources.assets-3699.png", baseAnimal = "Rat", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Super Mouse"] = { class = "CharacterSkin", rarity = 3, file = "Char_rat_mouse-resources.assets-3797.png", baseAnimal = "Rat", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 65, }, }, }, ["Super Bat"] = { class = "Character", rarity = 0, file = "Char_bat-resources.assets-915.png", baseAnimal = "Bat", currencies = { { name = "DNA", amount = 210, }, { name = "Serum", amount = 55, }, }, }, ["Super Navy Bat"] = { class = "CharacterSkin", rarity = 1, file = "Char_bat_blue-resources.assets-932.png", baseAnimal = "Bat", currencies = { { name = "DNA", amount = 310, }, { name = "Serum", amount = 82, }, }, }, ["Super Shadow Bat"] = { class = "CharacterSkin", rarity = 2, file = "Char_bat_grey-resources.assets-1873.png", baseAnimal = "Bat", currencies = { { name = "DNA", amount = 410, }, { name = "Serum", amount = 115, }, }, }, ["Super White Bat"] = { class = "CharacterSkin", rarity = 3, file = "Char_bat_white-resources.assets-3662.png", baseAnimal = "Bat", currencies = { { name = "DNA", amount = 510, }, { name = "Serum", amount = 138, }, }, group = 50, }, ["Super Fruit Bat"] = { class = "CharacterSkin", rarity = 3, file = "Char_bat_fruit-resources.assets-4605.png", baseAnimal = "Bat", currencies = { { name = "DNA", amount = 510, }, { name = "Serum", amount = 138, }, }, group = 100, }, ["Super Vampire Bat"] = { class = "CharacterSkin", rarity = 4, file = "Char_bat_vampire-resources.assets-1418.png", baseAnimal = "Bat", currencies = { { name = "DNA", amount = 595, }, { name = "Serum", amount = 155, }, }, }, ["Banan Hat"] = { class = "Hat", rarity = 3, file = "Hat banana peel.png", description = "[[Super Animal Mods|Tama Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 4250, }, ["Super Pomeranian"] = { class = "CharacterSkin", rarity = 3, file = "Char_dog_pomeranian-resources.assets-5080.png", description = "<small>''BuffPup Super Content Creator Item''</small>", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 40, }, }, }, ["Paw Star Tank Top"] = { class = "Clothes", rarity = 3, file = "Paw Star Tank Top.png", description = "''BuffPup Super Content Creator Item''", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 7200, }, ["Yellow Lei Hula Skirt"] = { class = "Clothes", rarity = 3, original_rarity = 5, file = "Clothes_bikini_hawaii.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, original_currency = { name = "Fruit Baskets", amount = 200, }, group = 12150, }, ["Pink Lei Hula Skirt"] = { class = "Clothes", rarity = 3, file = "Clothes_bikini_hula.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 7450, }, ["Floral Swimsuit"] = { class = "Clothes", rarity = 2, original_rarity = 5, file = "Clothes_bikini_flower.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Fruit Baskets", amount = 10, }, group = 4200, }, ["Polka Dot Swimsuit"] = { class = "Clothes", rarity = 2, file = "Clothes_bikini_polkadots_pink.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 4250, }, ["Striped Swimsuit"] = { class = "Clothes", rarity = 2, file = "Clothes_bikini_stripes.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 4300, }, ["Lifebuoy"] = { class = "Clothes", rarity = 1, original_rarity = 5, file = "Clothes_lifebuoy.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, original_currency = { name = "Fruit Baskets", amount = 90, }, group = 12350, }, ["Fish Swim Shorts"] = { class = "Clothes", rarity = 2, original_rarity = 5, file = "Clothes_swimshorts_fish.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Fruit Baskets", amount = 5, }, group = 12300, }, ["Floral Swim Shorts"] = { class = "Clothes", rarity = 1, file = "Clothes_swimshorts_flower.png", description = "[[Level-Up Random Drop]]", group = 2650, }, ["Palm Swim Shorts"] = { class = "Clothes", rarity = 2, file = "Clothes_swimshorts_palm.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 4700, }, ["Teal Tank Top"] = { class = "Clothes", rarity = 0, file = "Clothes_tanktop_blue.png", description = "[[Level-Up Random Drop]]", group = 250, }, ["Green Tank Top"] = { class = "Clothes", rarity = 0, file = "Clothes_tanktop_green.png", description = "[[Level-Up Random Drop]]", group = 300, }, ["Orange Tank Top"] = { class = "Clothes", rarity = 0, file = "Clothes_tanktop_orange.png", description = "[[Level-Up Random Drop]]", group = 350, }, ["Purple Tank Top"] = { class = "Clothes", rarity = 0, file = "Clothes_tanktop_purple.png", description = "[[Level-Up Random Drop]]", group = 400, }, ["Rebellion Tank Top"] = { class = "Clothes", rarity = 1, file = "Clothes_tanktop_rebellion.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 2100, }, ["SAW Tank Top"] = { class = "Clothes", rarity = 1, file = "Clothes_tanktop_SAW.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 2150, }, ["Straw Umbrella"] = { class = "Umbrella", rarity = 2, original_rarity = 5, file = "Umbrella straw.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Fruit Baskets", amount = 60, }, group = 2900, }, ["Duck Floatie"] = { class = "Clothes", rarity = 2, original_rarity = 5, file = "Clothes_floatie_duck.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Fruit Baskets", amount = 350, }, group = 12400, }, ["White Apron"] = { class = "Neck", rarity = 1, original_rarity = 5, file = "Clothes_apron.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, original_currency = { name = "Fruit Baskets", amount = 20, }, group = 2700, }, ["Hot Dog Fork"] = { class = "MeleeSkin", rarity = 2, original_rarity = 5, file = "Melee_bbq_fork.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Fruit Baskets", amount = 40, }, group = 1800, }, ["Popsicle"] = { class = "MeleeSkin", rarity = 2, original_rarity = 5, file = "Melee_popsicle.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Fruit Baskets", amount = 250, }, group = 4900, }, ["Meat Skewer"] = { class = "MeleeSkin", rarity = 2, original_rarity = 5, file = "Melee_skewer.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Fruit Baskets", amount = 120, }, group = 1850, }, ["Fruit Skewer"] = { class = "MeleeSkin", rarity = 2, original_rarity = 5, file = "Melee_skewer_fruit.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Fruit Baskets", amount = 150, }, group = 4950, }, ["Super Westie"] = { class = "CharacterSkin", rarity = 4, file = "Char_dog_westie-resources.assets-1956.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 60, }, }, }, ["Shia's Headband"] = { class = "Hat", rarity = 2, file = "Hat_headband_shia-resources.assets-1425.png", description = "''ShiaBun Super Content Creator Item''<br>[[Level-Up Random Drop]]", group = 1850, }, ["Carrot Gravestone"] = { class = "Gravestone", rarity = 4, file = "Gravestone_9-resources.assets-1831.png", description = "''ShiaBun Super Content Creator Item''", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 1400, }, ["Blue Deagle"] = { class = "GunSkin", rarity = 1, file = "Gun_deagle_blue.png", group = 3, description = "30 Deagle kills", link = "Deagle", }, ["Green Deagle"] = { class = "GunSkin", rarity = 0, file = "Gun_deagle_green.png", group = 2, description = "15 Deagle kills", link = "Deagle", }, ["Pink Deagle"] = { class = "GunSkin", rarity = 2, file = "Gun_deagle_pink.png", group = 7, description = "150 Deagle kills", super_edition = 1, link = "Deagle", framed = 1, }, ["Purple Deagle"] = { class = "GunSkin", rarity = 1, file = "Gun_deagle_purple.png", group = 5, description = "75 Deagle kills", super_edition = 1, link = "Deagle", framed = 1, }, ["Red Deagle"] = { class = "GunSkin", rarity = 1, file = "Gun_deagle_red.png", group = 4, description = "50 Deagle kills", link = "Deagle", }, ["Yellow Deagle"] = { class = "GunSkin", rarity = 2, file = "Gun_deagle_yellow.png", group = 6, description = "110 Deagle kills", super_edition = 1, link = "Deagle", framed = 1, }, ["Orange Deagle"] = { class = "GunSkin", rarity = 0, file = "Gun_deagle_orange.png", group = 1, description = "5 Deagle kills", link = "Deagle", }, ["Carrot Onesie"] = { class = "Clothes", rarity = 3, file = "Clothes_onesie_carrot-resources.assets-4647.png", description = "''ShiaBun Super Content Creator Item''", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 7600, }, ["Fruit Hat"] = { class = "Hat", rarity = 3, original_rarity = 5, file = "Hat fruit hat.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, original_currency = { name = "Fruit Baskets", amount = 500, }, group = 6700, }, ["Pro Gamer Hat"] = { class = "Hat", rarity = 3, file = "Hat_newsboy_pink-resources.assets-5283.png", description = "[[Super Animal Mods|TeTo Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 4350, }, ["Super Twilight Fox"] = { class = "CharacterSkin", rarity = 3, file = "Char_fox_dark-resources.assets-5322.png", baseAnimal = "Fox", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 40, }, }, group = 100, }, ["Super Emerald Fox"] = { class = "CharacterSkin", rarity = 2, file = "Char_fox_green-resources.assets-631.png", baseAnimal = "Fox", currencies = { { name = "DNA", amount = 120, }, { name = "Serum", amount = 28, }, }, group = 100, }, ["Super Berry Gummy Bear"] = { class = "CharacterSkin", rarity = 3, file = "Char_bear_gummy_blue-resources.assets-3422.png", baseAnimal = "Bear", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 35, }, }, group = 100, }, ["Super Lime Gummy Bear"] = { class = "CharacterSkin", rarity = 3, file = "Char_bear_gummy_green-resources.assets-1239.png", baseAnimal = "Bear", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 35, }, }, group = 150, }, ["Super Orange Gummy Bear"] = { class = "CharacterSkin", rarity = 3, file = "Char_bear_gummy_orange-resources.assets-675.png", baseAnimal = "Bear", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 35, }, }, group = 200, }, ["Super Cherry Gummy Bear"] = { class = "CharacterSkin", rarity = 3, file = "Char_bear_gummy_red-resources.assets-1880.png", baseAnimal = "Bear", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 35, }, }, group = 250, }, ["Super Bubblegum Skullcat"] = { class = "CharacterSkin", rarity = 3, file = "Char_skullcat_pink-resources.assets-2457.png", baseAnimal = "Skullcat", currencies = { { name = "DNA", amount = 145, }, { name = "Serum", amount = 42, }, }, group = 100, }, ["Super Banana Deer"] = { class = "CharacterSkin", rarity = 2, file = "Char_deer_yellow-resources.assets-868.png", baseAnimal = "Deer", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 38, }, }, }, ["Super Moose"] = { class = "CharacterSkin", rarity = 4, file = "Char-deer-moose.png", baseAnimal = "Deer", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 68, }, }, }, ["Super Pink Raccoon"] = { class = "CharacterSkin", rarity = 1, file = "Char_raccoon_pink-resources.assets-405.png", baseAnimal = "Raccoon", currencies = { { name = "DNA", amount = 115, }, { name = "Serum", amount = 25, }, }, }, ["Super Crank Raccoon"] = { class = "CharacterSkin", rarity = 3, file = "Crank Raccoon.png", description = "<small>''CrankGameplays Streamer Item''</small>", baseAnimal = "Raccoon", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 60, }, }, }, ["Super Iced Sloth"] = { class = "CharacterSkin", rarity = 3, file = "Char_sloth_ice-resources.assets-4692.png", baseAnimal = "Sloth", currencies = { { name = "DNA", amount = 290, }, { name = "Serum", amount = 80, }, }, }, ["Super Peach Sloth"] = { class = "CharacterSkin", rarity = 3, file = "Char_sloth_peach-resources.assets-305.png", baseAnimal = "Sloth", currencies = { { name = "DNA", amount = 290, }, { name = "Serum", amount = 80, }, }, }, ["Super Peach Pigeon"] = { class = "CharacterSkin", rarity = 4, file = "Char pigeon peach.png", baseAnimal = "Pigeon", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 65, }, }, }, ["Super Two-toed Sloth"] = { class = "CharacterSkin", rarity = 4, file = "Char_sloth_twotoed-resources.assets-1154.png", baseAnimal = "Sloth", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Persian Cat"] = { class = "CharacterSkin", rarity = 3, file = "Char_cat_persian-resources.assets-5019.png", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 42, }, }, }, ["Super Scottish Fold"] = { class = "CharacterSkin", rarity = 3, file = "Char_cat_scottish_fold-resources.assets-2903.png", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 42, }, }, }, ["Super Border Collie"] = { class = "CharacterSkin", rarity = 3, file = "Char-dog-border-collie.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 42, }, }, }, ["Super Licorice Red Panda"] = { class = "CharacterSkin", rarity = 1, file = "Char redpanda dark-resources.assets-1707.png", baseAnimal = "Red Panda", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 72, }, }, group = 100, }, ["Super Lime Red Panda"] = { class = "CharacterSkin", rarity = 1, file = "Char_redpanda_lime-resources.assets-4032.png", baseAnimal = "Red Panda", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 72, }, }, group = 150, }, ["Super Grape Red Panda"] = { class = "CharacterSkin", rarity = 2, file = "Char_redpanda_pastel-resources.assets-1581.png", baseAnimal = "Red Panda", currencies = { { name = "DNA", amount = 330, }, { name = "Serum", amount = 90, }, }, }, ["Super Blue Wolf"] = { class = "CharacterSkin", rarity = 1, file = "Char_wolf_blue-resources.assets-1824.png", baseAnimal = "Wolf", currencies = { { name = "DNA", amount = 225, }, { name = "Serum", amount = 65, }, }, }, ["Super Desert Wolf"] = { class = "CharacterSkin", rarity = 2, file = "Char wolf desert-resources.assets-2591.png", baseAnimal = "Wolf", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 85, }, }, }, ["Super Flaming Wolf"] = { class = "CharacterSkin", rarity = 3, file = "Char_wolf_fire-resources.assets-568.png", baseAnimal = "Wolf", currencies = { { name = "DNA", amount = 390, }, { name = "Serum", amount = 105, }, }, }, ["Super Blue Steel Hyena"] = { class = "CharacterSkin", rarity = 3, file = "Char_hyena_striped_blue-resources.assets-5471.png", baseAnimal = "Hyena", currencies = { { name = "DNA", amount = 480, }, { name = "Serum", amount = 125, }, }, }, ["Super Ram"] = { class = "CharacterSkin", rarity = 4, file = "Char_sheep_ram-resources.assets-5102.png", baseAnimal = "Sheep", currencies = { { name = "DNA", amount = 395, }, { name = "Serum", amount = 105, }, }, }, ["Super Babirusa"] = { class = "CharacterSkin", rarity = 3, file = "Char_boar_babirusa-resources.assets-4572.png", baseAnimal = "Boar", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Boarlet"] = { class = "CharacterSkin", rarity = 3, file = "Char_boar_baby-resources.assets-4763.png", baseAnimal = "Boar", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Flaming Boar"] = { class = "CharacterSkin", rarity = 4, file = "Char_boar_fire-resources.assets-512.png", baseAnimal = "Boar", currencies = { { name = "DNA", amount = 450, }, { name = "Serum", amount = 120, }, }, }, ["Super Enchanted Boar"] = { class = "CharacterSkin", rarity = 2, file = "Char_boar_teal-resources.assets-201.png", baseAnimal = "Boar", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 85, }, }, }, ["Super Pine Marten"] = { class = "CharacterSkin", rarity = 3, file = "Char_ferret_marten-resources.assets-171.png", baseAnimal = "Ferret", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 60, }, }, }, ["Squid Hat"] = { class = "Hat", rarity = 5, file = "Hat squid-resources.assets-233.png", description = "[[Special_Cosmetics#Super_Squids|Super Squids]]", group = 6750, }, ["Super Frozen Skullcat"] = { class = "CharacterSkin", rarity = 3, file = "Char_skullcat_ice-resources.assets-3331.png", baseAnimal = "Skullcat", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 45, }, }, group = 150, }, ["Super Woodland Raccoon"] = { class = "CharacterSkin", rarity = 2, file = "Char_raccoon_woodland-resources.assets-1089.png", baseAnimal = "Raccoon", currencies = { { name = "DNA", amount = 155, }, { name = "Serum", amount = 42, }, }, }, ["Super Golden Tabby Tiger"] = { class = "CharacterSkin", rarity = 2, file = "Char_tiger_golden_tabby-resources.assets-5082.png", baseAnimal = "Tiger", currencies = { { name = "DNA", amount = 120, }, { name = "Serum", amount = 35, }, }, }, ["Super Tricolor Corgi"] = { class = "CharacterSkin", rarity = 4, file = "Char_dog_corgi_tricolor-resources.assets-2656.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 220, }, { name = "Serum", amount = 62, }, }, }, ["Super Weimaraner"] = { class = "CharacterSkin", rarity = 2, file = "Char_dog_labrador_weimaraner-resources.assets-5432.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Egg Umbrella"] = { class = "Umbrella", rarity = 5, file = "Umbrella_egg.png", description = "''Northernlion Streamer Item''<br>[[Special Cosmetics#Northernlion Live Super Show|Northernlion Live Super Show]]", group = 2950, }, ["Josh Umbrella"] = { class = "Umbrella", rarity = 5, file = "Umbrella_base_josh.png", description = "''JSmithOTI Streamer Item''<br>[[Special Cosmetics#Northernlion Live Super Show|Northernlion Live Super Show]]", group = 3000, }, ["Skull Beanie"] = { class = "Hat", rarity = 5, file = "Hat_beanie_skull.png", description = "''FlackBlag Streamer Item''<br>[[Special Cosmetics#Northernlion Live Super Show|Northernlion Live Super Show]]", group = 6300, }, ["Graduate Hat"] = { class = "Hat", rarity = 3, file = "Hat graduate.png", description = "[[Super Animal Mods|XG Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 4400, }, ["Jeans Vest"] = { class = "Clothes", rarity = 5, file = "Clothes_jeanvest.png", description = "''HCJustin Streamer Item''<br>[[Special Cosmetics#Northernlion Live Super Show|Northernlion Live Super Show]]", group = 12450, }, ["Police Outfit"] = { class = "Clothes", rarity = 5, file = "Clothes_police.png", description = "''AlpacaPatrol Streamer Item''<br>[[Special Cosmetics#Northernlion Live Super Show|Northernlion Live Super Show]]", group = 12500, }, ["RedShift Outfit"] = { class = "Clothes", rarity = 3, file = "RedShift Outfit.png", description = "[[Super Animal Mods|RedShift Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 8000, }, ["Velvet Robe"] = { class = "Clothes", rarity = 5, file = "Clothes_robe_velvet.png", description = "''BaerTaffy Streamer Item''<br>[[Special Cosmetics#Northernlion Live Super Show|Northernlion Live Super Show]]", group = 12550, }, ["Red Button Up Shirt"] = { class = "Clothes", rarity = 5, file = "Clothes_shirt_fullred.png", description = "''Dan Gheesling Streamer Item''<br>[[Special Cosmetics#Northernlion Live Super Show|Northernlion Live Super Show]]", group = 11850, }, ["Red Striped Shirt"] = { class = "Clothes", rarity = 5, file = "Clothes_shirt_redstriped.png", description = "''Michaelalfox Streamer Item''<br>[[Special Cosmetics#Northernlion Live Super Show|Northernlion Live Super Show]]", group = 11900, }, ["Egg Tee"] = { class = "Clothes", rarity = 1, file = "Clothes_tshirt_egg-resources.assets-1468.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 1550, }, ["Super Chicken"] = { class = "Character", rarity = 0, file = "Char_chicken-resources.assets-3337.png", baseAnimal = "Chicken", currencies = { { name = "DNA", amount = 100, }, { name = "Serum", amount = 24, }, }, }, ["Super Cow"] = { class = "Character", rarity = 0, file = "Char_cow-resources.assets-4835.png", baseAnimal = "Cow", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Super Banana Cow"] = { class = "Character", rarity = 1, file = "Char_cow_banana-resources.assets-5367.png", baseAnimal = "Cow", currencies = { { name = "DNA", amount = 225, }, { name = "Serum", amount = 60, }, }, }, ["Super Chocolate Cow"] = { class = "Character", rarity = 1, file = "Char_cow_chocolate-resources.assets-2344.png", baseAnimal = "Cow", currencies = { { name = "DNA", amount = 225, }, { name = "Serum", amount = 60, }, }, }, ["Super Matcha Cow"] = { class = "Character", rarity = 2, file = "Char_cow_matcha-resources.assets-3945.png", baseAnimal = "Cow", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Super Neapolitan Cow"] = { class = "Character", rarity = 2, file = "Char_cow_neapolitan-resources.assets-5583.png", baseAnimal = "Cow", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Super Strawberry Cow"] = { class = "Character", rarity = 2, file = "Char_cow_strawberry-resources.assets-1411.png", baseAnimal = "Cow", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Chicken DNA"] = { class = "DNA", rarity = 0, name = "Super Chicken DNA", file = "DNA_Chicken.png", }, ["Cow DNA"] = { class = "DNA", rarity = 0, name = "Super Cow DNA", }, ["Horse DNA"] = { class = "DNA", rarity = 0, name = "Super Horse DNA", file = "DNA_Horse.png", }, ["Super Black Chicken"] = { class = "CharacterSkin", rarity = 2, file = "Char_chicken_black-resources.assets-4433.png", baseAnimal = "Chicken", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 52, }, }, }, ["Super Fried Chicken"] = { class = "CharacterSkin", rarity = 4, file = "Char_chicken_fried-resources.assets-220.png", baseAnimal = "Chicken", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 78, }, }, group = 200, }, ["Super Orange Chicken"] = { class = "CharacterSkin", rarity = 1, file = "Char_chicken_red-resources.assets-2349.png", baseAnimal = "Chicken", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 38, }, }, }, ["Super Rooster"] = { class = "CharacterSkin", rarity = 3, file = "Char_chicken_rooster-resources.assets-3273.png", baseAnimal = "Chicken", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 68, }, }, }, ["Super Spicy Chicken"] = { class = "CharacterSkin", rarity = 2, file = "Char_chicken_spicy-resources.assets-5404.png", baseAnimal = "Chicken", currencies = { { name = "DNA", amount = 210, }, { name = "Serum", amount = 55, }, }, }, ["Super Bull"] = { class = "Character", rarity = 3, file = "Char_cow_bull-resources.assets-3157.png", baseAnimal = "Cow", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Latte Cow"] = { class = "Character", rarity = 1, file = "Char_cow_latte-resources.assets-4882.png", baseAnimal = "Cow", currencies = { { name = "DNA", amount = 225, }, { name = "Serum", amount = 60, }, }, }, ["Super Stinky Tofu Cow"] = { class = "Character", rarity = 2, file = "Char_cow_stinky_tofu-resources.assets-2034.png", baseAnimal = "Cow", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Super Vanilla Cow"] = { class = "Character", rarity = 1, file = "Char_cow_vanilla-resources.assets-3949.png", baseAnimal = "Cow", currencies = { { name = "DNA", amount = 225, }, { name = "Serum", amount = 60, }, }, }, ["Super Horse"] = { class = "Character", rarity = 0, file = "Char_horse-resources.assets-6070.png", baseAnimal = "Horse", currencies = { { name = "DNA", amount = 185, }, { name = "Serum", amount = 50, }, }, }, ["Super Black Stallion"] = { class = "Character", rarity = 1, file = "Char_horse_black-resources.assets-6216.png", baseAnimal = "Horse", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 72, }, }, }, ["Super Pinto Horse"] = { class = "Character", rarity = 3, file = "Char_horse_pinto-resources.assets-2938.png", baseAnimal = "Horse", currencies = { { name = "DNA", amount = 420, }, { name = "Serum", amount = 115, }, }, }, ["Super White Stallion"] = { class = "Character", rarity = 1, file = "Char_horse_white-resources.assets-4664.png", baseAnimal = "Horse", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 72, }, }, }, ["Blue Poison Dart Gun"] = { class = "GunSkin", rarity = 1, name = "Dogna's Blue Dart Gun", file = "Gun_dart_blue-resources.assets-723.png", group = 3, description = "20 Dogna's Dart Gun kills", link = "Dogna's Dart Gun", }, ["Green Poison Dart Gun"] = { class = "GunSkin", rarity = 0, name = "Dogna's Green Dart Gun", file = "Gun_dart_green-resources.assets-235.png", group = 2, description = "10 Dogna's Dart Gun kills", link = "Dogna's Dart Gun", }, ["Orange Poison Dart Gun"] = { class = "GunSkin", rarity = 0, name = "Dogna's Orange Dart Gun", file = "Gun_dart_orange-resources.assets-2005.png", group = 1, description = "5 Dogna's Dart Gun kills", link = "Dogna's Dart Gun", }, ["Pink Poison Dart Gun"] = { class = "GunSkin", rarity = 2, name = "Dogna's Pink Dart Gun", file = "Gun_dart_pink-resources.assets-1022.png", group = 7, description = "110 Dogna's Dart Gun kills", super_edition = 1, link = "Dogna's Dart Gun", framed = 1, }, ["Purple Poison Dart Gun"] = { class = "GunSkin", rarity = 1, name = "Dogna's Purple Dart Gun", file = "Gun_dart_purple-resources.assets-4966.png", group = 5, description = "55 Dogna's Dart Gun kills", super_edition = 1, link = "Dogna's Dart Gun", framed = 1, }, ["Red Poison Dart Gun"] = { class = "GunSkin", rarity = 1, name = "Dogna's Red Dart Gun", file = "Gun_dart_red-resources.assets-2866.png", group = 4, description = "35 Dogna's Dart Gun kills", link = "Dogna's Dart Gun", }, ["Yellow Poison Dart Gun"] = { class = "GunSkin", rarity = 2, name = "Dogna's Yellow Dart Gun", file = "Gun_dart_yellow-resources.assets-2561.png", group = 6, description = "80 Dogna's Dart Gun kills", super_edition = 1, link = "Dogna's Dart Gun", framed = 1, }, ["PBJT!"] = { class = "Emote", rarity = 2, file = "Pbj_time.png", }, ["Tap Dance"] = { class = "Emote", rarity = 3, file = "Tapdance.png", }, ["Yawn"] = { class = "Emote", rarity = 1, file = "Yawn.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, }, ["Parrot DNA"] = { class = "DNA", rarity = 0, name = "Super Parrot DNA", file = "DNA_Parrot.png", }, ["Super Parrot"] = { class = "Character", rarity = 0, file = "Char_parrot-resources.assets-632.png", baseAnimal = "Parrot", currencies = { { name = "DNA", amount = 185, }, { name = "Serum", amount = 45, }, }, }, ["Super Blue and Yellow Macaw"] = { class = "Character", rarity = 1, file = "Char_parrot_blue-resources.assets-147.png", baseAnimal = "Parrot", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 72, }, }, group = 100, }, ["Super Cockatiel"] = { class = "Character", rarity = 2, file = "Char_parrot_cockatiel-resources.assets-1475.png", baseAnimal = "Parrot", currencies = { { name = "DNA", amount = 330, }, { name = "Serum", amount = 90, }, }, }, ["Super Cockatoo"] = { class = "Character", rarity = 3, file = "Char_parrot_cockatoo-resources.assets-1322.png", baseAnimal = "Parrot", currencies = { { name = "DNA", amount = 410, }, { name = "Serum", amount = 110, }, }, group = 50, }, ["Super Hyacinth Macaw"] = { class = "Character", rarity = 2, file = "Char_parrot_hyacinth-resources.assets-506.png", baseAnimal = "Parrot", currencies = { { name = "DNA", amount = 330, }, { name = "Serum", amount = 90, }, }, }, ["Super Green Parrot"] = { class = "Character", rarity = 1, file = "Char_parrot_green-resources.assets-225.png", baseAnimal = "Parrot", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 72, }, }, group = 50, }, ["Super Lynx"] = { class = "CharacterSkin", rarity = 4, file = "char-cat-lynx.png", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 220, }, { name = "Serum", amount = 62, }, }, }, ["Super Bobcat"] = { class = "CharacterSkin", rarity = 4, file = "char-cat-bobcat.png", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 210, }, { name = "Serum", amount = 60, }, }, }, ["Super Skelecat"] = { class = "CharacterSkin", rarity = 4, file = "Char skullcat skeleton-resources.assets-1210.png", baseAnimal = "Skullcat", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, group = 50, }, ["Super Calavera Skullcat"] = { class = "CharacterSkin", rarity = 4, file = "Char-skullcat-calavera.png", baseAnimal = "Skullcat", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, group = 100, }, ["Super Alebrije Tiger"] = { class = "CharacterSkin", rarity = 4, file = "Char_tiger_alebrijes-resources.assets-333.png", baseAnimal = "Tiger", currencies = { { name = "DNA", amount = 210, }, { name = "Serum", amount = 60, }, }, group = 100, }, ["Super Alebrije Blue Jay"] = { class = "CharacterSkin", rarity = 4, file = "Char_bluejay_alebrijes-resources.assets-1068.png", baseAnimal = "Blue Jay", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 64, }, }, }, ["Super Alebrije Monkey"] = { class = "CharacterSkin", rarity = 4, file = "Char_monkey_alebrijes-resources.assets-1442.png", baseAnimal = "Monkey", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Super Pumpkin Panda"] = { class = "CharacterSkin", rarity = 4, file = "Char_panda_pumpkin-resources.assets-1118.png", baseAnimal = "Panda", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Alebrije Otter"] = { class = "CharacterSkin", rarity = 4, file = "Char_otter_alebrijes-resources.assets-460.png", baseAnimal = "Otter", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Werewolf"] = { class = "CharacterSkin", rarity = 4, file = "Char_wolf_werewolf-resources.assets-1628.png", baseAnimal = "Wolf", currencies = { { name = "DNA", amount = 450, }, { name = "Serum", amount = 120, }, }, }, ["Witch's Broom"] = { class = "MeleeSkin", rarity = 1, original_rarity = 5, file = "Melee_broom_witch-resources.assets-1678.png", event = "Super Halloween 2019", group = 5000, store = "carl", currency = { name = "Carl Coins", amount = 300, }, original_currency = { name = "Candy Corn", amount = 225, }, }, ["Pirate's Cutlass"] = { class = "MeleeSkin", rarity = 2, original_rarity = 5, file = "Melee_cutlass-resources.assets-1519.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Candy Corn", amount = 225, }, group = 1900, }, ["Machete"] = { class = "MeleeSkin", rarity = 2, original_rarity = 5, file = "Melee_machete-resources.assets-678.png", event = "Super Halloween 2019", group = 5050, store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Candy Corn", amount = 225, }, }, ["Banana Costume"] = { class = "Clothes", rarity = 3, original_rarity = 5, file = "Clothes_banana-resources.assets-1461.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, original_currency = { name = "Candy Corn", amount = 775, }, group = 8050, }, ["Spider Dress"] = { class = "Clothes", rarity = 5, original_rarity = 5, file = "Clothes_dress_spider-resources.assets-620.png", event = "Super Halloween 2019", original_currency = { name = "Candy Corn", amount = 650, }, group = 12600, }, ["Witch Costume"] = { class = "Clothes", rarity = 3, original_rarity = 5, file = "Clothes witch outfit-resources.assets-845.png", event = "Super Halloween 2019", group = 12650, store = "carl", currency = { name = "Carl Coins", amount = 1500, }, original_currency = { name = "Candy Corn", amount = 650, }, }, ["Mariachi Outfit"] = { class = "Clothes", rarity = 5, file = "Clothes_mariachi_outfit-resources.assets-654.png", description = "[[Special_Cosmetics#Day_Of_The_Dead_2019|Day Of The Dead 2019]]", group = 12700, }, ["Skeleton Costume"] = { class = "Clothes", rarity = 5, original_rarity = 5, file = "Clothes_skeleton_costume-resources.assets-1068.png", event = "Super Halloween 2019", original_currency = { name = "Candy Corn", amount = 575, }, group = 12750, }, ["Halloween Tee"] = { class = "Clothes", rarity = 1, original_rarity = 5, name = "Howloween Tee", file = "Clothes_tshirt_halloween-resources.assets-1744.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, original_currency = { name = "Candy Corn", amount = 50, }, group = 3100, name = "Howloween Tee", }, ["Vampire Costume"] = { class = "Clothes", rarity = 3, original_rarity = 5, file = "Clothes_vampire_outfit-resources.assets-233.png", event = "Super Halloween 2019", group = 12800, store = "carl", currency = { name = "Carl Coins", amount = 1500, }, original_currency = { name = "Candy Corn", amount = 775, }, }, ["Mariachi Hat"] = { class = "Hat", rarity = 5, file = "Hat_mariachi-resources.assets-1281.png", description = "[[Special_Cosmetics#Day_Of_The_Dead_2019|Day Of The Dead 2019]]", group = 6800, }, ["Witch Hat"] = { class = "Hat", rarity = 2, original_rarity = 5, file = "Hat_witch-resources.assets-1182.png", event = "Super Halloween 2019", group = 6850, store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Candy Corn", amount = 350, }, }, ["Pizza Slice"] = { class = "Hat", rarity = 3, file = "Hat_pizzaslice.png", description = "[[Super Animal Mods|Mango Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 4450, }, ["Killer Hockey Mask"] = { class = "Glasses", rarity = 3, original_rarity = 5, file = "Glasses_hockeymask-resources.assets-573.png", event = "Super Halloween 2019", group = 2850, store = "carl", currency = { name = "Carl Coins", amount = 1500, }, original_currency = { name = "Candy Corn", amount = 425, }, }, ["Black Masquerade Mask"] = { class = "Glasses", rarity = 2, original_rarity = 5, file = "Glasses_masquerade_mask_black-resources.assets-1420.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Candy Corn", amount = 50, }, group = 2050, }, ["Plumbrella"] = { class = "Umbrella", rarity = 3, file = "Umbrella_plumbrella.png", description = "[[Super Animal Mods|Plumfiggle Mod Item]]<br>[[Level-Up Random Drop]]", group = 1850, }, ["Pumpkin Umbrella"] = { class = "Umbrella", rarity = 2, original_rarity = 5, file = "Umbrella_pumpkin-resources.assets-458.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Candy Corn", amount = 75, }, group = 3050, }, ["Candy Corn Umbrella"] = { class = "Umbrella", rarity = 5, original_rarity = 5, file = "Umbrella candy corn-resources.assets-1681.png", event = "Super Halloween 2019", original_currency = { name = "Candy Corn", amount = 300, }, group = 3100, }, ["Spider Web Umbrella"] = { class = "Umbrella", rarity = 5, original_rarity = 5, file = "Umbrella_spider_web-resources.assets-903.png", event = "Super Halloween 2019", original_currency = { name = "Candy Corn", amount = 500, }, group = 3150, }, ["Super Bat Costume"] = { class = "Clothes", rarity = 3, original_rarity = 5, file = "Clothes_superbat-resources.assets-1283.png", event = "Super Halloween 2019", group = 12850, store = "carl", currency = { name = "Carl Coins", amount = 1500, }, original_currency = { name = "Candy Corn", amount = 775, }, }, ["Pumpkin Gravestone"] = { class = "Gravestone", rarity = 2, original_rarity = 5, file = "Gravestone_pumpkin-resources.assets-1615.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Candy Corn", amount = 75, }, group = 950, }, ["Mossy Gravestone"] = { class = "Gravestone", rarity = 1, file = "Gravestone_mossy-resources.assets-1079.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 250, }, ["Candlelit Gravestone"] = { class = "Gravestone", rarity = 3, file = "Gravestone_candles-resources.assets-251.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1200, }, ["SAW Helmet Gravestone"] = { class = "Gravestone", rarity = 2, file = "Gravestone_SAW-resources.assets-1757.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 550, }, ["Rebellion Helmet Gravestone"] = { class = "Gravestone", rarity = 2, file = "Gravestone_rebellion-resources.assets-1526.png", description = "[[Level-Up Random Drop]]", group = 600, }, ["Pizza Box Gravestone"] = { class = "Gravestone", rarity = 3, file = "Gravestone_pizzabox-resources.assets-591.png", description = "[[Level-Up Random Drop]]", group = 1250, }, ["Busted Gravestone"] = { class = "Gravestone", rarity = 0, file = "Gravestone_broken-resources.assets-1158.png", description = "[[Level-Up Random Drop]]", group = 150, }, ["Sad Flower Gravestone"] = { class = "Gravestone", rarity = 2, file = "Gravestone_flower-resources.assets-446.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 650, }, ["Pointy Fence Gravestone"] = { class = "Gravestone", rarity = 1, file = "Gravestone_iron_fence-resources.assets-1257.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 300, }, ["Super Bat Mask"] = { class = "Glasses", rarity = 2, original_rarity = 5, file = "Glasses_super_bat_mask-resources.assets-864.png", event = "Super Halloween 2019", group = 2900, store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Candy Corn", amount = 125, }, }, ["Super Scarecrow"] = { class = "CharacterSkin", rarity = 4, file = "Char raven scarecrow-resources.assets-609.png", baseAnimal = "Raven", currencies = { { name = "DNA", amount = 450, }, { name = "Serum", amount = 120, }, }, }, ["Pumpkin Hat"] = { class = "Hat", rarity = 2, original_rarity = 5, file = "Hat_pumpkin-resources.assets-362.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, original_currency = { name = "Candy Corn", amount = 125, }, group = 3350, }, ["Caveman Costume"] = { class = "Clothes", rarity = 3, original_rarity = 5, file = "Clothes_caveman-resources.assets-994.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, original_currency = { name = "Candy Corn", amount = 175, }, group = 12900, }, ["Blue JAG-7"] = { class = "GunSkin", rarity = 1, file = "Gun_jag7_blue.png", group = 3, description = "45 JAG-7 kills", link = "JAG-7", }, ["Green JAG-7"] = { class = "GunSkin", rarity = 0, file = "Gun_jag7_green.png", group = 2, description = "25 JAG-7 kills", link = "JAG-7", }, ["Orange JAG-7"] = { class = "GunSkin", rarity = 0, file = "Gun_jag7_orange.png", group = 1, description = "10 JAG-7 kills", link = "JAG-7", }, ["Pink JAG-7"] = { class = "GunSkin", rarity = 2, file = "Gun_jag7_pink.png", group = 7, description = "190 JAG-7 kills", super_edition = 1, link = "JAG-7", framed = 1, }, ["Purple JAG-7"] = { class = "GunSkin", rarity = 1, file = "Gun_jag7_purple.png", group = 5, description = "100 JAG-7 kills", super_edition = 1, link = "JAG-7", framed = 1, }, ["Red JAG-7"] = { class = "GunSkin", rarity = 1, file = "Gun_jag7_red.png", group = 4, description = "70 JAG-7 kills", link = "JAG-7", }, ["Yellow JAG-7"] = { class = "GunSkin", rarity = 2, file = "Gun_jag7_yellow.png", group = 6, description = "140 JAG-7 kills", super_edition = 1, link = "JAG-7", framed = 1, }, ["Red Tracksuit"] = { class = "Clothes", rarity = 1, file = "Clothes_tracksuit_red-resources.assets-672.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 2850, }, ["Blue Tracksuit"] = { class = "Clothes", rarity = 1, file = "Clothes_tracksuit_blue-resources.assets-1130.png", description = "[[Level-Up Random Drop]]", group = 2900, }, ["Black Tracksuit"] = { class = "Clothes", rarity = 2, file = "Clothes_tracksuit_black-resources.assets-351.png", description = "[[Level-Up Random Drop]]", group = 4800, }, ["Teal Retro Tracksuit"] = { class = "Clothes", rarity = 3, file = "Clothes_tracksuit_purple-resources.assets-748.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 8100, }, ["Pink Retro Tracksuit"] = { class = "Clothes", rarity = 3, file = "Clothes_tracksuit_pink-resources.assets-762.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 8150, }, ["Super Turkey"] = { class = "CharacterSkin", rarity = 4, file = "Char-turkey.png", baseAnimal = "Chicken", currencies = { { name = "DNA", amount = 310, }, { name = "Serum", amount = 80, }, }, group = 300, }, ["Leopard DNA"] = { class = "DNA", rarity = 0, name = "Super Leopard DNA", file = "DNA_Leopard.png", }, ["Super Leopard"] = { class = "Character", rarity = 0, file = "Char_leopard-resources.assets-1469.png", baseAnimal = "Leopard", currencies = { { name = "DNA", amount = 175, }, { name = "Serum", amount = 45, }, }, }, ["Super Jaguar"] = { class = "CharacterSkin", rarity = 1, file = "Char_leopard_jaguar-resources.assets-1447.png", baseAnimal = "Leopard", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 70, }, }, }, ["Super Sour Leopard"] = { class = "CharacterSkin", rarity = 2, file = "Char_leopard_sour-resources.assets-1544.png", baseAnimal = "Leopard", currencies = { { name = "DNA", amount = 325, }, { name = "Serum", amount = 90, }, }, }, ["Super Bubblegum Leopard"] = { class = "CharacterSkin", rarity = 3, file = "Char_leopard_bubblegum-resources.assets-1489.png", baseAnimal = "Leopard", currencies = { { name = "DNA", amount = 400, }, { name = "Serum", amount = 105, }, }, }, ["Super Snow Leopard"] = { class = "CharacterSkin", rarity = 4, file = "Char_leopard_snow.png", baseAnimal = "Leopard", currencies = { { name = "DNA", amount = 470, }, { name = "Serum", amount = 125, }, }, }, ["Fez"] = { class = "Hat", rarity = 2, file = "Hat_fez.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1950, }, ["Penguin DNA"] = { class = "DNA", rarity = 0, name = "Super Penguin DNA", file = "DNA_Pigeon.png", }, ["Super Penguin"] = { class = "Character", rarity = 0, file = "Char_penguin-resources.assets-1596.png", baseAnimal = "Penguin", currencies = { { name = "DNA", amount = 125, }, { name = "Serum", amount = 30, }, }, }, ["Super Penguin Chick"] = { class = "CharacterSkin", rarity = 1, file = "Char_penguin_baby-resources.assets-1253.png", baseAnimal = "Penguin", currencies = { { name = "DNA", amount = 170, }, { name = "Serum", amount = 45, }, }, }, ["Super Adelie Penguin"] = { class = "CharacterSkin", rarity = 2, file = "Char_penguin_adelie-resources.assets-1588.png", baseAnimal = "Penguin", currencies = { { name = "DNA", amount = 220, }, { name = "Serum", amount = 58, }, }, }, ["Super Macaroni Penguin"] = { class = "CharacterSkin", rarity = 3, file = "Char_penguin_eyebrows-resources.assets-590.png", baseAnimal = "Penguin", currencies = { { name = "DNA", amount = 290, }, { name = "Serum", amount = 80, }, }, }, ["Blue Thomas Gun"] = { class = "GunSkin", rarity = 1, file = "Gun-thomas_gun_blue.png", group = 3, description = "45 Thomas Gun kills", link = "Thomas Gun", }, ["Green Thomas Gun"] = { class = "GunSkin", rarity = 0, file = "Gun-thomas_gun_green.png", group = 2, description = "25 Thomas Gun kills", link = "Thomas Gun", }, ["Orange Thomas Gun"] = { class = "GunSkin", rarity = 0, file = "Gun-thomas_gun_orange.png", group = 1, description = "10 Thomas Gun kills", link = "Thomas Gun", }, ["Pink Thomas Gun"] = { class = "GunSkin", rarity = 2, file = "Gun-thomas_gun_pink.png", group = 7, description = "190 Thomas Gun kills", super_edition = 1, link = "Thomas Gun", framed = 1, }, ["Purple Thomas Gun"] = { class = "GunSkin", rarity = 1, file = "Gun-thomas_gun_purple.png", group = 5, description = "100 Thomas Gun kills", super_edition = 1, link = "Thomas Gun", framed = 1, }, ["Red Thomas Gun"] = { class = "GunSkin", rarity = 1, file = "Gun-thomas_gun_red.png", group = 4, description = "70 Thomas Gun kills", link = "Thomas Gun", }, ["Yellow Thomas Gun"] = { class = "GunSkin", rarity = 2, file = "Gun-thomas_gun_yellow.png", group = 6, description = "140 Thomas Gun kills", super_edition = 1, link = "Thomas Gun", framed = 1, }, ["Peppermint Thomas Gun"] = { class = "GunSkin", rarity = 5, original_rarity = 5, file = "Gun-thomas_gun_peppermint.png", event = "Super CRISPRmas 2019", original_description = "Get 8 Thomas Gun Kills", link = "Thomas Gun", }, ["Santa Beard"] = { class = "Beard", rarity = 5, original_rarity = 5, original_currency = { name = "Presents", amount = 300, }, file = "beard3_white-resources.assets-1071.png", event = "Super CRISPRmas 2019", group = 1900, }, ["Red Nose"] = { class = "Beard", rarity = 5, original_rarity = 5, original_currency = { name = "Presents", amount = 575, }, file = "moustache_rednose-resources.assets-833.png", event = "Super CRISPRmas 2019", group = 2000, }, ["Spearmint Candy Cane"] = { class = "MeleeSkin", rarity = 3, original_rarity = 5, file = "melee_candycane_green-resources.assets-753.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, original_currency = { name = "Presents", amount = 150, }, group = 5100, }, ["Festive Candy Cane"] = { class = "MeleeSkin", rarity = 2, original_rarity = 5, file = "Melee_candycane_mix-resources.assets-1361.png", event = "Super CRISPRmas 2019", original_description = "Get 4 Melee Kills", group = 5150, }, ["Christmas Tree"] = { class = "MeleeSkin", rarity = 5, original_rarity = 5, original_currency = { name = "Presents", amount = 700, }, name = "CRISPRmas Tree", file = "melee_christmas_tree-resources.assets-414.png", event = "Super CRISPRmas 2019", group = 5200, }, ["Firework"] = { class = "MeleeSkin", rarity = 2, original_rarity = 5, file = "Melee firework.png", original_description = "Get 8 Explosion/Grenade Kills", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 1950, }, ["Slay Bells"] = { class = "MeleeSkin", rarity = 3, original_rarity = 5, file = "melee_sleighbells-resources.assets-1227.png", event = "Super CRISPRmas 2019", group = 5250, store = "carl", currency = { name = "Carl Coins", amount = 1500, }, original_currency = { name = "Presents", amount = 375, }, }, ["Elf Outfit"] = { class = "Clothes", rarity = 3, original_rarity = 5, file = "Clothes_christmas_elf-resources.assets-1267.png", event = "Super CRISPRmas 2019", original_description = "Land on the Frozen Lake from [[SAR Tonight]] 7", group = 12950, }, ["Blue Down Jacket"] = { class = "Clothes", rarity = 3, original_rarity = 5, file = "clothes_down_jacket_blue-resources.assets-1106.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, original_currency = { name = "Presents", amount = 475, }, group = 8250, }, ["Pink Down Jacket"] = { class = "Clothes", rarity = 3, file = "Clothes_down_jacket_pink-resources.assets-901.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 8300, }, ["White Down Jacket"] = { class = "Clothes", rarity = 3, original_rarity = 5, file = "Clothes_down_jacket_white.png", original_description = "Visit Both Frozen Lakes in One Game", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 8350, }, ["Festive Lights Outfit"] = { class = "Clothes", rarity = 5, original_rarity = 5, file = "Clothes_christmas_lights-resources.assets-1086.png", event = "Super CRISPRmas 2019", original_description = "Get a Win in Duos", group = 13000, }, ["New Years Dress"] = { class = "Clothes", rarity = 5, original_rarity = 5, file = "Clothes_dress_new_years.png", event = "Super CRISPRmas 2019", original_description = "Get a Win in Squads", group = 13050, }, ["Red Plaid Scarf"] = { class = "Neck", rarity = 1, original_rarity = 5, file = "clothes_scarf_squares_red-resources.assets-420.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, original_currency = { name = "Presents", amount = 75, }, group = 2950, }, ["Blue Striped Scarf"] = { class = "Neck", rarity = 2, file = "Clothes_scarf_striped_blue-resources.assets-1164.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 4850, }, ["Blue Festive Sweater"] = { class = "Clothes", rarity = 2, file = "Clothes_sweater_xmas2019-resources.assets-1230.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 4900, }, ["CRISPRmas Sweater"] = { class = "Clothes", rarity = 1, original_rarity = 5, file = "clothes_sweater_CRISPRmas-resources.assets-452.png", event = "Super CRISPRmas 2019", original_description = "Use 8 Campfires", group = 13100, }, ["Wreath Necklace"] = { class = "Neck", rarity = 2, original_rarity = 5, file = "clothes_wreath-resources.assets-793.png", event = "Super CRISPRmas 2019", original_description = "Get a win in solos", group = 13150, }, ["Wreath Gravestone"] = { class = "Gravestone", rarity = 3, file = "Gravestone_wreath-resources.assets-756.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1300, }, ["Anniversary Cake Gravestone"] = { class = "Gravestone", rarity = 5, file = "Gravestone-cake.png", description = "[[Special_Cosmetics#Super_1_Year_Anniversary|Super 1 Year Anniversary]]", group = 1500, }, ["Antlers Headband"] = { class = "Hat", rarity = 5, original_rarity = 5, file = "Hat_antlers-resources.assets-1283.png", event = "Super CRISPRmas 2019", original_description = "Get 18 kills as a Deer or Moose", group = 6900, }, ["Elf Hat"] = { class = "Hat", rarity = 2, original_rarity = 5, file = "hat_christmas_elf-resources.assets-1259.png", event = "Super CRISPRmas 2019", original_description = "Land at Penguin Palace", group = 6950, }, ["Holly Bow"] = { class = "Hat", rarity = 1, original_rarity = 5, file = "hat_holly-resources.assets-322.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, original_currency = { name = "Presents", amount = 25, }, group = 800, }, ["New Years Party Hat"] = { class = "Hat", rarity = 5, original_rarity = 5, file = "Hat new years.png", event = "Super CRISPRmas 2019", original_description = "Drink 1,000 Health Juice", group = 7000, }, ["Pixile Party Hat"] = { class = "Hat", rarity = 5, file = "Hat party pixile.png", description = "[[Special_Cosmetics#Super_1_Year_Anniversary|Super 1 Year Anniversary]]<ref>Also available during the year 2 anniversary event.</ref>", group = 7050, }, ["Blue Pom Beanie"] = { class = "Hat", rarity = 2, original_rarity = 5, file = "Hat pombeanie blue.png", original_description = "Get 4 Hamster Ball Kills", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 2000, }, ["Orange Pom Beanie"] = { class = "Hat", rarity = 2, file = "Hat_pombeanie_orange-resources.assets-416.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 2050, }, ["Festive Umbrella"] = { class = "Umbrella", rarity = 1, original_rarity = 5, original_currency = { name = "Presents", amount = 225, }, file = "umbrella_christmas-resources.assets-623.png", event = "Super CRISPRmas 2019", group = 3200, }, ["Present Umbrella"] = { class = "Umbrella", rarity = 2, original_rarity = 5, file = "umbrella_present-resources.assets-665.png", event = "Super CRISPRmas 2019", original_description = "Open 5 Mole Crates", group = 3250, }, ["Snowflake Umbrella"] = { class = "Umbrella", rarity = 5, original_rarity = 5, file = "Umbrella_snowflakes-resources.assets-802.png", event = "Super CRISPRmas 2019", original_description = "Travel 5.0 KM on ice", group = 3300, }, ["Super Gingerbread Bear"] = { class = "CharacterSkin", rarity = 4, file = "Char-bear-gingerbread.png", baseAnimal = "Bear", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Super Pixile Tiger"] = { class = "CharacterSkin", rarity = 3, file = "Char_tiger_purple-resources.assets-1548.png", baseAnimal = "Tiger", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 42, }, }, group = 200, }, ["Super Blue Penguin"] = { class = "CharacterSkin", rarity = 1, file = "Char_penguin_blue-resources.assets-1132.png", baseAnimal = "Penguin", currencies = { { name = "DNA", amount = 160, }, { name = "Serum", amount = 45, }, }, }, ["Super Poison Penguin"] = { class = "CharacterSkin", rarity = 2, file = "Char_penguin_gray-resources.assets-1241.png", baseAnimal = "Penguin", currencies = { { name = "DNA", amount = 220, }, { name = "Serum", amount = 58, }, }, }, ["Super Bubblegum Penguin"] = { class = "CharacterSkin", rarity = 2, file = "Char_penguin_pink-resources.assets-988.png", baseAnimal = "Penguin", currencies = { { name = "DNA", amount = 230, }, { name = "Serum", amount = 58, }, }, }, ["Wooden Chopsticks"] = { class = "MeleeSkin", rarity = 2, file = "Melee chopsticks.png", description = "[[Special Cosmetics#Year of the Super Rat|Year of the Super Rat]]", group = 5300, store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Dadao"] = { class = "MeleeSkin", rarity = 3, file = "Melee dadao.png", description = "[[Special Cosmetics#Year of the Super Rat|Year of the Super Rat]]", group = 5350, store = "carl", currency = { name = "Carl Coins", amount = 1500, }, }, ["Earbud"] = { class = "MeleeSkin", rarity = 3, file = "Melee earpiece.png", description = "[[Super Animal Mods|Oyqy Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 3400, }, ["Red Paper Fan"] = { class = "MeleeSkin", rarity = 1, file = "Melee fan.png", description = "[[Special Cosmetics#Year of the Super Rat|Year of the Super Rat]]", group = 5400, store = "carl", currency = { name = "Carl Coins", amount = 300, }, }, ["Guandao"] = { class = "MeleeSkin", rarity = 5, file = "Melee guandao.png", description = "[[Special Cosmetics#Year of the Super Rat|Year of the Super Rat]]", group = 5450, }, ["Mandarin Hat"] = { class = "Hat", rarity = 2, file = "Hat mandarin.png", description = "[[Special Cosmetics#Year of the Super Rat|Year of the Super Rat]]", group = 7100, store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Bamboo Hat"] = { class = "Hat", rarity = 5, file = "Hat ricepaddy.png", description = "[[Special Cosmetics#Year of the Super Rat|Year of the Super Rat]]", group = 7150, }, ["Pink Lunar Shirt"] = { class = "Clothes", rarity = 1, file = "Clothes lunar shirt pink.png", description = "[[Special Cosmetics#Year of the Super Rat|Year of the Super Rat]]", group = 13200, store = "carl", currency = { name = "Carl Coins", amount = 300, }, }, ["Hanfu"] = { class = "Clothes", rarity = 3, file = "Clothes hanfu.png", description = "[[Special Cosmetics#Year of the Super Rat|Year of the Super Rat]]", group = 13250, store = "carl", currency = { name = "Carl Coins", amount = 1500, }, }, ["Yellow Tang Suit"] = { class = "Clothes", rarity = 3, file = "Clothes tang suit yellow.png", description = "[[Special Cosmetics#Year of the Super Rat|Year of the Super Rat]]", group = 13300, store = "carl", currency = { name = "Carl Coins", amount = 1500, }, }, ["Super Radioactive Rat"] = { class = "CharacterSkin", rarity = 2, file = "Char_rat_radioactive-resources.assets-1129.png", baseAnimal = "Rat", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Super Lunar Rat"] = { class = "CharacterSkin", rarity = 3, file = "Char_rat_lunar-resources.assets-1307.png", baseAnimal = "Rat", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 65, }, }, }, ["Super Field Mouse"] = { class = "CharacterSkin", rarity = 3, file = "Char_rat_mouse_field-resources.assets-1228.png", baseAnimal = "Rat", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 65, }, }, }, ["Super Golden Mouse"] = { class = "CharacterSkin", rarity = 4, file = "Char_rat_mouse_golden-resources.assets-596.png", baseAnimal = "Rat", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 78, }, }, }, ["Super Toy Mouse"] = { class = "CharacterSkin", rarity = 4, file = "Char_rat_mouse_toy-resources.assets-698.png", baseAnimal = "Rat", currencies = { { name = "DNA", amount = 310, }, { name = "Serum", amount = 80, }, }, }, ["Pink Flower Pin"] = { class = "Hat", rarity = 1, file = "Hat flower pink.png", description = "[[Level-Up Random Drop]]", group = 850, }, ["Purple Flower Pin"] = { class = "Hat", rarity = 1, file = "Hat flower purple.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 900, }, ["Red Flower Pin"] = { class = "Hat", rarity = 1, file = "Hat flower red.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 950, }, ["White Flower Pin"] = { class = "Hat", rarity = 1, file = "Hat flower white.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 1000, }, ["Yellow Flower Pin"] = { class = "Hat", rarity = 1, file = "Hat flower yellow.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 1050, }, ["Blue Robe"] = { class = "Clothes", rarity = 5, file = "clothes_robe_mixer.png", description = "[[Special Cosmetics#Content Creator|Content Creator]]", group = 11400, }, ["Hippo DNA"] = { class = "DNA", rarity = 0, name = "Super Hippo DNA", file = "DNA_Hippo.png", }, ["Super Hippo"] = { class = "Character", rarity = 0, file = "Char_hippo-resources.assets-1270.png", baseAnimal = "Hippo", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Super Lime Hippo"] = { class = "CharacterSkin", rarity = 2, file = "Char_hippo_green-resources.assets-1062.png", baseAnimal = "Hippo", currencies = { { name = "DNA", amount = 390, }, { name = "Serum", amount = 100, }, }, }, ["Super Periwinkle Hippo"] = { class = "CharacterSkin", rarity = 1, file = "Char_hippo_blue-resources.assets-653.png", baseAnimal = "Hippo", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Super Rose Hippo"] = { class = "CharacterSkin", rarity = 2, file = "Char_hippo_pink-resources.assets-1413.png", baseAnimal = "Hippo", currencies = { { name = "DNA", amount = 390, }, { name = "Serum", amount = 100, }, }, }, ["Super Orange Hippo"] = { class = "CharacterSkin", rarity = 1, file = "Char_hippo_orange-resources.assets-406.png", baseAnimal = "Hippo", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Astropack"] = { class = "Clothes", rarity = 3, file = "Clothes backpack spaceship-resources.assets-1360.png", description = "''Uzuhama Streamer Item''", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 8400, }, ["Lucky Hunting Rifle"] = { class = "GunSkin", rarity = 5, file = "Gun_rifle_stpatrick-resources.assets-190.png", event = "St. Pawtrick's Day 2020", link = "Hunting Rifle", }, ["Super Lucky Lion"] = { class = "CharacterSkin", rarity = 4, file = "Char lion clover-resources.assets-1310.png", baseAnimal = "Lion", currencies = { { name = "DNA", amount = 450, }, { name = "Serum", amount = 120, }, }, }, ["Lucky Dress"] = { class = "Clothes", rarity = 5, file = "Clothes_dress_lucky-resources.assets-1380.png", event = "St. Pawtrick's Day 2020", group = 13350, }, ["Lucky Shirt"] = { class = "Clothes", rarity = 5, file = "Clothes_shirt_lucky-resources.assets-704.png", event = "St. Pawtrick's Day 2020", group = 13400, }, ["Lucky Bow"] = { class = "Hat", rarity = 5, file = "Hat lucky bow-resources.assets-1043.png", event = "St. Pawtrick's Day 2020", group = 7200, }, ["Banana Umbrella"] = { class = "Umbrella", rarity = 3, file = "Umbrella banana-resources.assets-511.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1900, }, ["Sakura Kimono"] = { class = "Clothes", rarity = 5, file = "Clothes_kimono_sakura.png", description = "[[Special_Cosmetics#Cherry_Blossom_Season|Cherry Blossom Season]]", group = 13450, }, ["Sakura Fan"] = { class = "MeleeSkin", rarity = 5, file = "Melee_sakura_fan.png", description = "[[Special_Cosmetics#Cherry_Blossom_Season|Cherry Blossom Season]]", group = 5500, }, ["Sakura Umbrella"] = { class = "Umbrella", rarity = 5, file = "Umbrella_sakura.png", description = "[[Special_Cosmetics#Cherry_Blossom_Season|Cherry Blossom Season]]", group = 3350, }, ["Easter Suspenders"] = { class = "Clothes", rarity = 2, file = "Clothes_suspenders_easter-resources.assets-428.png", event = "Super Easter 2020", group = 13500, store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Easter Suit"] = { class = "Clothes", rarity = 3, file = "Clothes_suit_easter-resources.assets-1508.png", event = "Super Easter 2020", group = 13550, }, ["Easter Dress"] = { class = "Clothes", rarity = 2, file = "Clothes_dress_easter-resources.assets-1371.png", event = "Super Easter 2020", group = 13600, store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Red Plaid Dress"] = { class = "Clothes", rarity = 5, file = "Clothes_dress_plaid_red-resources.assets-1193.png", event = "Super Easter 2020", group = 13650, }, ["Chocolate Bar"] = { class = "MeleeSkin", rarity = 2, file = "Melee_chocolatebar-resources.assets-563.png", event = "Super Easter 2020", group = 5550, store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Flower Crown"] = { class = "Hat", rarity = 5, file = "Hat_flower_crown-resources.assets-398.png", event = "Super Easter 2020", group = 7250, }, ["Easter Sun Hat"] = { class = "Hat", rarity = 3, file = "Hat_easter_sun-resources.assets-536.png", event = "Super Easter 2020", group = 7300, store = "carl", currency = { name = "Carl Coins", amount = 1500, }, }, ["Eggshell Hat"] = { class = "Hat", rarity = 2, file = "Hat_eggshell-resources.assets-580.png", event = "Super Easter 2020", group = 7350, store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Flower Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses_flowers-resources.assets-752.png", event = "Super Easter 2020", group = 2950, }, ["Super Chick"] = { class = "CharacterSkin", rarity = 3, file = "Char-chicken-chick.png", baseAnimal = "Chicken", currencies = { { name = "DNA", amount = 225, }, { name = "Serum", amount = 65, }, }, }, ["Super Roadrunner"] = { class = "CharacterSkin", rarity = 4, file = "Char-bluejay-roadrunner.png", baseAnimal = "Blue Jay", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 64, }, }, }, ["Super Coyote"] = { class = "CharacterSkin", rarity = 3, file = "Char-wolf-coyote.png", baseAnimal = "Wolf", currencies = { { name = "DNA", amount = 390, }, { name = "Serum", amount = 105, }, }, }, ["Super Bastet Cat"] = { class = "CharacterSkin", rarity = 4, name = "Super Bastet", file = "Char-cat-bastet.png", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 230, }, { name = "Serum", amount = 62, }, }, }, ["Super Anubis"] = { class = "CharacterSkin", rarity = 4, file = "Char-wolf-anubis.png", baseAnimal = "Wolf", currencies = { { name = "DNA", amount = 460, }, { name = "Serum", amount = 124, }, }, }, ["Super Horus Falcon"] = { class = "CharacterSkin", rarity = 4, name = "Super Horus", file = "Char-hawk-horus.png", baseAnimal = "Hawk", currencies = { { name = "DNA", amount = 480, }, { name = "Serum", amount = 128, }, }, }, ["Super Sphinx"] = { class = "CharacterSkin", rarity = 3, file = "Char-cat-sphinx.png", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 160, }, { name = "Serum", amount = 42, }, }, group = 50, }, ["Khopesh"] = { class = "MeleeSkin", rarity = 4, file = "Melee_khopesh.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 4250, }, ["Ankh Staff"] = { class = "MeleeSkin", rarity = 3, file = "Melee_ankh.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 3500, }, ["Atef Crown"] = { class = "Hat", rarity = 3, file = "Hat_atef_crown.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 4500, }, ["Crown of Hathor"] = { class = "Hat", rarity = 4, file = "Hat_hathor_crown.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 5900, }, ["Lily Flower"] = { class = "Hat", rarity = 2, file = "Hat_flower_lily.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 2200, }, ["Hieroglyph Umbrella"] = { class = "Umbrella", rarity = 3, file = "Umbrella_hieroglyph.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 1950, }, ["White Pharaoh Costume"] = { class = "Clothes", rarity = 3, file = "Clothes_pharaoh_white.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 8550, }, ["Red Pharaoh Costume"] = { class = "Clothes", rarity = 4, file = "Clothes_pharaoh_red.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 10550, }, ["Maid Outfit"] = { class = "Clothes", rarity = 4, file = "Clothes maid dress-resources.assets-597.png", description = "<small>[[Super Edition]]</small>", framed = 1, group = 10600, }, ["Black Triangle Shades"] = { class = "Glasses", rarity = 3, file = "Glasses_triangle_black-resources.assets-420.png", description = "<small>[[Super Edition]]</small>", framed = 1, group = 2350, }, ["Pink Cowboy Hat"] = { class = "Hat", rarity = 2, file = "hat_cowboy_pink-resources.assets-1501.png", description = "<small>[[Super Edition]]</small>", framed = 1, group = 2300, }, ["Lollipop"] = { class = "MeleeSkin", rarity = 2, file = "Melee lollypop-resources.assets-1167.png", description = "<small>[[Super Edition]]</small>", framed = 1, group = 2050, }, ["School Uniform (Boy)"] = { class = "Clothes", rarity = 3, name = "School Uniform (Slacks)", file = "Clothes uniform boy-resources.assets-1973.png", description = "<small>[[Super Edition]]</small>", framed = 1, group = 8600, }, ["Swordfish"] = { class = "MeleeSkin", rarity = 4, file = "Melee swordfish-resources.assets-544.png", description = "<small>[[Super Edition]]</small>", framed = 1, group = 4300, }, ["3D Glasses"] = { class = "Glasses", rarity = 3, file = "Glasses 3D-resources.assets-239.png", description = "<small>[[Super Edition]]</small>", framed = 1, group = 2500, }, ["Lightbulb"] = { class = "Hat", rarity = 4, file = "Hat lightbulb-resources.assets-205.png", description = "<small>[[Super Edition]]</small>", framed = 1, group = 5700, }, ["School Uniform (Girl)"] = { class = "Clothes", rarity = 3, name = "School Uniform (Skirt)", file = "Clothes uniform girl-resources.assets-473.png", description = "<small>[[Super Edition]]</small>", framed = 1, group = 8650, }, ["Super Hellfire Fox"] = { class = "CharacterSkin", rarity = 3, file = "Char-fox-fire.png", description = "<small>[[Super Edition]]</small>", baseAnimal = "Fox", framed = 1, group = 1000, }, ["Super Splash Bear"] = { class = "CharacterSkin", rarity = 3, file = "Char-bear-water.png", description = "<small>[[Super Edition]]</small>", baseAnimal = "Bear", framed = 1, group = 1000, }, ["Super Leaf Skullcat"] = { class = "CharacterSkin", rarity = 3, file = "Char-skullcat-mossy.png", description = "<small>[[Super Edition]]</small>", baseAnimal = "Skullcat", framed = 1, group = 1050, }, ["Super Thunder Tiger"] = { class = "CharacterSkin", rarity = 3, file = "Char-tiger-thunder.png", description = "<small>[[Super Edition]]</small>", baseAnimal = "Tiger", framed = 1, group = 1050, }, ["SARturday Night Fever"] = { class = "Emote", rarity = 4, file = "Emote sarturday-resources.assets-960.png", description = "<small>[[Super Edition]]</small>", framed = 1, }, ["Rainbow Headband"] = { class = "Hat", rarity = 2, file = "Hat_headband_rainbow.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 2350, }, ["Super Pineapple Hedgehog"] = { class = "CharacterSkin", rarity = 4, file = "Char-hedgehog-pineapple.png", baseAnimal = "Hedgehog", currencies = { { name = "DNA", amount = 450, }, { name = "Serum", amount = 120, }, }, }, ["Super Watermelon Skunk"] = { class = "CharacterSkin", rarity = 4, file = "Char-skunk-watermelon.png", baseAnimal = "Skunk", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 78, }, }, }, ["Badminton Racket"] = { class = "MeleeSkin", rarity = 1, file = "Melee_badminton.png", event = "Summer Royale 2020", currency = { name = "Fruit Baskets", amount = 450, }, group = 5600, }, ["Yellow Plastic Shovel"] = { class = "MeleeSkin", rarity = 1, file = "Melee_shovel_plastic_yellow.png", event = "Summer Royale 2020", currency = { name = "Fruit Baskets", amount = 300, }, group = 5650, }, ["Green Pool Noodle"] = { class = "MeleeSkin", rarity = 1, file = "Melee_poolnoodle_green.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 450, }, ["Blue Pool Noodle"] = { class = "MeleeSkin", rarity = 1, file = "Melee_poolnoodle_blue.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 500, }, ["Purple Pool Noodle"] = { class = "MeleeSkin", rarity = 1, file = "Melee_poolnoodle_purple.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 550, }, ["Orange Pool Noodle"] = { class = "MeleeSkin", rarity = 1, file = "Melee_poolnoodle_orange.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 600, }, ["Vintage Round Sunglasses"] = { class = "Glasses", rarity = 2, file = "Glasses_vintage_round.png", event = "Summer Royale 2020", currency = { name = "Fruit Baskets", amount = 300, }, group = 3000, }, ["Blue Sport Sunglasses"] = { class = "Glasses", rarity = 2, file = "Glasses_sport_blue.png", event = "Summer Royale 2020", currency = { name = "Fruit Baskets", amount = 150, }, group = 3050, }, ["Rainbow Dress"] = { class = "Clothes", rarity = 3, file = "Clothes_dress_rainbow.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 8700, }, ["Vintage Floral Dress"] = { class = "Clothes", rarity = 3, file = "Clothes_dress_vintage_floral.png", event = "Summer Royale 2020", currency = { name = "Fruit Baskets", amount = 450, }, group = 13700, }, ["Orange Pastel Overalls"] = { class = "Clothes", rarity = 3, file = "Clothes_overall_pastel_orange.png", event = "Summer Royale 2020", currency = { name = "Fruit Baskets", amount = 450, }, group = 13750, }, ["White Bermuda Shorts"] = { class = "Clothes", rarity = 2, file = "Clothes_pants_bermuda_white.png", event = "Summer Royale 2020", currency = { name = "Fruit Baskets", amount = 150, }, group = 13800, }, ["Blue Polo Shirt"] = { class = "Clothes", rarity = 2, file = "Clothes_shirt_polo_blue.png", event = "Summer Royale 2020", currency = { name = "Fruit Baskets", amount = 150, }, group = 13850, }, ["Vintage Floral Swimsuit"] = { class = "Clothes", rarity = 5, file = "Clothes_swimsuit_flowers.png", event = "Summer Royale 2020", currency = { name = "Fruit Baskets", amount = 300, }, group = 13900, }, ["Daily Challenge v2"] = { class = "Challenge", rarity = 0, }, ["Canvas Gravestone"] = { class = "Gravestone", rarity = 5, file = "Gravestone-canvas.png", description = "[[Special Cosmetics#Super Fanart Contest|Super Fanart Contest]]", group = 1650, }, ["Artist Smock"] = { class = "Clothes", rarity = 5, file = "Clothes_artist.png", description = "[[Special Cosmetics#Super Fanart Contest|Super Fanart Contest]]", group = 11450, }, ["Artist Beret"] = { class = "Hat", rarity = 5, file = "Hat_artist.png", description = "[[Special Cosmetics#Super Fanart Contest|Super Fanart Contest]]", group = 6100, }, ["Golden Paintbrush"] = { class = "MeleeSkin", rarity = 5, file = "Melee_paintbrush_golden.png", description = "[[Special Cosmetics#Super Fanart Contest|Super Fanart Contest]]", group = 5750, }, ["Digital Stylus"] = { class = "MeleeSkin", rarity = 5, file = "Melee_digital_stylus.png", description = "[[Special Cosmetics#Super Fanart Contest|Super Fanart Contest]]", group = 5700, }, ["Squirrel DNA"] = { class = "DNA", rarity = 0, name = "Super Squirrel DNA", file = "DNA_Squrrel.png", }, ["Super Squirrel"] = { class = "Character", rarity = 0, file = "Char-squirrel.png", baseAnimal = "Squirrel", currencies = { { name = "DNA", amount = 75, }, { name = "Serum", amount = 15, }, }, }, ["Super Gray Squirrel"] = { class = "CharacterSkin", rarity = 1, file = "Char-squirrel-grey.png", baseAnimal = "Squirrel", currencies = { { name = "DNA", amount = 115, }, { name = "Serum", amount = 28, }, }, }, ["Super Black Squirrel"] = { class = "CharacterSkin", rarity = 2, file = "Char-squirrel-black.png", baseAnimal = "Squirrel", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 38, }, }, }, ["Super Vanilla Squirrel"] = { class = "CharacterSkin", rarity = 2, file = "Char-squirrel-cream.png", baseAnimal = "Squirrel", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Yellow Crayon"] = { class = "MeleeSkin", rarity = 5, file = "melee_crayon_yellow.png", description = "[[Special Cosmetics#Super Fanart Contest|Summer in Super Animal World (Jul 2020)]]", group = 5850, }, ["Blue Hoodie & Camo Pants"] = { class = "Clothes", rarity = 3, file = "Clothes cait.png", description = "[[Super Animal Mods|Cait Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 8750, }, ["Blue Hunting Rifle"] = { class = "GunSkin", rarity = 1, file = "Gun-rifle_blue.png", group = 3, description = "10 Hunting Rifle kills", link = "Hunting Rifle", }, ["Green Hunting Rifle"] = { class = "GunSkin", rarity = 0, file = "Gun-rifle_green.png", group = 2, description = "5 Hunting Rifle kills", link = "Hunting Rifle", }, ["Orange Hunting Rifle"] = { class = "GunSkin", rarity = 0, file = "Gun-rifle_orange.png", group = 1, description = "2 Hunting Rifle kills", link = "Hunting Rifle", }, ["Pink Hunting Rifle"] = { class = "GunSkin", rarity = 2, file = "Gun-rifle_pink.png", group = 7, description = "70 Hunting Rifle kills", super_edition = 1, link = "Hunting Rifle", framed = 1, }, ["Purple Hunting Rifle"] = { class = "GunSkin", rarity = 1, file = "Gun-rifle_purple.png", group = 5, description = "35 Hunting Rifle kills", super_edition = 1, link = "Hunting Rifle", framed = 1, }, ["Red Hunting Rifle"] = { class = "GunSkin", rarity = 1, file = "Gun-rifle_red.png", group = 4, description = "20 Hunting Rifle kills", link = "Hunting Rifle", }, ["Yellow Hunting Rifle"] = { class = "GunSkin", rarity = 2, file = "Gun-rifle_yellow.png", group = 6, description = "50 Hunting Rifle kills", super_edition = 1, link = "Hunting Rifle", framed = 1, }, ["Blue Bow & Sparrow"] = { class = "GunSkin", rarity = 1, group = 3, description = "10 Bow & Sparrow kills", link = "Bow & Sparrow", }, ["Green Bow & Sparrow"] = { class = "GunSkin", rarity = 0, group = 2, description = "5 Bow & Sparrow kills", link = "Bow & Sparrow", }, ["Orange Bow & Sparrow"] = { class = "GunSkin", rarity = 0, group = 1, description = "2 Bow & Sparrow kills", link = "Bow & Sparrow", }, ["Pink Bow & Sparrow"] = { class = "GunSkin", rarity = 2, group = 7, description = "70 Bow & Sparrow kills", super_edition = 1, link = "Bow & Sparrow", framed = 1, }, ["Purple Bow & Sparrow"] = { class = "GunSkin", rarity = 1, group = 5, description = "35 Bow & Sparrow kills", super_edition = 1, link = "Bow & Sparrow", framed = 1, }, ["Red Bow & Sparrow"] = { class = "GunSkin", rarity = 1, group = 4, description = "20 Bow & Sparrow kills", link = "Bow & Sparrow", }, ["Yellow Bow & Sparrow"] = { class = "GunSkin", rarity = 2, group = 6, description = "50 Bow & Sparrow kills", super_edition = 1, link = "Bow & Sparrow", framed = 1, }, ["Blue Sparrow Launcher"] = { class = "GunSkin", rarity = 1, file = "Blue_Sparrow_Launcher.png", group = 3, description = "10 Sparrow Launcher kills", link = "Sparrow Launcher", }, ["Green Sparrow Launcher"] = { class = "GunSkin", rarity = 0, file = "Green_Sparrow_Launcher.png", group = 2, description = "5 Sparrow Launcher kills", link = "Sparrow Launcher", }, ["Orange Sparrow Launcher"] = { class = "GunSkin", rarity = 0, file = "Orange_Sparrow_Launcher.png", group = 1, description = "2 Sparrow Launcher kills", link = "Sparrow Launcher", }, ["Pink Sparrow Launcher"] = { class = "GunSkin", rarity = 2, file = "Pink_Sparrow_Launcher.png", group = 7, description = "70 Sparrow Launcher kills", super_edition = 1, link = "Sparrow Launcher", framed = 1, }, ["Purple Sparrow Launcher"] = { class = "GunSkin", rarity = 1, file = "Purple_Sparrow_Launcher.png", group = 5, description = "35 Sparrow Launcher kills", super_edition = 1, link = "Sparrow Launcher", framed = 1, }, ["Red Sparrow Launcher"] = { class = "GunSkin", rarity = 1, file = "Red_Sparrow_Launcher.png", group = 4, description = "20 Sparrow Launcher kills", link = "Sparrow Launcher", }, ["Yellow Sparrow Launcher"] = { class = "GunSkin", rarity = 2, file = "Yellow_Sparrow_Launcher.png", group = 6, description = "50 Sparrow Launcher kills", super_edition = 1, link = "Sparrow Launcher", framed = 1, }, ["Lime Pistol"] = { class = "GunSkin", rarity = 2, file = "Gun-pistol_lime.png", description = "''[[Super Animal Pass Season 0|Super Animal Pass Season 0]]''", link = "Pistol", framed = 1, group = 400, }, ["Toy Pistol"] = { class = "GunSkin", rarity = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 200, }, file = "Gun_pistol_toy-resources.assets-607.png", link = "Pistol", framed = 1, }, ["Frozen AK"] = { class = "GunSkin", rarity = 2, file = "Gun-ak_ice.png", description = "''[[The Great Gun Buyback|The Great Gun Buyback]] reward''", link = "AK", }, ["Rebellion AK"] = { class = "GunSkin", rarity = 3, file = "Gun-ak_rebellion.png", description = "''[[Super Animal Pass Season 0|Super Animal Pass Season 0]]''", link = "AK", framed = 1, group = 50, }, ["Cardinal Bow & Sparrow"] = { class = "GunSkin", rarity = 2, store = "saw", currency = { name = "S.A.W. Tickets", amount = 450, }, link = "Bow & Sparrow", framed = 1, }, ["Birch Sparrow Launcher"] = { class = "GunSkin", rarity = 2, store = "saw", currency = { name = "S.A.W. Tickets", amount = 450, }, link = "Sparrow Launcher", framed = 1, }, ["Skunk Poison Dart Gun"] = { class = "GunSkin", rarity = 1, name = "Dogna's Skunk Dart Gun", file = "Gun dart skunk-resources.assets-1964.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 200, }, link = "Dogna's Dart Gun", framed = 1, }, ["Eagle Deagle"] = { class = "GunSkin", rarity = 3, file = "Gun deagle eagle-resources.assets-433.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 600, }, link = "Deagle", framed = 1, }, ["Tiger JAG-7"] = { class = "GunSkin", rarity = 1, file = "Gun jag7 tiger-resources.assets-247.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 200, }, link = "JAG-7", framed = 1, }, ["SAW M16"] = { class = "GunSkin", rarity = 3, file = "Gun-m16_SAW.png", description = "''[[Super Animal Pass Season 0|Super Animal Pass Season 0]]''", link = "M16", framed = 1, }, ["Dark Magnum"] = { class = "GunSkin", rarity = 1, file = "Gun magnum dark-resources.assets-360.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 200, }, link = "Magnum", framed = 1, }, ["Pineapple Minigun"] = { class = "GunSkin", rarity = 3, file = "Gun minigun pineapple-resources.assets-373.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 600, }, link = "Minigun", framed = 1, }, ["Rancher Hunting Rifle"] = { class = "GunSkin", rarity = 1, file = "Gun-rifle_rancher.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 200, }, link = "Hunting Rifle", framed = 1, }, ["Military Shotgun"] = { class = "GunSkin", rarity = 1, file = "Gun shotgun military-resources.assets-858.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 200, }, link = "Shotgun", framed = 1, }, ["Flower Shotgun"] = { class = "GunSkin", rarity = 2, file = "Gun-shotgun_vacation.png", description = "''[[Super Animal Pass Season 0|Super Animal Pass Season 0]]''", link = "Shotgun", framed = 1, }, ["DNA Silenced Pistol"] = { class = "GunSkin", rarity = 1, file = "Gun silenced pistol DNA-resources.assets-1629.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 200, }, link = "Silenced Pistol", framed = 1, }, ["Elite Silenced Pistol"] = { class = "GunSkin", rarity = 3, file = "Elite_Silenced_Pistol.png", description = "''[[Super Animal Pass Season 0|Super Animal Pass Season 0]]''", link = "Silenced Pistol", framed = 1, }, ["Steampunk Thomas Gun"] = { class = "GunSkin", rarity = 2, file = "Gun tommy gun steampunk.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 450, }, link = "Thomas Gun", framed = 1, }, ["Hellfire SMG"] = { class = "GunSkin", rarity = 3, file = "Gun-smg_fire.png", description = "''[[The Great Gun Buyback|The Great Gun Buyback]] reward''", link = "SMG", }, ["Camo Sniper"] = { class = "GunSkin", rarity = 3, file = "Gun_sniper_camo-resources.assets-1279.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 600, }, link = "Sniper", framed = 1, }, ["Sakura Sniper"] = { class = "GunSkin", rarity = 4, file = "Gun-sniper_sakura.png", description = "''[[Super Animal Pass Season 0|Super Animal Pass Season 0]]''", link = "Sniper", framed = 1, }, ["Silver Magnum"] = { class = "GunSkin", rarity = 2, file = "Gun magnum silver-resources.assets-970.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 450, }, link = "Magnum", framed = 1, group = 50, }, ["Pizza Cutter"] = { class = "MeleeSkin", rarity = 1, file = "Melee pizzacutter-resources.assets-760.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 300, }, group = 650, }, ["Bo Staff"] = { class = "MeleeSkin", rarity = 2, file = "Melee bo staff-resources.assets-742.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, group = 2100, }, ["Super Cat Beanie"] = { class = "Hat", rarity = 4, file = "Hat beanie cat-resources.assets-775.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 5750, }, ["Super Dog Beanie"] = { class = "Hat", rarity = 4, file = "Hat beanie dog-resources.assets-2093.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 5800, }, ["Hoodie (Blue)"] = { class = "Clothes", rarity = 3, file = "Clothes_hoodie_blue.png", description = "[[Special Cosmetics#Newsletter Subscription|SAR Website Newsletter Subscription]]", group = 8800, }, ["Banana Spring Dress"] = { class = "Clothes", rarity = 1, name = "Banana Dress", framed = 1, file = "Clothes spring dress banana.png", description = "[[Super Animal Pass Season 1]]", group = 3000, name = "Banana Dress", }, ["White AK"] = { class = "GunSkin", rarity = 3, group = 150, description = "500 AK kills", super_edition = 1, link = "AK", framed = 1, }, ["White Bow & Sparrow"] = { class = "GunSkin", rarity = 3, file = "White_Bow_&_Sparrow.png", group = 8, description = "100 Bow & Sparrow kills", super_edition = 1, link = "Bow & Sparrow", framed = 1, }, ["White Sparrow Launcher"] = { class = "GunSkin", rarity = 3, file = "White_Sparrow_Launcher.png", group = 8, description = "100 Sparrow Launcher kills", super_edition = 1, link = "Sparrow Launcher", framed = 1, }, ["White Poison Dart Gun"] = { class = "GunSkin", rarity = 3, name = "Dogna's White Dart Gun", group = 8, description = "150 Dogna's Dart Gun kills", super_edition = 1, link = "Dogna's Dart Gun", framed = 1, }, ["White Deagle"] = { class = "GunSkin", rarity = 3, group = 8, description = "200 Deagle kills", super_edition = 1, link = "Deagle", framed = 1, }, ["White Hunting Rifle"] = { class = "GunSkin", rarity = 3, file = "Gun-rifle_white.png", group = 8, description = "100 Hunting Rifle kills", super_edition = 1, link = "Hunting Rifle", framed = 1, }, ["White JAG-7"] = { class = "GunSkin", rarity = 3, group = 8, description = "250 JAG-7 kills", super_edition = 1, link = "JAG-7", framed = 1, }, ["White M16"] = { class = "GunSkin", rarity = 3, group = 8, description = "250 M16 kills", super_edition = 1, link = "M16", framed = 1, }, ["White Magnum"] = { class = "GunSkin", rarity = 3, group = 8, description = "150 Magnum kills", super_edition = 1, link = "Magnum", framed = 1, }, ["White Minigun"] = { class = "GunSkin", rarity = 3, group = 8, description = "100 Minigun kills", super_edition = 1, link = "Minigun", framed = 1, }, ["White Pistol"] = { class = "GunSkin", rarity = 3, group = 8, description = "100 Pistol kills", super_edition = 1, link = "Pistol", framed = 1, }, ["White SMG"] = { class = "GunSkin", rarity = 3, group = 8, description = "500 SMG kills", super_edition = 1, link = "SMG", framed = 1, }, ["White Shotgun"] = { class = "GunSkin", rarity = 3, group = 8, description = "500 Shotgun kills", super_edition = 1, link = "Shotgun", framed = 1, }, ["White Silenced Pistol"] = { class = "GunSkin", rarity = 3, group = 8, description = "200 Silenced Pistol kills", super_edition = 1, link = "Silenced Pistol", framed = 1, }, ["White Sniper"] = { class = "GunSkin", rarity = 3, group = 8, description = "100 Sniper kills", super_edition = 1, link = "Sniper", framed = 1, }, ["White Thomas Gun"] = { class = "GunSkin", rarity = 3, group = 8, description = "250 Thomas Gun kills", super_edition = 1, link = "Thomas Gun", framed = 1, }, ["Black Bicorne"] = { class = "Hat", rarity = 2, framed = 1, file = "Hat_blackbicorne_assets.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, bundle = "Napoleon Bundle", group = 2400, }, ["White Paper Hat"] = { class = "Hat", rarity = 2, file = "Hat paperhat white-resources.assets-1663.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, group = 2900, }, ["Broken Top Hat"] = { class = "Hat", rarity = 2, file = "Hat tophat broken-resources.assets-1531.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, group = 2450, }, ["Weekly Challenge"] = { class = "Challenge", rarity = 0, }, ["Daily Challenge v3"] = { class = "Challenge", rarity = 0, }, ["Farmer Outfit"] = { class = "Clothes", rarity = 2, file = "Clothes farmer-resources.assets-1564.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, framed = 1, group = 5250, }, ["Boxing Shorts"] = { class = "Clothes", rarity = 2, framed = 1, file = "Clothes_pants_boxing-resources.assets-2065.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, group = 5100, }, ["Professor Outfit (Tweed)"] = { class = "Clothes", rarity = 3, file = "Clothes professor blazer tweed-resources.assets-1236.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, group = 9050, }, ["Suspenders (Smart)"] = { class = "Clothes", rarity = 2, file = "Clothes suspenders smart-resources.assets-738.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, group = 5300, }, ["Gray Trenchcoat"] = { class = "Clothes", rarity = 4, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Gray Trenchcoat.png", group = 10650, }, ["Gray Vest Outfit"] = { class = "Clothes", rarity = 2, file = "Clothes vest grey-resources.assets-2042.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, group = 5350, }, ["Broken Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses broken-resources.assets-1641.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 150, }, group = 1050, }, ["Scuba Goggles"] = { class = "Glasses", rarity = 4, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Scuba Goggles.png", group = 2650, }, ["Purple Shutter Shades"] = { class = "Glasses", rarity = 2, description = "[[Super Animal Pass Season 0]]", file = "Purple Shutter Shades.png", group = 1650, }, ["Purple Triangle Shades"] = { class = "Glasses", rarity = 3, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Purple Triangle Shades.png", group = 2550, }, ["Warpaint (Black)"] = { class = "Beard", rarity = 1, file = "Glasses warpaint black-resources.assets-1415.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 150, }, framed = 1, group = 1100, }, ["Warpaint (White)"] = { class = "Beard", rarity = 1, file = "Glasses warpaint white-resources.assets-281.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 150, }, group = 1150, }, ["Paisley Headband (Red)"] = { class = "Hat", rarity = 2, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Paisley Headband (Red).png", group = 2500, }, ["Billhook"] = { class = "MeleeSkin", rarity = 2, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Billhook.png", group = 2250, }, ["Bokken"] = { class = "MeleeSkin", rarity = 1, file = "Melee bokken-resources.assets-1220.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 300, }, group = 850, }, ["Pitchfork"] = { class = "MeleeSkin", rarity = 3, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Pitchfork.png", group = 3550, }, ["Rolling Pin"] = { class = "MeleeSkin", rarity = 1, file = "Melee rollingpin-resources.assets-1310.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 300, }, group = 700, }, ["Rusty Sword"] = { class = "MeleeSkin", rarity = 1, file = "Melee rusty sword-resources.assets-1053.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 300, }, group = 800, }, ["Spiked Mace"] = { class = "MeleeSkin", rarity = 2, file = "Melee spiked mace-resources.assets-1011.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, group = 2200, }, ["Wooden Spoon"] = { class = "MeleeSkin", rarity = 1, file = "Melee spoon-resources.assets-799.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 300, }, group = 750, }, ["Squeaky Mallet"] = { class = "MeleeSkin", rarity = 2, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Squeaky Mallet.png", group = 2300, }, ["Red Umbrella (Melee)"] = { class = "MeleeSkin", rarity = 1, file = "Melee umbrella-resources.assets-1970.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 300, }, group = 900, }, ["Grapefruit Umbrella"] = { class = "Umbrella", rarity = 2, framed = 1, file = "Umbrella grapefruit.png", description = "[[Super Animal Pass Season 1]]", group = 1300, }, ["Lemon Fruit Umbrella"] = { class = "Umbrella", rarity = 3, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Lemon Fruit Umbrella.png", group = 2000, }, ["Lime Fruit Umbrella"] = { class = "Umbrella", rarity = 3, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Lime Fruit Umbrella.png", group = 2050, }, ["Newspaper Umbrella"] = { class = "Umbrella", rarity = 2, file = "Umbrella newspaper-resources.assets-455.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 250, }, group = 1200, }, ["Punk Jacket"] = { class = "Clothes", rarity = 2, file = "Clothes jacket punk-resources.assets-1189.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, group = 5650, }, ["Punk Shorts"] = { class = "Clothes", rarity = 2, file = "Clothes pants punk-resources.assets-2032.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 5700, }, ["Scuba Outfit"] = { class = "Clothes", rarity = 3, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Scuba Outfit.png", group = 8850, }, ["Sport Swimsuit"] = { class = "Clothes", rarity = 2, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Sport Swimsuit.png", group = 5450, }, ["I Surrender!"] = { class = "Emote", rarity = 4, description = "''[[Super Animal Pass Season 0|Super Animal Pass Season 0]] reward''", framed = 1, }, ["Wooden R.I.P. Gravestone"] = { class = "Gravestone", rarity = 2, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Wooden R.I.P. Gravestone.png", group = 700, }, ["Newspaper Hat"] = { class = "Hat", rarity = 3, file = "Hat paperhat newspaper-resources.assets-729.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, group = 4800, }, ["Professor Outfit (Gray)"] = { class = "Clothes", rarity = 3, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Professor Outfit (Gray).png", group = 8900, }, ["Orange Fruit Umbrella"] = { class = "Umbrella", rarity = 3, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Orange Fruit Umbrella.png", group = 2100, }, ["Harpoon"] = { class = "MeleeSkin", rarity = 2, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Harpoon.png", group = 2350, }, ["Pilot Hat"] = { class = "Hat", rarity = 3, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Pilot Hat.png", group = 4600, }, ["Stacked Hats"] = { class = "Hat", rarity = 4, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Stacked Hats.png", group = 5950, }, ["Purple Cheerleader Outfit"] = { class = "Clothes", rarity = 2, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Purple Cheerleader Outfit.png", group = 5500, }, ["Yellow Sweater Skirt"] = { class = "Clothes", rarity = 3, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Yellow Sweater Skirt.png", group = 8950, }, ["Red Kilt"] = { class = "Clothes", rarity = 2, description = "[[Super Animal Pass Season 0]]", framed = 1, file = "Red Kilt.png", group = 5550, }, ["Selfie Stick"] = { class = "MeleeSkin", rarity = 3, file = "Melee selfiestick-resources.assets-921.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 650, }, bundle = "Selfie Bundle", group = 3450, }, ["Fork"] = { class = "MeleeSkin", rarity = 2, file = "Melee fork-resources.assets-1800.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, framed = 1, group = 2150, }, ["Heart Boxers"] = { class = "Clothes", rarity = 2, file = "Clothes boxers heart-resources.assets-1270.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, group = 5050, }, ["Yellow Triangle Shades"] = { class = "Glasses", rarity = 3, file = "Glasses triangle yellow-resources.assets-1820.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 400, }, group = 2450, }, ["Red Triangle Shades"] = { class = "Glasses", rarity = 3, file = "Glasses triangle red-resources.assets-616.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 400, }, group = 2400, }, ["Cowboy Hat"] = { class = "Hat", rarity = 2, file = "Hat cowboy-resources.assets-952.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, group = 2250, }, ["Blue Beanie"] = { class = "Hat", rarity = 0, file = "Hat beanie blue-resources.assets-2064.png", description = "[[Level-Up Random Drop]]", group = 200, }, ["Hypnosis Glasses"] = { class = "Glasses", rarity = 4, file = "Glasses pinwheel animated-resources.assets-1379.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, group = 2700, }, ["Candy Corn Ferret"] = { class = "CharacterSkin", rarity = 3, name = "Super Candy Corn Ferret", file = "Char-Ferret-candycorn.png", baseAnimal = "Ferret", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 60, }, }, }, ["Dracula Parrot"] = { class = "Character", rarity = 3, name = "Super Dracula Parrot", file = "Char-parrot-dracula.png", baseAnimal = "Parrot", currencies = { { name = "DNA", amount = 420, }, { name = "Serum", amount = 115, }, }, group = 100, }, ["Zombie Tiger"] = { class = "CharacterSkin", rarity = 4, name = "Super Zombie Tiger", file = "Char-Tiger-zombie.png", baseAnimal = "Tiger", currencies = { { name = "DNA", amount = 220, }, { name = "Serum", amount = 62, }, }, group = 150, }, ["Bat Wings"] = { class = "Clothes", rarity = 5, name = "Bat Wing Outfit", file = "Clothes bat wings.png", event = "Super Howloween 2020", group = 13950, }, ["Frankenstein Outfit"] = { class = "Clothes", rarity = 5, file = "Clothes frankenstein.png", event = "Super Howloween 2020", group = 14000, }, ["Pumpkin Costume"] = { class = "Clothes", rarity = 3, file = "Clothes pumpkin costume.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 9850, }, ["Howl Mask"] = { class = "Glasses", rarity = 5, file = "howlmask.png", description = "[[Coupon Code]]", event = "Super Howloween 2020", group = 3100, }, ["Cauldron Gravestone"] = { class = "Gravestone", rarity = 5, file = "Cauldron-gravestone.png", event = "Super Howloween 2020", group = 1550, }, ["Skeleton AK"] = { class = "GunSkin", rarity = 5, file = "Gun-ak_skeleton.png", event = "Super Howloween 2020", link = "AK", }, ["Candy Corn Sniper"] = { class = "GunSkin", rarity = 5, file = "Gun-sniper_candycorn.png", event = "Super Howloween 2020", link = "Sniper", }, ["Devil Pitchfork"] = { class = "MeleeSkin", rarity = 3, file = "Melee_devil_pitchfork.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 6000, }, ["Bolts Hat"] = { class = "Hat", rarity = 5, file = "Hat_bolts.png", event = "Super Howloween 2020", group = 7400, }, ["Skull Bow"] = { class = "Hat", rarity = 5, file = "Hat_bow_skull.png", event = "Super Howloween 2020", group = 7450, }, ["Super Twilight Fennec Fox"] = { class = "CharacterSkin", rarity = 3, file = "Char-fox-fennec-night.png", description = "<small>[[Season 0 Starter Pack]]</small>", baseAnimal = "Fox", framed = 1, group = 1050, }, ["Twilight Overalls"] = { class = "Clothes", rarity = 2, file = "Clothes_overall_stars-resources.assets-731.png", description = "<small>[[Season 0 Starter Pack]]</small>", framed = 1, group = 5600, }, ["Twilight Newsboy Hat"] = { class = "Hat", rarity = 2, name = "Twilight Newsboy Cap", file = "Hat_newsboy_stars.png", description = "<small>[[Season 0 Starter Pack]]</small>", framed = 1, group = 2550, }, ["Blue Blazer Outfit"] = { class = "Clothes", rarity = 2, file = "Clothes blazer outfit blue-resources.assets-1925.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, group = 5400, }, ["Tartan Schoolgirl Outfit"] = { class = "Clothes", rarity = 3, name = "Tartan Skirt Uniform", file = "Clothes schoolgirl tartan-resources.assets-897.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, group = 9100, }, ["Yellow Leopard Skirt"] = { class = "Clothes", rarity = 2, file = "Clothes skirt leopard yellow-resources.assets-1719.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, group = 5850, }, ["Pink Leopard Skirt"] = { class = "Clothes", rarity = 2, file = "Clothes skirt leopard pink-resources.assets-1611.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, group = 5800, }, ["Desert Goggles"] = { class = "Glasses", rarity = 2, file = "Glasses desert goggles-resources.assets-986.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 250, }, group = 1700, }, ["Pink Bubble Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses bubble pink-resources.assets-717.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 150, }, group = 1200, }, ["Purple Bubble Glasses"] = { class = "Glasses", rarity = 1, file = "Glasses bubble purple-resources.assets-495.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 150, }, group = 1250, }, ["Flower Bucket Hat"] = { class = "Hat", rarity = 2, file = "Hat bucket flowers-resources.assets-1612.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, group = 2800, }, ["Blue Dainty Hat"] = { class = "Hat", rarity = 2, file = "Hat dainty blue-resources.assets-1203.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, group = 2850, }, ["Yellow Leopard Hat"] = { class = "Hat", rarity = 2, file = "Hat leopard yellow-resources.assets-212.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, group = 2750, }, ["Pink Leopard Hat"] = { class = "Hat", rarity = 2, file = "Hat leopard pink-resources.assets-622.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, group = 2700, }, ["Flamberge"] = { class = "MeleeSkin", rarity = 3, framed = 1, file = "Melee flamberge-resources.assets-1005.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 650, }, group = 3600, }, ["Super Pitbull"] = { class = "CharacterSkin", rarity = 2, file = "Char-dog-PitBull.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Super Samoyed"] = { class = "CharacterSkin", rarity = 3, file = "Char-dog-Samoyed.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 42, }, }, }, ["Super German Shepherd"] = { class = "CharacterSkin", rarity = 3, file = "Char-dog-GermanShepherd.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 40, }, }, }, ["Blue Mohawk"] = { class = "Hat", rarity = 3, file = "Hat mohawk blue-resources.assets-483.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 4650, }, ["Green Mohawk"] = { class = "Hat", rarity = 3, file = "Hat mohawk green-resources.assets-356.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 4700, }, ["Purple Mohawk"] = { class = "Hat", rarity = 3, file = "Hat mohawk purple-resources.assets-1978.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 4750, }, ["Broken Bottle"] = { class = "MeleeSkin", rarity = 1, file = "Melee broken bottle-resources.assets-1821.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 300, }, group = 950, }, ["Fish Bone"] = { class = "MeleeSkin", rarity = 2, file = "Melee_fishbone-resources.assets-2083.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, group = 2400, }, ["Punk Skirt"] = { class = "Clothes", rarity = 2, file = "Clothes skirt punk-resources.assets-1962.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, group = 5750, }, ["Recycling Tee"] = { class = "Clothes", rarity = 1, file = "Clothes tshirt recycle-resources.assets-1897.png", store = "carl", currency = { name = "Carl Coins", amount = 300, }, group = 3050, }, ["Pigeon DNA"] = { class = "DNA", rarity = 0, name = "Super Pigeon DNA", }, ["Possum DNA"] = { class = "DNA", rarity = 0, name = "Super Possum DNA", }, ["Super Pigeon"] = { class = "Character", rarity = 0, file = "Char_pigeon.png", baseAnimal = "Pigeon", currencies = { { name = "DNA", amount = 75, }, { name = "Serum", amount = 15, }, }, }, ["Super Brown Pigeon"] = { class = "CharacterSkin", rarity = 1, file = "Char_pigeon_brown.png", baseAnimal = "Pigeon", currencies = { { name = "DNA", amount = 115, }, { name = "Serum", amount = 30, }, }, }, ["Super Purple Pigeon"] = { class = "CharacterSkin", rarity = 2, file = "Char_pigeon_purple.png", baseAnimal = "Pigeon", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 38, }, }, }, ["Super Satinette Pigeon"] = { class = "CharacterSkin", rarity = 3, file = "Char_pigeon_satinette.png", baseAnimal = "Pigeon", currencies = { { name = "DNA", amount = 170, }, { name = "Serum", amount = 45, }, }, }, ["Super Dove"] = { class = "CharacterSkin", rarity = 3, file = "Char_pigeon_dove.png", baseAnimal = "Pigeon", currencies = { { name = "DNA", amount = 180, }, { name = "Serum", amount = 48, }, }, }, ["Super Possum"] = { class = "Character", rarity = 0, file = "char-opossum.png", baseAnimal = "Possum", currencies = { { name = "DNA", amount = 175, }, { name = "Serum", amount = 45, }, }, }, ["Super White Possum"] = { class = "CharacterSkin", rarity = 1, file = "Char-opossum-white.png", baseAnimal = "Possum", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 68, }, }, }, ["Super Purple Paw Possum"] = { class = "CharacterSkin", rarity = 1, file = "Char-opossum-purple.png", baseAnimal = "Possum", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 70, }, }, }, ["Super Pink Possum"] = { class = "CharacterSkin", rarity = 1, file = "Char-opossum-pink.png", baseAnimal = "Possum", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 70, }, }, }, ["Super Goth Possum"] = { class = "CharacterSkin", rarity = 2, file = "Char-opossum-goth.png", baseAnimal = "Possum", currencies = { { name = "DNA", amount = 325, }, { name = "Serum", amount = 85, }, }, }, ["Goat DNA"] = { class = "DNA", rarity = 0, name = "Super Goat DNA", file = "DNA Goat.png", }, ["Super Goat"] = { class = "Character", rarity = 0, file = "char_goat.png", baseAnimal = "Goat", currencies = { { name = "DNA", amount = 175, }, { name = "Serum", amount = 45, }, }, }, ["Super Bicolor Goat"] = { class = "CharacterSkin", rarity = 1, file = "char_goat_bicolor.png", baseAnimal = "Goat", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 70, }, }, }, ["Super Gray Goat"] = { class = "CharacterSkin", rarity = 2, file = "Char goat grey.png", baseAnimal = "Goat", currencies = { { name = "DNA", amount = 325, }, { name = "Serum", amount = 85, }, }, }, ["Super Devil Goat"] = { class = "CharacterSkin", rarity = 3, file = "char_goat_red.png", baseAnimal = "Goat", currencies = { { name = "DNA", amount = 400, }, { name = "Serum", amount = 105, }, }, group = 50, }, ["Super Chamois Goat"] = { class = "CharacterSkin", rarity = 3, file = "char_goat_chamois.png", baseAnimal = "Goat", currencies = { { name = "DNA", amount = 400, }, { name = "Serum", amount = 105, }, }, group = 100, }, ["Super Four-Horned Goat"] = { class = "CharacterSkin", rarity = 3, file = "char_goat_4horn.png", baseAnimal = "Goat", currencies = { { name = "DNA", amount = 400, }, { name = "Serum", amount = 105, }, }, group = 150, }, ["Super Green Finch"] = { class = "CharacterSkin", rarity = 2, file = "char_bird_greenfinch.png", baseAnimal = "Songbird", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Super Peppermint Hyena"] = { class = "CharacterSkin", rarity = 3, file = "char_hyena_striped_peppermint.png", baseAnimal = "Hyena", currencies = { { name = "DNA", amount = 480, }, { name = "Serum", amount = 125, }, }, }, ["Super Lionhead Rabbit"] = { class = "CharacterSkin", rarity = 4, file = "char_rabbit_lionhead.png", baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 310, }, { name = "Serum", amount = 80, }, }, }, ["Super Knitted Sheep"] = { class = "CharacterSkin", rarity = 3, file = "char_sheep_knitted.png", baseAnimal = "Sheep", currencies = { { name = "DNA", amount = 290, }, { name = "Serum", amount = 80, }, }, }, ["Festive Bow"] = { class = "Neck", rarity = 5, file = "Festive Bow.png", event = "Super CRISPRmas 2020", group = 14050, }, ["Green Festive Scarf"] = { class = "Neck", rarity = 2, file = "Green Festive Scarf.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 14100, }, ["Yellow Knitted Sweater"] = { class = "Clothes", rarity = 2, file = "Yellow Knitted Sweater.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 14150, }, ["Light Blue Winter Dress"] = { class = "Clothes", rarity = 3, file = "Light Blue Winter Dress.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 14200, }, ["Santa Dress"] = { class = "Clothes", rarity = 5, file = "Santa Dress.png", event = "Super CRISPRmas 2020", group = 14250, }, ["Purple Content Creator Hoodie"] = { class = "Clothes", rarity = 2, file = "Clothes_hoodie_twitch.png", description = "[[Special Cosmetics#Content Creator|Twitch Content Creator]]", group = 6000, }, ["Snowflake Pinwheel"] = { class = "MeleeSkin", rarity = 3, framed = 1, file = "melee_pinwheel_snowflake.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 650, }, group = 3650, }, ["Ski Pole"] = { class = "MeleeSkin", rarity = 3, file = "Ski Pole.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 6050, }, ["Icicle"] = { class = "MeleeSkin", rarity = 5, file = "Icicle.png", event = "Super CRISPRmas 2020", group = 6100, }, ["Red Crayon"] = { class = "MeleeSkin", rarity = 5, file = "melee_crayon_red.png", description = "[[Special Cosmetics#Super Fanart Contest|All I Want for CRISPRmas Is You (Nov-Dec 2020)]]", group = 5900, }, ["Wrapped Magnum"] = { class = "GunSkin", rarity = 2, store = "saw", currency = { name = "S.A.W. Tickets", amount = 450, }, link = "Magnum", framed = 1, group = 100, }, ["Blue Knitted Shotgun"] = { class = "GunSkin", rarity = 2, file = "Gun shotgun knitted.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 450, }, link = "Shotgun", framed = 1, }, ["Foggy Glasses"] = { class = "Glasses", rarity = 2, file = "Foggy Glasses.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 3150, }, ["2nd Anniversary Cake Gravestone"] = { class = "Gravestone", rarity = 5, file = "Gravestone_cake2-resources.assets-495.png", description = "[[Special_Cosmetics#Super_2_Year_Anniversary|Super 2 Year Anniversary]]", group = 1600, }, ["CRISPRmas Tree Umbrella"] = { class = "Umbrella", rarity = 3, store = "saw", currency = { name = "S.A.W. Tickets", amount = 400, }, framed = 1, file = "CRISPRmas Tree Umbrella.png", group = 2150, }, ["Pixile Umbrella"] = { class = "Umbrella", rarity = 5, file = "Umbrella_Pixile-resources.assets-826.png", description = "[[Special_Cosmetics#Super 2 Year Anniversary|Super 2 Year Anniversary]]", group = 3400, }, ["Seal DNA"] = { class = "DNA", rarity = 0, name = "Super Seal DNA", }, ["Super Seal"] = { class = "Character", rarity = 0, file = "Char seal-resources.assets-665.png", baseAnimal = "Seal", currencies = { { name = "DNA", amount = 175, }, { name = "Serum", amount = 45, }, }, }, ["Super Seal Pup"] = { class = "CharacterSkin", rarity = 1, file = "Char seal pup-resources.assets-1992.png", baseAnimal = "Seal", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 70, }, }, }, ["Super Sealion"] = { class = "CharacterSkin", rarity = 2, file = "Char seal sealion-resources.assets-1138.png", baseAnimal = "Seal", currencies = { { name = "DNA", amount = 325, }, { name = "Serum", amount = 85, }, }, }, ["Super Walrus"] = { class = "CharacterSkin", rarity = 3, file = "Char seal walrus-resources.assets-1155.png", baseAnimal = "Seal", currencies = { { name = "DNA", amount = 400, }, { name = "Serum", amount = 105, }, }, }, ["Blue Dual Pistols"] = { class = "GunSkin", rarity = 1, group = 3, description = "30 Dual Pistols kills", link = "Dual Pistols", }, ["Green Dual Pistols"] = { class = "GunSkin", rarity = 0, group = 2, description = "15 Dual Pistols kills", link = "Dual Pistols", }, ["Orange Dual Pistols"] = { class = "GunSkin", rarity = 0, group = 1, description = "5 Dual Pistols kills", link = "Dual Pistols", }, ["Pink Dual Pistols"] = { class = "GunSkin", rarity = 2, group = 7, description = "150 Dual Pistols kills", super_edition = 1, link = "Dual Pistols", framed = 1, }, ["Purple Dual Pistols"] = { class = "GunSkin", rarity = 1, group = 5, description = "75 Dual Pistols kills", super_edition = 1, link = "Dual Pistols", framed = 1, }, ["Red Dual Pistols"] = { class = "GunSkin", rarity = 1, group = 4, description = "50 Dual Pistols kills", link = "Dual Pistols", }, ["White Dual Pistols"] = { class = "GunSkin", rarity = 3, group = 8, description = "200 Dual Pistols kills", super_edition = 1, link = "Dual Pistols", framed = 1, }, ["Yellow Dual Pistols"] = { class = "GunSkin", rarity = 2, group = 6, description = "110 Dual Pistols kills", super_edition = 1, link = "Dual Pistols", framed = 1, }, ["Pearl and Onyx Dual Pistols"] = { class = "GunSkin", rarity = 2, name = "Pearl & Onyx Dual Pistols", store = "saw", currency = { name = "S.A.W. Tickets", amount = 450, }, link = "Dual Pistols", framed = 1, }, ["Yin and Yang Dual Pistols"] = { class = "GunSkin", rarity = 3, name = "Yin & Yang Dual Pistols", store = "saw", currency = { name = "S.A.W. Tickets", amount = 600, }, link = "Dual Pistols", framed = 1, }, ["Super Lunar Ox"] = { class = "Character", rarity = 3, file = "Char cow lunar-resources.assets-605.png", baseAnimal = "Cow", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Golden Ox"] = { class = "Character", rarity = 3, file = "Char cow golden-resources.assets-1730.png", baseAnimal = "Cow", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Demon Bull"] = { class = "Character", rarity = 4, file = "Char cow bull demon-resources.assets-1534.png", baseAnimal = "Cow", currencies = { { name = "DNA", amount = 450, }, { name = "Serum", amount = 120, }, }, }, ["Super Deity's Ox"] = { class = "Character", rarity = 4, file = "Char cow deity-resources.assets-1681.png", baseAnimal = "Cow", currencies = { { name = "DNA", amount = 460, }, { name = "Serum", amount = 125, }, }, }, ["Anvil Gravestone"] = { class = "Gravestone", rarity = 1, framed = 1, file = "Gravestone anvil-resources.assets-1158.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 150, }, group = 400, }, ["Sword Gravestone"] = { class = "Gravestone", rarity = 3, framed = 1, file = "Gravestone sword-resources.assets-463.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 400, }, group = 1350, }, ["Orange Bubble Glasses"] = { class = "Glasses", rarity = 1, framed = 1, file = "Glasses bubble orange-resources.assets-1481.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 150, }, group = 1300, }, ["Jian Sword"] = { class = "MeleeSkin", rarity = 3, framed = 1, file = "Melee jian sword-resources.assets-1656.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 650, }, bundle = "Dynasty Bundle", group = 3700, }, ["Lion Dance Ball"] = { class = "MeleeSkin", rarity = 5, file = "Melee lion dance ball-resources.assets-1413.png", event = "Year of the Super Ox 2021", group = 6150, }, ["Pipa"] = { class = "MeleeSkin", rarity = 5, file = "Melee pipa-resources.assets-1012.png", event = "Year of the Super Ox 2021", group = 6200, }, ["Dynasty Armor"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes armor dynasty-resources.assets-1122.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, bundle = "Dynasty Bundle", group = 9150, }, ["Black Hanfu"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes hanfu black-resources.assets-1180.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, group = 9200, }, ["Red Lunar Dress (2021)"] = { class = "Clothes", rarity = 5, file = "Clothes dress lunar red 2021-resources.assets-1707.png", event = "Year of the Super Ox 2021", group = 14300, }, ["Lunar Vest (2021)"] = { class = "Clothes", rarity = 5, file = "Clothes vest lunar 2021-resources.assets-924.png", event = "Year of the Super Ox 2021", group = 14350, }, ["Lion Hat"] = { class = "Hat", rarity = 3, name = "Lion Dance Hat", framed = 1, file = "Hat chinese lion-resources.assets-1305.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, group = 4850, }, ["Dynasty Helmet"] = { class = "Hat", rarity = 2, framed = 1, file = "Hat helmet dynasty-resources.assets-449.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, bundle = "Dynasty Bundle", group = 2650, }, ["Mandarin Hat (2021)"] = { class = "Hat", rarity = 5, file = "Hat mandarin 2021-resources.assets-912.png", event = "Year of the Super Ox 2021", group = 7500, }, ["Lunar Silenced Pistol"] = { class = "GunSkin", rarity = 5, event = "Year of the Super Ox 2021", link = "Silenced Pistol", }, ["Lunar JAG-7"] = { class = "GunSkin", rarity = 5, event = "Year of the Super Ox 2021", link = "JAG-7", }, ["Lantern Umbrella"] = { class = "Umbrella", rarity = 5, file = "Umbrella lantern-resources.assets-1399.png", event = "Year of the Super Ox 2021", group = 3450, }, ["Cupid Bow & Sparrow"] = { class = "GunSkin", rarity = 2, name = "Cupid's Bow & Sparrow", store = "saw", currency = { name = "S.A.W. Tickets", amount = 450, }, link = "Bow & Sparrow", framed = 1, }, ["Steampunk Glasses"] = { class = "Glasses", rarity = 4, framed = 1, file = "Eye_access_steampunk_glasses_assets.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, group = 2750, }, ["Hungry"] = { class = "Emote", rarity = 2, framed = 1, file = "Emote-hungry.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 600, }, }, ["Point"] = { class = "Emote", rarity = 3, file = "Emote-point.png", framed = 1, }, ["Chasseur Colonel Uniform"] = { class = "Clothes", rarity = 2, framed = 1, file = "outfit chasseurcolonel assets.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, bundle = "Napoleon Bundle", group = 6200, }, ["Badger DNA"] = { class = "DNA", rarity = 0, name = "Super Badger DNA", }, ["Super Badger"] = { class = "Character", rarity = 0, file = "Char-Badger.png", baseAnimal = "Badger", currencies = { { name = "DNA", amount = 185, }, { name = "Serum", amount = 50, }, }, }, ["Super Honey Badger"] = { class = "Character", rarity = 2, file = "Char-Badger-honey.png", baseAnimal = "Badger", currencies = { { name = "DNA", amount = 330, }, { name = "Serum", amount = 90, }, }, }, ["Super American Badger"] = { class = "Character", rarity = 2, file = "Char-Badger-american.png", baseAnimal = "Badger", currencies = { { name = "DNA", amount = 330, }, { name = "Serum", amount = 90, }, }, }, ["Super Honey Honey Badger"] = { class = "Character", rarity = 3, file = "Char-Badger-honeyhoney.png", baseAnimal = "Badger", currencies = { { name = "DNA", amount = 420, }, { name = "Serum", amount = 115, }, }, }, ["Pot of Gold Gravestone"] = { class = "Gravestone", rarity = 5, file = "Gravestone_potofgold.png", event = "St. Pawtrick's Day 2021", group = 1700, }, ["Hourglass Gravestone"] = { class = "Gravestone", rarity = 2, file = "Gravestone-hourglass.png", description = "''Mochi_Mei Super Content Creator Item''<br>Giveaway Exclusive", group = 750, store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Shamrock Glasses"] = { class = "Glasses", rarity = 5, file = "Glasses_shamrock.png", event = "St. Pawtrick's Day 2021", group = 3200, }, ["Steampunk Sword"] = { class = "MeleeSkin", rarity = 3, file = "Melee steampunk swordgun.png", description = "''Mochi_Mei Super Content Creator Item''", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 3750, }, ["Steampunk Umbrella"] = { class = "Umbrella", rarity = 3, file = "Umbrella steampunk.png", description = "''Mochi_Mei Super Content Creator Item''", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 2200, }, ["Steampunk Dress"] = { class = "Clothes", rarity = 4, file = "Clothes dress steampunk Foxy.png", description = "''Mochi_Mei Super Content Creator Item''", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 10700, }, ["Selfie!"] = { class = "Emote", rarity = 2, file = "Emote-selfie.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 600, }, bundle = "Selfie Bundle", }, ["Super Bunny Beanie"] = { class = "Hat", rarity = 4, file = "Hat_beanies_bunny.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, group = 6000, }, ["Pink Polka Dot Bow"] = { class = "Hat", rarity = 5, file = "Hat_pink_polkadot_bow.png", event = "Super Easter 2021", group = 7550, }, ["Spring Plaid Cap"] = { class = "Hat", rarity = 2, framed = 1, file = "Hat_spring_plaid.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, bundle = "Spring Bundle", group = 2950, }, ["Blue Bunny Ears"] = { class = "Hat", rarity = 5, file = "Hat_bunnyears_blue.png", event = "Super Easter 2021", group = 7600, }, ["Easter Bird's Nest Hat"] = { class = "Hat", rarity = 5, file = "Hat_easter_nest.png", event = "Super Easter 2021", group = 7650, }, ["Flatcap"] = { class = "Hat", rarity = 1, file = "Hat_flatcap.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 200, }, group = 1150, }, ["Chocolate Egg Gravestone"] = { class = "Gravestone", rarity = 5, file = "Gravestone-chocolate-egg.png", event = "Super Easter 2021", group = 1750, }, ["Spring Umbrella"] = { class = "Umbrella", rarity = 1, framed = 1, file = "Umbrella_spring.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 150, }, bundle = "Spring Bundle", group = 750, }, ["Easter Egg Glasses"] = { class = "Glasses", rarity = 5, file = "Glasses_easter_egg.png", event = "Super Easter 2021", group = 3250, }, ["Chocolate Bunny"] = { class = "MeleeSkin", rarity = 5, file = "Melee_chocolate_bunny.png", event = "Super Easter 2021", group = 6250, }, ["Colonel Sabre"] = { class = "MeleeSkin", rarity = 2, framed = 1, file = "Melee_colonelsabre_assets.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, bundle = "Napoleon Bundle", group = 2550, }, ["Tulips"] = { class = "MeleeSkin", rarity = 2, framed = 1, file = "Melee_tulips.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, bundle = "Spring Bundle", group = 2500, }, ["Banana Bow & Sparrow"] = { class = "GunSkin", rarity = 2, store = "saw", currency = { name = "S.A.W. Tickets", amount = 450, }, file = "Gun bow banana.png", link = "Bow & Sparrow", framed = 1, }, ["Easter Vest"] = { class = "Clothes", rarity = 5, file = "Clothes_easter_vest.png", event = "Super Easter 2021", group = 14400, }, ["Flower Dress"] = { class = "Clothes", rarity = 5, file = "Clothes_flower_dress.png", event = "Super Easter 2021", group = 14450, }, ["Spring Plaid Outfit"] = { class = "Clothes", rarity = 2, framed = 1, file = "Clothes_spring_plaid_outfit.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, group = 5950, }, ["Spring Plaid Dress"] = { class = "Clothes", rarity = 2, framed = 1, file = "Clothes_spring_plaid_dress.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, bundle = "Spring Bundle", group = 5900, }, ["Halberd"] = { class = "MeleeSkin", rarity = 2, framed = 1, file = "melee_halberd.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, bundle = "Knight Bundle", group = 2600, }, ["Knight Armor"] = { class = "Clothes", rarity = 2, framed = 1, file = "clothes_knight_armor.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, bundle = "Knight Bundle", group = 6400, }, ["Super Cherry Blossom Badger"] = { class = "Character", rarity = 3, file = "Char-badger-cherry.png", baseAnimal = "Badger", currencies = { { name = "DNA", amount = 420, }, { name = "Serum", amount = 115, }, }, }, ["Super Daffodil Horse"] = { class = "Character", rarity = 3, file = "Char-horse-daffodil.png", baseAnimal = "Horse", currencies = { { name = "DNA", amount = 420, }, { name = "Serum", amount = 115, }, }, }, ["Super Night Mare"] = { class = "Character", rarity = 3, file = "Char-horse-nightmare.png", baseAnimal = "Horse", currencies = { { name = "DNA", amount = 420, }, { name = "Serum", amount = 115, }, }, }, ["Super Violet Squirrel"] = { class = "CharacterSkin", rarity = 3, file = "Char-squirrel-violet.png", baseAnimal = "Squirrel", currencies = { { name = "DNA", amount = 170, }, { name = "Serum", amount = 45, }, }, }, ["Super Beagle"] = { class = "CharacterSkin", rarity = 2, file = "Char-dog-beagle.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Carl Coins"] = { file = "Currency Carl coins.png", class = "Currency", rarity = 0, link = "Carl Coins", }, ["SAR Tickets x3"] = { file = "Currency Tickets x3.png", class = "Currency", rarity = 5, link = "S.A.W. Tickets", }, ["Super Serum"] = { file = "Super serum.png", rarity = 0, class = "Currency", link = "Super Serum", }, ["Default AK"] = { link = "AK", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun-ak grey.png", }, ["Default Bow & Sparrow"] = { link = "Bow & Sparrow", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun bow default.png", }, ["Default Sparrow Launcher"] = { link = "Sparrow Launcher", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun crossbow default.png", }, ["Default Silenced Pistol"] = { link = "Silenced Pistol", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun-silenced-pistol grey.png", }, ["Default Pistol"] = { link = "Pistol", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun-pistol grey.png", }, ["Default M16"] = { link = "M16", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun-m16 grey.png", }, ["Default Minigun"] = { link = "Minigun", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun-minigun grey.png", }, ["Default Magnum"] = { link = "Magnum", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun-magnum grey.png", }, ["Default Shotgun"] = { link = "Shotgun", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun-shotgun grey.png", }, ["Default Sniper"] = { link = "Sniper", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun-sniper grey.png", }, ["Default Hunting Rifle"] = { link = "Hunting Rifle", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun_rifle_grey-resources.assets-1277.png", }, ["Default Deagle"] = { link = "Deagle", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun_deagle_grey.png", }, ["Default Poison Dart Gun"] = { link = "Dogna's Dart Gun", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun_dart_grey-resources.assets-5316.png", name = "Dogna's Default Dart Gun", }, ["Default Thomas Gun"] = { link = "Thomas Gun", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun-thomas gun grey.png", }, ["Default SMG"] = { link = "SMG", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun-smg grey.png", }, ["Default JAG-7"] = { link = "JAG-7", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Gun jag7.png", }, ["Default Dual Pistols"] = { link = "Dual Pistols", class = "GunSkin", rarity = 0, description = "''Available to all players''", file = "Dual Pistols.png", }, ["Turtle DNA"] = { class = "DNA", rarity = 0, name = "Super Turtle DNA", }, ["Super Turtle"] = { class = "Character", rarity = 0, file = "Char-turtle.png", baseAnimal = "Turtle", currencies = { { name = "DNA", amount = 185, }, { name = "Serum", amount = 50, }, }, }, ["Super Aqua Turtle"] = { class = "Character", rarity = 1, file = "Char-turtle-blue.png", baseAnimal = "Turtle", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 72, }, }, }, ["Life Preserver Gravestone"] = { class = "Gravestone", rarity = 2, file = "Gravestone-lifepreserver.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 800, }, ["Life Jacket"] = { class = "Neck", rarity = 2, file = "Clothes_lifejacket.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 6550, }, ["Marching Band Hat"] = { class = "Hat", rarity = 2, file = "Hat_marchingband.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 3000, }, ["Hopperfield Tophat"] = { class = "Hat", rarity = 2, file = "Hat_tophat_magician.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 3100, }, ["Boater Hat"] = { class = "Hat", rarity = 2, file = "Hat_boater_hat.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 3050, }, ["Aquamarine Fancy Glasses"] = { class = "Glasses", rarity = 2, file = "Glasses_fancy_aquablue.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 1750, }, ["Orange Crescent Glasses"] = { class = "Glasses", rarity = 2, file = "Glasses_sunglasses_crescent.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 1800, }, ["Gray Jeweled Glasses"] = { class = "Glasses", rarity = 2, file = "Glasses_jewels_grey.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 1850, }, ["Marching Cane"] = { class = "MeleeSkin", rarity = 2, file = "Melee_dancing_cane.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 2700, }, ["Lemon Thomas Gun"] = { class = "GunSkin", rarity = 2, description = "''[[Super Animal Pass Season 0.5]]''", link = "Thomas Gun", file = "Gun thomas lemon.png", framed = 1, }, ["Fish Hunting Rifle"] = { class = "GunSkin", rarity = 2, description = "''[[Super Animal Pass Season 0.5]]''", link = "Hunting Rifle", file = "Gun rifle fish.png", framed = 1, }, ["Super Loggerhead Turtle"] = { class = "Character", rarity = 2, file = "Char-turtle-loggerhead.png", baseAnimal = "Turtle", currencies = { { name = "DNA", amount = 330, }, { name = "Serum", amount = 90, }, }, }, ["Super Slider Turtle"] = { class = "Character", rarity = 2, file = "Char-turtle-slider.png", baseAnimal = "Turtle", currencies = { { name = "DNA", amount = 330, }, { name = "Serum", amount = 90, }, }, }, ["White Sailor Outfit"] = { class = "Clothes", rarity = 2, framed = 1, file = "clothes_sailor.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, bundle = "Sailor Bundle", group = 6350, }, ["Cherry Parasol"] = { class = "Umbrella", rarity = 2, framed = 1, file = "umbrella_parasol_cherries.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 250, }, bundle = "Cherry Bundle", group = 1250, }, ["Viking Axe"] = { class = "MeleeSkin", rarity = 2, framed = 1, file = "melee_viking_axe.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, bundle = "Viking Bundle", group = 2650, }, ["Viking Helmet"] = { class = "Hat", rarity = 2, framed = 1, file = "hat_viking_helmet.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, bundle = "Viking Bundle", group = 3250, }, ["Cherry Hat"] = { class = "Hat", rarity = 2, framed = 1, file = "Hat_cherries.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, bundle = "Cherry Bundle", group = 3200, }, ["Viking Outfit"] = { class = "Clothes", rarity = 2, framed = 1, file = "clothes_viking.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, bundle = "Viking Bundle", group = 6500, }, ["Cherry Dress"] = { class = "Clothes", rarity = 2, framed = 1, file = "Clothes_dress_cherries.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, bundle = "Cherry Bundle", group = 6450, }, ["Baaaarbershop Quartet Outfit"] = { class = "Clothes", rarity = 3, file = "Clothes_barbershop_quartet.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 9400, }, ["Marching Band Outfit"] = { class = "Clothes", rarity = 3, file = "Clothes_marchingband_boy.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 9300, }, ["Marching Band Skirt"] = { class = "Clothes", rarity = 3, file = "Clothes_marchingband_girl.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 9350, }, ["Hopperfield Outfit"] = { class = "Clothes", rarity = 3, file = "Clothes_tuxedo_magician.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 9450, }, ["Fishing Hat"] = { class = "Hat", rarity = 3, file = "Hat_fisherman.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 5000, }, ["Banana Leaf Umbrella"] = { class = "Umbrella", rarity = 3, file = "Umbrella_leaves.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 2300, }, ["Mop"] = { class = "MeleeSkin", rarity = 3, file = "Melee_mop.png", framed = 1, name = "Modest Mop", description = "[[Super Animal Pass Season 0.5]]", group = 3800, }, ["Microphone Stand"] = { class = "MeleeSkin", rarity = 3, file = "Melee_microphone_vocal.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 3850, }, ["Ocean Magnum"] = { class = "GunSkin", rarity = 3, description = "''[[Super Animal Pass Season 0.5]]''", link = "Magnum", file = "Gun magnum waves.png", framed = 1, }, ["Super Tortoise"] = { class = "Character", rarity = 3, file = "Char-turtle-tortoise.png", baseAnimal = "Turtle", currencies = { { name = "DNA", amount = 420, }, { name = "Serum", amount = 115, }, }, }, ["Cooler Gravestone"] = { class = "Gravestone", rarity = 4, file = "Gravestone-coolerbox.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 1450, }, ["Fishing Rod"] = { class = "MeleeSkin", rarity = 4, file = "Melee_fishing_rod.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 4350, }, ["Strawberry Costume"] = { class = "Clothes", rarity = 4, file = "Clothes_strawberry.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 10750, }, ["Clarinet"] = { class = "MeleeSkin", rarity = 4, file = "Melee_clarinet.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 4400, }, ["Vaporwave M16"] = { class = "GunSkin", rarity = 4, description = "''[[Super Animal Pass Season 0.5]]''", link = "M16", file = "Gun m16 sunset.png", framed = 1, }, ["Super Avocado Sloth"] = { class = "CharacterSkin", rarity = 4, file = "Char-sloth-avocado.png", baseAnimal = "Sloth", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Dragon Fruit Wolf"] = { class = "CharacterSkin", rarity = 4, file = "Char-wolf-dragonfruit.png", baseAnimal = "Wolf", currencies = { { name = "DNA", amount = 460, }, { name = "Serum", amount = 124, }, }, }, ["Beach Sunglasses"] = { class = "Glasses", rarity = 5, file = "Glasses_sunglasses_beach_party.png", event = "Summer Royale 2021", currency = { name = "Fruit Baskets", amount = 150, }, group = 3300, }, ["Blue Striped Umbrella"] = { class = "Umbrella", rarity = 5, file = "umbrella_striped_blue.png", event = "Summer Royale 2021", currency = { name = "Fruit Baskets", amount = 150, }, group = 3500, }, ["Message In A Bottle"] = { name = "Message in a Bottle", class = "MeleeSkin", rarity = 5, file = "Melee_message_bottle.png", event = "Summer Royale 2021", currency = { name = "Fruit Baskets", amount = 450, }, group = 6300, }, ["Blue Beach Hat"] = { class = "Hat", rarity = 5, file = "Hat_beach_blue.png", event = "Summer Royale 2021", currency = { name = "Fruit Baskets", amount = 300, }, group = 7700, }, ["Starfish Visor"] = { class = "Hat", rarity = 5, file = "Hat_visor_starfish.png", event = "Summer Royale 2021", currency = { name = "Fruit Baskets", amount = 300, }, group = 7750, }, ["Sandcastle Gravestone"] = { class = "Gravestone", rarity = 5, file = "Gravestone-sandcastle.png", event = "Summer Royale 2021", currency = { name = "Fruit Baskets", amount = 450, }, group = 1800, }, ["Beach Party Sarong"] = { class = "Clothes", rarity = 5, file = "Clothes_sarong_beach_party.png", event = "Summer Royale 2021", currency = { name = "Fruit Baskets", amount = 450, }, group = 14500, }, ["Fisherman Beanie"] = { class = "Hat", rarity = 1, file = "hat_beanie_fisherman.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 1100, }, ["Fisherman Overalls"] = { class = "Clothes", rarity = 3, file = "Clothes overalls fisherman.png", framed = 1, description = "[[Super Animal Pass Season 0.5]]", group = 9000, }, ["Beach Party Outfit"] = { class = "Clothes", rarity = 5, file = "Clothes_shirt_beach_party.png", event = "Summer Royale 2021", currency = { name = "Fruit Baskets", amount = 450, }, group = 14550, }, ["Disco Outfit"] = { class = "Clothes", rarity = 2, framed = 1, file = "Clothes_suit_disco.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, bundle = "Disco Bundle", group = 6150, }, ["Disco Dress"] = { class = "Clothes", rarity = 2, framed = 1, file = "Clothes_dress_disco.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, bundle = "Disco Bundle", group = 6100, }, ["Disco Headband"] = { class = "Hat", rarity = 2, framed = 1, file = "Hat_headband_disco.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, bundle = "Disco Bundle", group = 2600, }, ["Red Content Creator Hoodie"] = { class = "Clothes", rarity = 2, file = "Clothes_hoodie_YT.png", description = "[[Special Cosmetics#Content Creator|YouTube Content Creator]]", group = 6050, }, ["Anchor Gravestone"] = { class = "Gravestone", rarity = 2, framed = 1, file = "gravestone-anchor.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 250, }, bundle = "Sailor Bundle", group = 850, }, ["White Sailor Hat"] = { class = "Hat", rarity = 2, framed = 1, file = "hat_sailor_white.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, bundle = "Sailor Bundle", group = 3150, }, ["Wooden Oar"] = { class = "MeleeSkin", rarity = 1, framed = 1, file = "Melee_oar.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 300, }, group = 1000, }, ["Super Rotting Fox"] = { class = "CharacterSkin", rarity = 4, file = "Char fox rotting-resources.assets-2051.png", description = "<small>''TheRotFox Super Content Creator Item''</small>", baseAnimal = "Fox", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["SAR Tonight M16"] = { class = "GunSkin", rarity = 5, file = "Gun m16 sart.png", description = "''[[Special Cosmetics#SAR Tonight|SAR Tonight reward]]''", link = "M16", }, ["Mini Bear"] = { class = "Pet", rarity = 3, framed = 1, file = "Pet-bear.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, link = "Mini Animal Pets", group = 10, }, ["Mini Capybara"] = { class = "Pet", rarity = 3, framed = 1, file = "Pet-capy.png", description = "[[Super Animal Pass Season 1]]", link = "Mini Animal Pets", group = 130, }, ["Mini Cat"] = { class = "Pet", rarity = 3, framed = 1, file = "Pet-cat.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, link = "Mini Animal Pets", group = 20, }, ["Mini Dog"] = { class = "Pet", rarity = 3, framed = 1, file = "Pet-dog.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, link = "Mini Animal Pets", group = 40, }, ["Mini Fox"] = { class = "Pet", rarity = 3, framed = 1, file = "Pet-fox.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, link = "Mini Animal Pets", group = 50, }, ["Mini Red Panda"] = { class = "Pet", rarity = 3, framed = 1, file = "Pet-redpanda.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, link = "Mini Animal Pets", group = 70, }, ["Mini Skullcat"] = { class = "Pet", rarity = 3, framed = 1, file = "Pet-skullcat.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, link = "Mini Animal Pets", group = 90, }, ["Mini Tiger"] = { class = "Pet", rarity = 3, framed = 1, file = "Pet-tiger.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, link = "Mini Animal Pets", group = 110, }, ["Mini Wolf"] = { class = "Pet", rarity = 3, framed = 1, file = "Pet-wolf.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, link = "Mini Animal Pets", group = 120, }, ["S.A.W. Visitor Outfit"] = { class = "Clothes", rarity = 4, framed = 1, file = "Clothes tourist.png", description = "[[Super Animal Pass Season 1]]", group = 10800, }, ["CRISPR Cafe Apron"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes barista1.png", description = "[[Super Animal Pass Season 1]]", group = 9650, }, ["CRISPR Cafe Half-Apron"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes barista2.png", description = "[[Super Animal Pass Season 1]]", group = 9700, }, ["Slow Food Uniform"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes chef sushi.png", description = "[[Super Animal Pass Season 1]]", group = 9600, }, ["Bearlesque Outfit"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes dress bearlesque.png", description = "[[Super Animal Pass Season 1]]", group = 9800, }, ["Park Guide Uniform"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes park staff.png", description = "[[Super Animal Pass Season 1]]", group = 9750, }, ["Explorer Outfit"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes explorer.png", description = "[[Super Animal Pass Season 1]]", group = 9550, }, ["Party Horn Emote"] = { class = "Emote", rarity = 4, framed = 1, file = "Emote-partyhorn.png", }, ["Cake SMG"] = { class = "GunSkin", rarity = 2, description = "''[[Super Animal Pass Season 1]]''", framed = 1, file = "Gun smg cake.png", link = "SMG", }, ["Chocolate Pistol"] = { class = "GunSkin", rarity = 2, description = "''[[Super Animal Pass Season 1]]''", framed = 1, file = "Gun pistol chocolate.png", link = "Pistol", group = 450, }, ["Safari Dogna's Dart Gun"] = { class = "GunSkin", rarity = 2, file = "Safari Dogna's Dartgun.png", name = "Dogna's Safari Dart Gun", description = "''[[Super Animal Pass Season 1]]''", link = "Dogna's Dart Gun", framed = 1, }, ["Icecream Cone"] = { class = "MeleeSkin", rarity = 4, framed = 1, file = "Melee icecream cone.png", description = "[[Super Animal Pass Season 1]]", group = 4450, }, ["Ketchup"] = { class = "MeleeSkin", rarity = 3, framed = 1, file = "Melee ketchup.png", description = "[[Super Animal Pass Season 1]]", group = 4000, }, ["Spatula"] = { class = "MeleeSkin", rarity = 3, framed = 1, file = "Melee spatula.png", description = "[[Super Animal Pass Season 1]]", group = 3950, }, ["Water Bottle"] = { class = "MeleeSkin", rarity = 3, framed = 1, file = "Melee water bottle.png", description = "[[Super Animal Pass Season 1]]", group = 4050, }, ["Slow Food Chef Hat"] = { class = "Hat", rarity = 2, framed = 1, file = "Hat chef sushi.png", description = "[[Super Animal Pass Season 1]]", group = 3300, }, ["Cupcake"] = { class = "Hat", rarity = 3, framed = 1, file = "Hat cupcake.png", description = "[[Super Animal Pass Season 1]]", group = 5150, }, ["Fries"] = { class = "Hat", rarity = 3, framed = 1, file = "Hat fries.png", description = "[[Super Animal Pass Season 1]]", group = 5100, }, ["Pie"] = { class = "Hat", rarity = 3, framed = 1, file = "Hat pie slice.png", description = "[[Super Animal Pass Season 1]]", group = 5200, }, ["Bearlesque Tophat"] = { class = "Hat", rarity = 3, framed = 1, file = "Hat tophat bearlesque.png", description = "[[Super Animal Pass Season 1]]", group = 5250, }, ["Explorer Hat"] = { class = "Hat", rarity = 3, framed = 1, file = "Hat explorer.png", description = "[[Super Animal Pass Season 1]]", group = 5050, }, ["Leopard Sunglasses"] = { class = "Glasses", rarity = 2, framed = 1, file = "Glasses sunglasses leopard.png", description = "[[Super Animal Pass Season 1]]", group = 1900, }, ["Tiger Sunglasses"] = { class = "Glasses", rarity = 2, framed = 1, file = "Glasses sunglasses tiger.png", description = "[[Super Animal Pass Season 1]]", group = 1950, }, ["Zebra Sunglasses"] = { class = "Glasses", rarity = 2, framed = 1, file = "Glasses sunglasses zebra.png", description = "[[Super Animal Pass Season 1]]", group = 2000, }, ["SAW Umbrella"] = { class = "Umbrella", rarity = 2, name = "S.A.W. Umbrella", framed = 1, file = "Umbrella SAW.png", description = "[[Super Animal Pass Season 1]]", group = 1350, }, ["Variety Tuxedo"] = { class = "Clothes", rarity = 5, file = "outfit variety tux.png", description = "[[Special Cosmetics#Variety - the Children's Charity 2021|Variety - the Children's Charity 2021]]", group = 14600, }, ["Variety Tophat"] = { class = "Hat", rarity = 5, file = "hat variety top.png", description = "[[Special Cosmetics#Variety - the Children's Charity 2021|Variety - the Children's Charity 2021]]", group = 7800, }, ["Variety Heart Antennae"] = { class = "Hat", rarity = 5, file = "hat heart antennae.png", description = "[[Special Cosmetics#Petember|Petember 2021]]", group = 7850, }, ["Variety Umbrella"] = { class = "Umbrella", rarity = 5, file = "umbrella variety petember.png", description = "[[Special Cosmetics#Variety - the Children's Charity 2021|Variety - the Children's Charity 2021]]", group = 3550, }, ["Super Frog"] = { class = "Character", rarity = 0, file = "Char-Frog.png", baseAnimal = "Frog", currencies = { { name = "DNA", amount = 125, }, { name = "Serum", amount = 30, }, }, }, ["Super Tree Frog"] = { class = "Character", rarity = 2, file = "Char-Frog treefrog.png", baseAnimal = "Frog", currencies = { { name = "DNA", amount = 220, }, { name = "Serum", amount = 85, }, }, }, ["Super Rain Frog"] = { class = "Character", rarity = 2, file = "Char-Frog rainfrog.png", baseAnimal = "Frog", currencies = { { name = "DNA", amount = 210, }, { name = "Serum", amount = 58, }, }, }, ["Super Horned Frog"] = { class = "Character", rarity = 3, file = "Char-Frog horned.png", baseAnimal = "Frog", currencies = { { name = "DNA", amount = 280, }, { name = "Serum", amount = 85, }, }, }, ["Super Dart Frog"] = { class = "Character", rarity = 2, file = "Char-Frog yellowblue.png", baseAnimal = "Frog", currencies = { { name = "DNA", amount = 220, }, { name = "Serum", amount = 58, }, }, }, ["Super Warrior Skullcat"] = { class = "CharacterSkin", rarity = 3, file = "Char-skullcat-feral.png", description = "<small>[[Season 1 Starter Pack]]</small>", baseAnimal = "Skullcat", framed = 1, group = 1100, }, ["Warrior Outfit"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes tribal.png", description = "<small>[[Season 1 Starter Pack]]</small>", group = 9500, }, ["Blue Crayon"] = { class = "MeleeSkin", rarity = 5, file = "Melee crayon blue.png", description = "[[Special Cosmetics#Super Fanart Contest|Opening Day at Super Animal World (Jul-Aug 2021)]]", group = 5950, }, ["Pumpkin Shotgun"] = { class = "GunSkin", rarity = 5, file = "Gun shotgun pumpkin.png", event = "Super Howloween 2021", currency = { name = "Candy Corn", amount = 450, }, link = "Shotgun", }, ["Bones Gravestone"] = { class = "Gravestone", rarity = 5, file = "Gravestone bones.png", event = "Super Howloween 2021", currency = { name = "Candy Corn", amount = 900, }, group = 1850, }, ["Jack-O-Cap"] = { class = "Hat", rarity = 5, file = "Hat baseball halloween.png", event = "Super Howloween 2021", currency = { name = "Candy Corn", amount = 450, }, group = 7900, }, ["Haunted Hat"] = { class = "Hat", rarity = 5, file = "Tophat_eyes.png", event = "Super Howloween 2021", currency = { name = "Candy Corn", amount = 900, }, group = 7950, }, ["Pumpkin Glasses"] = { class = "Glasses", rarity = 5, file = "Glasses pumpkins.png", event = "Super Howloween 2021", currency = { name = "Candy Corn", amount = 450, }, group = 3350, }, ["Spiderweb Sweater"] = { class = "Clothes", rarity = 5, file = "Clothes sweater spiderweb.png", event = "Super Howloween 2021", currency = { name = "Candy Corn", amount = 900, }, group = 14650, }, ["Candy Corn Dress"] = { class = "Clothes", rarity = 5, file = "Clothes_dress_candycorn.png", event = "Super Howloween 2021", currency = { name = "Candy Corn", amount = 1337, }, group = 14700, }, ["Candlestick"] = { class = "MeleeSkin", rarity = 5, file = "Melee candlestick.png", event = "Super Howloween 2021", currency = { name = "Candy Corn", amount = 1337, }, group = 6350, }, ["Coffin Gravestone"] = { class = "Gravestone", rarity = 2, framed = 1, file = "Gravestone coffin.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 250, }, group = 900, }, ["Spooky Clown Outfit"] = { class = "Clothes", rarity = 2, framed = 1, file = "Clothes scary clown.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, bundle = "Spooky Clown Bundle", group = 6650, }, ["Zombie Professional Attire"] = { class = "Clothes", rarity = 2, framed = 1, file = "Clothes zombie salaryman.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, group = 6600, }, ["Spooky Clown Hat"] = { class = "Hat", rarity = 1, framed = 1, file = "Hat scary clown.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 200, }, bundle = "Spooky Clown Bundle", group = 1200, }, ["Bones Umbrella"] = { class = "Umbrella", rarity = 1, framed = 1, file = "Umbrella bones.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 150, }, group = 800, }, ["Spooky Clown Umbrella"] = { class = "Umbrella", rarity = 3, framed = 1, file = "Umbrella clown.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 400, }, bundle = "Spooky Clown Bundle", group = 2350, }, ["White Sailor Dress"] = { class = "Clothes", rarity = 2, framed = 1, file = "clothes_dress_sailor.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, bundle = "Sailor Bundle", group = 6300, }, ["SAR Tonight Hoodie"] = { class = "Clothes", rarity = 5, file = "Outfit sart hoodie.png", description = "[[Special Cosmetics#SAR Tonight|SAR Tonight]]", group = 11250, }, ["Spidery Witch Hat"] = { class = "Hat", rarity = 1, framed = 1, file = "Hat spider.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 200, }, group = 1250, }, ["Zombie School Uniform"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes zombie schoolgirl.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, group = 12950, }, ["Spiderweb Glasses"] = { class = "Glasses", rarity = 2, framed = 1, file = "glasses_spiderweb.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 250, }, group = 2100, }, ["Macuahuitl"] = { class = "MeleeSkin", file = "Melee macuahuitl.png", description = "<small>[[Season 1 Starter Pack]]</small>", group = 3900, rarity = 3, framed = 1, }, ["Vampire Hunter Outfit"] = { class = "Clothes", rarity = 5, file = "Clothes vampire hunter.png", description = "[[Special_Cosmetics#Twitch Drops October 2021|Twitch Drops October 2021]]", group = 14750, }, ["Vampire Hunter Hat"] = { class = "Hat", rarity = 5, file = "Hat vampire hunter.png", description = "[[Special_Cosmetics#Twitch Drops October 2021|Twitch Drops October 2021]]", group = 8000, }, ["Wooden Stake"] = { class = "MeleeSkin", rarity = 5, file = "Melee wooden stake.png", description = "[[Special_Cosmetics#Twitch Drops October 2021|Twitch Drops October 2021]]", group = 6400, }, ["Vampire Hunter Sparrow Launcher"] = { class = "GunSkin", rarity = 5, file = "Vampire Hunter Sparrow Launcher.png", description = "[[Special_Cosmetics#Twitch Drops October 2022|Twitch Drops October 2022]]", link = "Sparrow Launcher", }, ["Vampire Hunter Glasses"] = { class = "Glasses", rarity = 5, file = "Vampire Hunter Glasses.png", description = "[[Special_Cosmetics#Twitch Drops October 2022|Twitch Drops October 2022]]", }, ["Grim Reaper Scythe"] = { class = "MeleeSkin", rarity = 3, framed = 1, file = "Melee grimreaper scythe.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 650, }, group = 6050, }, ["Soda Bottle"] = { class = "MeleeSkin", rarity = 3, file = "Melee soda bottle.png ", description = "[[Super Animal Mods|Camer Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 3600, }, ["White Dragon Umbrella"] = { class = "Umbrella", rarity = 3, file = "Umbrella dragon.png", description = "[[Super Animal Mods|Littlefish Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 2200, }, ["Hotdog Outfit"] = { class = "Clothes", rarity = 3, file = "Clothes hotdog.png", description = "''Enocinoco Super Content Creator Item''", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 13000, }, ["Pancakes"] = { class = "Hat", rarity = 2, file = "Hat pancake.png", description = "''Enocinoco Super Content Creator Item''", store = "carl", currency = { name = "Carl Coins", amount = 750, }, group = 3400, }, ["Ham Leg"] = { class = "MeleeSkin", rarity = 2, file = "Melee meat.png", description = "''Enocinoco Super Content Creator Item''", group = 2750, store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Shiba Umbrella"] = { class = "Umbrella", rarity = 4, file = "Umbrella animal shiba.png", description = "''Enocinoco Super Content Creator Item''", group = 2750, store = "carl", currency = { name = "Carl Coins", amount = 3000, }, }, ["RAM Stick"] = { class = "MeleeSkin", rarity = 3, description = "''[[Special Cosmetics#PC Gamer Magazine July 2021|PC Gamer Magazine July 2021]]''", group = 3750, }, ["PC Gamer AK"] = { class = "GunSkin", rarity = 2, description = "''[[Special Cosmetics#PC Gamer Magazine July 2021|PC Gamer Magazine July 2021]]''", link = "AK", }, ["PC Gamer Biker Jacket"] = { class = "Clothes", rarity = 3, description = "[[Special Cosmetics#PC Gamer Magazine July 2021|PC Gamer Magazine July 2021]]", group = 9300, }, ["PC Gamer Umbrella"] = { class = "Umbrella", rarity = 2, description = "[[Special Cosmetics#PC Gamer Magazine July 2021|PC Gamer Magazine July 2021]]", group = 1300, }, ["PC Gamer Sniper"] = { class = "GunSkin", rarity = 2, link = "Sniper", description = "''[[Special Cosmetics#PC Gamer Magazine July 2021|PC Gamer Magazine July 2021]]''", }, ["PC Gamer SMG"] = { class = "GunSkin", rarity = 2, link = "SMG", description = "''[[Special Cosmetics#PC Gamer Magazine July 2021|PC Gamer Magazine July 2021]]''", }, ["Coconut Costume"] = { class = "Clothes", rarity = 3, file = "Clothes_cocostume.png", description = "[[Super Animal Mods|Coconyan Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 13100, }, ["Skullcat Hanbok"] = { class = "Clothes", rarity = 3, file = "Clothes_hanbok_skullcat.png", description = "[[Super Animal Mods|Kom JJi Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 13050, }, ["Super Moon Bear"] = { class = "CharacterSkin", rarity = 3, file = "Char-bear-moon.png", description = "<small>[[Season 2 Starter Pack]]</small>", baseAnimal = "Bear", framed = 1, group = 1050, }, ["Warrior Monk Sword"] = { class = "MeleeSkin", rarity = 3, file = "melee_shaolin_sword.png", description = "<small>[[Season 2 Starter Pack]]</small>", framed = 1, group = 6100, }, ["Warrior Monk Outfit"] = { class = "Clothes", rarity = 3, file = "clothes_warrior_monk.png", description = "<small>[[Season 2 Starter Pack]]</small>", framed = 1, group = 13000, }, ["Gingerbread Gravestone"] = { class = "Gravestone", rarity = 5, event = "Super CRISPRmas 2021", currency = { name = "Candy Canes", amount = 900, }, file = "Gravestone-gingerbread.png", group = 1900, }, ["CRISPRmas Tree Dress"] = { class = "Clothes", rarity = 5, event = "Super CRISPRmas 2021", currency = { name = "Candy Canes", amount = 1337, }, file = "Clothes CRISPRmas tree.png", group = 14800, }, ["Snowflake Silenced Pistol"] = { class = "GunSkin", rarity = 5, event = "Super CRISPRmas 2021", currency = { name = "Candy Canes", amount = 900, }, link = "Silenced Pistol", file = "Gun silenced pistol snowflake.png", }, ["Snow Shovel"] = { class = "MeleeSkin", rarity = 5, event = "Super CRISPRmas 2021", currency = { name = "Candy Canes", amount = 450, }, file = "Melee snow shovel.png", group = 6450, }, ["Winter Fur Hat"] = { class = "Hat", rarity = 5, event = "Super CRISPRmas 2021", currency = { name = "Candy Canes", amount = 1337, }, file = "Hat fur hat.png", group = 8100, }, ["Red Pom Beanie"] = { class = "Hat", rarity = 5, event = "Super CRISPRmas 2021", currency = { name = "Candy Canes", amount = 450, }, file = "Hat pombeanie christmas.png", group = 8050, }, ["Ice Sunglasses"] = { class = "Glasses", rarity = 5, event = "Super CRISPRmas 2021", currency = { name = "Candy Canes", amount = 450, }, file = "Sunglasses ice.png", group = 3400, }, ["Festive Lights Umbrella"] = { class = "Umbrella", rarity = 5, event = "Super CRISPRmas 2021", currency = { name = "Candy Canes", amount = 900, }, file = "Umbrella christmas lights.png", group = 3600, }, ["Clipboard Emote"] = { class = "Emote", rarity = 4, framed = 1, name = "Clipboard", file = "Emote-clipboard.png", description = "[[Super Animal Pass Season 2]]", }, ["Lace Umbrella"] = { class = "Umbrella", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 2450, }, ["Clock Umbrella"] = { class = "Umbrella", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 2400, }, ["Honeycomb Pistol"] = { class = "GunSkin", rarity = 2, framed = 1, link = "Pistol", description = "''[[Super Animal Pass Season 2]]''", group = 500, }, ["Wooden Magnum"] = { class = "GunSkin", rarity = 2, framed = 1, link = "Magnum", description = "''[[Super Animal Pass Season 2]]''", group = 150, }, ["Construction AK"] = { class = "GunSkin", rarity = 3, framed = 1, link = "AK", description = "''[[Super Animal Pass Season 2]]''", group = 100, }, ["Chainsaw"] = { class = "MeleeSkin", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 6700, }, ["Handsaw"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 6200, }, ["Claw Hammer"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 6150, }, ["Honey Dipper"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 6250, }, ["Screwdriver"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 2800, }, ["Honeycomb Glasses"] = { class = "Glasses", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 2600, }, ["Tortoise Sunglasses"] = { class = "Glasses", rarity = 1, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 1350, }, ["Strainer Helmet"] = { class = "Hat", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 2]]", file = "Hat colander.png", group = 3600, }, ["Hardhat"] = { class = "Hat", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 3450, }, ["Caver Helmet"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 5350, }, ["Blueprint Hat"] = { class = "Hat", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 3550, }, ["Sticky Note"] = { class = "Hat", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 2]]", file = "hat_post-it.png", group = 3500, }, ["Bee Antennae"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 5300, }, ["Safety Vest"] = { class = "Clothes", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 14200, }, ["Carpenter Overalls"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 14300, }, ["Bee Costume"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 14350, }, ["Steampunk Vest"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 10850, }, ["Steampunk Skirt"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 10900, }, ["Caver Outfit"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 14400, }, ["SAW Accountant Uniform"] = { class = "Clothes", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 14250, }, ["Traffic Cone Gravestone"] = { class = "Gravestone", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 1400, }, ["Roadblock Gravestone"] = { class = "Gravestone", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 2]]", group = 1500, }, ["Winter Coat"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes coat winter.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, group = 14250, }, ["CRISPRmas Carol"] = { class = "Emote", rarity = 3, framed = 1, file = "Emote-CRISPRmas carol.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 800, }, }, ["3rd Anniversary Cake Gravestone"] = { class = "Gravestone", rarity = 5, file = "Gravestone-cake3.png", description = "[[Special_Cosmetics#Super 3 Year Anniversary|Super 3 Year Anniversary]]", group = 1950, }, ["Super Reindeer"] = { class = "CharacterSkin", rarity = 4, file = "Char-deer-reindeer asset.png", baseAnimal = "Deer", currencies = { { name = "DNA", amount = 290, }, { name = "Serum", amount = 80, }, }, }, ["Super Beaver"] = { class = "Character", rarity = 0, file = "Char-Beaver.png", baseAnimal = "Beaver", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Super Pink Beaver"] = { class = "Character", rarity = 2, file = "Char-Beaver-pink.png", baseAnimal = "Beaver", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Super Beever"] = { class = "Character", rarity = 3, file = "Char-Beaver-bee.png", baseAnimal = "Beaver", currencies = { { name = "DNA", amount = 380, }, { name = "Serum", amount = 100, }, }, }, ["Beaver DNA"] = { class = "DNA", rarity = 0, name = "Super Beaver DNA", file = "DNA Beaver.png", }, ["Blue & Black Hoodie"] = { class = "Clothes", rarity = 3, framed = 0, file = "Clothes hoodie PS.png", description = "[[Season 2 PlayStation Plus Pack]]", group = 14450, }, ["Blue & Black M16"] = { class = "GunSkin", rarity = 2, framed = 0, link = "M16", file = "Gun M16 PS.png", description = "''[[Season 2 PlayStation Plus Pack]]''", }, ["Dogna's Blue & Black Dart Gun"] = { class = "GunSkin", rarity = 2, name = "Dogna’s Blue & Black Dart Gun", framed = 0, link = "Dogna's Dart Gun", file = "Gun dart PS.png", description = "''[[Season 2 PlayStation Plus Pack]]''", }, ["Blue Cybersword"] = { class = "MeleeSkin", rarity = 4, framed = 0, file = "Melee cybersword PS.png", description = "[[Season 2 PlayStation Plus Pack]]", group = 6750, }, ["Green & Black Hoodie"] = { class = "Clothes", rarity = 3, framed = 0, file = "Clothes hoodie Xbox.png", description = "[[Season 2 Xbox Perks Pack]]", group = 14500, }, ["Green & Black M16"] = { class = "GunSkin", rarity = 2, framed = 0, link = "M16", file = "Gun M16 Xbox.png", description = "''[[Season 2 Xbox Perks Pack]]''", }, ["Dogna's Green & Black Dart Gun"] = { class = "GunSkin", rarity = 2, name = "Dogna’s Green & Black Dart Gun", framed = 0, link = "Dogna's Dart Gun", file = "Gun dart Xbox.png", description = "''[[Season 2 Xbox Perks Pack]]''", }, ["Green Cybersword"] = { class = "MeleeSkin", rarity = 4, framed = 0, file = "Melee cybersword Xbox.png", description = "[[Season 2 Xbox Perks Pack]]", group = 6800, }, ["Snowy Umbrella"] = { class = "Umbrella", rarity = 2, framed = 1, file = "Umbrella snow.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 250, }, group = 3100, }, ["Gingerbread Minigun"] = { class = "GunSkin", rarity = 2, framed = 1, link = "Minigun", file = "Gun minigun gingerbread.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 450, }, }, ["Mistletoe"] = { class = "MeleeSkin", rarity = 2, framed = 1, file = "Melee mistletoe.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, group = 2800, }, ["Detective Umbrella"] = { class = "Umbrella", rarity = 2, framed = 1, file = "Umbrella detective.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 250, }, bundle = "Detective Bundle", group = 3150, }, ["Detective Outfit"] = { class = "Clothes", rarity = 2, framed = 1, file = "Clothes detective.png ", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, bundle = "Detective Bundle", group = 14300, }, ["Detective Hat"] = { class = "Hat", rarity = 2, framed = 1, file = "Hat detective.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, bundle = "Detective Bundle", group = 3650, }, ["Magnifying Glass"] = { class = "MeleeSkin", rarity = 2, framed = 2, file = "Melee magnifying glass.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, bundle = "Detective Bundle", group = 2850, }, ["Tea Leaf Umbrella"] = { class = "Umbrella", rarity = 3, file = "Umbrella tealeaf.png", description = "''wvbBB Super Content Creator Item''<br>[[Special_Cosmetics#Twitch Drops wvbBB Super Content Creator Set|Twitch Drops wvbBB SCC Set]]", group = 2500, store = "carl", currency = { name = "Carl Coins", amount = 1500, }, }, ["Teacup Pajamas"] = { name = "Cafe Pajamas", class = "Clothes", rarity = 3, file = "Clothes onesie vwbBB.png", description = "''wvbBB Super Content Creator Item''<br>[[Special_Cosmetics#Twitch Drops wvbBB Super Content Creator Set|Twitch Drops wvbBB SCC Set]]", group = 14550, store = "carl", currency = { name = "Carl Coins", amount = 1500, }, }, ["Blue Bow Hairband"] = { class = "Hat", rarity = 2, file = "Hat bow vwbBB.png", description = "''wvbBB Super Content Creator Item''<br>[[Special_Cosmetics#Twitch Drops wvbBB Super Content Creator Set|Twitch Drops wvbBB SCC Set]]", group = 3700, store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Bubble Tea Gravestone"] = { class = "Gravestone", rarity = 4, file = "Gravestone-boba.png", description = "''wvbBB Super Content Creator Item''<br>[[Special_Cosmetics#Twitch Drops wvbBB Super Content Creator Set|Twitch Drops wvbBB SCC Set]]", group = 1550, store = "carl", currency = { name = "Carl Coins", amount = 3000, }, }, ["Mini Deer"] = { class = "Pet", rarity = 3, framed = 1, file = "Pet-deer.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, group = 30, link = "Mini Animal Pets", }, ["Mini Raccoon"] = { class = "Pet", rarity = 3, framed = 1, file = "Pet-raccoon.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, group = 60, link = "Mini Animal Pets", }, ["Mini Sheep"] = { class = "Pet", rarity = 3, framed = 1, file = "Pet-sheep.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, group = 80, link = "Mini Animal Pets", }, ["Mini Skunk"] = { class = "Pet", rarity = 3, framed = 1, file = "Pet-skunk.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, group = 100, link = "Mini Animal Pets", }, ["Default BCG"] = { class = "GunSkin", rarity = 0, link = "Big Clucking Gun", file = "Gun egglauncher grey.png", description = "''Available to all players''", group = 50, }, ["Orange BCG"] = { class = "GunSkin", rarity = 0, link = "Big Clucking Gun", file = "Gun egglauncher orange.png", description = "2 BCG kills", group = 100, }, ["Green BCG"] = { class = "GunSkin", rarity = 0, link = "Big Clucking Gun", file = "Gun egglauncher green.png", description = "5 BCG kills", group = 150, }, ["Blue BCG"] = { class = "GunSkin", rarity = 1, link = "Big Clucking Gun", file = "Gun egglauncher blue.png", description = "10 BCG kills", group = 200, }, ["Red BCG"] = { class = "GunSkin", rarity = 1, link = "Big Clucking Gun", file = "Gun egglauncher red.png", description = "20 BCG kills", group = 250, }, ["Purple BCG"] = { class = "GunSkin", rarity = 1, framed = 1, link = "Big Clucking Gun", file = "Gun egglauncher purple.png", description = "35 BCG kills", super_edition = 1, group = 300, }, ["Yellow BCG"] = { class = "GunSkin", rarity = 2, framed = 1, link = "Big Clucking Gun", file = "Gun egglauncher yellow.png", description = "50 BCG kills", super_edition = 1, group = 350, }, ["Pink BCG"] = { class = "GunSkin", rarity = 2, framed = 1, link = "Big Clucking Gun", file = "Gun egglauncher pink.png", description = "70 BCG kills", super_edition = 1, group = 400, }, ["White BCG"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Big Clucking Gun", file = "Gun egglauncher white.png", description = "100 BCG kills", super_edition = 1, group = 500, }, ["Retro BCG"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Big Clucking Gun", file = "Gun egglauncher doom.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 600, }, group = 450, }, ["Ming Hat"] = { class = "Hat", rarity = 2, framed = 1, file = "Hat ming.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, bundle = "Ming Bundle", group = 3750, }, ["Ming Outfit"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes dress ming M.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, bundle = "Ming Bundle", group = 14600, }, ["Ming Dress"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes dress ming F.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, bundle = "Ming Bundle", group = 14650, }, ["Super Golden Tiger"] = { class = "CharacterSkin", rarity = 3, file = "Char-tiger-golden.png", baseAnimal = "Tiger", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 40, }, }, group = 100, }, ["Super Toy Tiger"] = { class = "CharacterSkin", rarity = 4, file = "Char-tiger-toy.png", baseAnimal = "Tiger", currencies = { { name = "DNA", amount = 220, }, { name = "Serum", amount = 62, }, }, group = 200, }, ["Super Bengal Tiger"] = { class = "CharacterSkin", rarity = 4, file = "Char-tiger-bengal.png", baseAnimal = "Tiger", currencies = { { name = "DNA", amount = 220, }, { name = "Serum", amount = 62, }, }, group = 250, }, ["Super Lunar Tiger"] = { class = "CharacterSkin", rarity = 2, file = "Char-tiger-lunar.png", baseAnimal = "Tiger", currencies = { { name = "DNA", amount = 120, }, { name = "Serum", amount = 35, }, }, }, ["Money Bag Gravestone"] = { class = "Gravestone", rarity = 2, framed = 1, file = "Gravestone-money-bag.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 250, }, group = 1000, }, ["Winged Penguin Beanie"] = { class = "Hat", rarity = 3, file = "Hat beanies penguin wings.png", description = "[[Super Animal Mods|Tsubapen Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, group = 5400, }, ["Lunar Dress (2022)"] = { class = "Clothes", rarity = 5, file = "Clothes dress lunar year.png", event = "Year of the Super Tiger 2022", currency = { name = "Red Envelopes", amount = 1337, }, group = 14850, }, ["Coin Glasses"] = { class = "Glasses", rarity = 5, file = "Glasses coins.png", event = "Year of the Super Tiger 2022", currency = { name = "Red Envelopes", amount = 450, }, group = 3450, }, ["Gold Yuanbao"] = { class = "Hat", rarity = 5, file = "Hat gold ingot chinese.png", event = "Year of the Super Tiger 2022", currency = { name = "Red Envelopes", amount = 900, }, group = 8250, }, ["Peach Blossom Hat"] = { class = "Hat", rarity = 5, file = "Hat peach blossom.png", event = "Year of the Super Tiger 2022", currency = { name = "Red Envelopes", amount = 900, }, group = 8300, }, ["Lunar Headband"] = { class = "Hat", rarity = 5, file = "Hat headband lunar.png", event = "Year of the Super Tiger 2022", currency = { name = "Red Envelopes", amount = 450, }, group = 8150, }, ["Lunar Flower"] = { class = "Hat", rarity = 5, file = "Hat lunar flower.png", event = "Year of the Super Tiger 2022", currency = { name = "Red Envelopes", amount = 450, }, group = 8200, }, ["Peach Blossom Branch"] = { class = "MeleeSkin", rarity = 5, file = "Melee peach staff.png", event = "Year of the Super Tiger 2022", currency = { name = "Red Envelopes", amount = 1337, }, group = 6500, }, ["Lunar Paper Umbrella"] = { class = "Umbrella", rarity = 5, file = "Umbrella paper flowers.png", event = "Year of the Super Tiger 2022", currency = { name = "Red Envelopes", amount = 900, }, group = 3650, }, ["Rap"] = { class = "Emote", rarity = 3, file = "Emote-rap.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 800, }, }, ["Country Dance"] = { class = "Emote", rarity = 3, file = "Emote-country.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 800, }, }, ["Tiger BCG"] = { class = "GunSkin", rarity = 2, framed = 1, link = "Big Clucking Gun", file = "Gun egglauncher tiger.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 450, }, }, ["Guan Yu Guandao"] = { class = "MeleeSkin", rarity = 5, file = "Melee guandao GuanYu.png", description = "[[Special_Cosmetics#Twitch Drops Guan Yu Set|Twitch Drops Guan Yu Set]]", group = 8350, }, ["Guan Yu Helmet"] = { class = "Hat", rarity = 5, file = "Hat helmet GuanYu.png", description = "[[Special_Cosmetics#Twitch Drops Guan Yu Set|Twitch Drops Guan Yu Set]]", group = 6550, }, ["Guan Yu Armor"] = { class = "Clothes", rarity = 5, file = "Clothes armor GuanYu.png", description = "[[Special_Cosmetics#Twitch Drops Guan Yu Set|Twitch Drops Guan Yu Set]]", group = 14900, }, ["Kumquat Tree"] = { class = "MeleeSkin", rarity = 2, framed = 1, file = "Melee kumquat.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, group = 2900, }, ["Dragon JAG-7"] = { class = "GunSkin", rarity = 3, framed = 1, link = "JAG-7", file = "Gun jag7 dragon.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 600, }, }, ["Tanghulu"] = { class = "MeleeSkin", rarity = 2, framed = 1, file = "Melee tanghulu.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, group = 2950, }, ["Scimitar"] = { class = "MeleeSkin", rarity = 2, framed = 1, file = "Melee scimitar.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, group = 3000, }, ["Froggy Hat"] = { class = "Hat", rarity = 2, file = "Hat froggy.png", description = "''froggycrossing Streamer Item''<br>[[Special Cosmetics#FroggyCrossing|Froggycrossing]]", group = 6450, }, ["Froggy Dress"] = { class = "Clothes", rarity = 4, file = "Clothes dress froggy.png", description = "''froggycrossing Streamer Item''<br>[[Special Cosmetics#FroggyCrossing|Froggycrossing]]", group = 10950, }, ["Purple Round Glasses"] = { class = "Glasses", rarity = 2, file = "Glasses round purple.png", description = "''froggycrossing Streamer Item''<br>[[Special Cosmetics#FroggyCrossing|Froggycrossing]]", group = 3200, }, ["Desert Tactical Glasses"] = { class = "Glasses", rarity = 2, framed = 1, file = "Glasses tactical desert.png", description = "[[Super Animal Pass Season 3]]", group = 3250, }, ["Rebel Flag"] = { class = "MeleeSkin", rarity = 2, framed = 1, file = "Melee flag rebel.png", description = "[[Super Animal Pass Season 3]]", group = 3050, }, ["Camo BCG"] = { class = "GunSkin", rarity = 2, framed = 1, file = "Gun egglauncher camo.png", description = "[[Super Animal Pass Season 3]]", link = "Big Clucking Gun", }, ["Rebel Desert Camo"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes camo rebel.png", description = "[[Super Animal Pass Season 3]]", group = 14750, }, ["Ripped Umbrella"] = { class = "Umbrella", rarity = 2, framed = 1, file = "Umbrella ripped.png", description = "[[Super Animal Pass Season 3]]", group = 3200, }, ["Rubber Chicken"] = { class = "MeleeSkin", rarity = 3, framed = 1, file = "Melee rubber chicken.png", description = "[[Super Animal Pass Season 3]]", group = 6350, }, ["Laurel Crown"] = { class = "Hat", rarity = 2, framed = 1, file = "Hat laurel crown.png", description = "[[Super Animal Pass Season 3]]", group = 6500, }, ["Roman Formal Wear"] = { class = "Clothes", rarity = 4, framed = 1, file = "Clothes roman emperor.png", description = "[[Super Animal Pass Season 3]]", group = 11000, }, ["Black Tactical Glasses"] = { class = "Glasses", rarity = 2, framed = 1, file = "Glasses tactical black.png", description = "[[Super Animal Pass Season 3]]", group = 3300, }, ["Bomb Gravestone"] = { class = "Gravestone", rarity = 3, framed = 1, file = "Gravestone-cartoon-bomb.png", description = "[[Super Animal Pass Season 3]]", group = 1450, }, ["S.A.W. Winter Camo"] = { class = "Clothes", rarity = 4, framed = 1, file = "Clothes camo SAW.png", description = "[[Super Animal Pass Season 3]]", group = 11050, }, ["Desert SMG"] = { class = "GunSkin", rarity = 2, framed = 1, file = "Gun smg desert.png", description = "[[Super Animal Pass Season 3]]", link = "SMG", }, ["Rebel Guitar"] = { class = "MeleeSkin", rarity = 3, framed = 1, file = "Melee guitar rebel.png", description = "[[Super Animal Pass Season 3]]", group = 6400, }, ["Desert Camo Cap"] = { class = "Hat", rarity = 3, framed = 1, file = "Hat desert.png", description = "[[Super Animal Pass Season 3]]", group = 5450, }, ["Desert Rebel Outfit"] = { class = "Clothes", rarity = 4, framed = 1, file = "Clothes desert rebel.png", description = "[[Super Animal Pass Season 3]]", group = 11100, }, ["Peace Glasses"] = { class = "Glasses", rarity = 2, framed = 1, file = "Glasses sunglasses peace.png", description = "[[Super Animal Pass Season 3]]", group = 3350, }, ["Flower Power M16"] = { class = "GunSkin", rarity = 3, framed = 1, file = "Gun M16 flowerpower.png", description = "[[Super Animal Pass Season 3]]", link = "M16", }, ["Pacifist Dress"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes dress pacifist.png", description = "[[Super Animal Pass Season 3]]", group = 14800, }, ["Sit in Peace"] = { class = "Emote", rarity = 3, framed = 1, file = "Emote-sit.png", description = "[[Super Animal Pass Season 3]]", }, ["Mini Hippo"] = { class = "Pet", rarity = 3, framed = 1, file = "Pet-hippo.png", description = "[[Super Animal Pass Season 3]]", group = 51, link = "Mini Animal Pets", }, ["10,011 Tickets in a Briefcase Gravestone"] = { class = "Gravestone", rarity = 3, framed = 1, file = "Gravestone-briefcase.png", description = "[[Super Animal Pass Season 3]]", group = 1500, }, ["Catfive’s Broom"] = { class = "MeleeSkin", rarity = 2, framed = 1, file = "Melee broom.png", description = "[[Super Animal Pass Season 3]]", group = 3150, }, ["Catfive’s Janitorial Uniform"] = { class = "Clothes", rarity = 4, framed = 1, file = "Clothes janitor.png", description = "[[Super Animal Pass Season 3]]", group = 11150, }, ["Hunting Knife"] = { class = "MeleeSkin", rarity = 2, framed = 1, file = "Melee hunting knife.png", description = "[[Super Animal Pass Season 3]]", group = 3200, }, ["Moosevelt’s Very Fine Glasses"] = { class = "Glasses", rarity = 2, framed = 1, file = "Glasses moosevelt.png", description = "[[Super Animal Pass Season 3]]", group = 3400, }, ["Moosevelt’s Very Fine Hat"] = { class = "Hat", rarity = 3, framed = 1, file = "Hat moosevelt.png", description = "[[Super Animal Pass Season 3]]", group = 5500, }, ["Moosevelt’s Very Fine Suit"] = { class = "Clothes", rarity = 4, framed = 1, file = "Clothes moosevelt.png", description = "[[Super Animal Pass Season 3]]", group = 11200, }, ["Bunny Fancy Shirt"] = { class = "Clothes", rarity = 5, file = "Clothes shirt bunnies.png", event = "Super Easter 2022", currency = { name = "Easter Eggs", amount = 450, }, group = 149050, }, ["Easter Bonnet"] = { class = "Hat", rarity = 5, file = "Hat bonnet easter.png", event = "Super Easter 2022", currency = { name = "Easter Eggs", amount = 450, }, group = 8350, }, ["Easter Dress (2022)"] = { class = "Clothes", rarity = 5, file = "Clothes dress easter 2022.png", event = "Super Easter 2022", currency = { name = "Easter Eggs", amount = 900, }, group = 149100, }, ["Fancy Spring Glasses"] = { class = "Glasses", rarity = 5, file = "Glasses fancy spring.png", event = "Super Easter 2022", currency = { name = "Easter Eggs", amount = 900, }, group = 3500, }, ["Paw SMG"] = { class = "GunSkin", rarity = 5, file = "Gun smg paws.png", link = "SMG", event = "Super Easter 2022", currency = { name = "Easter Eggs", amount = 900, }, }, ["Carpet Beater"] = { class = "MeleeSkin", rarity = 5, file = "Melee carpet beater.png", event = "Super Easter 2022", currency = { name = "Easter Eggs", amount = 900, }, group = 8400, }, ["Easter BCG"] = { class = "GunSkin", rarity = 5, file = "Gun egglauncher easter.png", event = "Super Easter 2022", currency = { name = "Easter Eggs", amount = 1337, }, link = "Big Clucking Gun", }, ["Spray Bottle"] = { class = "MeleeSkin", rarity = 5, file = "Melee spray bottle.png", event = "Super Easter 2022", currency = { name = "Easter Eggs", amount = 1337, }, group = 8450, }, ["Daisy Umbrella"] = { class = "Umbrella", rarity = 3, framed = 1, file = "Umbrella daisy.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 400, }, bundle = "Flower Bundle", group = 2550, }, ["Flower Apron"] = { class = "Clothes", rarity = 2, framed = 1, file = "Clothes apron flowers.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, bundle = "Flower Bundle", group = 14300, }, ["Flower Hat"] = { class = "Hat", rarity = 2, framed = 1, file = "Hat big flower.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, bundle = "Flower Bundle", group = 6550, }, ["Gardening Apron"] = { class = "Clothes", rarity = 2, framed = 1, file = "Clothes apron gardening.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, group = 14350, }, ["S.A.W. Flag"] = { class = "MeleeSkin", rarity = 2, framed = 1, file = "Melee flag SAW.png", description = "[[Super Animal Pass Season 3]]", group = 3100, }, ["Roman Armor"] = { class = "Clothes", rarity = 3, framed = 1, file = "Clothes roman soldier.png", description = "<small>[[Season 3 Starter Pack]]</small>", group = 14700, }, ["Gladius"] = { class = "MeleeSkin", rarity = 3, framed = 1, file = "Melee gladius.png", description = "<small>[[Season 3 Starter Pack]]</small>", group = 6300, }, ["Super White Bengal Tiger"] = { class = "CharacterSkin", rarity = 3, file = "Char-tiger-siberian.png", description = "<small>[[Season 3 Starter Pack]]</small>", baseAnimal = "Tiger", framed = 1, group = 1100, }, ["Super Chimera Cat"] = { class = "CharacterSkin", rarity = 3, file = "Char-cat-chimera.png", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 42, }, }, }, ["Super Himalayan Cat"] = { class = "CharacterSkin", rarity = 2, file = "Char-cat-himalayan.png", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Super Poodle"] = { class = "CharacterSkin", rarity = 4, file = "Char-dog-poodle white.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 60, }, }, }, ["Super Chihuahua"] = { class = "CharacterSkin", rarity = 3, file = "Char-dog-chihuahua.png", baseAnimal = "Dog", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 42, }, }, }, ["Super African Wild Dog"] = { class = "CharacterSkin", rarity = 4, file = "Char-wolf-awd.png", baseAnimal = "Wolf", currencies = { { name = "DNA", amount = 450, }, { name = "Serum", amount = 120, }, }, }, ["Super Cheetah"] = { class = "CharacterSkin", rarity = 3, file = "Char-leopard-cheetah.png", baseAnimal = "Leopard", currencies = { { name = "DNA", amount = 400, }, { name = "Serum", amount = 105, }, }, }, ["Green Crayon"] = { class = "MeleeSkin", rarity = 5, file = "Melee crayon green.png", description = "[[Special Cosmetics#Super Fanart Contest|War! (Jan 2022)]]", group = 6000, }, ["Green & Black Cap"] = { class = "Hat", rarity = 4, framed = 0, file = "Hat baseball Xbox.png", description = "[[Season 3 Xbox Perks Pack]]", group = 6100, }, ["Green & Black Shotgun"] = { class = "GunSkin", rarity = 3, framed = 0, file = "Gun shotgun Xbox.png", description = "[[Season 3 Xbox Perks Pack]]", link = "Shotgun", }, ["Green Triangle Sunglasses"] = { class = "Glasses", rarity = 4, name = "Green Triangle Shades", framed = 0, file = "Glasses triangle shades Xbox.png", description = "[[Season 3 Xbox Perks Pack]]", group = 2850, }, ["Green & Black SMG"] = { class = "GunSkin", rarity = 3, framed = 0, file = "Gun smg Xbox.png", description = "[[Season 3 Xbox Perks Pack]]", link = "SMG", }, ["Blue & Black Cap"] = { class = "Hat", rarity = 4, framed = 0, file = "Hat baseball PS.png", description = "[[Season 3 PlayStation Plus Pack]]", group = 6050, }, ["Blue & Black Shotgun"] = { class = "GunSkin", rarity = 3, framed = 0, file = "Gun shotgun PS.png", description = "[[Season 3 PlayStation Plus Pack]]", link = "Shotgun", }, ["Blue Triangle Sunglasses"] = { class = "Glasses", rarity = 4, name = "Blue Triangle Shades", framed = 0, file = "Glasses triangle shades PS.png", description = "[[Season 3 PlayStation Plus Pack]]", group = 2800, }, ["Blue & Black SMG"] = { class = "GunSkin", rarity = 3, framed = 0, file = "Gun smg PS.png", description = "[[Season 3 PlayStation Plus Pack]]", link = "SMG", }, ["Ringleader Outfit"] = { class = "Clothes", rarity = 4, file = "Clothes ringmaster.png", description = "''Freak_OTRT Super Content Creator Item''", group = 10840, store = "carl", currency = { name = "Carl Coins", amount = 3000, }, }, ["Super Cotton Candy Sheep"] = { class = "CharacterSkin", rarity = 4, file = "Char-sheep-cottoncandy.png", baseAnimal = "Sheep", currencies = { { name = "DNA", amount = 380, }, { name = "Serum", amount = 100, }, }, }, ["Super Cotton Candy Snow Leopard"] = { class = "CharacterSkin", rarity = 4, file = "Char-leopard-snow cottoncandy.png", baseAnimal = "Leopard", currencies = { { name = "DNA", amount = 470, }, { name = "Serum", amount = 125, }, }, }, ["Rainbow Shutter Shades"] = { class = "Glasses", rarity = 5, file = "Glasses shutter shades rainbow.png", description = "[[Special Cosmetics#Pride 2022|Pride 2022]]", group = 3550, }, ["Super Lizard"] = { class = "Character", rarity = 0, baseAnimal = "Lizard", currencies = { { name = "DNA", amount = 100, }, { name = "Serum", amount = 24, }, }, }, ["Super Blue-Tongued Skink"] = { class = "CharacterSkin", rarity = 3, file = "Super Blue-Tongued Skink.png", baseAnimal = "Lizard", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 68, }, }, }, ["Super Dark Green Lizard"] = { class = "CharacterSkin", rarity = 1, baseAnimal = "Lizard", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Super Red and Blue Lizard"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Lizard", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 55, }, }, }, ["Super Iguana"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Lizard", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Jumbo Glasses"] = { class = "Glasses", rarity = 1, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Giant Comb"] = { class = "MeleeSkin", rarity = 1, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Tiny Tophat"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Oversized Pullover"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Gecko Umbrella"] = { class = "Umbrella", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Mini Obelisk"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Scale Mail"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Scale Mail Helmet"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Giant Toothbrush"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Gecko Dual Pistols"] = { class = "GunSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 4]]", link = "Dual Pistols", }, ["Gecko Bucket Hat"] = { class = "Hat", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Zoot Suit"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Scale Gravestone"] = { class = "Gravestone", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Giant Calipers"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Reptile Glasses"] = { class = "Glasses", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Shrunk Suit"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Snakeskin Skirt"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Snakeskin Hat"] = { class = "Hat", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Snakeskin Glasses"] = { class = "Glasses", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Snakeskin Jacket"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Mini Skyscraper"] = { class = "MeleeSkin", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Reptile Shotgun"] = { class = "GunSkin", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 4]]", link = "Shotgun", }, ["Frilled Lizard Umbrella"] = { class = "Umbrella", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["T-pose"] = { class = "Emote", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Mini Lizard"] = { class = "Pet", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 4]]", group = 140, }, ["Measuring Tape"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Moleman Cap"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Moleman Outfit"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 4]]", }, ["Panama Hat"] = { class = "Hat", rarity = 5, event = "Summer Royale 2022", currency = { name = "Fruit Baskets", amount = 900, }, }, ["Surfboard Gravestone"] = { class = "Gravestone", rarity = 5, event = "Summer Royale 2022", currency = { name = "Fruit Baskets", amount = 1337, }, }, ["Sunny JAG-7"] = { class = "GunSkin", rarity = 5, link = "JAG-7", event = "Summer Royale 2022", currency = { name = "Fruit Baskets", amount = 900, }, }, ["Lemon Skirt"] = { class = "Clothes", rarity = 5, event = "Summer Royale 2022", currency = { name = "Fruit Baskets", amount = 900, }, }, ["Strawberry Glasses"] = { class = "Glasses", rarity = 5, event = "Summer Royale 2022", currency = { name = "Fruit Baskets", amount = 450, }, }, ["Watermelon Umbrella"] = { class = "Umbrella", rarity = 5, event = "Summer Royale 2022", currency = { name = "Fruit Baskets", amount = 450, }, }, ["Summer 2022 Dress"] = { class = "Clothes", rarity = 5, event = "Summer Royale 2022", currency = { name = "Fruit Baskets", amount = 450, }, }, ["Banana Leaf"] = { class = "MeleeSkin", rarity = 5, event = "Summer Royale 2022", currency = { name = "Fruit Baskets", amount = 1337, }, }, ["Ninja Outfit"] = { class = "Clothes", rarity = 3, framed = 1, description = "<small>[[Season 4 Starter Pack]]</small>", }, ["Sai"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "<small>[[Season 4 Starter Pack]]</small>", }, ["Super Platinum Fox"] = { class = "CharacterSkin", rarity = 3, framed = 1, description = "<small>[[Season 4 Starter Pack]]</small>", baseAnimal = "Fox", group = 1100, }, ["Sunflower Hat"] = { class = "Hat", rarity = 2, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, bundle = "Sunflower Bundle", }, ["Sunflower Dress"] = { class = "Clothes", rarity = 2, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, bundle = "Sunflower Bundle", }, ["Sunflower Outfit"] = { class = "Clothes", rarity = 2, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, bundle = "Sunflower Bundle", }, ["Sunflower"] = { class = "MeleeSkin", rarity = 3, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 650, }, bundle = "Sunflower Bundle", }, ["Rock & Roll Guitar"] = { class = "MeleeSkin", rarity = 5, description = "<small>[[Special_Cosmetics#Twitch Drops June 2022|Twitch Drops June 2022]]</small>", }, ["Rock & Roll Outfit"] = { class = "Clothes", rarity = 5, description = "<small>[[Special_Cosmetics#Twitch Drops June 2022|Twitch Drops June 2022]]</small>", }, ["Rock & Roll Glasses"] = { class = "Glasses", rarity = 5, description = "<small>[[Special_Cosmetics#Twitch Drops June 2022|Twitch Drops June 2022]]</small>", }, ["Blue & Black Sniper"] = { class = "GunSkin", rarity = 3, framed = 1, description = "''[[Season 4 PlayStation Plus Pack]]''", link = "Sniper", }, ["Blue & Black Nightcap"] = { class = "Hat", rarity = 3, framed = 1, description = "''[[Season 4 PlayStation Plus Pack]]''", }, ["Blue & Black Thomas Gun"] = { class = "GunSkin", rarity = 3, framed = 1, description = "''[[Season 4 PlayStation Plus Pack]]''", link = "Thomas Gun", }, ["Blue & Black Onesie"] = { class = "Clothes", rarity = 4, framed = 1, description = "''[[Season 4 PlayStation Plus Pack]]''", }, ["Green & Black Onesie"] = { class = "Clothes", rarity = 4, framed = 1, description = "''[[Season 4 Xbox Perks Pack]]''", }, ["Green & Black Nightcap"] = { class = "Hat", rarity = 3, framed = 1, description = "''[[Season 4 Xbox Perks Pack]]''", }, ["Green & Black Thomas Gun"] = { class = "GunSkin", rarity = 3, framed = 1, description = "''[[Season 4 Xbox Perks Pack]]''", link = "Thomas Gun", }, ["Green & Black Sniper"] = { class = "GunSkin", rarity = 3, framed = 1, description = "''[[Season 4 Xbox Perks Pack]]''", link = "Sniper", }, ["Super Coconut Capybara"] = { class = "CharacterSkin", rarity = 3, file = "Super Coconut Capybara.png", baseAnimal = "Capybara", currencies = { { name = "DNA", amount = 410, }, { name = "Serum", amount = 110, }, }, }, ["Super Seagull"] = { class = "Character", rarity = 0, file = "Char-Seagull.png", baseAnimal = "Seagull", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Super Black-Headed Seagull"] = { class = "CharacterSkin", rarity = 1, file = "Char-Black-Headed-Seagull.png", baseAnimal = "Seagull", currencies = { { name = "DNA", amount = 225, }, { name = "Serum", amount = 65, }, }, }, ["Super Albatross"] = { class = "CharacterSkin", rarity = 2, file = "Char-Albatross.png", baseAnimal = "Seagull", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 85, }, }, }, ["Super Curry Seagull"] = { class = "CharacterSkin", rarity = 3, file = "Char-Curry-Seagull.png", baseAnimal = "Seagull", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Chicken Nugget Gravestone"] = { class = "Gravestone", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Bamboo BCG"] = { class = "GunSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 5]]", link = "Big Clucking Gun", }, ["Chicken Drumstick"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Flamingo"] = { class = "MeleeSkin", rarity = 3, framed = 1, name = "Lawn Flamingo", description = "[[Super Animal Pass Season 5]]", }, ["Feather Duster"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Egg Beater"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Bird House"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Chicken Suit"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Colorful Coat"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Sparrow Dress"] = { class = "Clothes", rarity = 2, name = "Songbird Dress", framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Fisherman Outfit"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Colorful Oversized Pullover"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Tie Dye Tee"] = { class = "Clothes", rarity = 1, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Giant Eagle Airlines Uniform"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Purple Boa"] = { class = "Neck", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Binoculars"] = { class = "Neck", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Paint Splatter Umbrella"] = { class = "Umbrella", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Flamingo Umbrella"] = { class = "Umbrella", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Peacock Glasses"] = { class = "Glasses", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Colorful Glasses"] = { class = "Glasses", rarity = 1, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Egg Sleeping Mask"] = { class = "Glasses", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Duck Cap"] = { class = "Hat", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Chicken Comb"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Giant Eagle Airlines Hat"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Cat Headband"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Super Marble Skullcat"] = { class = "CharacterSkin", rarity = 3, framed = 1, baseAnimal = "Skullcat", description = "<small>[[Season 5 Starter Pack]]</small>", }, ["Zeus Outfit"] = { class = "Clothes", rarity = 3, framed = 1, description = "<small>[[Season 5 Starter Pack]]</small>", }, ["Lightning Bolt"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "<small>[[Season 5 Starter Pack]]</small>", }, ["Mini Chicken"] = { class = "Pet", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 5]]", group = 170, }, ["Splits"] = { class = "Emote", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 5]]", }, ["Dogna’s Paint Splatter Dart Fly"] = { class = "GunSkin", rarity = 2, name = "Dogna’s Paint Splatter Dartfly Gun", framed = 1, description = "[[Super Animal Pass Season 5]]", link = "Dogna's Dartfly Gun", file = "Dogna's Paint Splatter Dart Fly.png", }, ["Default Dogna’s Dart Fly"] = { class = "GunSkin", rarity = 0, link = "Dogna's Dartfly Gun", name = "Dogna’s Default Dartfly Gun", file = "Dogna's Grey Dart Fly.png", description = "''Available to all players''", group = 0, }, ["Dogna’s Yellow Dart Fly"] = { class = "GunSkin", rarity = 2, framed = 1, link = "Dogna's Dartfly Gun", name = "Dogna’s Yellow Dartfly Gun", file = "Dogna's Yellow Dart Fly.png", description = "80 Dogna's Dartfly Gun kills", super_edition = 1, group = 300, }, ["Dogna’s White Dart Fly"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Dogna's Dartfly Gun", name = "Dogna’s White Dartfly Gun", file = "Dogna's White Dart Fly.png", description = "150 Dogna's Dartfly Gun kills", super_edition = 1, group = 400, }, ["Dogna’s Red Dart Fly"] = { class = "GunSkin", rarity = 1, link = "Dogna's Dartfly Gun", name = "Dogna’s Red Dartfly Gun", file = "Dogna's Red Dart Fly.png", description = "35 Dogna's Dartfly Gun kills", group = 200, }, ["Dogna’s Purple Dart Fly"] = { class = "GunSkin", rarity = 1, framed = 1, link = "Dogna's Dartfly Gun", name = "Dogna’s Purple Dartfly Gun", file = "Dogna's Purple Dart Fly.png", description = "55 Dogna's Dartfly Gun kills", super_edition = 1, group = 250, }, ["Dogna’s Pink Dart Fly"] = { class = "GunSkin", rarity = 2, framed = 1, link = "Dogna's Dartfly Gun", name = "Dogna’s Pink Dartfly Gun", file = "Dogna's Pink Dart Fly.png", description = "110 Dogna's Dartfly Gun kills", super_edition = 1, group = 350, }, ["Dogna’s Orange Dart Fly"] = { class = "GunSkin", rarity = 0, link = "Dogna's Dartfly Gun", name = "Dogna’s Orange Dartfly Gun", file = "Dogna's Orange Dart Fly.png", description = "5 Dogna's Dartfly Gun kills", group = 50, }, ["Dogna’s Green Dart Fly"] = { class = "GunSkin", rarity = 0, link = "Dogna's Dartfly Gun", name = "Dogna’s Green Dartfly Gun", file = "Dogna's Green Dart Fly.png", description = "10 Dogna's Dartfly Gun kills", group = 100, }, ["Dogna’s Blue Dart Fly"] = { class = "GunSkin", rarity = 1, link = "Dogna's Dartfly Gun", name = "Dogna’s Blue Dartfly Gun", file = "Dogna's Blue Dart Fly.png", description = "20 Dogna's Dartfly Gun kills", group = 150, }, ["Blue & Black Umbrella"] = { class = "Umbrella", rarity = 3, framed = 1, description = "''[[Season 5 PlayStation Plus Pack]]''", }, ["Green & Black Umbrella"] = { class = "Umbrella", rarity = 3, framed = 1, description = "''[[Season 5 Xbox Perks Pack]]''", }, ["Blue & Black BCG"] = { class = "GunSkin", rarity = 3, framed = 1, description = "''[[Season 5 PlayStation Plus Pack]]''", link = "BCG", }, ["Green & Black BCG"] = { class = "GunSkin", rarity = 3, framed = 1, description = "''[[Season 5 Xbox Perks Pack]]''", link = "BCG", }, ["Blue & Black Outfit"] = { class = "Clothes", rarity = 4, framed = 1, description = "''[[Season 5 PlayStation Plus Pack]]''", }, ["Green & Black Outfit"] = { class = "Clothes", rarity = 4, framed = 1, description = "''[[Season 5 Xbox Perks Pack]]''", }, ["Blue & Black Sparrow Launcher"] = { class = "GunSkin", rarity = 3, framed = 1, description = "''[[Season 5 PlayStation Plus Pack]]''", link = "Sparrow Launcher", }, ["Green & Black Sparrow Launcher"] = { class = "GunSkin", rarity = 3, framed = 1, description = "''[[Season 5 Xbox Perks Pack]]''", link = "Sparrow Launcher", }, ["CRISPR Frapp"] = { class = "MeleeSkin", rarity = 2, name = "CRISPR Frappé", framed = 1, bundle = "Streetwear Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, }, ["Pink Streetwear"] = { class = "Clothes", rarity = 3, framed = 1, bundle = "Streetwear Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, }, ["Pink Streetwear Glasses"] = { class = "Glasses", rarity = 2, framed = 1, bundle = "Streetwear Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 250, }, }, ["Super Peacock"] = { class = "Character", rarity = 0, baseAnimal = "Peacock", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Super Green Peacock"] = { class = "CharacterSkin", rarity = 1, baseAnimal = "Peacock", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Super White Peacock"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Peacock", currencies = { { name = "DNA", amount = 390, }, { name = "Serum", amount = 100, }, }, }, ["Super Purple Peacock"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Peacock", currencies = { { name = "DNA", amount = 480, }, { name = "Serum", amount = 125, }, }, }, ["Rivals Jersey"] = { class = "Clothes", rarity = 5, name = "Twitch Rivals Jersey", description = "<small>[[Special_Cosmetics#Twitch Drops October 2022|Twitch Drops October 2022]]</small>", }, ["Bat Glasses"] = { class = "Glasses", rarity = 5, event = "Super Howloween 2022", currency = { name = "Candy Corn", amount = 450, }, }, ["Bat Tophat"] = { class = "Hat", rarity = 5, event = "Super Howloween 2022", currency = { name = "Candy Corn", amount = 450, }, }, ["Howloween Bandana"] = { class = "Neck", rarity = 5, event = "Super Howloween 2022", currency = { name = "Candy Corn", amount = 450, }, }, ["Skeleton Bow & Sparrow"] = { class = "GunSkin", name = "Bone & Sparrow", rarity = 5, event = "Super Howloween 2022", link = "Bow & Sparrow", currency = { name = "Candy Corn", amount = 900, }, }, ["Black Cat Glasses"] = { class = "Glasses", rarity = 5, event = "Super Howloween 2022", currency = { name = "Candy Corn", amount = 900, }, }, ["Howloween Suspenders"] = { class = "Clothes", rarity = 5, event = "Super Howloween 2022", currency = { name = "Candy Corn", amount = 900, }, }, ["Bone"] = { class = "MeleeSkin", rarity = 5, event = "Super Howloween 2022", currency = { name = "Candy Corn", amount = 1337, }, }, ["Green Witch Dress"] = { class = "Clothes", rarity = 5, event = "Super Howloween 2022", currency = { name = "Candy Corn", amount = 1337, }, }, ["Super Spooky Teddy Bear"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Bear", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Super Alebrije Lizard"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Lizard", currencies = { { name = "DNA", amount = 130, }, { name = "Serum", amount = 80, }, }, }, ["Cleaver"] = { class = "MeleeSkin", rarity = 1, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 300, }, }, ["Hatchet Hat"] = { class = "Hat", rarity = 2, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, }, ["Bwoking Deagle"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Deagle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 600, }, }, ["Mummy Sniper"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Sniper", store = "saw", currency = { name = "S.A.W. Tickets", amount = 600, }, }, ["Green Bow Tie"] = { class = "Neck", rarity = 0, group = 600, file = "Clothes bowtie green-resources.assets-691.png", description = "5 Games", }, ["Blue Bow Tie"] = { class = "Neck", rarity = 0, group = 650, file = "Clothes bowtie blue-resources.assets-3333.png", description = "20 Games", }, ["Orange Bow Tie"] = { class = "Neck", rarity = 0, group = 700, file = "Clothes bowtie orange-resources.assets-695.png", description = "25 Games", }, ["Purple Bow Tie"] = { class = "Neck", rarity = 1, group = 2500, framed = 1, file = "Clothes bowtie purple-resources.assets-2224.png", description = "50 Games", super_edition = 1, }, ["Maroon Bow Tie"] = { class = "Neck", rarity = 1, group = 2550, framed = 1, file = "Clothes bowtie maroon-resources.assets-469.png", description = "150 Games", super_edition = 1, }, ["White Bow Tie"] = { class = "Neck", rarity = 2, group = 4100, framed = 1, file = "Clothes bowtie white-resources.assets-3302.png", description = "250 Games", super_edition = 1, }, ["Black Bow Tie"] = { class = "Neck", rarity = 2, group = 4150, framed = 1, file = "Clothes bowtie black-resources.assets-2420.png", description = "250 Games", super_edition = 1, }, ["Small Crown"] = { class = "Hat", rarity = 2, group = 1700, file = "Hat crown small-resources.assets-995.png", description = "1 Win", }, ["Crown"] = { class = "Hat", rarity = 3, group = 3900, framed = 1, file = "Hat crown-resources.assets-1055.png", description = "20 Wins", super_edition = 1, }, ["Blow a Kiss"] = { class = "Emote", rarity = 2, framed = 1, file = "Blow_a_Kiss_emote.png", description = "10 Team Wins", super_edition = 1, }, ["Chicken Dinner Gravestone"] = { class = "Gravestone", rarity = 3, group = 1150, file = "Gravestone chicken-resources.assets-320.png", description = "Winner Winner Super Chicken<br>{{hidetext|Spoiler|'''SPOILER'''<br>(Win as a {{Animal|Chicken}})}}", }, ["Chef Hat"] = { class = "Hat", rarity = 2, group = 1900, framed = 1, file = "Hat_chef-resources.assets-1194.png", description = "Winner Winner Super Turkey<br>{{hidetext|Spoiler|'''SPOILER'''<br>(Win as a {{Animal|Turkey}} or a {{Animal|Turducken}})}}", super_edition = 1, }, ["Gem Reveal"] = { class = "Emote", rarity = 1, group = 900, file = "Gem_Reveal_emote.png", description = "{{LevelGem|10|30px}} Reach Level 10", }, ["SAW Helmet"] = { class = "Hat", rarity = 2, group = 1250, framed = 1, file = "Hat helmet SAW-resources.assets-3265.png", description = "{{LevelGem|50|30px}} Reach Level 50", super_edition = 1, }, ["Rebellion Helmet"] = { class = "Hat", rarity = 3, group = 3500, framed = 1, file = "Hat helmet rebellion-resources.assets-468.png", description = "{{LevelGem|100|30px}} Reach Level 100", super_edition = 1, }, ["SAW Security Uniform"] = { class = "Clothes", rarity = 3, group = 7150, framed = 1, file = "Clothes SAWguard.png", description = "{{LevelGem|200|30px}} Reach Level 200", super_edition = 1, }, ["Rebellion Sword"] = { class = "MeleeSkin", rarity = 4, group = 4100, framed = 1, file = "melee-broadsword.png", description = "{{LevelGem|300|30px}} Reach Level 300", super_edition = 1, }, ["Fly Swatter"] = { class = "MeleeSkin", rarity = 3, group = 3200, framed = 1, file = "Melee flyswatter-resources.assets-4880.png", description = "Pacifist Victory<br>{{hidetext|Rules|'''Rules to Acquire Milestone''':<br> [[Guides/Special_Victories_Guide|see the special victories guide]]}}", super_edition = 1, }, ["POW! Mallet"] = { class = "MeleeSkin", rarity = 3, group = 3350, framed = 1, file = "Melee mallet-resources.assets-977.png", description = "Melee Only Victory<br>{{hidetext|Rules|'''Rules to Acquire Milestone''':<br> [[Guides/Special_Victories_Guide|see the special victories guide]]}}", super_edition = 1, }, ["Keikogi"] = { class = "Clothes", rarity = 3, group = 8200, framed = 1, file = "Clothes_keikogi-resources.assets-868.png", description = "No Armor Victory<br>{{hidetext|Rules|'''Rules to Acquire Milestone''':<br> [[Guides/Special_Victories_Guide|see the special victories guide]]}}", super_edition = 1, }, ["Green Tie"] = { class = "Neck", rarity = 0, group = 450, file = "Clothes tie green.png", description = "10 Kills", }, ["Blue Tie"] = { class = "Neck", rarity = 0, group = 500, file = "Clothes tie blue.png", description = "40 Kills", }, ["Orange Tie"] = { class = "Neck", rarity = 0, group = 550, file = "Clothes tie orange.png", description = "50 Kills", }, ["Purple Tie"] = { class = "Neck", rarity = 1, group = 2400, file = "Clothes tie purple-resources.assets-522.png", description = "150 Kills", }, ["Maroon Tie"] = { class = "Neck", rarity = 1, group = 2450, framed = 1, file = "Clothes tie maroon-resources.assets-588.png", description = "250 Kills", super_edition = 1, }, ["White Tie"] = { class = "Neck", rarity = 2, group = 4000, framed = 1, file = "Clothes tie white.png", description = "500 Kills", super_edition = 1, }, ["Black Tie"] = { class = "Neck", rarity = 2, group = 4050, framed = 1, file = "Clothes tie black-resources.assets-583.png", description = "1,000 Kills", super_edition = 1, }, ["Red Eye Scope"] = { class = "Glasses", rarity = 4, group = 2600, framed = 1, file = "Glasses terminator-resources.assets-350.png", description = "3,000 Kills", super_edition = 1, }, ["Hatchet"] = { class = "MeleeSkin", rarity = 1, group = 150, file = "melee_hatchet-resources.assets-1429.png", description = "10 Melee Kills<br>{{hidetext|Tip|'''MELEE TIP'''<br>It takes 4 melee hits to kill a player (at 33 dmg a hit). While evading is important, try pressing the Fire button + the Jump Roll button at the same time; if you time it right you will attack as you jump roll. This can be a very handy technique when mastered.}}", }, ["Axe"] = { class = "MeleeSkin", rarity = 2, name = "Battle Axe", group = 1050, framed = 1, file = "melee_axe-resources.assets-1159.png", description = "40 Melee Kills<br>{{hidetext|Tip|'''MELEE TIP'''<br>It takes 4 melee hits to kill a player (at 33 dmg a hit). While evading is important, try pressing the Fire button + the Jump Roll button at the same time; if you time it right you will attack as you jump roll. This can be a very handy technique when mastered.}}", super_edition = 1, }, ["Tomahawk"] = { class = "MeleeSkin", rarity = 3, group = 2800, framed = 1, file = "melee_tomahawk-resources.assets-3574.png", description = "50 Melee Kills<br>{{hidetext|Tip|'''MELEE TIP'''<br>It takes 4 melee hits to kill a player (at 33 dmg a hit). While evading is important, try pressing the Fire button + the Jump Roll button at the same time; if you time it right you will attack as you jump roll. This can be a very handy technique when mastered.}}", super_edition = 1, }, ["Swag Glasses"] = { class = "Glasses", rarity = 2, group = 900, file = "Glasses swag.png", description = "10 Hamster Ball Kills<br>{{hidetext|Tip|'''VEHICLE TIP'''<br>When using the Hamsterball try to stay away from tight areas; unless your using controller. Also focus on driving Up and Down the map instead of Left and Right to get kills; there is less reaction time for any player; this gives you an advantage. Also driving near big buildings and main roads helps too.}}", }, ["Emoji (Rock & Roll) Explosion"] = { class = "DeathExplosion", rarity = 2, group = 1500, framed = 1, file = "Rock and roll death explosion.png", description = "15 Hamster Ball Kills<br>{{hidetext|Tip|'''VEHICLE TIP'''<br> When using the Hamsterball try to stay away from tight areas; unless your using controller. Also focus on driving Up and Down the map instead of Left and Right to get kills; there is less reaction time for any player; this gives you an advantage. Also driving near big buildings and main roads helps too.}}", super_edition = 1, }, ["Rancher Hat"] = { class = "Hat", rarity = 2, group = 2100, file = "Hat_rancher-resources.assets-847.png", description = "5 Kills With An Emu", }, ["Rancher Outfit"] = { class = "Clothes", rarity = 3, group = 8450, framed = 1, file = "Clothes_rancher-resources.assets-709.png", description = "10 Kills With An Emu", super_edition = 1, }, ["Grenade Tee"] = { class = "Clothes", rarity = 1, group = 1200, file = "Clothes tshirt grenade.png", description = "5 Grenade Kills", }, ["Banana Tee"] = { class = "Clothes", rarity = 1, group = 1150, file = "Clothes tshirt banana.png", description = "15 Enemies Banana Slipped<br>{{hidetext|Tip|'''BANANA TIP'''<br>When getting Banana slips the trick is to aim the banana near your feet as you run from a enemy chasing you. When an enemy is fleeing from you or in a general area around you; aim for where they will be not where they are (also compensate for speed of the throw vs how fast they're moving).}}", }, ["Banana Fancy Shirt"] = { class = "Clothes", rarity = 2, group = 3850, framed = 1, file = "Clothes shirt banana.png", description = "35 Enemies Banana Slipped<br>{{hidetext|Tip|'''BANANA TIP'''<br>When getting Banana slips the trick is to aim the banana near your feet as you run from a enemy chasing you. When an enemy is fleeing from you or in a general area around you; aim for where they will be not where they are (also compensate for speed of the throw vs how fast they're moving).}}", super_edition = 1, }, ["Banan Pew Pew"] = { class = "Emote", rarity = 3, framed = 1, file = "Banan_Pew_Pew_emote.png", description = "50 Enemies Banana Slipped<br>{{hidetext|Tip|'''BANANA TIP'''<br>When getting Banana slips the trick is to aim the banana near your feet as you run from a enemy chasing you. When an enemy is fleeing from you or in a general area around you; aim for where they will be not where they are (also compensate for speed of the throw vs how fast they're moving).}}", super_edition = 1, }, ["Crowbar"] = { class = "MeleeSkin", rarity = 2, group = 1250, file = "melee-crowbar.png", description = "2,500 Destructibles Destroyed", }, ["Safari Hat"] = { class = "Hat", rarity = 2, group = 1750, file = "Hat safari-resources.assets-945.png", description = "100km Travelled", }, ["Safari Shirt"] = { class = "Clothes", rarity = 2, group = 3950, framed = 1, file = "Clothes shirt safari1-resources.assets-3434.png", description = "150km Travelled", super_edition = 1, }, ["Stretching Routine"] = { class = "Emote", rarity = 3, framed = 1, file = "Stretch_Emote_Icon.png", description = "250km Travelled", super_edition = 1, }, ["Green Pinwheel Glasses"] = { class = "Glasses", rarity = 2, group = 1550, file = "Glasses pinwheel green-resources.assets-4865.png", description = "1,000 Jump Rolls", }, ["Red Pinwheel Glasses"] = { class = "Glasses", rarity = 2, group = 1600, framed = 1, file = "Glasses pinwheel red-resources.assets-3650.png", description = "4,000 Jump Rolls", super_edition = 1, }, ["Pinwheel"] = { class = "MeleeSkin", rarity = 3, group = 3050, framed = 1, file = "Melee pinwheel-resources.assets-1964.png", description = "5,000 Jump Rolls", super_edition = 1, }, ["Crate Tee"] = { class = "Clothes", rarity = 1, group = 1300, file = "Clothes tshirt crate-resources.assets-772.png", description = "5 Mole Crates Opened", }, ["Shovel"] = { class = "MeleeSkin", rarity = 2, group = 1400, framed = 1, file = "melee-shovel.png", description = "15 Mole Crates Opened", super_edition = 1, }, ["Marshmallow Stick"] = { class = "MeleeSkin", rarity = 1, group = 300, file = "melee-marshmallow white.png", description = "1 Campfire Uses", }, ["Burnt Marshmallow Stick"] = { class = "MeleeSkin", rarity = 2, group = 1300, file = "melee-marshmallow burnt.png", description = "24 Campfire Uses", }, ["Cooked Marshmallow Stick"] = { class = "MeleeSkin", rarity = 3, group = 2950, framed = 1, file = "melee-marshmallow cooked.png", description = "125 Campfire Uses", super_edition = 1, }, ["Bubbly Health Juice Tee"] = { class = "Clothes", rarity = 1, group = 1350, file = "Clothes tshirt juice-resources.assets-4586.png", description = "1,000 Health Juice Drank", }, ["Medic Helmet"] = { class = "Hat", rarity = 2, group = 1300, file = "Hat helmet medic-resources.assets-504.png", description = "4,000 Health Juice Drank", }, ["Juice Hat"] = { class = "Hat", rarity = 3, group = 3950, framed = 1, file = "Hat juice hat-resources.assets-3713.png", description = "5,000 Health Juice Drank", super_edition = 1, }, ["Coconut Tee"] = { class = "Clothes", rarity = 1, group = 1250, file = "Clothes tshirt coconut.png", description = "75 Coconuts Eaten", }, ["Palm Shirt"] = { class = "Clothes", rarity = 2, group = 3900, framed = 1, file = "Clothes shirt palm.png", description = "75 Coconuts Eaten", super_edition = 1, }, ["Coconut Hula Skirt"] = { class = "Clothes", rarity = 3, group = 7400, framed = 1, file = "Clothes bikini coconut.png", description = "600 Coconuts Eaten", super_edition = 1, }, ["Mushroom Shirt"] = { class = "Clothes", rarity = 2, file = "Clothes_shirt_mushroom.png", description = "Munch on 75 mushrooms", group = 6250, }, ["Mushroom Umbrella"] = { class = "Umbrella", rarity = 3, group = 2250, framed = 1, file = "Umbrella_mushroom.png", description = "Munch on 75 mushrooms", super_edition = 1, }, ["Mushroom Cap"] = { class = "Hat", rarity = 3, group = 4900, framed = 1, file = "Hat_mushroom.png", description = "Munch on 600 mushrooms", super_edition = 1, }, ["Super Tape Tee"] = { class = "Clothes", rarity = 1, group = 1400, file = "Clothes tshirt tape-resources.assets-1606.png", description = "10 Super Tape Used", }, ["Super Tape Jacket"] = { class = "Clothes", rarity = 3, group = 6750, framed = 1, file = "Clothes jacket tape-resources.assets-4118.png", description = "90 Super Tape Used", super_edition = 1, }, ["Military Helmet"] = { class = "Hat", rarity = 1, group = 400, file = "Hat helmet military-resources.assets-3622.png", description = "100 Enemy Armor Broken", }, ["Camo Helmet"] = { class = "Hat", rarity = 1, group = 450, framed = 1, file = "Hat helmet camo-resources.assets-3326.png", description = "150 Enemy Armor Broken", super_edition = 1, }, ["Rags"] = { class = "Clothes", rarity = 3, group = 7750, framed = 1, file = "Clothes rags-resources.assets-4707.png", description = "250 Enemy Armor Broken", super_edition = 1, }, ["Skunk Bomb Tee"] = { class = "Clothes", rarity = 1, group = 1450, file = "Clothes_tshirt_skunk.png", description = "50 Skunk Bomb Damage Dealt", }, ["Skunk Nose Clip"] = { class = "Beard", rarity = 2, group = 1800, framed = 1, file = "Moustache_noseclip.png", description = "200 Skunk Bomb Damage Dealt", super_edition = 1, }, ["Skunk Hat"] = { class = "Hat", rarity = 3, group = 4300, framed = 1, file = "Hat_skunk.png", description = "1,250 Skunk Bomb Damage Dealt", super_edition = 1, }, ["Sickle"] = { class = "MeleeSkin", rarity = 1, group = 350, file = "Melee-sickle.png", description = "300 Grass Cut", }, ["Large Sickle"] = { class = "MeleeSkin", rarity = 2, group = 1350, file = "Melee-sickle_asian.png", description = "2,700 Grass Cut", }, ["Scythe"] = { class = "MeleeSkin", rarity = 3, group = 3000, framed = 1, file = "Melee-scythe.png", description = "17,000 Grass Cut", super_edition = 1, }, ["Blue Skydiving Jumpsuit"] = { class = "Clothes", rarity = 2, group = 2150, file = "Clothes_skydiving_blue.png", description = "1 Failed Landing", }, ["Red Skydiving Jumpsuit"] = { class = "Clothes", rarity = 2, group = 4950, framed = 1, file = "Clothes_skydiving_red.png", description = "9 Failed Landings", super_edition = 1, }, ["Skydiving Camera Helmet"] = { class = "Hat", rarity = 2, group = 5000, framed = 1, file = "Hat_skydive_camera.png", description = "20 Failed Landings", super_edition = 1, }, ["Giant Mole Beanie"] = { class = "Hat", rarity = 3, name = "Star-nosed Mole Beanie", framed = 1, file = "Giant Mole Beanie.png", description = "Defeated the Giant Star-nosed Mole<br>{{hidetext|Tip|'''BEAT THE BOSS TIP'''<br>In order to get this Milestone, you must land a killing blow on the Giant Star-nosed Mole.<br>We recommend you select the Medic II class, but the normal Medic class will suffice.<br>When the mole reaches about 1/4 health, unload your Dartfly/Dart Gun into the mole first before swapping to your Dual Pistols and continually spray the mole with those.<br>It may take a few attempts before you perform this successfully.<br>Don't give up!}}", super_edition = 1, }, ["Prisoner Outfit"] = { class = "Clothes", rarity = 2, group = 4350, framed = 1, file = "Clothes_prisoner-resources.assets-5055.png", description = "Dart the [not a] Rat<br>{{hidetext|Spoiler|'''SPOILER'''<br>There is a Prisoner on the Map, in a cave somewhere North-West. Poison him and get your reward}}", super_edition = 1, }, ["Straw Hat"] = { class = "Hat", rarity = 1, group = 750, file = "Hat_straw-resources.assets-364.png", description = "1 Scarecrow Destroyed", }, ["Scarecrow Outfit"] = { class = "Clothes", rarity = 2, group = 4750, framed = 1, file = "Clothes_scarecrow-resources.assets-222.png", description = "9 Scarecrows Destroyed<br>{{hidetext|Tip|'''TIP'''<br>There is 5 Scarecrows on the map.}}", super_edition = 1, }, ["Syringe"] = { class = "MeleeSkin", rarity = 2, group = 2450, file = "Melee syringe.png", description = "Team Healing using Dogna's Dart Gun (300 HP)", }, ["Doctor Outfit"] = { class = "Clothes", rarity = 3, group = 9250, framed = 1, file = "Clothes doctor.png", description = "Team Healing with Dogna's Dart Gun (2,700 HP)", super_edition = 1, }, ["Brown Archer Outfit"] = { class = "Clothes", rarity = 2, group = 5150, file = "Clothes_archer_brown.png", description = "Hit players with Sparrows 5x in a single match<br>{{hidetext|Tip|'''TIP'''<br>This is a difficult challenge. Using mouse has been found to be easier to use when playing with the bow, if your not a KBM player then using a controller will suffice as well.<br>You will have to lead your shoots shooting where your enemy is going to be and not so much where they are unless they are walking, or standing.<br>(1) You can try to rush your target and spam the bow at them (this will only give you the lowest dmg for each hit)<br>(2) You charge the bow and hold it down while jump rolling and then fire when ready (note if you let go to soon before the jump roll completes it will cancel out the bow charge).}}", }, ["Green Archer Outfit"] = { class = "Clothes", rarity = 2, group = 5200, framed = 1, file = "Clothes_archer_green.png", description = "Hit players with Sparrows 10x in a single match<br>{{hidetext|Tip|'''TIP'''<br>This is a difficult challenge. Using mouse has been found to be easier to use when playing with the bow, if your not a KBM player then using a controller will suffice as well.<br>You will have to lead your shoots shooting where your enemy is going to be and not so much where they are unless they are walking, or standing.<br>(1) You can try to rush your target and spam the bow at them (this will only give you the lowest dmg for each hit)<br>(2) You charge the bow and hold it down while jump rolling and then fire when ready (note if you let go to soon before the jump roll completes it will cancel out the bow charge).}}", super_edition = 1, }, ["Archer Hat"] = { class = "Hat", rarity = 3, group = 4550, framed = 1, file = "Hat_archer.png", description = "Hit players with Sparrows 20x in a single match<br>{{hidetext|Tip|'''TIP'''<br>This is a difficult challenge. Using mouse has been found to be easier to use when playing with the bow, if your not a KBM player then using a controller will suffice as well.<br>You will have to lead your shoots shooting where your enemy is going to be and not so much where they are unless they are walking, or standing.<br>(1) You can try to rush your target and spam the bow at them (this will only give you the lowest dmg for each hit)<br>(2) You charge the bow and hold it down while jump rolling and then fire when ready (note if you let go to soon before the jump roll completes it will cancel out the bow charge).}}", super_edition = 1, }, ["Gallery Target Tee"] = { class = "Clothes", rarity = 1, group = 2750, file = "Clothes_tshirt_target-resources.assets-698.png", description = "Shoot a Gallery Target", }, ["5 Point Tee"] = { class = "Clothes", rarity = 1, group = 2800, file = "Clothes_tshirt_5points-resources.assets-1204.png", description = "Be a Gallery Target", }, ["Target Gravestone"] = { class = "Gravestone", rarity = 1, group = 350, file = "Gravestone-target.png", description = "Shoot a gallery target with a bow", }, ["Raincoat"] = { class = "Clothes", rarity = 3, group = 8500, framed = 1, file = "Clothes_raincoat.png", description = "Dancing in the rain", super_edition = 1, }, ["No Dancing Sign"] = { class = "MeleeSkin", rarity = 2, group = 1750, file = "Melee sign.png", description = "No Dancing!<br>{{hidetext|Hint|'''HINT'''<br>Where is there no dancing allowed? Should you Listen?<br>{{hidetext|Spoiler|'''SPOILER'''<br>This is a Spoiler and will reveal how to get the Milestone.<br>Go to the Welcome Center, and to the right of the Water Fountian you'll be welcomed by a No Dancing Sign; Dance near it to get the Emote.}}}}", }, ["Skullcat Scepter"] = { class = "MeleeSkin", rarity = 2, group = 2000, framed = 1, file = "Melee_scepter_skullcat.png", description = "The First Super Skullcat<br>{{hidetext|Hint|'''HINT'''<br>In the Sahara, What can feel the wind, but never walks; has a mouth, but never talks; has a head, but never weeps; has a body, but never moves, has a bed, but never sleeps?<br>{{hidetext|Spoiler|'''SPOILER'''<br>This is a Spoiler and will reveal how to get the Milestone.<br>If you go to the Skullcat Sphinx, on the left side there is a secret floor plate: step on it and enter to find a coffin of the first skullcat. Stay until you completed the process for your reward!}}}}", super_edition = 1, }, ["Cheese Goudara's Beret"] = { class = "Hat", rarity = 2, group = 1550, framed = 1, file = "Hat_military_rebellion-resources.assets-2686.png", description = "Found the SASR Hideout<br>{{hidetext|Hint|'''HINT'''<br>A secret lies on the floor inside where the animals roam<br>{{hidetext|Spoiler|'''SPOILER'''<br>This is a Spoiler and will reveal how to get the Milestone.<br>Inside the Super animal Farm there is a floor plate left of the closed door behind some boxes.}}}}", super_edition = 1, }, ["Donk's Suit"] = { class = "Clothes", rarity = 3, group = 7000, framed = 1, file = "Clothes_suit_navy-resources.assets-3673.png", description = "A Tip for Donk<br>{{hidetext|Hint|'''HINT'''<br>Where animals are raised is a Story Telling Donky, give him a Tip why dont you.<br>{{hidetext|Spoiler|'''SPOILER'''<br>This is a Spoiler and will reveal how to get the Milestone.<br>In the next room to the right of the Rebel Hideout in teh Animal FArm is a row of line dividers walk up them and put a banana in teh basket to tip good ole donk.}}}}", super_edition = 1, }, ["Lab Coat"] = { class = "Clothes", rarity = 3, group = 7350, framed = 1, file = "Clothes_labcoat.png", description = "Dr. Dogna's Secret Lab Lab<br>{{hidetext|Hint|'''HINT'''<br>In the Land of Sand you will find him, A red Eye will take you in. A path beneath you must you follow<br>{{hidetext|Spoiler|'''SPOILER'''<br>This is a Spoiler and will reveal how to get the Milestone.<br>Go into the Giant pyramid, make a left and look on the ground for a floor plate; step on it. Follow this hallway to the end; press the next floor plat in the corner. Go to the right to the door that opened; pull the level. Then push the button the is revealed. Now enter the Lab on your right and talk to dogna till the end of her conversation.}}}}", super_edition = 1, }, ["Crab Hat"] = { class = "Hat", rarity = 3, group = 4950, framed = 1, file = "hat_crab.png", description = "Beach Party<br>{{hidetext|Hint|'''HINT'''<br>Don't Be Crabby, Go Dance a Little<br>{{hidetext|Spoiler|'''SPOILER'''<br>This is a Spoiler and will reveal how to get the Milestone.<br>Dance with the crabs; only specific Emote will work as dance emotes (default dance, floss, stretching routine, tap dance, country dance.)}}}}", super_edition = 1, }, ["Praise Banan"] = { class = "Emote", rarity = 3, framed = 1, file = "Praise_banan_emote.png", description = "Banan Cave<br>{{hidetext|Hint|'''HINT'''<br>Thomas never goes East of his Workshop..what could be over there?<br>{{hidetext|Spoiler|'''SPOILER'''<br>This is a Spoiler and will reveal how to get the Milestone.<br>IF you go to the big cave esat of thomas's workshop you'll find a cave. before yu go in make sure you find a banana, cut some grass. then go all the way to the back and put the banana in the ritual plate. stay awhile it will be quite apeeling}}}}", super_edition = 1, }, ["Gold Medal"] = { class = "Neck", rarity = 5, description = "Awarded upon [[Special Cosmetics#Tournament winning|winning in a tournament]]", group = 1000, }, ["Silver Medal"] = { class = "Neck", rarity = 5, description = "Awarded upon [[Special Cosmetics#Tournament winning|winning in a tournament]]", group = 1200, }, ["Bronze Medal"] = { class = "Neck", rarity = 5, description = "Awarded upon [[Special Cosmetics#Tournament winning|winning in a tournament]]", group = 1400, }, ["Super Turducken"] = { class = "CharacterSkin", rarity = 4, group = 400, file = "Super Turducken.png", baseAnimal = "Chicken", currencies = { { name = "DNA", amount = 320, }, { name = "Serum", amount = 82, }, }, }, ["Super Black Red Panda"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Red Panda", description = "[[Super Animal Mods|ket_domashniy Mod Breed]]", currencies = { { name = "DNA", amount = 420, }, { name = "Serum", amount = 115, }, }, }, ["Ket's Ukulele"] = { class = "MeleeSkin", rarity = 3, description = "[[Super Animal Mods|ket_domashniy Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, }, ["Super Mandarin Duck"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Duck", currencies = { { name = "DNA", amount = 240, }, { name = "Serum", amount = 65, }, }, }, ["Hedge Clippers"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "<small>[[Season 6 Starter Pack]]</small>", }, ["Cottagecore Dress"] = { class = "Clothes", rarity = 3, framed = 1, description = "<small>[[Season 6 Starter Pack]]</small>", }, ["Super Topiary Bear"] = { class = "CharacterSkin", rarity = 3, framed = 1, baseAnimal = "Bear", description = "<small>[[Season 6 Starter Pack]]</small>", }, ["Peace Beads"] = { class = "Neck", rarity = 1, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Pete & the Swampcats Tee"] = { class = "Clothes", rarity = 1, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Jam Jar Gravestone"] = { class = "Gravestone", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Croc Visor"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Piano BCG"] = { class = "GunSkin", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 6]]", link = "Big Clucking Gun", }, ["Trumpet"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Crocodile Tooth Hat"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Suede Outfit"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Dogna’s Musical Dartfly Gun"] = { class = "GunSkin", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 6]]", link = "Dogna's Dartfly Gun", }, ["Piano Tie"] = { class = "Neck", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Reeds"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Lilypad Cap"] = { class = "Hat", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Musical Umbrella"] = { class = "Umbrella", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Country Bandana"] = { class = "Neck", rarity = 1, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Snail Cap"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Suede Dress"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Croc Skin Umbrella"] = { class = "Umbrella", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Teppanyaki Spatula"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Swamp Hermit Hat"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Swamp Hermit Outfit"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Croc Tooth Necklace"] = { class = "Neck", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Mini Sloth"] = { class = "Pet", rarity = 3, framed = 1, group = 200, description = "[[Super Animal Pass Season 6]]", }, ["Banjo"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Pete's Outfit"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Stump Gravestone"] = { class = "Gravestone", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Crayfish"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Guitar M16"] = { class = "GunSkin", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 6]]", link = "M16", }, ["Slow Jam"] = { class = "Emote", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 6]]", }, ["Green & Black AK"] = { class = "GunSkin", rarity = 2, framed = 1, link = "AK", description = "''[[Season 6 Xbox Perks Pack]]''", }, ["Blue & Black AK"] = { class = "GunSkin", rarity = 2, framed = 1, link = "AK", description = "''[[Season 6 PlayStation Plus Pack]]''", }, ["Blue & Black JAG-7"] = { class = "GunSkin", rarity = 2, framed = 1, link = "JAG-7", description = "''[[Season 6 PlayStation Plus Pack]]''", }, ["Green & Black JAG-7"] = { class = "GunSkin", rarity = 2, framed = 1, link = "JAG-7", description = "''[[Season 6 Xbox Perks Pack]]''", }, ["Blue & Black Katana"] = { class = "MeleeSkin", rarity = 4, framed = 1, description = "''[[Season 6 PlayStation Plus Pack]]''", }, ["Green & Black Katana"] = { class = "MeleeSkin", rarity = 4, framed = 1, description = "''[[Season 6 Xbox Perks Pack]]''", }, ["Blue & Black Dress"] = { class = "Clothes", rarity = 3, framed = 1, description = "''[[Season 6 PlayStation Plus Pack]]''", }, ["Green & Black Dress"] = { class = "Clothes", rarity = 3, framed = 1, description = "''[[Season 6 Xbox Perks Pack]]''", }, ["Super Crocodile"] = { class = "Character", rarity = 0, baseAnimal = "Crocodile", currencies = { { name = "DNA", amount = 170, }, { name = "Serum", amount = 48, }, }, }, ["Super Albino Alligator"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Crocodile", currencies = { { name = "DNA", amount = 450, }, { name = "Serum", amount = 125, }, }, }, ["Super Yellow Crocodile"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Crocodile", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Dark Green Crocodile"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Crocodile", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Orange Crocodile"] = { class = "CharacterSkin", rarity = 1, baseAnimal = "Crocodile", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 68, }, }, }, ["Super Alligator"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Crocodile", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["4th Anniversary Cake Gravestone"] = { class = "Gravestone", rarity = 5, description = "[[Special Cosmetics#Super 4th Year Anniversary|Super 4th Year Anniversary]]", }, ["Pixile Anniversary Firework"] = { class = "MeleeSkin", rarity = 5, description = "[[Special Cosmetics#Super 4th Year Anniversary|Super 4th Year Anniversary]]", }, ["Eggnog Hunting Rifle"] = { class = "GunSkin", rarity = 5, link = "Hunting Rifle", event = "Super CRISPRmas 2022", currency = { name = "Candy Canes", amount = 450, }, }, ["Snowflake Bandana"] = { class = "Neck", rarity = 5, event = "Super CRISPRmas 2022", currency = { name = "Candy Canes", amount = 450, }, }, ["Starry Glasses"] = { class = "Glasses", rarity = 5, event = "Super CRISPRmas 2022", currency = { name = "Candy Canes", amount = 450, }, }, ["Green Tartan Pullover"] = { class = "Clothes", rarity = 5, event = "Super CRISPRmas 2022", currency = { name = "Candy Canes", amount = 900, }, }, ["Red Tartan Pullover"] = { class = "Clothes", rarity = 5, event = "Super CRISPRmas 2022", currency = { name = "Candy Canes", amount = 900, }, }, ["Candycane Dress"] = { class = "Clothes", rarity = 5, event = "Super CRISPRmas 2022", currency = { name = "Candy Canes", amount = 900, }, }, ["Thermometer"] = { class = "MeleeSkin", rarity = 5, event = "Super CRISPRmas 2022", currency = { name = "Candy Canes", amount = 1337, }, }, ["Red-Nosed Deer Beanie"] = { class = "Hat", rarity = 5, event = "Super CRISPRmas 2022", currency = { name = "Candy Canes", amount = 1337, }, }, ["Super Snowman Blue Jay"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Blue Jay", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 70, }, }, }, ["Super Stoat"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Ferret", currencies = { { name = "DNA", amount = 240, }, { name = "Serum", amount = 68, }, }, }, ["Super Winter Stoat"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Ferret", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 70, }, }, }, ["Snowman Beanie"] = { class = "Hat", rarity = 2, framed = 1, store = "saw", bundle = "Snowman Bundle", currency = { name = "S.A.W. Tickets", amount = 350, }, }, ["Snowman Costume"] = { class = "Clothes", rarity = 3, framed = 1, store = "saw", bundle = "Snowman Bundle", currency = { name = "S.A.W. Tickets", amount = 750, }, }, ["Snowboard"] = { class = "MeleeSkin", rarity = 2, framed = 1, store = "saw", bundle = "Snowman Bundle", currency = { name = "S.A.W. Tickets", amount = 500, }, }, ["Frozen Umbrella"] = { class = "Umbrella", rarity = 2, framed = 1, store = "saw", bundle = "Snowman Bundle", currency = { name = "S.A.W. Tickets", amount = 250, }, }, ["Lucky Collar"] = { class = "Neck", rarity = 2, framed = 1, description = "10 [[Lucky Cat Mine]] Kills", super_edition = 1, }, ["Nutcracker Sabre"] = { class = "MeleeSkin", rarity = 5, description = "<small>[[Special_Cosmetics#Twitch Drops Nutcracker Set December 2022|Twitch Drops December 2022]]</small>", }, ["Nutcracker Outfit"] = { class = "Clothes", rarity = 5, description = "<small>[[Special_Cosmetics#Twitch Drops Nutcracker Set December 2022|Twitch Drops December 2022]]</small>", }, ["Nutcracker Cap"] = { class = "Hat", rarity = 5, description = "<small>[[Special_Cosmetics#Twitch Drops Nutcracker Set December 2022|Twitch Drops December 2022]]</small>", }, ["Pixile Anniversary Dress"] = { class = "Clothes", rarity = 5, description = "[[Special Cosmetics#Super 4th Year Anniversary|Super 4th Year Anniversary Redeemable Code]]", }, ["Brown Wolfie's Fedora"] = { class = "Hat", rarity = 3, description = "[[Super Animal Mods|Brown Wolfie Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, }, ["Super Lop Bunny"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 310, }, { name = "Serum", amount = 82, }, }, }, ["Super Celestial Bunny"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 68, }, }, }, ["Super Lunar Bunny"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 65, }, }, }, ["Super Golden Bunny"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 65, }, }, }, ["White Hanfu"] = { class = "Clothes", rarity = 5, event = "Year of the Super Bunny 2023", currency = { name = "Red Envelopes", amount = 1337, }, }, ["Bunny Pendant"] = { class = "Neck", rarity = 5, event = "Year of the Super Bunny 2023", currency = { name = "Red Envelopes", amount = 450, }, }, ["Lunar Hat (2023)"] = { class = "Hat", rarity = 5, event = "Year of the Super Bunny 2023", currency = { name = "Red Envelopes", amount = 900, }, }, ["Hanfu Headwear"] = { class = "Hat", rarity = 5, event = "Year of the Super Bunny 2023", currency = { name = "Red Envelopes", amount = 900, }, }, ["Lunar Bunny Ears"] = { class = "Hat", rarity = 5, event = "Year of the Super Bunny 2023", currency = { name = "Red Envelopes", amount = 450, }, }, ["Super White Bunny Candy"] = { class = "MeleeSkin", rarity = 5, event = "Year of the Super Bunny 2023", currency = { name = "Red Envelopes", amount = 1337, }, }, ["Peach Blossom Bow & Sparrow"] = { class = "GunSkin", rarity = 5, event = "Year of the Super Bunny 2023", currency = { name = "Red Envelopes", amount = 900, }, link = "Bow & Sparrow", }, ["Water Rabbit Umbrella"] = { class = "Umbrella", rarity = 5, event = "Year of the Super Bunny 2023", currency = { name = "Red Envelopes", amount = 900, }, }, ["Lion Dance Costume"] = { class = "Clothes", rarity = 3, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, bundle = "Lion Dance Bundle", }, ["Carrot Magnum"] = { class = "GunSkin", rarity = 2, framed = 1, store = "saw", link = "Magnum", currency = { name = "S.A.W. Tickets", amount = 450, }, }, ["Blue Hanbok"] = { class = "Clothes", rarity = 2, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, }, ["Steamed Bun Hat"] = { class = "Hat", rarity = 2, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, }, ["Antler & Wool on Wings Umbrella"] = { class = "Umbrella", rarity = 5, description = "[[Special Cosmetics#AWW|Coupon Code]]", }, ["Bunny Casual Skirt"] = { class = "Clothes", rarity = 3, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, }, ["Super Salamander"] = { class = "Character", rarity = 0, baseAnimal = "Salamander", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 54, }, }, }, ["Super Orange Salamander"] = { class = "CharacterSkin", rarity = 1, baseAnimal = "Salamander", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 82, }, }, }, ["Super Firebelly Newt"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Salamander", currencies = { { name = "DNA", amount = 390, }, { name = "Serum", amount = 108, }, }, }, ["Super Axolotl"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Salamander", currencies = { { name = "DNA", amount = 480, }, { name = "Serum", amount = 132, }, }, }, ["Egg Tart Gravestone"] = { class = "Gravestone", rarity = 4, description = "''CocoaCaa Streamer Item''", file = "Gravestone eggtart.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, }, ["Blush"] = { class = "Beard", rarity = 2, description = "''CocoaCaa Streamer Item''", file = "Glasses blush.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Teacup Hat"] = { class = "Hat", rarity = 2, name = "Milk Teacup Hat", description = "''CocoaCaa Streamer Item''", file = "Hat teacup.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Pizza Toast Nest"] = { class = "Hat", rarity = 2, description = "''FluffubSheepub Streamer Item''", file = "Hat nest pizzatoast.png", store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Cauliflower Leaves"] = { class = "Neck", rarity = 3, description = "''FluffubSheepub Streamer Item''", file = "Neck cauliflower.png", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, }, ["Pizza Toast Gravestone"] = { class = "Gravestone", rarity = 4, description = "''FluffubSheepub Streamer Item''", file = "Gravestone pizzatoast.png", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, }, ["Health Juice Tee"] = { class = "Clothes", rarity = 1, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Lifeguard Cap"] = { class = "Hat", rarity = 1, name = "Health Juice Cap", framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Electric Toothbrush"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Health Juice Box Gravestone"] = { class = "Gravestone", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Crutch"] = { class = "MeleeSkin", rarity = 1, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Head Bandage"] = { class = "Hat", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Crab Tie"] = { class = "Neck", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Crab Fancy Shirt"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Thermometer Pistol"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Pistol", description = "[[Super Animal Pass Season 7]]", }, ["Otoscope"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Nurse Cap"] = { class = "Hat", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Nurse Outfit"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Band Aid"] = { class = "Beard", rarity = 2, name = "Stick-on Bandage", framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Medic Umbrella"] = { class = "Umbrella", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Dogna’s Medic Dart Gun"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Dogna's Dart Gun", name = "Dogna’s Medic Dart Gun", description = "[[Super Animal Pass Season 7]]", }, ["Scrubs"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Fruit Umbrella"] = { class = "Umbrella", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Health Juice Bottle"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Runner Sunglasses"] = { class = "Glasses", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Runner’s Outfit"] = { class = "Clothes", rarity = 4, name = "Jogging Suit", framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Lemur Scarf"] = { class = "Neck", rarity = 1, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Lemur Hunting Rifle"] = { class = "GunSkin", rarity = 2, framed = 1, link = "Hunting Rifle", description = "[[Super Animal Pass Season 7]]", }, ["Mini Lemur"] = { class = "Pet", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Lemur Robe"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Yoga Mat"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Kettlebell Gravestone"] = { class = "Gravestone", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Leotard"] = { class = "Clothes", rarity = 4, name = "Aerobics Leotard", framed = 1, description = "[[Super Animal Pass Season 7]]", }, ["Aerobics"] = { class = "Emote", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 7]]", }, -- Starterpack ["Super Alchemist Tiger"] = { class = "CharacterSkin", rarity = 3, name = "Super Alchemist Bengal Tiger", framed = 1, baseAnimal = "Tiger", description = "<small>[[Season 7 Starter Pack]]</small>", group = 1150, }, ["Alchemist Outfit"] = { class = "Clothes", rarity = 3, framed = 1, description = "<small>[[Season 7 Starter Pack]]</small>", }, ["Potion"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "<small>[[Season 7 Starter Pack]]</small>", }, -- Milestones ["Health Fruit Hat"] = { class = "Hat", rarity = 2, framed = 1, description = "150 Health Fruits Eaten", super_edition = 1, }, ["Health Fruit Tee"] = { class = "Clothes", rarity = 1, description = "75 Health Fruits Eaten", }, -- Animals ["Super Lemur"] = { class = "Character", rarity = 0, baseAnimal = "Lemur", currencies = { { name = "DNA", amount = 185, }, { name = "Serum", amount = 50, }, }, }, ["Super Red Ruffed Lemur"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Lemur", currencies = { { name = "DNA", amount = 510, }, { name = "Serum", amount = 142, }, }, }, ["Super Sifaka"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Lemur", currencies = { { name = "DNA", amount = 420, }, { name = "Serum", amount = 115, }, }, }, ["Super Aye-aye"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Lemur", currencies = { { name = "DNA", amount = 510, }, { name = "Serum", amount = 142, }, }, }, ["Super Taro Lemur"] = { class = "CharacterSkin", rarity = 1, baseAnimal = "Lemur", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 72, }, }, }, ["Super Pomegranate Lemur"] = { class = "CharacterSkin", rarity = 1, baseAnimal = "Lemur", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 72, }, }, }, -- XBox & PS ["Green & Black Dual Pistols"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Dual Pistols", description = "''[[Season 7 Xbox Perks Pack]]''", }, ["Blue & Black Dual Pistols"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Dual Pistols", description = "''[[Season 7 PlayStation Plus Pack]]''", }, ["Green & Black Hunting Rifle"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Hunting Rifle", description = "''[[Season 7 Xbox Perks Pack]]''", }, ["Blue & Black Hunting Rifle"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Hunting Rifle", description = "''[[Season 7 PlayStation Plus Pack]]''", }, ["Blue & Black Magnum"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Magnum", description = "''[[Season 7 PlayStation Plus Pack]]''", }, ["Green & Black Magnum"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Magnum", description = "''[[Season 7 Xbox Perks Pack]]''", }, ["Green & Black Jacket"] = { class = "Clothes", rarity = 3, framed = 1, description = "''[[Season 7 Xbox Perks Pack]]''", }, ["Blue & Black Jacket"] = { class = "Clothes", rarity = 3, framed = 1, description = "''[[Season 7 PlayStation Plus Pack]]''", }, -- Respawning Day ["Test Tube"] = { class = "MeleeSkin", rarity = 5, event = "ReSpawning Day 2023", currency = { name = "Easter Eggs", amount = 1337, }, }, ["Peep Tee"] = { class = "Clothes", rarity = 5, event = "ReSpawning Day 2023", currency = { name = "Easter Eggs", amount = 450, }, }, ["Sheep Clone Pullover"] = { class = "Clothes", rarity = 5, event = "ReSpawning Day 2023", currency = { name = "Easter Eggs", amount = 900, }, }, ["GMO Cap"] = { class = "Hat", rarity = 5, event = "ReSpawning Day 2023", currency = { name = "Easter Eggs", amount = 450, }, }, ["Scientist Goggles"] = { class = "Glasses", rarity = 5, event = "ReSpawning Day 2023", currency = { name = "Easter Eggs", amount = 900, }, }, ["DNA Necklace"] = { class = "Neck", rarity = 5, event = "ReSpawning Day 2023", currency = { name = "Easter Eggs", amount = 450, }, }, ["DNA Umbrella"] = { class = "Umbrella", rarity = 5, event = "ReSpawning Day 2023", currency = { name = "Easter Eggs", amount = 1337, }, }, ["Clipboard Gravestone"] = { class = "Gravestone", rarity = 5, event = "ReSpawning Day 2023", currency = { name = "Easter Eggs", amount = 900, }, }, -- Respawning Day breeds ["Super Tailed Frog"] = { class = "Character", rarity = 4, baseAnimal = "Frog", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Bilby Bunny"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Super Chipmunk"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Squirrel", currencies = { { name = "DNA", amount = 180, }, { name = "Serum", amount = 48, }, }, }, ["Wool Pistol"] = { class = "GunSkin", rarity = 2, framed = 1, link = "Pistol", bundle = "Sheep Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 450, }, }, ["Sheep Costume"] = { class = "Clothes", rarity = 3, framed = 1, bundle = "Sheep Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, }, ["Shears"] = { class = "MeleeSkin", rarity = 1, framed = 1, bundle = "Sheep Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 300, }, }, ["Jester Outfit"] = { class = "Clothes", rarity = 5, description = "<small>[[Twitch Drops#Jester Set|Twitch Drops April 2023]]</small>", }, ["Jester Hat"] = { class = "Hat", rarity = 5, description = "<small>[[Twitch Drops#Jester Set|Twitch Drops April 2023]]</small>", }, ["Jester Cane"] = { class = "MeleeSkin", rarity = 5, description = "<small>[[Twitch Drops#Jester Set|Twitch Drops April 2023]]</small>", }, ["Military Knife"] = { class = "MeleeSkin", rarity = 2, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, }, ["Rifle Umbrella"] = { class = "Umbrella", rarity = 3, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 400, }, }, ["Baseball Helmet"] = { class = "Hat", rarity = 2, framed = 1, bundle = "Baseball Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, }, ["Baseball Outfit"] = { class = "Clothes", rarity = 2, framed = 1, bundle = "Baseball Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, }, ["Baseball Bat"] = { class = "MeleeSkin", rarity = 1, framed = 1, bundle = "Baseball Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 300, }, }, ["Catcher's Glove Gravestone"] = { class = "Gravestone", rarity = 3, framed = 1, bundle = "Baseball Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 400, }, }, ["Black Headband"] = { class = "Hat", rarity = 1, description = "[[Limited-time exclusive item]] for active wiki editors who contributed before 2023-04-21" }, ["Super Fox Pillow"] = { class = "MeleeSkin", rarity = 4, description = "<small>[[Twitch Drops#Super Fox Pillow|Twitch Drops May 2023]]</small>", store = "carl", currency = { name = "Carl Coins", amount = 3000, }, }, ["Super Snapping Turtle"] = { class = "Character", rarity = 4, baseAnimal = "Turtle", currencies = { { name = "DNA", amount = 510, }, { name = "Serum", amount = 140, }, }, }, ["Whale Bucket Hat"] = { class = "Hat", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Dolphin Tee"] = { class = "Clothes", rarity = 1, framed = 1, name = "Dolphin Love Tee", description = "[[Super Animal Pass Season 8]]", }, ["Dolphin Umbrella"] = { class = "Umbrella", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Dolphin Face Paint"] = { class = "Beard", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Orca Commemorative Cup"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Shark Superite Laser"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Laser Gun", description = "[[Super Animal Pass Season 8]]", }, ["Shark Hat"] = { class = "Hat", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Shark Swimsuit"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Clownfish Tee"] = { class = "Clothes", rarity = 1, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Clownfish JAG-7"] = { class = "GunSkin", rarity = 2, framed = 1, link = "JAG-7", description = "[[Super Animal Pass Season 8]]", }, ["Temaki"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Fishbowl Gravestone"] = { class = "Gravestone", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Oasis Booth Background"] = { class = "Booth", rarity = 3, framed = 1, name = "Oasis Photo Scene", description = "[[Super Animal Pass Season 8]]", }, ["Fish Pendant"] = { class = "Neck", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Conductors Stand"] = { class = "MeleeSkin", rarity = 2, name = "Conductor's Stand", framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Conductor Tuxedo"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Fishtank BCG"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Big Clucking Gun", description = "[[Super Animal Pass Season 8]]", }, ["Fish Glasses"] = { class = "Glasses", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Marine Park Pass"] = { class = "Neck", rarity = 2, framed = 1, name = "Super Sea Land Pass", description = "[[Super Animal Pass Season 8]]", }, ["Marine Park Visitor Outfit"] = { class = "Clothes", rarity = 4, framed = 1, name = "Super Sea Land Visitor Outfit", description = "[[Super Animal Pass Season 8]]", }, ["Wet Floor Gravestone"] = { class = "Gravestone", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Flipper"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Mini Otter"] = { class = "Pet", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Marine Park Staff Uniform"] = { class = "Clothes", rarity = 3, framed = 1, name = "Super Sea Land Staff Uniform", description = "[[Super Animal Pass Season 8]]", }, ["Narwhal Horn"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Octopus Hoodie"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Jellyfish Umbrella"] = { class = "Umbrella", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Sip Emote"] = { class = "Emote", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 8]]", }, ["Beach Necklace"] = { class = "Neck", rarity = 5, event = "Summer Royale 2023", currency = { name = "Fruit Baskets", amount = 450, }, }, ["Lime Glasses"] = { class = "Glasses", rarity = 5, event = "Summer Royale 2023", currency = { name = "Fruit Baskets", amount = 450, }, }, ["Watermelon Cap"] = { class = "Hat", rarity = 5, event = "Summer Royale 2023", currency = { name = "Fruit Baskets", amount = 450, }, }, ["Summer Aviators"] = { class = "Glasses", rarity = 5, event = "Summer Royale 2023", currency = { name = "Fruit Baskets", amount = 900, }, }, ["Dogna's Watermelon Dartfly Gun"] = { class = "GunSkin", rarity = 5, link = "Dogna's Dartfly Gun", event = "Summer Royale 2023", currency = { name = "Fruit Baskets", amount = 900, }, }, ["Lemon Skirt Outfit"] = { class = "Clothes", rarity = 5, name = "Lemon Skirt", event = "Summer Royale 2023", currency = { name = "Fruit Baskets", amount = 900, }, }, ["Flipflop Melee"] = { class = "MeleeSkin", rarity = 5, event = "Summer Royale 2023", currency = { name = "Fruit Baskets", amount = 1337, }, }, ["Lemon Outfit"] = { class = "Clothes", rarity = 5, event = "Summer Royale 2023", currency = { name = "Fruit Baskets", amount = 1337, }, }, ["Royal Scepter"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "50 Wins", super_edition = 1, group = 3950, }, ["King's Outfit"] = { class = "Clothes", rarity = 4, framed = 1, description = "100 Wins", super_edition = 1, }, ["Juicer Gravestone"] = { class = "Gravestone", rarity = 2, framed = 1, description = "Die due to Juice Press", super_edition = 1, }, ["Default Laser Gun"] = { link = "Laser Gun", class = "GunSkin", file = "Grey Laser Gun.png", rarity = 0, name = "Default Superite Laser", description = "''Available to all players''", group = 100 }, ["Orange Laser Gun"] = { class = "GunSkin", rarity = 0, name = "Orange Superite Laser", link = "Laser Gun", description = "10 Superite Laser kills", group = 100 }, ["Green Laser Gun"] = { class = "GunSkin", rarity = 0, name = "Green Superite Laser", link = "Laser Gun", description = "25 Superite Laser kills", group = 200 }, ["Blue Laser Gun"] = { class = "GunSkin", rarity = 1, name = "Blue Superite Laser", link = "Laser Gun", description = "45 Superite Laser kills", group = 300 }, ["Red Laser Gun"] = { class = "GunSkin", rarity = 1, name = "Red Superite Laser", link = "Laser Gun", description = "70 Superite Laser kills", group = 400 }, ["Purple Laser Gun"] = { class = "GunSkin", rarity = 1, name = "Purple Superite Laser", framed = 1, link = "Laser Gun", description = "100 Superite Laser kills", super_edition = 1, group = 500 }, ["Yellow Laser Gun"] = { class = "GunSkin", rarity = 2, name = "Yellow Superite Laser", framed = 1, link = "Laser Gun", description = "140 Superite Laser kills", super_edition = 1, group = 600 }, ["Pink Laser Gun"] = { class = "GunSkin", rarity = 2, name = "Pink Superite Laser", framed = 1, link = "Laser Gun", description = "190 Superite Laser kills", super_edition = 1, group = 700 }, ["White Laser Gun"] = { class = "GunSkin", rarity = 3, name = "White Superite Laser", framed = 1, link = "Laser Gun", description = "250 Superite Laser kills", super_edition = 1, group = 800 }, ["Toon Outfit"] = { name = "Cartoon Suspenders", class = "Clothes", rarity = 3, framed = 1, description = "<small>[[Season 8 Starter Pack]]</small>", }, ["Fountain Pen"] = { class = "MeleeSkin", rarity = 3, framed = 1, name = "Ink Nib Pen", description = "<small>[[Season 8 Starter Pack]]</small>", }, ["Super Toon Fennec Fox"] = { name = "Super Cartoon Fennec Fox", class = "CharacterSkin", rarity = 3, framed = 1, description = "<small>[[Season 8 Starter Pack]]</small>", baseAnimal = "Fox", group = 1150, }, ["Super Banana Dog"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Dog", currencies = { { name = "DNA", amount = 110, }, { name = "Serum", amount = 24, }, }, }, ["Super Apricat"] = { class = "CharacterSkin", rarity = 3, name = "Super ApriCat", baseAnimal = "Cat", currencies = { { name = "DNA", amount = 80, }, { name = "Serum", amount = 15, }, }, }, ["Super Fish"] = { class = "Character", rarity = 0, baseAnimal = "Fish", currencies = { { name = "DNA", amount = 75, }, { name = "Serum", amount = 15, }, }, }, ["Super Goldfish"] = { class = "CharacterSkin", rarity = 1, baseAnimal = "Fish", currencies = { { name = "DNA", amount = 105, }, { name = "Serum", amount = 28, }, }, }, ["Super Perch"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Fish", currencies = { { name = "DNA", amount = 140, }, { name = "Serum", amount = 38, }, }, }, ["Super Black Goldfish"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Fish", currencies = { { name = "DNA", amount = 190, }, { name = "Serum", amount = 52, }, }, }, ["Super Catfish"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Fish", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 70, }, }, }, ["Super Cat Fish"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Fish", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 84, }, }, }, ["Super Dolphin"] = { class = "Character", rarity = 0, baseAnimal = "Dolphin", currencies = { { name = "DNA", amount = 175, }, { name = "Serum", amount = 48, }, }, }, ["Super Blue Dolphin"] = { class = "CharacterSkin", rarity = 1, baseAnimal = "Dolphin", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 68, }, }, }, ["Super Pink Dolphin"] = { class = "CharacterSkin", rarity = 1, baseAnimal = "Dolphin", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 68, }, }, }, ["Super Common Dolphin"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Dolphin", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Lilac Dolphin"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Dolphin", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Dogna's Green & Black Dartfly Gun"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Dogna's Dartfly Gun", description = "''[[Season 8 Xbox Perks Pack]]''", }, ["Dogna's Blue & Black Dartfly Gun"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Dogna's Dartfly Gun", description = "''[[Season 8 PlayStation Plus Pack]]''", }, ["Blue & Black Minigun"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Minigun", description = "''[[Season 8 PlayStation Plus Pack]]''", }, ["Blue & Black Silenced Pistol"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Silenced Pistol", description = "''[[Season 8 PlayStation Plus Pack]]''", }, ["Green & Black Minigun"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Minigun", description = "''[[Season 8 Xbox Perks Pack]]''", }, ["Green & Black Silenced Pistol"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Silenced Pistol", description = "''[[Season 8 Xbox Perks Pack]]''", }, ["Green & Black Jersey"] = { class = "Clothes", rarity = 3, framed = 1, description = "''[[Season 8 Xbox Perks Pack]]''", }, ["Blue & Black Jersey"] = { class = "Clothes", rarity = 3, framed = 1, description = "''[[Season 8 PlayStation Plus Pack]]''", }, ["Rainbow Heart Hoodie"] = { class = "Clothes", rarity = 5, description = "[[Guides/Coupon Codes|LOVE2023 Coupon Code]]", file = "Clothes hoodie rainbow.png" }, ["Rainbow Bandana"] = { class = "Neck", rarity = 5, description = "[[Guides/Coupon Codes|LOVE2023 Coupon Code]]", file = "Clothes bandana rainbow.png" }, ["Amplifier Gravestone"] = { class = "Gravestone", rarity = 5, description = "<small>[[Twitch Drops#Rock & Roll Set|Twitch Drops July 2023]]</small>", }, ["Record Umbrella"] = { class = "Umbrella", rarity = 5, description = "<small>[[Twitch Drops#Rock & Roll Set|Twitch Drops July 2023]]</small>", }, ["Pirate Flag"] = { class = "MeleeSkin", rarity = 2, framed = 1, bundle = "Pirate Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, }, ["Pirate Skull Cap"] = { class = "Hat", rarity = 1, framed = 1, bundle = "Pirate Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 200, }, }, ["Pirate Skirt"] = { class = "Clothes", rarity = 3, framed = 1, bundle = "Pirate Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, }, ["Flintlock Magnum"] = { class = "GunSkin", rarity = 2, framed = 1, bundle = "Pirate Bundle", store = "saw", link = "Magnum", currency = { name = "S.A.W. Tickets", amount = 450, }, }, ["Monkey Dance"] = { class = "Emote", rarity = 3, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 800, }, }, ["Samba"] = { class = "Emote", rarity = 2, framed = 1, store = "saw", file = "Emote-samba.png", currency = { name = "S.A.W. Tickets", amount = 600, }, }, ["Fae Antlers"] = { class = "Hat", rarity = 3, description = "[[Super Animal Mods|Fuchsia Fuchs Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, } }, ["Super Orca"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Dolphin", currencies = { { name = "DNA", amount = 450, }, { name = "Serum", amount = 125, }, }, }, ["Super Shark"] = { class = "Character", rarity = 0, baseAnimal = "Shark", currencies = { { name = "DNA", amount = 185, }, { name = "Serum", amount = 50, }, }, }, ["Super Yellow Shark"] = { class = "CharacterSkin", rarity = 1, baseAnimal = "Shark", currencies = { { name = "DNA", amount = 260, }, { name = "Serum", amount = 72, }, }, }, ["Super Nurse Shark"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Shark", currencies = { { name = "DNA", amount = 330, }, { name = "Serum", amount = 90, }, }, }, ["Super Tiger Shark"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Shark", currencies = { { name = "DNA", amount = 330, }, { name = "Serum", amount = 90, }, }, }, ["Super Dark Shark"] = { class = "CharacterSkin", name = "Super Dark Blue Shark", rarity = 3, file = "Super Dark Blue Shark.png", baseAnimal = "Shark", currencies = { { name = "DNA", amount = 420, }, { name = "Serum", amount = 115, }, }, }, ["Super Thresher Shark"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Shark", currencies = { { name = "DNA", amount = 420, }, { name = "Serum", amount = 115, }, }, }, ["Water Pistol"] = { class = "GunSkin", rarity = 2, framed = 1, link = "Pistol", store = "saw", currency = { name = "S.A.W. Tickets", amount = 450, }, }, ["Ermah Gravestone"] = { class = "Gravestone", rarity = 4, name = "Comfy Gravestone", description = "<small>''Ermahburd Super Content Creator Item''</small>" }, ["Enma's Guitar"] = { class = "MeleeSkin", rarity = 2, description = "<small>''Enma Darei Super Content Creator Item''</small>" }, ["Pizza Umbrella"] = { class = "Umbrella", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Olive Toothpick"] = { class = "MeleeSkin", rarity = 1, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Flapper Headband"] = { class = "Hat", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Flapper Dress"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Party Deagle"] = { class = "GunSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 9]]", link = "Deagle", }, ["Banana Split Gravestone"] = { class = "Gravestone", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Glowstick Glasses"] = { class = "Glasses", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Mardi Gras Outfit"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Dogna’s Party Dartfly Gun"] = { class = "GunSkin", rarity = 2, framed = 1, link = "Dogna's Dartfly Gun", description = "[[Super Animal Pass Season 9]]", }, ["Crocodile Club Background"] = { class = "Booth", rarity = 3, name = "Croc Club Photo Scene", framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Rimless Star Glasses"] = { class = "Glasses", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Elizabethan Dress"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Drink Umbrella"] = { class = "Umbrella", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Sparkling Health Juice"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Carnival Mask"] = { class = "Glasses", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Mardi Gras Dress"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Disco Ball Umbrella"] = { class = "Umbrella", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 9]]", name = "Disco Umbrella", }, ["Party Thomas Gun"] = { class = "GunSkin", rarity = 2, framed = 1, link = "Thomas Gun", description = "[[Super Animal Pass Season 9]]", }, ["Harlequin Hat"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Harlequin Outfit"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 9]]", name = "Harlequin Costume", }, ["Party Superite Laser"] = { class = "GunSkin", rarity = 2, framed = 1, link = "Superite Laser", description = "[[Super Animal Pass Season 9]]", }, ["Mini Croc"] = { class = "Pet", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Pierrot Hat"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Pierrot Outfit"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Disco Ball Gravestone"] = { class = "Gravestone", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 9]]", name = "Disco Gravestone", }, ["Hound Dog"] = { class = "Emote", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Opera Mask"] = { class = "Glasses", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Opera Tuxedo"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 9]]", }, ["Turnip Boy Wanted Gravestone"] = { class = "Gravestone", rarity = 5, link = "Turnip Boy Collab Event", }, ["Turnip Boy Umbrella"] = { class = "Umbrella", rarity = 5, link = "Turnip Boy Collab Event", name = "Turnip Boy Wanted Poster", }, ["Soil Magnum"] = { class = "GunSkin", rarity = 5, link = "Magnum", link = "Turnip Boy Collab Event", name = "Soil Revolver", }, ["Turnip Leaves"] = { class = "Hat", rarity = 5, link = "Turnip Boy Collab Event", name = "Turnip Boy Leaves", }, ["Soil Sword"] = { class = "MeleeSkin", rarity = 5, link = "Turnip Boy Collab Event", }, ["Turnip Boy Outfit"] = { class = "Clothes", rarity = 5, link = "Turnip Boy Collab Event", name = "Turnip Chan Outfit", }, ["Super Apple Cat"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Cat", currencies = { { name = "DNA", amount = 160, }, { name = "Serum", amount = 42, }, }, group = 100, }, ["Super Kitsune Fox"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Fox", framed = 1, description = "<small>[[Season 9 Starter Pack]]</small>", name = "Super Kitsune", }, ["Scroll"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "<small>[[Season 9 Starter Pack]]</small>", name = "Kitsune Scroll", }, ["Kitsune Kimono"] = { class = "Clothes", rarity = 3, framed = 1, description = "<small>[[Season 9 Starter Pack]]</small>", name = "Miko Outfit", }, ["Super Caracal"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Cat", currencies = { { name = "DNA", amount = 230, }, { name = "Serum", amount = 62, }, }, }, ["Super Blobfish"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Fish", currencies = { { name = "DNA", amount = 190, }, { name = "Serum", amount = 52, }, }, }, ["Super Gummy Shark"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Shark", currencies = { { name = "DNA", amount = 510, }, { name = "Serum", amount = 140, }, }, }, ["Super Tiger Tiger Shark"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Shark", currencies = { { name = "DNA", amount = 420, }, { name = "Serum", amount = 115, }, }, }, ["Super Elephant Seal"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Seal", currencies = { { name = "DNA", amount = 400, }, { name = "Serum", amount = 110, }, }, }, ["Super Inverted Skunk"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Skunk", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 65, }, }, }, ["Super Fire Hawk"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Hawk", currencies = { { name = "DNA", amount = 400, }, { name = "Serum", amount = 110, }, }, }, ["Super Flamingo"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Seagull", currencies = { { name = "DNA", amount = 450, }, { name = "Serum", amount = 124, }, }, }, ["Super Komodo"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Lizard", name = "Super Komodo Dragon", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Super Tibetan Fox"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Fox", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 50, }, }, }, ["Super Sacabambaspis"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Fish", currencies = { { name = "DNA", amount = 190, }, { name = "Serum", amount = 52, }, }, }, ["Super Azureus Frog"] = { class = "Character", rarity = 3, baseAnimal = "Frog", name = "Super Blue Poison Dart Frog", currencies = { { name = "DNA", amount = 280, }, { name = "Serum", amount = 78, }, }, }, ["Green Party Hat"] = { class = "Hat", rarity = 1, store = "carl", currency = { name = "Carl Coins", amount = 300, }, }, ["Blue Party Hat"] = { class = "Hat", rarity = 1, store = "carl", currency = { name = "Carl Coins", amount = 300, }, }, ["Yellow Party Hat"] = { class = "Hat", rarity = 1, store = "carl", currency = { name = "Carl Coins", amount = 300, }, }, ["Hula Dance"] = { class = "Emote", rarity = 2, name = "Hula", framed = 1, file = "Emote-hula.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 600, }, }, ["Vaporwave Explosion"] = { class = "DeathExplosion", rarity = 2, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, }, ["Pointy Hand"] = { class = "MeleeSkin", rarity = 3, name = "Pointer Hand", store = "carl", currency = { name = "Carl Coins", amount = 1500, }, name = "Pointer Hand" }, ["Black Trench"] = { class = "Clothes", rarity = 4, store = "carl", currency = { name = "Carl Coins", amount = 3000, }, name = "Trench Suit", }, ["Spider Necklace"] = { class = "Neck", rarity = 5, event = "Super Howloween 2023", name = "Spider Necklace", }, ["Howloween Background"] = { class = "Booth", rarity = 5, name = "Howloween Photo Scene", event = "Super Howloween 2023", }, ["Witch Hat Umbrella"] = { class = "Umbrella", rarity = 5, event = "Super Howloween 2023", }, ["Super Sewer Rat"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Rat", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Jiangshi Outfit"] = { class = "Clothes", rarity = 5, description = "<small>[[Twitch Drops#Jiangshi Set|Twitch Drops October 2023]]</small>", }, ["Jiangshi Beads"] = { class = "Neck", rarity = 5, description = "<small>[[Twitch Drops#Jiangshi Set|Twitch Drops October 2023]]</small>", }, ["Jiangshi Hat"] = { class = "Hat", rarity = 5, description = "<small>[[Twitch Drops#Jiangshi Set|Twitch Drops October 2023]]</small>", }, ["Spiderweb Costume"] = { class = "Clothes", rarity = 5, event = "Super Howloween 2023", }, ["Bone Sword"] = { class = "MeleeSkin", rarity = 5, event = "Super Howloween 2023", }, ["Scarecrow Gravestone"] = { class = "Gravestone", rarity = 5, event = "Super Howloween 2023", }, ["Super Anglerfish"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Fish", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 70, }, }, }, ["Conductor Outfit"] = { class = "Clothes", rarity = 2, framed = 1, bundle = "Conductor Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, }, ["Steam Whistle"] = { class = "MeleeSkin", rarity = 2, framed = 1, bundle = "Conductor Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, }, ["Conductor Hat"] = { class = "Hat", rarity = 2, framed = 1, bundle = "Conductor Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, }, ["Howloween Bow"] = { class = "Hat", rarity = 5, file = "Halloween Bow.png", event = "Super Howloween 2023", }, ["Ghost & Bat Dual Pistols"] = { class = "GunSkin", rarity = 5, link = "Dual Pistols", name = "Spooky Dual Pistols", event = "Super Howloween 2023", }, ["Halloween Onesie"] = { class = "Clothes", rarity = 5, event = "Super Howloween 2023", name = "Howloween Onesie", }, ["Super Alebrije Axolotl"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Salamander", currencies = { { name = "DNA", amount = 480, }, { name = "Serum", amount = 132, }, }, }, ["Super Pogona"] = { class = "Character", rarity = 0, name = "Super Bearded Dragon", baseAnimal = "Bearded Dragon", file = "Super Bearded Dragon.png", currencies = { { name = "DNA", amount = 150, }, { name = "Serum", amount = 40, }, }, }, ["Super Red Pogona"] = { class = "CharacterSkin", rarity = 2, name = "Super Red Bearded Dragon", baseAnimal = "Bearded Dragon", file = "Super Red Bearded Dragon.png", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Super Grey Pogona"] = { class = "CharacterSkin", rarity = 2, name = "Super Grey Bearded Dragon", baseAnimal = "Bearded Dragon", file = "Super Gray Bearded Dragon.png", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 80, }, }, }, ["Super Yellow Pogona"] = { class = "CharacterSkin", rarity = 1, name = "Super Yellow Bearded Dragon", baseAnimal = "Bearded Dragon", file = "Super Yellow Bearded Dragon.png", currencies = { { name = "DNA", amount = 225, }, { name = "Serum", amount = 60, }, }, }, ["Health Juice Cocktail"] = { class = "MeleeSkin", rarity = 2, name = "Classy Health Juice", description = "<small>''Blondie_420 Super Content Creator Item''</small>", }, ["Skullcat Plush Emote"] = { class = "Emote", rarity = 5, description = "<small>Makeship plush emote</small>", }, ["Plush Emote"] = { class = "Emote", rarity = 5, name = "Fox Plush Emote", description = "<small>Makeship plush emote</small>", }, ["Toy Sparrow Launcher"] = { class = "GunSkin", rarity = 2, framed = 1, store = "saw", link = "Sparrow Launcher", currency = { name = "S.A.W. Tickets", amount = 450, }, }, ["Flames Laser Gun"] = { class = "GunSkin", rarity = 2, name = "Flames Superite Laser", framed = 1, store = "saw", link = "Laser Gun", currency = { name = "S.A.W. Tickets", amount = 450, }, }, ["Blue Balloon Sword"] = { class = "MeleeSkin", rarity = 2, store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Green Balloon Sword"] = { class = "MeleeSkin", rarity = 2, store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Red Balloon Sword"] = { class = "MeleeSkin", rarity = 2, store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Candy Cane Tie"] = { class = "Neck", rarity = 5, name = "Candycane Tie", event = "Super CRISPRmas 2023", currency = { name = "Candy Canes", amount = 1000, }, }, ["Present Box Outfit"] = { class = "Clothes", rarity = 5, name = "Present Outfit", event = "Super CRISPRmas 2023", }, ["Present Tophat"] = { class = "Hat", rarity = 5, event = "Super CRISPRmas 2023", }, ["Street Art Bandana"] = { class = "Neck", rarity = 1, name = "Street Artist Bandana", framed = 1, bundle = "Street Art Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 200, }, }, ["Street Art Outfit"] = { class = "Clothes", rarity = 3, name = "Street Artist Outfit", framed = 1, bundle = "Street Art Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 750, }, }, ["Spray Paint"] = { class = "MeleeSkin", rarity = 2, framed = 1, bundle = "Street Art Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, }, ["Ranger Outfit"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 10]]", }, ["Medieval Minigun"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Minigun", description = "[[Super Animal Pass Season 10]]", }, ["Joust Lance"] = { class = "MeleeSkin", rarity = 2, framed = 1, name = "Jousting Lance", description = "[[Super Animal Pass Season 10]]", }, ["Medieval Plate Armor Outfit"] = { class = "Clothes", rarity = 3, framed = 1, name = "Plate Armor", description = "[[Super Animal Pass Season 10]]", }, ["Ring Necklace"] = { class = "Neck", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 10]]", }, ["Holy Grail"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 10]]", }, ["Renaissance Hat"] = { class = "Hat", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 10]]", }, ["Renaissance Outfit"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 10]]", }, ["D20 Gravestone"] = { class = "Gravestone", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 10]]", }, ["Penguin Palace Background"] = { class = "Booth", rarity = 3, framed = 1, name = "Penguin Palace Photo Scene", description = "[[Super Animal Pass Season 10]]", }, ["Medieval Glasses"] = { class = "Glasses", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 10]]", }, ["Renaissance Dress Outfit"] = { class = "Clothes", rarity = 3, framed = 1, name = "Renaissance Dress", description = "[[Super Animal Pass Season 10]]", }, ["Lute Melee"] = { class = "MeleeSkin", rarity = 2, framed = 1, name = "Lute", description = "[[Super Animal Pass Season 10]]", }, ["Excalibur AK"] = { class = "GunSkin", rarity = 3, framed = 1, link = "AK", description = "[[Super Animal Pass Season 10]]", }, ["Minstrel Hat"] = { class = "Hat", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 10]]", }, ["Minstrel Outfit"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 10]]", }, ["Elf Tiara"] = { class = "Hat", rarity = 2, framed = 1, name = "Elven Tiara", description = "[[Super Animal Pass Season 10]]", }, ["Elven Bow & Sparrow"] = { class = "GunSkin", rarity = 2, link = "Bow & Sparrow", name = "Elf Bow & Sparrow", description = "[[Super Animal Pass Season 10]]", }, ["Mini Horse"] = { class = "Pet", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 10]]", }, ["Elf Dress"] = { class = "Clothes", rarity = 4, framed = 1, name = "Elven Outfit", description = "[[Super Animal Pass Season 10]]", }, ["Spellbook Gravestone"] = { class = "Gravestone", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 10]]", }, ["Magical Staff"] = { class = "MeleeSkin", rarity = 3, framed = 1, name = "Wizard Staff", description = "[[Super Animal Pass Season 10]]", }, ["Wizard Hat"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 10]]", }, ["Wizard Outfit"] = { class = "Clothes", rarity = 4, framed = 1, name = "Wizard Robes", description = "[[Super Animal Pass Season 10]]", }, ["Warhammer"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 10]]", }, ["Coconut Gallop"] = { class = "Emote", rarity = 3, framed = 1, name = "Coconut Canter", description = "[[Super Animal Pass Season 10]]", }, ["Barbarian Helmet"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 10]]", }, ["Barbarian Outfit"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 10]]", }, ["Super Dragon"] = { class = "Character", rarity = 0, baseAnimal = "Dragon", currencies = { { name = "DNA", amount = 210, }, { name = "Serum", amount = 55, }, }, }, ["Super Orange Dragon"] = { class = "CharacterSkin", rarity = 1, baseAnimal = "Dragon", currencies = { { name = "DNA", amount = 310, }, { name = "Serum", amount = 82, }, }, }, ["Super Green Dragon"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Dragon", name = "Super Forest Dragon", currencies = { { name = "DNA", amount = 410, }, { name = "Serum", amount = 115, }, }, }, ["Super Purple Dragon"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Dragon", name = "Super Superite Dragon", currencies = { { name = "DNA", amount = 410, }, { name = "Serum", amount = 115, }, }, }, ["Super Black Dragon"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Dragon", name = "Super Black Wyvern", currencies = { { name = "DNA", amount = 510, }, { name = "Serum", amount = 140, }, }, }, ["Super Silver Dragon"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Dragon", name = "Super Ice Wyvern", currencies = { { name = "DNA", amount = 510, }, { name = "Serum", amount = 140, }, }, }, ["Super Icicle Deer"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Deer", currencies = { { name = "DNA", amount = 190, }, { name = "Serum", amount = 52, }, }, }, ["Super Fairy Skullcat"] = { class = "CharacterSkin", rarity = 3, framed = 1, description = "<small>[[Season 10 Starter Pack]]</small>", baseAnimal = "Skullcat", }, ["Fairy Armor"] = { class = "Clothes", rarity = 3, framed = 1, description = "<small>[[Season 10 Starter Pack]]</small>", }, ["Fairy Sword"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "<small>[[Season 10 Starter Pack]]</small>", }, ["Party Beads"] = { class = "Neck", rarity = 5, description = "Super 5 Year Anniversary", }, ["5th Anniversary Cake Gravestone"] = { class = "Gravestone", rarity = 5, description = "Super 5 Year Anniversary", }, ["Super Pinata Donkey"] = { class = "CharacterSkin", rarity = 4, name = "Super Piñata Donkey", baseAnimal = "Donkey", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 75, }, }, }, ["Blue & Black Firework"] = { class = "MeleeSkin", rarity = 4, framed = 1, description = "''[[Season 9 PlayStation Plus Pack]]''", }, ["Blue & Black Tie"] = { class = "Neck", rarity = 2, framed = 1, description = "''[[Season 9 PlayStation Plus Pack]]''", }, ["Blue & Black Superite Laser"] = { class = "GunSkin", rarity = 4, framed = 1, link = "Superite Laser", description = "''[[Season 9 PlayStation Plus Pack]]''", }, ["Blue & Black Party Hat"] = { class = "Hat", rarity = 3, framed = 1, description = "''[[Season 9 PlayStation Plus Pack]]''", }, ["Red Tartan Bow"] = { class = "Hat", rarity = 5, name = "Tartan Bow", event = "Super CRISPRmas 2023", }, ["Brown Winter Coat"] = { class = "Clothes", rarity = 5, event = "Super CRISPRmas 2023", }, ["Cocoa Mug Gravestone"] = { class = "Gravestone", rarity = 5, event = "Super CRISPRmas 2023", }, ["Super Cinnamon Sugar Beaver"] = { class = "Character", rarity = 4, baseAnimal = "Beaver", currencies = { { name = "DNA", amount = 450, }, { name = "Serum", amount = 120, }, }, }, ["New Years Tophat"] = { class = "Hat", rarity = 5, event = "Super CRISPRmas 2023", currency = { name = "Candy Canes", amount = 1337, }, }, ["New Years SMG"] = { class = "GunSkin", rarity = 5, link = "SMG", event = "Super CRISPRmas 2023", file = "New Years SMG.png", }, ["New Years Suit"] = { class = "Clothes", rarity = 5, event = "Super CRISPRmas 2023", file = "New Years Suit.png", }, ["Scrooge Hat"] = { class = "Hat", rarity = 5, name = "Scrooge Tophat", description = "<small>[[Twitch Drops#Scrooge Set|Twitch Drops December 2023]]</small>", }, ["Scrooge Suit"] = { class = "Clothes", rarity = 5, description = "<small>[[Twitch Drops#Scrooge Set|Twitch Drops December 2023]]</small>", }, ["Scrooge Cane"] = { class = "MeleeSkin", rarity = 5, description = "<small>[[Twitch Drops#Scrooge Set|Twitch Drops December 2023]]</small>", }, ["Purple Crayon"] = { class = "MeleeSkin", rarity = 5, file = "Melee crayon purple.png", description = "[[Special Cosmetics#Super Fanart Contest|Life of the Party (Jun-Jul 2023)]]", group = 6050, }, ["Diner Hat"] = { class = "Hat", rarity = 2, framed = 1, bundle = "Diner Bundle", file = "Hat diner.png" }, ["Diner Outfit"] = { class = "Clothes", rarity = 3, framed = 1, bundle = "Diner Bundle", file = "Clothes diner server.png" }, ["Milkshake"] = { class = "MeleeSkin", rarity = 2, framed = 1, bundle = "Diner Bundle", file = "Melee milkshake.png" }, ["Box Cutter"] = { class = "MeleeSkin", rarity = 1, file = "Box cutter.png", framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 300, }, group = 1050, }, ["Cardboard Sword"] = { class = "MeleeSkin", rarity = 2, file = "Cardboard sword.png", framed = 1, store = "saw", bundle = "Cardboard Bundle", currency = { name = "S.A.W. Tickets", amount = 500, }, group = 1100, }, ["Cardboard Costume"] = { class = "Clothes", rarity = 3, file = "Cardboard costume.png", framed = 1, store = "saw", bundle = "Cardboard Bundle", group = 1050, currency = { name = "S.A.W. Tickets", amount = 750, } }, ["Cardboard Crown"] = { class = "Hat", rarity = 1, file = "Cardboard crown.png", framed = 1, store = "saw", bundle = "Cardboard Bundle", currency = { name = "S.A.W. Tickets", amount = 200, }, group = 1050, }, ["Super St Bernard"] = { class = "CharacterSkin", rarity = 4, file = "Char-dog-StBernard.png", baseAnimal = "Dog", name = "Super St. Bernard", currencies = { { name = "DNA", amount = 220, }, { name = "Serum", amount = 62, }, } }, ["Super Golden Eastern Dragon"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Dragon", name = "Super Golden Dragon", file = "Super Golden Dragon.png", currencies = { { name = "DNA", amount = 600, }, { name = "Serum", amount = 168, }, } }, ["Super Eastern Dragon"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Dragon", name = "Super Eastern Dragon", currencies = { { name = "DNA", amount = 510, }, { name = "Serum", amount = 140, }, } }, ["Super Lunar Dragon"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Dragon", name = "Super Lunar Dragon", currencies = { { name = "DNA", amount = 410, }, { name = "Serum", amount = 115, }, } }, ["Dragon Necklace"] = { class = "Neck", rarity = 5, event = "Year of the Super Dragon 2024", }, ["Dragon Jacket"] = { class = "Clothes", rarity = 5, event = "Year of the Super Dragon 2024", }, ["Paper Dragon Umbrella"] = { class = "Umbrella", rarity = 5, event = "Year of the Super Dragon 2024", name = "Dragon Paper Umbrella", file = "Dragon Paper Umbrella.png" }, ["Bones Onesie"] = { class = "Clothes", name = "Teal Onesie", rarity = 3, store = "carl", currency = { name = "Carl Coins", amount = 1500, }, }, ["Baguette"] = { class = "MeleeSkin", rarity = 3, currency = { name = "Carl Coins", amount = 1500, }, }, ["Dragon Horns Headband"] = { class = "Hat", rarity = 5, event = "Year of the Super Dragon 2024", name = "Dragon Horns", }, ["Dragon Sword"] = { class = "Melee", rarity = 5, event = "Year of the Super Dragon 2024", }, ["Gong Gravestone"] = { class = "Gravestone", rarity = 5, event = "Year of the Super Dragon 2024", }, ["Dragon AK"] = { class = "GunSkin", rarity = 5, event = "Year of the Super Dragon 2024", link = "AK" }, ["Dragon Dancer Outfit"] = { class = "Clothes", rarity = 5, event = "Year of the Super Dragon 2024", }, ["Firecrackers Melee"] = { class = "Melee", rarity = 5, name = "Firecrackers", event = "Year of the Super Dragon 2024", }, ["Super Taiyaki Fish"] = { class = "CharacterSkin", rarity = 4, name = "Super Taiyaki", baseAnimal = "Fish", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 70, }, } }, ["Messenger Bag"] = { class = "Neck", file = "neck_messenger_bag.png", rarity = 2, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, }, ["Super Lucky Dragon"] = { class = "CharacterSkin", rarity = 3, file = "Char-dragon-eastern-red.png", baseAnimal = "Dragon", currencies = { { name = "DNA", amount = 510, }, { name = "Serum", amount = 140, }, } }, ["Borazilla's Axe"] = { class = "MeleeSkin", rarity = 3, description = "[[Super Animal Mods|Borazilla Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, } }, ["Paper Cutting Pinwheel"] = { class = "MeleeSkin", rarity = 3, framed = 1, file = "Melee paper cutting pinwheel.png", store = "saw", currency = { name = "S.A.W. Tickets", amount = 650, }, }, ["Orange Crayon"] = { class = "MeleeSkin", rarity = 5, file = "melee_crayon_orange.png", description = "[[Special Cosmetics#Super Fanart Contest|A Moment of Peace (Sep 2022)]]", group = 6030, }, ["Green & Black Present Gravestone"] = { class = "Gravestone", rarity = 3, name = "Green & Black Present", framed = 1, description = "[[Season 10 Xbox Perks pack]]", file = "Gravestone present Xbox.png" }, ["Green & Black Bow & Sparrow"] = { class = "GunSkin", rarity = 3, framed = 1, description = "[[Season 10 Xbox Perks Pack]]", link = "Bow & Sparrow", file = "Gun bow Xbox.png" }, ["Green & Black Down Jacket"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Season 10 Xbox Perks Pack]]", file = "Clothes down jacket Xbox.png" }, ["Green & Black Bobblehat"] = { class = "Hat", rarity = 3, name = "Green & Black Pom Beanie", framed = 1, description = "[[Season 10 Xbox Perks Pack]]", file = "Hat bobblehat Xbox.png" }, ["Butter Basket Gravestone"] = { class = "Gravestone", rarity = 3, file = "Gravestone butter basket.png", description = "[[Super Animal Mods|Dr.Z Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, } }, ["Super Lucky Pig"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Pig", currencies = { { name = "DNA", amount = 250, }, { name = "Serum", amount = 65, }, } }, ["Cheek Kiss Sticker"] = { class = "Beard", rarity = 5, event = "ReSpawning Day 2024", name = "Lipstick Sticker", }, ["Horseshoe Gravestone"] = { class = "Gravestone", rarity = 5, event = "ReSpawning Day 2024", name = "Golden Horseshoe", }, ["Clover Umbrella"] = { class = "Umbrella", rarity = 5, event = "ReSpawning Day 2024", }, ["Super Octopus"] = { class = "Character", rarity = 0, baseAnimal = "Octopus", currencies = { { name = "DNA", amount = 185, }, { name = "Serum", amount = 50, }, } }, ["Super Blue Octopus"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Octopus", currencies = { { name = "DNA", amount = 330, }, { name = "Serum", amount = 90, }, } }, ["Super Blue Ring Octopus"] = { class = "CharacterSkin", rarity = 3, name = "Super Blue-Ringed Octopus", baseAnimal = "Octopus", currencies = { { name = "DNA", amount = 420, }, { name = "Serum", amount = 115, }, } }, ["Super Pink Octopus"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Octopus", currencies = { { name = "DNA", amount = 330, }, { name = "Serum", amount = 90, }, } }, ["Leek"] = { class = "MeleeSkin", rarity = 2, store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Daikon"] = { class = "MeleeSkin", rarity = 2, name = "Daikon Radish", }, ["Sakura Dual Pistols"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Dual Pistols", store = "saw", currency = { name = "S.A.W. Tickets", amount = 600, }, }, ["Tinfoil Hat"] = { class = "Hat", rarity = 2, name = "Tin Foil Hat", framed = 1, }, ["Cucumber Mask"] = { class = "Glasses", rarity = 2, name = "Cucumber Glasses", framed = 1, bundle = "Spa Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 250, }, }, ["Towel Hat"] = { class = "Hat", rarity = 2, framed = 1, bundle = "Spa Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, }, ["Towel"] = { class = "Clothes", rarity = 2, name = "Towel Wrap", framed = 1, bundle = "Spa Bundle", store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, }, ["Green & Black Tie"] = { class = "Neck", rarity = 2, framed = 1, description = "''[[Season 9 Xbox Perks Pack]]''", file = "Clothes tie Xbox.png" }, ["Green & Black Firework"] = { class = "MeleeSkin", rarity = 4, framed = 1, description = "''[[Season 9 Xbox Perks Pack]]''", file = "Melee firework Xbox.png" }, ["Green & Black Superite Laser"] = { class = "GunSkin", rarity = 4, framed = 1, description = "''[[Season 9 Xbox Perks Pack]]''", link = "Superite Laser", file = "Gun laser Xbox.png" }, ["Green & Black Party Hat"] = { class = "Hat", rarity = 3, framed = 1, description = "''[[Season 9 Xbox Perks Pack]]''", file = "Hat party Xbox.png" }, ["Blue & Black Bobblehat"] = { class = "Hat", rarity = 3, name = "Blue & Black Pom Beanie", framed = 1, description = "''[[Season 10 PlayStation Plus Pack]]''", }, ["Blue & Black Down Jacket"] = { class = "Clothes", rarity = 4, framed = 1, description = "''[[Season 10 PlayStation Plus Pack]]''", }, ["Blue & Black Bow & Sparrow"] = { class = "GunSkin", rarity = 3, framed = 1, description = "''[[Season 10 PlayStation Plus Pack]]''", link = "Bow & Sparrow", }, ["Blue & Black Present Gravestone"] = { class = "Gravestone", rarity = 3, name = "Blue & Black Present", framed = 1, description = "''[[Season 10 PlayStation Plus Pack]]''", }, ["Super Sakura Cat"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Cat", currencies = { { name = "DNA", amount = 160, }, { name = "Serum", amount = 42, }, } }, ["Taiko Outfit"] = { class = "Clothes", rarity = 5, event = "ReSpawning Day 2024", }, ["Cherry Blossoms Background"] = { class = "Booth", rarity = 5, event = "ReSpawning Day 2024", name = "Sakura Photo Scene", }, ["White Hachimaki (Taiko Headband)"] = { class = "Hat", rarity = 5, event = "ReSpawning Day 2024", name = "Taiko Headband", }, ["Omamori"] = { class = "Neck", rarity = 3, description = "[[Super Animal Mods|Kamhome3 Mod Item]]", store = "carl", currency = { name = "Carl Coins", amount = 1500, } }, ["Choir Robes Outfit"] = { class = "Clothes", rarity = 5, name = "Choir Robes", event = "ReSpawning Day 2024", }, ["Vegetation Sparrow Launcher"] = { class = "GunSkin", rarity = 5, link = "Sparrow Launcher", event = "ReSpawning Day 2024", }, ["Daisy Flower Crown"] = { class = "Hat", rarity = 5, name = "Flower Crown", event = "ReSpawning Day 2024", }, ["Gaming Keyboard"] = { class = "MeleeSkin", rarity = 5, description = "[[Limited-time exclusive item]]" }, ["Super Dandelion"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Lion", currencies = { { name = "DNA", amount = 450, }, { name = "Serum", amount = 120, }, } }, ["Banana Milk Outfit"] = { class = "Clothes", rarity = 3, description = "[[Limited-time exclusive item]]<br>[[Super Animal Mods|Bananamilk Mod Item]]", name = "Bananamilk Costume", }, ["Super Swallow"] = { class = "CharacterSkin", file = "Char-bird-swallow.png", rarity = 4, baseAnimal = "Songbird", currencies = { { name = "DNA", amount = 190, }, { name = "Serum", amount = 64, }, } }, ["Cone Hat"] = { class = "Hat", rarity = 1, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 200, }, }, ["Super Bananamilk Pillow"] = { class = "MeleeSkin", rarity = 3, name = "Kaity's Skullcat Pillow", description = "[[Limited-time exclusive item]]<br>[[Super Animal Mods|Kaity Mod Item]]", file = "Kaity's Skullcat Pillow.png" }, ["Snep Gwanbok"] = { class = "Clothes", rarity = 3, description = "[[Limited-time exclusive item]]<br>[[Super Animal Mods|Logical Circuit Mod Item]]", }, ["Blue & Black Overalls"] = { class = "Clothes", rarity = 3, framed = 1, description = "''[[Spring PlayStation Plus Pack]]''", }, ["Blue & Black Newsboy Cap"] = { class = "Hat", rarity = 3, framed = 1, description = "''[[Spring PlayStation Plus Pack]]''", }, ["Blue & Black Deagle"] = { class = "GunSkin", rarity = 3, framed = 1, description = "''[[Spring PlayStation Plus Pack]]''", }, ["Blue & Black Pitchfork"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "''[[Spring PlayStation Plus Pack]]''", }, ["Pan"] = { class = "MeleeSkin", rarity = 3, description = "[[Limited-time exclusive item]]<br>[[Super Animal Mods|Jövil Mod Item]]", file = "Pan.png", }, ["Super Rhino"] = { class = "Character", rarity = 0, baseAnimal = "Rhino", currencies = { { name = "DNA", amount = 200, }, { name = "Serum", amount = 54, }, } }, ["Super Woolly Rhino"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Rhino", currencies = { { name = "DNA", amount = 570, }, { name = "Serum", amount = 158, }, } }, ["Super Fuchsia Rhino"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Rhino", currencies = { { name = "DNA", amount = 480, }, { name = "Serum", amount = 135, }, }, }, ["Super Dark Rhino"] = { class = "CharacterSkin", rarity = 2, baseAnimal = "Rhino", currencies = { { name = "DNA", amount = 390, }, { name = "Serum", amount = 108, }, }, }, ["Super Blue Rhino"] = { class = "CharacterSkin", rarity = 1, baseAnimal = "Rhino", currencies = { { name = "DNA", amount = 300, }, { name = "Serum", amount = 84, }, }, }, ["Super Cotton Candy Dragon"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Dragon", currencies = { { name = "DNA", amount = 600, }, { name = "Serum", amount = 168, }, }, }, ["Shark Plush"] = { class = "MeleeSkin", rarity = 5, store = "carl", currency = { name = "Carl Coins", amount = 3000, }, }, ["Mr. Fox De Luxe Ice Cream"] = { class = "MeleeSkin", rarity = 3, name = "Deluxe Fox Ice Cream", description = "[[Limited-time exclusive item]]<br>[[Super Animal Mods|Mr. Fox de Luxe Mod Item]]", }, ["Obsidian Greatsword"] = { class = "MeleeSkin", rarity = 3, description = "[[Limited-time exclusive item]]<br>[[Super Animal Mods|SlyPork Mod Item]]", }, ["Teal Crayon"] = { class = "MeleeSkin", rarity = 5, file = "melee_crayon_teal.png", description = "[[Special Cosmetics#Super Fanart Contest|Land, Sky, and Sea! (Feb-Mar 2024)]]", group = 6055, }, ["Cardboard Shotgun"] = { class = "GunSkin", rarity = 3, framed = 1, link = "Shotgun", description = "[[Super Animal Pass Season 11]]", }, ["Dirt Marks"] = { class = "Beard", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Trash Can Lid"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Trash Can"] = { class = "Clothes", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Hot Dog Tie"] = { class = "Neck", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Corn Dog"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Arcade Umbrella"] = { class = "Umbrella", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Cardboard BCG"] = { class = "GunSkin", rarity = 3, framed = 1, link = "BCG", description = "[[Super Animal Pass Season 11]]", }, ["Scar"] = { class = "Beard", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Black Blindfold"] = { class = "Glasses", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Wild West Hat"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Wild West Outfit"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Idol Bow"] = { class = "Hat", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Idol Microphone"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Night Vision Goggles (Hat)"] = { class = "Hat", rarity = 3, framed = 1, name = "Night Vision Goggles", description = "[[Super Animal Pass Season 11]]", }, ["Idol Yukata"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Superite Tie"] = { class = "Neck", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Skateboard"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Mini Bearded Dragon"] = { class = "Pet", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Superite Sniper"] = { class = "GunSkin", rarity = 4, framed = 1, link = "Sniper", description = "[[Super Animal Pass Season 11]]", }, ["Broken Blender Gravestone"] = { class = "Gravestone", rarity = 2, framed = 1, name = "Broken Juicer Gravestone", description = "[[Super Animal Pass Season 11]]", }, ["Teddy Beanie"] = { class = "Hat", rarity = 3, framed = 1, name = "Teddy Bear Beanie", description = "[[Super Animal Pass Season 11]]", }, ["Shy"] = { class = "Emote", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Teddy Bear Onesie"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Plague Doctor Staff"] = { class = "MeleeSkin", rarity = 2, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Plague Doctor Hat"] = { class = "Hat", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Plague Doctor Mask"] = { class = "Glasses", rarity = 3, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Plague Doctor Outfit"] = { class = "Clothes", rarity = 4, framed = 1, description = "[[Super Animal Pass Season 11]]", }, ["Cool Pineapple Glasses"] = { class = "Glasses", rarity = 5, event = "Summer Royale 2024" }, ["Watermelon Helmet"] = { class = "Hat", rarity = 5, event = "Summer Royale 2024" }, ["Seashell Necklace"] = { class = "Neck", rarity = 5, event = "Summer Royale 2024" }, ["Super Tomato Frog"] = { class = "Character", rarity = 3, event = "Summer Royale 2024", baseAnimal = "Frog", currencies = { { name = "DNA", amount = 280, }, { name = "Serum", amount = 78, }, }, }, ["Caterpillar Costume"] = { class = "Clothes", rarity = 4, framed = 1, description = "<small>[[Super Animal World Supporter Pack]]</small>", }, ["Caterpillar Antennas"] = { class = "Hat", rarity = 2, framed = 1, description = "<small>[[Super Animal World Supporter Pack]]</small>", name = "Caterpillar Antennae" }, ["Bug Box Gravestone"] = { class = "Gravestone", rarity = 3, framed = 1, description = "<small>[[Super Animal World Supporter Pack]]</small>", }, ["Butterfly Dress"] = { class = "Clothes", rarity = 4, framed = 1, description = "<small>[[Super Animal World Supporter Pack]]</small>", }, ["Butterfly Bow"] = { class = "Hat", rarity = 2, framed = 1, description = "<small>[[Super Animal World Supporter Pack]]</small>", }, ["Checkered Flag"] = { class = "MeleeSkin", rarity = 3, framed = 1, description = "<small>[[Super Animal World Supporter Pack]]</small>", }, ["Hamsterball Racing Suit"] = { class = "Clothes", rarity = 4, framed = 1, description = "<small>[[Super Animal World Supporter Pack]]</small>", name = "Hamster Ball Racing Suit" }, ["Racing Goggles"] = { class = "Glasses", rarity = 3, framed = 1, description = "<small>[[Super Animal World Supporter Pack]]</small>", }, ["Hamsterball Hat"] = { class = "Hat", rarity = 3, framed = 1, description = "<small>[[Super Animal World Supporter Pack]]</small>", name = "Hamster Ball Hat" }, ["Fishing Hook Piercing"] = { class = "Hat", rarity = 2, framed = 1, description = "<small>[[Super Animal World Supporter Pack]]</small>", }, ["Race Start"] = { class = "Emote", rarity = 4, framed = 1, description = "<small>[[Super Animal World Supporter Pack]]</small>", name = "Race Start!" }, ["Mini Dragon"] = { class = "Pet", rarity = 3, framed = 1, description = "<small>[[Super Animal World Supporter Pack]]</small>", }, ["Super Dusk Raccoon"] = { class = "CharacterSkin", rarity = 3, framed = 1, description = "<small>[[Super Animal World Supporter Pack]]</small>", baseAnimal = "Raccoon", }, ["Super Midnight Deer"] = { class = "CharacterSkin", rarity = 3, framed = 1, description = "<small>[[Super Animal World Supporter Pack]]</small>", baseAnimal = "Deer", }, ["Super Dawn Songbird"] = { class = "CharacterSkin", rarity = 3, framed = 1, description = "<small>[[Super Animal World Supporter Pack]]</small>", baseAnimal = "Songbird", }, ["Fish Tie"] = { class = "Neck", rarity = 2, framed = 1, bundle = "Fish Bundle", shop = "saw", currency = { name = "S.A.W. Tickets", amount = 350, }, }, ["Fish Beanie"] = { class = "Hat", rarity = 2, framed = 1, bundle = "Fish Bundle", currency = { name = "S.A.W. Tickets", amount = 350, }, }, ["Fish Costume"] = { class = "Clothes", rarity = 2, framed = 1, bundle = "Fish Bundle", currency = { name = "S.A.W. Tickets", amount = 550, }, }, ["Fishing Lure"] = { class = "MeleeSkin", rarity = 2, framed = 1, bundle = "Fish Bundle", currency = { name = "S.A.W. Tickets", amount = 500, }, }, ["Hot Coffee"] = { class = "Emote", rarity = 3, framed = 1, currency = { name = "S.A.W. Tickets", amount = 800, }, }, ["Red Panda Tail Tie"] = { class = "Neck", rarity = 2, store = "carl", currency = { name = "Carl Coins", amount = 750, }, name = "Red Panda Tie", }, ["Bubble Wand"] = { class = "MeleeSkin", rarity = 2, store = "carl", currency = { name = "Carl Coins", amount = 750, }, }, ["Sunflower Bow"] = { class = "Hat", rarity = 1, store = "carl", currency = { name = "Carl Coins", amount = 300, }, }, ["Lava Lamp JAG-7"] = { class = "GunSkin", rarity = 2, framed = 1, store = "saw", link = "JAG-7", currency = { name = "S.A.W. Tickets", amount = 450, }, }, ["Coffee Cup"] = { class = "MeleeSkin", rarity = 2, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 500, }, }, ["Vintage Athletic Outfit"] = { class = "Clothes", rarity = 2, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 550, }, }, ["Shark Umbrella"] = { class = "Umbrella", rarity = 3, framed = 1, store = "saw", currency = { name = "S.A.W. Tickets", amount = 400, }, }, ["Super White Red Panda"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Red Panda", currencies = { { name = "DNA", amount = 410, }, { name = "Serum", amount = 110, }, }, }, ["Johnney Kim Suit"] = { class = "Clothes", rarity = 3, description = "''Johnney Kim Streamer Item''", }, ["Super Spirit Dragon"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Dragon", currencies = { { name = "DNA", amount = 510, }, { name = "Serum", amount = 140, }, }, }, ["Super Lightning Dragon"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Dragon", currencies = { { name = "DNA", amount = 510, }, { name = "Serum", amount = 140, }, }, }, ["Super Sea Bunny"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 310, }, { name = "Serum", amount = 80, }, }, }, ["Super Dust Bunny"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Bunny", currencies = { { name = "DNA", amount = 310, }, { name = "Serum", amount = 80, }, }, }, ["Super Black Axolotl"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Salamander", currencies = { { name = "DNA", amount = 480, }, { name = "Serum", amount = 132, }, }, }, ["Super Dragonfruit Dragon"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Dragon", currencies = { { name = "DNA", amount = 600, }, { name = "Serum", amount = 168, }, }, }, ["Strawberry Dress"] = { class = "Clothes", rarity = 5, event = "Summer Royale 2024" }, ["Tornado Potato"] = { class = "MeleeSkin", rarity = 5, event = "Summer Royale 2024" }, ["Plumeria Umbrella"] = { class = "Umbrella", rarity = 5, event = "Summer Royale 2024" }, ["Super Durian Hedgehog"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Hedgehog", currencies = { { name = "DNA", amount = 450, }, { name = "Serum", amount = 120, }, }, }, ["Drink Dart Gun"] = { class = "GunSkin", rarity = 5, name = "Dogna’s Juice Dart Gun", event = "Summer Royale 2024", link = "Dogna's Dart Gun", name = "Dogna's Juice Dart Gun", }, ["Cool Pineapple"] = { class = "MeleeSkin", rarity = 5, name = "Cool Pineapple", event = "Summer Royale 2024" }, ["Watermelon Bowl Gravestone"] = { class = "Gravestone", rarity = 5, name = "Fruit Bowl Gravestone", event = "Summer Royale 2024" }, ["Super Fruit Bearded Dragon"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Bearded Dragon", name = "Super Health Fruit Bearded Dragon", currencies = { { name = "DNA", amount = 375, }, { name = "Serum", amount = 100, }, }, }, ["Super Takoyaki Octopus"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Octopus", currencies = { { name = "DNA", amount = 420, }, { name = "Serum", amount = 115, }, }, }, ["Fish Monster Beanie"] = { class = "Hat", rarity = 5, event = "Super Howloween 2024" }, ["Dogna’s Spider Web Dart Fly"] = { class = "GunSkin", rarity = 5, link = "Dogna's Dartfly Gun", event = "Super Howloween 2024", name = "Dogna’s Spiderweb Dartfly Gun" }, ["Monster Fish Costume"] = { class = "Clothes", rarity = 5, event = "Super Howloween 2024", name = "Fish Monster Outfit" }, ["Super Cthulhu Octopus"] = { class = "CharacterSkin", rarity = 4, baseAnimal = "Octopus", currencies = { { name = "DNA", amount = 510, }, { name = "Serum", amount = 140, }, }, }, ["Ghost Bride Headband"] = { class = "Hat", rarity = 3, framed = 1, bundle = "Ghost Bride Bundle", currency = { name = "S.A.W. Tickets", amount = 500, }, }, ["Ghost Bride Dress"] = { class = "Clothes", rarity = 2, framed = 1, bundle = "Ghost Bride Bundle", currency = { name = "S.A.W. Tickets", amount = 550, }, }, ["Ghost Bride Bouquet"] = { class = "MeleeSkin", rarity = 2, framed = 1, bundle = "Ghost Bride Bundle", currency = { name = "S.A.W. Tickets", amount = 500, }, }, ["Howl (emote)"] = { class = "Emote", rarity = 3, framed = 1, name = "Howl Emote", currency = { name = "S.A.W. Tickets", amount = 800, }, }, ["Wisp Hat"] = { class = "Hat", rarity = 3, framed = 1, currency = { name = "S.A.W. Tickets", amount = 500, }, }, ["Super Painted Bat"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Bat", currencies = { { name = "DNA", amount = 510, }, { name = "Serum", amount = 140, }, }, }, ["Candy Corn Suit"] = { class = "Clothes", rarity = 5, event = "Super Howloween 2024", }, ["Scarecrow (melee)"] = { class = "MeleeSkin", rarity = 5, event = "Super Howloween 2024", }, ["Bat Necklace"] = { class = "Neck", rarity = 5, event = "Super Howloween 2024", }, ["Super Alebrije Owl"] = { class = "CharacterSkin", rarity = 3, baseAnimal = "Owl", currencies = { { name = "DNA", amount = 290, }, { name = "Serum", amount = 80, }, }, }, ["Super Kappa"] = { class = "Character", rarity = 4, baseAnimal = "Turtle", currencies = { { name = "DNA", amount = 510, }, { name = "Serum", amount = 140, }, }, name = "Super Kappa Turtle", }, ["Green Witch Hat"] = { class = "Hat", rarity = 5, event = "Super Howloween 2024", }, ["Broken Mirror"] = { class = "MeleeSkin", rarity = 5, event = "Super Howloween 2024", }, ["Kasa-obake Umbrella"] = { class = "Umbrella", rarity = 5, event = "Super Howloween 2024", }, ["Mariachi Dress"] = { class = "Clothes", rarity = 5, description = "[[Coupon Codes|DAYOFTHEDEAD Coupon Code]]", }, ["White Mariachi Hat"] = { class = "Hat", rarity = 5, description = "[[Coupon Codes|DAYOFTHEDEAD Coupon Code]]", }, ["Green & Black Sunglasses"] = { class = "Glasses", rarity = 3, framed = 1, description = "''[[Season 11 Xbox Perks Pack]]''", }, ["Green Paisley Bandana"] = { class = "Neck", rarity = 2, framed = 1, description = "''[[Season 11 Xbox Perks Pack]]''", }, ["Green & Black Jeans Tank Top Outfit"] = { class = "Clothes", rarity = 4, framed = 1, description = "''[[Season 11 Xbox Perks Pack]]''", }, ["Green & Black Flag"] = { class = "MeleeSkin", rarity = 4, framed = 1, description = "''[[Season 11 Xbox Perks Pack]]''", }, ["Blue & Black Sunglasses"] = { class = "Glasses", rarity = 3, framed = 1, description = "''[[Season 11 PlayStation Plus Pack]]''", }, ["Blue Paisley Bandana"] = { class = "Neck", rarity = 2, framed = 1, description = "''[[Season 11 PlayStation Plus Pack]]''", }, ["Blue & Black Jeans Tank Top Outfit"] = { class = "Clothes", rarity = 4, framed = 1, description = "''[[Season 11 PlayStation Plus Pack]]''", }, ["Blue & Black Flag"] = { class = "MeleeSkin", rarity = 4, framed = 1, description = "''[[Season 11 PlayStation Plus Pack]]''", }, }