mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
48 lines
634 B
TypeScript
48 lines
634 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Lost Origin"
|
|
|
|
const card: Card = {
|
|
dexId: [708],
|
|
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
|