import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Sentret", fr: "Fouinette" }, illustrator: "Mina Nakai", rarity: "Common", category: "Pokemon", set: Set, hp: 60, types: [ "Colorless", ], attacks: [ { cost: [ "Colorless", ], name: { en: "Call for Family", fr: "Appel à la Famille" }, effect: { en: "Search your deck for a Basic Pokémon and put it onto your Bench. Then, shuffle your deck.", fr: "Cherchez dans votre deck un Pokémon de base, puis placez-le sur votre Banc. Mélangez ensuite votre deck." }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, regulationMark: "D" } export default card