import { Card } from '../../../interfaces' import Set from '../Unbroken Bonds' const card: Card = { name: { en: "Crabrawler", fr: "Crabagarre", }, illustrator: "Akira Komayama", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 739, ], hp: 80, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Corkscrew Punch", fr: "Poing Tire-Bouchon", }, damage: 20, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Knuckle Blast", fr: "Explosion de Poings", }, effect: { en: "If you have more Prize cards remaining than your opponent, this attack does 60 more damage.", fr: "S’il vous reste plus de cartes Récompense qu’à votre adversaire, cette attaque inflige 60 dégâts supplémentaires.", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2, } export default card