1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +00:00

feat: Add A3a - Extradimensional Crisis (#752)

This commit is contained in:
2025-05-29 16:18:14 +02:00
committed by GitHub
parent 082bb77f13
commit eb93ab4124
104 changed files with 4494 additions and 0 deletions

View File

@ -0,0 +1,40 @@
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