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: "bw6-56", localId: 56, // Card informations name: { en: "Gothorita", fr: "Mesmérella", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 575, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw6/56/low", fr: "https://assets.tcgdex.net/fr/bw/bw6/56/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/56/high", fr: "https://assets.tcgdex.net/fr/bw/bw6/56/high", }, }, evolveFrom: { en: "Gothita", fr: "Scrutella", }, tags: [ Tag.STAGE1, ], illustrator: "Mizue", attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Hypnoblast", fr: "Hypnoblast", }, text: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", }, damage: 10 },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Mind Shock", fr: "Choc Cérébral", }, text: { en: "This attack's damage isn't affected by Weakness or Resistance.", fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Dragons Exalted", code: "bw6" } } export default card