import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Meowth δ", fr: "Miaouss δ ESPÈCES DELTA" }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 52, ], hp: 50, types: [ "Darkness", "Metal", ], stage: "Basic", attacks: [ { cost: [ "Darkness", ], name: { en: "Slash", fr: "Tranche" }, damage: 10, }, { cost: [ "Metal", "Colorless", ], name: { en: "Pay Day", fr: "Jackpot" }, effect: { en: "Draw a card.", fr: "Piochez une carte." }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card