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: "sm9-61", localId: 61, // Card informations name: { en: "Tentacruel", fr: "Tentacruel", }, hp: 100, type: [ Type.PSYCHIC, ], dexId: 73, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm9/61/low", fr: "https://assets.tcgdex.net/fr/sm/sm9/61/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm9/61/high", fr: "https://assets.tcgdex.net/fr/sm/sm9/61/high", }, }, evolveFrom: { en: "Tentacool", fr: "Tentacool", }, tags: [ Tag.STAGE1, ], illustrator: "kodama", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Void Tentacles", fr: "Tentacules du Néant", }, text: { en: "Your opponent's Active Pokémon is now Confused and Poisoned.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus et Empoisonné.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Paranormal", fr: "Paranormal", }, text: { en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Ultra Beasts.", fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques d’Ultra-Chimères.", }, damage: 70 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Team Up", code: "sm9" } } export default card