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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/109/high.png", }, }, evolveFrom: { en: "Kirlia", }, tags: [ Tag.STAGE2, ], illustrator: { id: 4, name: "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.RareHolo, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card