import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Tympole", fr: "Tritonde", es: "Tympole", it: "Tympole", pt: "Tympole", de: "Schallquap" }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 535, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Spiral Drain", }, effect: { en: "Heal 20 damage from this Pokémon.", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1 } export default card