1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00

41 lines
605 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Prismatic Evolutions"
const card: Card = {
set: Set,
name: {
en: "Buneary",
fr: "Laporeille",
es: "Buneary",
pt: "Buneary",
it: "Buneary",
de: "Haspiror"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Smash Kick",
fr: "Coud'Pattes",
es: "Patada Destrucción",
pt: "Chute Poderoso",
it: "Calcio Esplosivo",
de: "Schmetterkick"
},
damage: 20
}],
retreat: 1,
regulationMark: "H"
}
export default card