import { Card } from '../../../interfaces' import Set from '../Macdonald\'s Collection 2021' const card: Card = { name: { en: "Cyndaquil", fr: "Héricendre", }, illustrator: "kirisAki", rarity: "None", category: "Pokemon", set: Set, dexId: [ 155, ], hp: 70, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Hammer In", fr: "Enfoncement", }, damage: 30, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], retreat: 1, description: { en: "It has a timid nature. If it is startled, the flames on its back burn more vigorously." }, variants: { normal: true, reverse: false, holo: true, firstEdition: false } } export default card