1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] 7e3cf7aa08
editor: fix Paldea Evolved variants (#510)
Co-authored-by: Aviortheking <git@avior.me>
2024-07-03 16:28:15 +02:00

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