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: "bw5-109", localId: 109, // Card informations name: { en: "Gardevoir", }, hp: 110, type: [ Type.PSYCHIC, ], dexId: 282, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw5/109/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/109/high", }, }, evolveFrom: { en: "Kirlia", }, tags: [ Tag.STAGE2, ], illustrator: "5ban Graphics", abilities: [{ id: 819, type: AbilityType.TALENT, name: { en: "Psychic Mirage", }, text: { en: "Each basic Psychic Energy attached to your Psychic Pokémon provides PsychicPsychic Energy. You can't apply more than 1 Psychic Mirage Ability at a time.", } }], attacks: [{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Mind Shock", }, text: { en: "This attack's damage isn't affected by Weakness or Resistance.", }, damage: 60 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card