mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
61 lines
693 B
TypeScript
61 lines
693 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Cosmic Eclipse'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Pancham",
|
||
fr: "Pandespiègle",
|
||
es: "Pancham",
|
||
it: "Pancham",
|
||
pt: "Pancham",
|
||
de: "Pam-Pam"
|
||
},
|
||
illustrator: "Motofumi Fujiwara",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
674,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Punch",
|
||
fr: "Koud’Poing",
|
||
es: "Puño",
|
||
it: "Pugno",
|
||
pt: "Soco",
|
||
de: "Boxhieb"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|