import { Card } from '../../../interfaces' import Set from '../Mysterious Treasures' const card: Card = { name: { en: "Buizel", }, 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", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage plus 30 more damage.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "+10" }, ], } export default card