import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/43/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/43/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/43/high.png", }, }, evolveFrom: { en: "Ducklett", fr: "Couaneton", }, tags: [ Tag.STAGE1, ], illustrator: { id: 29, name: "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