mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 09:29:55 +00:00
66 lines
1.0 KiB
TypeScript
66 lines
1.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
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: 60,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
retreat: 1,
|
|
regulationMark: "E",
|
|
illustrator: "OKACHEKE",
|
|
|
|
description: {
|
|
en: "With a voice like a human child's, it cries out to lure adults deep into the forest, getting them lost among the trees."
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Tackle",
|
|
fr: "Charge",
|
|
de: "Tackle",
|
|
es: "Placaje",
|
|
pt: "Investida",
|
|
it: "Azione"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Grass", "Colorless"],
|
|
|
|
name: {
|
|
en: "Seed Bomb",
|
|
fr: "Canon Graine",
|
|
de: "Samenbomben",
|
|
es: "Bomba Germen",
|
|
pt: "Bomba de Sementes",
|
|
it: "Semebomba"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |