mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 09:29:55 +00:00
75 lines
1.4 KiB
TypeScript
75 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
dexId: [878],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Cufant",
|
|
fr: "Charibari",
|
|
es: "Cufant",
|
|
it: "Cufant",
|
|
pt: "Cufant",
|
|
de: "Kupfanti"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Metal"],
|
|
stage: "Basic",
|
|
retreat: 3,
|
|
regulationMark: "E",
|
|
illustrator: "Oswaldo KATO",
|
|
|
|
description: {
|
|
en: "If a job requires serious strength, this Pokémon will excel at it. Its copper body tarnishes in the rain, turning a vibrant green color."
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Rollout",
|
|
fr: "Roulade",
|
|
de: "Walzer",
|
|
es: "Rodar",
|
|
pt: "Rolagem",
|
|
it: "Rotolamento"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Metal", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "High Horsepower",
|
|
fr: "Cavalerie Lourde",
|
|
de: "Pferdestärke",
|
|
es: "Fuerza Equina",
|
|
pt: "Potência Equina",
|
|
it: "Forza Equina"
|
|
},
|
|
|
|
damage: 80,
|
|
|
|
effect: {
|
|
en: "This Pokémon also does 20 damage to itself.",
|
|
fr: "Ce Pokémon s'inflige aussi 20 dégâts.",
|
|
de: "Dieses Pokémon fügt auch sich selbst 20 Schadenspunkte zu.",
|
|
es: "Este Pokémon también se hace 20 puntos de daño a sí mismo.",
|
|
pt: "Este Pokémon também causa 20 pontos de dano a si mesmo.",
|
|
it: "Questo Pokémon infligge anche 20 danni a se stesso."
|
|
}
|
|
}],
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |