mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 01:37:52 +00:00
78 lines
1.0 KiB
TypeScript
78 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
dexId: [878],
|
||
name: {
|
||
en: "Cufant",
|
||
fr: "Charibari",
|
||
es: "Cufant",
|
||
it: "Cufant",
|
||
pt: "Cufant",
|
||
de: "Kupfanti"
|
||
},
|
||
|
||
illustrator: "Akira Komayama",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 100,
|
||
|
||
types: [
|
||
"Metal",
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Strength",
|
||
fr: "Force",
|
||
es: "Fuerza",
|
||
it: "Forza",
|
||
pt: "Força",
|
||
de: "Stärke"
|
||
},
|
||
|
||
damage: 60,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Grass",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "It digs up the ground with its trunk. It's also very strong, being able to carry loads of over five tons without any problem at all."
|
||
}
|
||
}
|
||
|
||
export default card
|