import { Card } from '../../../interfaces' import Set from '../Unleashed' const card: Card = { name: { en: "Cheerleader’s Cheer", fr: "Encouragements hystériques", }, illustrator: "Kouki Saitou", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Piochez 3 cartes. Votre adversaire peut piocher une carte.", en: "Draw 3 cards. Your opponent may draw a card." }, trainerType: "Supporter", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, hp: 0 } export default card