import { Card } from '../../../interfaces' import Set from '../Roaring Skies' const card: Card = { name: { en: "Hawlucha", fr: "Brutalibré", }, illustrator: "Shin Nagasawa", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 701, ], hp: 80, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Tackle", fr: "Charge", }, damage: 10, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Midair Strike", fr: "Coup en l'Air", }, effect: { en: "Flip a coin. If heads, this attack does 40 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts supplémentaires.", }, damage: "40+", }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card