import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Cyndaquil", }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 155, ], hp: 40, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", ], name: { en: "Smokescreen", }, effect: { en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.", }, damage: 10, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card