import { Card } from '../../../interfaces' import Set from '../Dragon' const card: Card = { name: { en: "Swablu", fr: "Tylton" }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 333, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Lullaby", fr: "Comptine" }, effect: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi." }, damage: 10, }, { cost: [ "Lightning", ], name: { en: "Stifling Fluff", fr: "Fourrure étouffante" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé." }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card