1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

47 lines
619 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Lost Origin"
const card: Card = {
set: Set,
name: {
en: "Phantump",
fr: "Brocélôme",
es: "Phantump",
it: "Phantump",
pt: "Phantump",
de: "Paragoni"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Hook",
fr: "Crochet",
es: "Garfio",
it: "Uncino",
pt: "Gancho",
de: "Haken"
},
damage: 10
}],
retreat: 2,
regulationMark: "F",
variants: {
"normal": true,
"reverse": true,
"holo": false
}
}
export default card