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: "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.png", fr: "https://assets.tcgdex.net/fr/bw/bw8/9/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw8/9/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw8/9/high.png", }, }, evolveFrom: { en: "Sewaddle", fr: "Larveyette", }, tags: [ Tag.STAGE1, ], illustrator: { id: 25, name: "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