mirror of
https://github.com/tcgdex/javascript-sdk.git
synced 2025-04-22 10:42:10 +00:00
33 lines
329 B
TypeScript
33 lines
329 B
TypeScript
export enum Rarity {
|
|
Common,
|
|
Uncommon,
|
|
Rare,
|
|
|
|
// Rare holo
|
|
RareHolo,
|
|
RareHoloEX,
|
|
RareHoloGX,
|
|
RareHoloLvX,
|
|
|
|
// Rare other
|
|
RareUltra,
|
|
RarePrime,
|
|
RareACE,
|
|
RareBREAK,
|
|
RareRainbow,
|
|
|
|
// Other
|
|
LEGEND,
|
|
|
|
// V & Vmax
|
|
RareV,
|
|
RareVMAX,
|
|
}
|
|
|
|
export default Rarity
|
|
|
|
export interface RaritySimple {
|
|
id: Rarity
|
|
name: string
|
|
}
|