export enum ScryfallRarity {
  Common = "common",
  Uncommon = "uncommon",
  Rare = "rare",
  Special = "special",
  Mythic = "mythic",
  Bonus = "bonus",
}

export type ScryfallRarityLike = ScryfallRarity | `${ScryfallRarity}`;
