import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Tympole", }, illustrator: "Aya Kusube", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Spiral Attack", }, effect: { en: "Your opponent’s Active Pokémon is now Confused.", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, } export default card