import { Card } from '../../../interfaces' import Set from '../Phantom Forces' const card: Card = { name: { en: "Karrablast", fr: "Carabing", }, illustrator: "Sanosuke Sakuma", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 588, ], hp: 50, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Peck", fr: "Picpic", }, damage: 10, }, { cost: [ "Grass", "Colorless", ], name: { en: "Headbutt", fr: "Coup d’Boule", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card