1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

46 lines
580 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Stellar Crown"
const card: Card = {
set: Set,
name: {
en: "Flittle",
fr: "Flotillon",
es: "Flittle",
it: "Flittle",
pt: "Flittle",
de: "Flattutu"
},
rarity: "Common",
category: "Pokemon",
hp: 50,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
en: "Peck",
fr: "Picpic",
es: "Picotazo",
it: "Beccata",
pt: "Bicada",
de: "Pikser"
},
damage: 10
}],
retreat: 1,
regulationMark: "H",
variants: {
holo: false
}
}
export default card