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: "bw11-45", localId: 45, // Card informations name: { en: "Keldeo-EX", }, hp: 170, type: [ Type.WATER, ], dexId: 647, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/45/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/45/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "Toyste Beach", abilities: [{ id: 405, type: AbilityType.TALENT, name: { en: "Rush In", }, text: { en: "Once during your turn (before your attack), if this Pokémon is on your Bench, you may switch this Pokémon with your Active Pokémon.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Secret Sword", }, text: { en: "Does 20 more damage for each Water Energy attached to this Pokémon.", }, damage: 50 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card