Add rarity enums

This commit is contained in:
Tee
2021-03-12 21:58:40 -05:00
parent de37e0ef40
commit 6c034d399f

25
src/enums/rarities.ts Normal file
View File

@ -0,0 +1,25 @@
export enum Rarities {
AmazingRare = "Amazing Rare",
Common = "Common",
Legend = "LEGEND",
Promo = "Promo",
Rare = "Rare",
RareAce = "Rare ACE",
RareBreak = "Rare BREAK",
RareHolo = "Rare Holo",
RareHoloEX = "Rare Holo EX",
RareHoloGX = "Rare Holo GX",
RareHoloLVX = "Rare Holo LV.X",
RareHoloStar = "Rare Holo Star",
RareHoloV = "Rare Holo V",
RareHoloVMAX = "Rare Holo VMAX",
RarePrime = "Rare Prime",
RarePrimeStar = "Rare Prime Star",
RareRainbow = "Rare Rainbow",
RareSecret = "Rare Secret",
RareShining = "Rare Shining",
RareShiny = "Rare Shiny",
RareShinyGX = "Rare Shiny GX",
RareUltra = "Rare Ultra",
Uncommon = "Uncommon",
}