1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Add shrouded fable cards (#525)

This commit is contained in:
2024-08-25 02:44:42 +02:00
committed by GitHub
parent 80f483ab66
commit cfd6d5c0e8
101 changed files with 5742 additions and 1 deletions

View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../Shrouded Fable"
const card: Card = {
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",
attacks: [{
cost: ["Metal", "Colorless"],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 30
}, {
cost: ["Metal", "Metal", "Colorless"],
name: {
en: "Confront",
fr: "Confrontation",
es: "Confrontar",
it: "Confronto",
pt: "Confrontar",
de: "Konfrontieren"
},
damage: 70
}],
retreat: 3,
regulationMark: "H"
}
export default card