1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-03 00:49:19 +00:00
Files
cards-database/data/Scarlet & Violet/Scarlet & Violet/004.ts

53 lines
698 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
},
illustrator: "Ryuta Fuse"
}
export default card