import { Card } from '../../../interfaces' import Set from '../Steam Siege' const card: Card = { name: { en: "Hawlucha", fr: "Brutalibré", }, illustrator: "miki kudo", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 701, ], hp: 80, types: [ "Colorless", ], stage: "Basic", abilities: [ { type: "Ability", name: { en: "Sudden Cyclone", fr: "Cyclone Surprise", }, effect: { en: "When you play this Pokémon from your hand onto your Bench, you may have your opponent switch his or her Active Pokémon with 1 of his or her Benched Pokémon.", fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc, vous pouvez demander à votre adversaire d’échanger son Pokémon Actif avec l’un de ses Pokémon de Banc.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Acrobatics", fr: "Acrobatie", }, effect: { en: "Flip 2 coins. This attack does 20 more damage for each heads.", fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts supplémentaires pour chaque côté face.", }, damage: "20+", }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card