import { Card } from '../../../interfaces' import Set from '../Phantom Forces' const card: Card = { name: { en: "Furfrou", fr: "Couafarel", }, illustrator: "Naoki Saito", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 676, ], hp: 90, types: [ "Colorless", ], stage: "Basic", attacks: [ { 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: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Sharp Fang", fr: "Croc Aiguisé", }, damage: 50, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card