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: "xy3-83", localId: 83, // Card informations name: { en: "Slaking", fr: "Monaflèmit", }, hp: 150, type: [ Type.COLORLESS, ], dexId: 289, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy3/83/low", fr: "https://assets.tcgdex.net/fr/xy/xy3/83/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/83/high", fr: "https://assets.tcgdex.net/fr/xy/xy3/83/high", }, }, evolveFrom: { en: "Vigoroth", fr: "Vigoroth", }, tags: [ Tag.STAGE2, ], illustrator: "PLANETA", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Amnesia", fr: "Amnésie", }, text: { en: "Choose 1 of your opponent's Active Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.", fr: "Choisissez l'une des attaques du Pokémon Actif de votre adversaire. Ce dernier ne peut pas utiliser l'attaque choisie pendant le prochain tour de votre adversaire.", }, damage: 50 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Knuckle Sandwich", fr: "Choc Poing", }, text: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 120 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Furious Fists", code: "xy3" } } export default card