1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-06 21:39:55 +00:00

40 lines
614 B
TypeScript

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