import { Card } from "../../../interfaces" import Set from "../Celestial Guardians" const card: Card = { set: Set, name: { en: "Alolan Meowth" }, illustrator: "sui", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Darkness"], description: { en: "It's accustomed to luxury because it used to live with Alolan royalty. As a result, it's very picky about food." }, stage: "Basic", attacks: [{ name: { en: "Scratch" }, damage: 20, cost: ["Darkness"] }], weaknesses: [{ type: "Grass", value: "+20" }], retreat: 1 } export default card