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: "xy11-116", localId: 116, // Card informations name: { en: "Gardevoir-EX", }, hp: 170, type: [ Type.FAIRY, ], dexId: 282, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy11/116/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy11/116/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 38, name: "Eske Yoshinob" }, attacks: [{ cost: [ Type.FAIRY, Type.COLORLESS ], name: { en: "Link Blast", }, text: { en: "If this Pokémon and your opponent's Active Pokémon have the same amount of Energy attached to them, this attack does 70 more damage.", }, damage: 30 },{ cost: [ Type.FAIRY, Type.FAIRY, Type.COLORLESS ], name: { en: "Luminous Blade", }, text: { en: "Discard an Energy attached to this Pokémon.", }, damage: 120 }], weaknesses: [{ type: Type.METAL, value: "×2" }], resistances: [{ type: Type.DARKNESS, value: "-20" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Steam Siege", code: "xy11" } } export default card