mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-29 10:59:54 +00:00
51 lines
669 B
TypeScript
51 lines
669 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Scarlet & Violet"
|
|
|
|
const card: Card = {
|
|
dexId: [286],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Breloom",
|
|
fr: "Chapignon",
|
|
es: "Breloom",
|
|
it: "Breloom",
|
|
pt: "Breloom",
|
|
de: "Kapilz"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 110,
|
|
types: ["Grass"],
|
|
|
|
evolveFrom: {
|
|
en: "Shroomish"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Grass"],
|
|
|
|
name: {
|
|
en: "Mach Cross",
|
|
fr: "Passage Éclair",
|
|
es: "Puñetazo Mach",
|
|
it: "Incromach",
|
|
pt: "Cruzado Veloz",
|
|
de: "Tempo-Cross"
|
|
},
|
|
|
|
damage: 60
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |