mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
59 lines
833 B
TypeScript
59 lines
833 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paldean Fates"
|
|
|
|
const card: Card = {
|
|
dexId: [231],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Phanpy",
|
|
fr: "Phanpy",
|
|
es: "Phanpy",
|
|
it: "Phanpy",
|
|
pt: "Phanpy",
|
|
de: "Phanpy"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Strength",
|
|
fr: "Force",
|
|
es: "Fuerza",
|
|
it: "Forza",
|
|
pt: "Força",
|
|
de: "Stärke"
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Fighting", "Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Rolling Tackle",
|
|
fr: "Roulé-Boulé",
|
|
es: "Placaje Giro",
|
|
it: "Rollazione",
|
|
pt: "Golpe de Colisão Rolante",
|
|
de: "Rolltackle"
|
|
},
|
|
|
|
damage: 60
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |