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: "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.png", fr: "https://assets.tcgdex.net/fr/swsh/swsh1/154/low.png", } }, evolveFrom: { en: "Wooloo", fr: "Moumouton", }, tags: [ Tag.STAGE1, ], illustrator: { id: 48, name: "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