import { Card } from '../../../interfaces' import Set from '../Promo' const card: Card = { name: { en: "Litwick", fr: "Funécire", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 607, ], hp: 50, types: [ "Psychic", ], stage: "Basic", 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. Shuffle your deck afterward.", fr: "Cherchez un Pokémon de base dans votre deck et placez-le sur votre Banc. Mélangez ensuite votre deck.", }, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Will-O-Wisp", fr: "Feu Follet", }, damage: 20, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], retreat: 1, } export default card