import { Card } from "../../../interfaces" import Set from "../Celestial Guardians" const card: Card = { set: Set, name: { en: "Phantump" }, illustrator: "miki kudo", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Grass"], description: { en: "After a lost child perished in the forest, their spirit possessed a tree stump, causing the spirit's rebirth as this Pokémon." }, stage: "Basic", attacks: [{ name: { en: "Hook" }, damage: 20, cost: ["Grass"] }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1 } export default card