import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Noibat", fr: "Sonistrelle", }, illustrator: "sui", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 714, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Blot", fr: "Pâté", }, effect: { en: "Heal 10 damage from this Pokémon.", fr: "Soignez 10 dégâts à ce Pokémon.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card