mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-03 20:39:55 +00:00
46 lines
656 B
TypeScript
46 lines
656 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Scarlet & Violet"
|
|
|
|
const card: Card = {
|
|
dexId: [669],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Flabébé",
|
|
fr: "Flabébé",
|
|
es: "Flabébé",
|
|
it: "Flabébé",
|
|
pt: "Flabébé",
|
|
de: "Flabébé"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 40,
|
|
types: ["Psychic"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Psychic"],
|
|
|
|
name: {
|
|
en: "Pollen Shot",
|
|
fr: "Tir Pollen",
|
|
es: "Lanzamiento de Polen",
|
|
it: "Colpo Pollinare",
|
|
pt: "Arremesso de Pólen",
|
|
de: "Pollenschuss"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |