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

60 lines
939 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Buizel",
fr: "Mustébouée",
de: "Bamelin"
},
illustrator: "Kenkichi Toyama",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
418,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Quick Attack",
fr: "Vive-attaque",
de: "Ruckzuckhieb"
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 30 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 30 dégâts supplémentaires.",
de: "Wirf 1 Münze. Bei \"Kopf\" fügt dieser Angriff 10 Schadenspunkte plus 30 weitere Schadenspunkte zu."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Lightning",
value: "+10"
},
],
}
export default card