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:
40
data/Pokémon TCG Pocket/Extradimensional Crisis/024.ts
Normal file
40
data/Pokémon TCG Pocket/Extradimensional Crisis/024.ts
Normal 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
|
Reference in New Issue
Block a user