import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Cyndaquil", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 155, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", }, damage: 10, }, { cost: [ "Fire", ], name: { en: "Singe", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Burned.", }, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card