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: "ex9-4", localId: 4, // Card informations name: { en: "Gardevoir", }, hp: 100, type: [ Type.PSYCHIC, ], dexId: 282, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex9/4/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex9/4/high", }, }, evolveFrom: { en: "Kirlia", }, tags: [ Tag.STAGE2, ], illustrator: "Kagemaru Himeno", abilities: [{ id: 158, type: AbilityType.POKEPOWER, name: { en: "Heal Dance", }, text: { en: "Once during your turn (before your attack), you may remove 2 damage counters from 1 of your Pokémon. You can't use more than 1 Heal Dance Poké-Power each turn. This power can't be used if Gardevoir is affected by a Special Condition.", } }], attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Psypunch", }, damage: 30 },{ cost: [ Type.PSYCHIC, Type.COLORLESS, 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: "Emerald", code: "ex9" } } export default card