mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-02 12:19:53 +00:00
52 lines
731 B
TypeScript
52 lines
731 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Journey Together"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Cufant",
|
|
fr: "Charibari",
|
|
es: "Cufant",
|
|
de: "Kupfanti",
|
|
it: "Cufant",
|
|
pt: "Cufant",
|
|
'es-mx': "Cufant"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Metal"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Metal", "Metal", "Colorless"],
|
|
|
|
name: {
|
|
en: "Rollout",
|
|
fr: "Roulade",
|
|
es: "Rodar",
|
|
de: "Walzer",
|
|
it: "Rotolamento",
|
|
pt: "Rolagem",
|
|
'es-mx': "Rodada"
|
|
},
|
|
|
|
damage: 80
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
"firstEdition": false,
|
|
"holo": false,
|
|
"normal": true
|
|
"reverse": true,
|
|
"wPromo": false,
|
|
}
|
|
}
|
|
|
|
export default card
|