import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Swablu", fr: "Tylton", }, illustrator: "Mizue", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 333, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Bind Wound", fr: "Blessure Pansée", }, effect: { en: "Heal 20 damage from 1 of your Pokémon.", fr: "Soignez 20 dégâts à l'un de vos Pokémon.", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card