import { Card } from '../../../interfaces' import Set from '../Macdonald\'s Collection 2021' const card: Card = { name: { en: "Grookey", fr: "Ouistempo", }, illustrator: "kirisAki", rarity: "Common", category: "Pokemon", set: Set, hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", "Colorless", ], name: { en: "Branch Poke", fr: "Tapotige", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card