mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
71 lines
951 B
TypeScript
71 lines
951 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Supreme Victors'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Buneary",
|
|
fr: "Laporeille",
|
|
},
|
|
illustrator: "Kanako Eo",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
427,
|
|
],
|
|
hp: 50,
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Bounce",
|
|
fr: "Faire des bonds",
|
|
},
|
|
effect: {
|
|
en: "Switch Buneary with 1 of your Benched Pokémon.",
|
|
fr: "Échangez Laporeille avec 1 des Pokémon de votre Banc.",
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Mini Drain",
|
|
fr: "Mini-assèchement",
|
|
},
|
|
effect: {
|
|
en: "Remove 1 damage counter from Buneary.",
|
|
fr: "Retirez à Laporeille 1 marqueur de dégât.",
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fighting",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|