mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
48 lines
674 B
TypeScript
48 lines
674 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
dexId: [674],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Pancham",
|
|
fr: "Pandespiègle",
|
|
es: "Pancham",
|
|
it: "Pancham",
|
|
pt: "Pancham",
|
|
de: "Pam-Pam"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Chop",
|
|
fr: "Coup Tranchant",
|
|
es: "Cortar",
|
|
it: "Ceffone",
|
|
pt: "Trincar",
|
|
de: "Hacker"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |