import { Card } from '../../../interfaces' import Set from '../Furious Fists' const card: Card = { name: { en: "Patrat", fr: "Ratentif", }, illustrator: "Kyoko Umemoto", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 504, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Safety Check", fr: "Contrôle de Sécurité", }, effect: { en: "Look at 1 of your face-down Prize cards.", fr: "Regardez l’une de vos cartes Récompense face cachée.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card