import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "bw7-43", localId: 43, // Card informations name: { en: "Swanna", fr: "Lakmécygne", }, hp: 90, type: [ Type.WATER, ], dexId: 581, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw7/43/low", fr: "https://assets.tcgdex.net/fr/bw/bw7/43/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/43/high", fr: "https://assets.tcgdex.net/fr/bw/bw7/43/high", }, }, evolveFrom: { en: "Ducklett", fr: "Couaneton", }, tags: [ Tag.STAGE1, ], illustrator: "Suwama Chiaki", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Aerial Ace", fr: "Aéropique", }, text: { en: "Flip a coin. If heads, this attack does 20 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", }, damage: 20 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Defog", fr: "Anti-Brume", }, text: { en: "You may discard any Stadium card in play. If you do, this attack does 40 more damage.", fr: "Vous pouvez défausser une carte Stade en jeu. Dans ce cas, cette attaque inflige 40 dégâts supplémentaires.", }, damage: 60 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card