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: "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.png", fr: "https://assets.tcgdex.net/fr/xy/xy3/83/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/83/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy3/83/high.png", }, }, evolveFrom: { en: "Vigoroth", fr: "Vigoroth", }, tags: [ Tag.STAGE2, ], illustrator: { id: 116, name: "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.RareHolo, category: Category.POKEMON, set: { name: "Furious Fists", code: "xy3" } } export default card