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: "swsh1-154", localId: 154, // Card informations name: { en: "Dubwool", fr: "Moumouflon", }, hp: 130, type: [ Type.COLORLESS, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/154/low", fr: "https://assets.tcgdex.net/fr/swsh/swsh1/154/low", } }, evolveFrom: { en: "Wooloo", fr: "Moumouton", }, tags: [ Tag.STAGE1, ], illustrator: "You Iribi", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Cotton Guard", fr: "Cotogarde", }, text: { en: "During your opponent’s next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).", fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).", }, damage: 30 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Double-Edge", fr: "Damoclès", }, text: { en: "This Pokémon also does 30 damage to itself.", fr: "Ce Pokémon s’inflige aussi 30 dégâts.", }, damage: 120 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card