import { Card } from '../../../interfaces' import Set from '../Triumphant' const card: Card = { name: { en: "Swablu", fr: "Tylton", }, illustrator: "Ryo Ueda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 333, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Wing Flick", fr: "Battement d’aile", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", fr: "Votre adversaire échange le Pokémon Défenseur avec l’un de ses Pokémon de Banc.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, description: { en: "Its wings bring cottony clouds to mind. It grooms with springwater and loves to sit on heads." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card