import { Card } from '../../../interfaces' import Set from '../Black & White' const card: Card = { name: { en: "Swanna", fr: "Lakmécygne", es: "Swanna", it: "Swanna", pt: "Swanna", de: "Swaroness" }, illustrator: "Naoyo Kimura", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 581, ], hp: 90, types: [ "Water", ], evolveFrom: { en: "Ducklett", fr: "Couaneton", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Feather Dance", fr: "Danse-Plume", }, effect: { en: "During your next turn, each of this Pokémon's attacks does 40 more damage(before applying Weakness and Resistance).", fr: "Pendant votre prochain tour, chaque attaque de ce Pokémon inflige 40 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).", }, }, { cost: [ "Water", "Colorless", ], name: { en: "Aqua Ring", fr: "Anneau Hydro", }, effect: { en: "Switch this Pokémon with 1 of your Benched Pokémon.", fr: "Échangez ce Pokémon avec 1 de vos Pokémon de Banc.", }, damage: 40, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card