import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Tympole", fr: "Tritonde" }, illustrator: "Aya Kusube", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Spiral Attack", fr: "Attaque en Spirale" }, effect: { en: "Your opponent’s Active Pokémon is now Confused.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus." }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, hp: 60, types: ["Water"] } export default card