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