import { Card } from "../../../interfaces" import Set from "../Extradimensional Crisis" const card: Card = { set: Set, name: { en: "Phantump" }, illustrator: "sui", rarity: "One Diamond", category: "Pokemon", hp: 70, types: ["Psychic"], description: { en: "With a voice like a human child's, it cries out to\nlure adults deep into the forest, getting them lost\namong the trees." }, stage: "Basic", attacks: [{ name: { en: "Spooky Shot" }, damage: 30, cost: ["Psychic", "Colorless"] }], weaknesses: [{ type: "Darkness", value: "+20" }], retreat: 2 } export default card