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: "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.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/56/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/56/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/56/high.png", }, }, evolveFrom: { en: "Gothita", fr: "Scrutella", }, tags: [ Tag.STAGE1, ], illustrator: { id: 3, name: "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