mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
46 lines
615 B
TypeScript
46 lines
615 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paldea Evolved"
|
|
|
|
const card: Card = {
|
|
dexId: [878],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Charibari",
|
|
en: "Cufant",
|
|
es: "Cufant",
|
|
it: "Cufant",
|
|
pt: "Cufant",
|
|
de: "Kupfanti"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Metal"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Metal", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Ruée",
|
|
en: "Stampede",
|
|
es: "Estampida",
|
|
it: "Fuggi Fuggi",
|
|
pt: "Estouro",
|
|
de: "Zertrampeln"
|
|
},
|
|
|
|
damage: 50
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |