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: "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.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/47/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/47/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/47/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 1, name: "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.RareHolo, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card