import { Card } from '../../../interfaces' import Set from '../BREAKpoint' const card: Card = { name: { en: "Swanna", fr: "Lakmécygne", }, illustrator: "sui", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 581, ], hp: 80, types: [ "Water", ], evolveFrom: { en: "Ducklett", fr: "Couaneton", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Wing Attack", fr: "Cru-Aile", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Brave Bird", fr: "Rapace", }, effect: { en: "This Pokémon does 20 damage to itself.", fr: "Ce Pokémon s'inflige 20 dégâts.", }, damage: 80, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], } export default card