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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/45/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 13, name: "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.RareHoloEX, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card