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: "bw8-96", localId: 96, // Card informations name: { en: "White Kyurem-EX", fr: "Kyurem Blanc-EX", }, hp: 180, type: [ Type.DRAGON, ], dexId: 646, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw8/96/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw8/96/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw8/96/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw8/96/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 17, name: "Shizurow" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Slash", fr: "Tranche", }, damage: 60 },{ cost: [ Type.FIRE, Type.FIRE, Type.WATER, Type.COLORLESS ], name: { en: "White Inferno", fr: "Fureur Blanche", }, text: { en: "Does 10 more damage for each damage counter on this Pokémon.", fr: "Inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur ce Pokémon.", }, damage: 100 }], weaknesses: [{ type: Type.DRAGON, value: "×2" }], retreat: 3, rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "Plasma Storm", code: "bw8" } } export default card