import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Noibat", fr: "Sonistrelle", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 714, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Mysterious Beam", fr: "Rayon Mystérieux", }, effect: { en: "Flip a coin. If heads, discard an Energy attached to your opponent’s Active Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Gust", fr: "Tornade", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card