import { Card } from '../../../interfaces' import Set from '../BREAKpoint' const card: Card = { name: { en: "Furfrou", fr: "Couafarel", }, illustrator: "Masakazu Fukuda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 676, ], hp: 80, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Collect", fr: "Collecte", }, effect: { en: "Draw a card.", fr: "Piochez une carte.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Tight Jaw", fr: "Mâchoire Serrée", }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card