import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Litwick", }, illustrator: "Sekio", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Fire", ], name: { en: "Scorch", }, effect: { en: "Your opponent’s Active Pokémon is now Burned.", }, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 1, } export default card