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: "bw8-9", localId: 9, // Card informations name: { en: "Swadloon", fr: "Couverdure", }, hp: 80, type: [ Type.GRASS, ], dexId: 541, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw8/9/low", fr: "https://assets.tcgdex.net/fr/bw/bw8/9/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw8/9/high", fr: "https://assets.tcgdex.net/fr/bw/bw8/9/high", }, }, evolveFrom: { en: "Sewaddle", fr: "Larveyette", }, tags: [ Tag.STAGE1, ], illustrator: "Kyoko Umemoto", attacks: [{ cost: [ Type.GRASS ], name: { en: "Swaddle Guard", fr: "Layette Protectrice", }, text: { en: "During your opponent's next turn, any damage done to this Pokémon by attacks is reduced by 40 (after applying Weakness and Resistance).", fr: "Pendant le prochain tour de votre adversaire, tous les dégâts infligés à ce Pokémon par des attaques sont réduits de 40 (après application de la Faiblesse et de la Résistance).", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Surprise Attack", fr: "Attaque Surprise", }, text: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.", }, damage: 40 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Plasma Storm", code: "bw8" } } export default card