import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Meowth", fr: "Miaouss", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 52, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Pay Day", fr: "Jackpot", }, effect: { en: "Draw a card.", fr: "Piochez une carte.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Dig Claws", fr: "Creusogriffes", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, description: { en: "It loves anything that shines. It especially adores coins that it picks up and secretly hoards." }, variants: { normal: true, reverse: false, holo: false, firstEdition: false } } export default card