import { Card } from '../../../interfaces' import Set from '../POP Series 5' const card: Card = { name: { en: "Charmander δ", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 4, ], hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Scratch", }, damage: 10, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Bite", }, damage: 20, }, ], weaknesses: [ { type: "Water" }, ], retreat: 1, variants: { normal: false, reverse: false, holo: false, firstEdition: false } } export default card