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: "bw7-47", localId: 47, // Card informations name: { en: "Keldeo", fr: "Keldeo", }, hp: 110, type: [ Type.WATER, ], dexId: 647, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw7/47/low", fr: "https://assets.tcgdex.net/fr/bw/bw7/47/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/47/high", fr: "https://assets.tcgdex.net/fr/bw/bw7/47/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ryo Ueda", attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Slicing Blade", fr: "Lame Tranchante", }, damage: 30 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hydro Pump", fr: "Hydrocanon", }, text: { en: "Does 10 more damage for each Water Energy attached to this Pokémon.", fr: "Inflige 10 dégâts supplémentaires pour chaque Énergie Water attachée à ce Pokémon.", }, damage: 60 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card