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: "xyp-XY128", localId: "XY128", // Card informations name: { en: "White Kyurem", }, hp: 130, type: [ Type.WATER, ], dexId: 646, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY128/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY128/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "kawayoo", attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Burning Icicles", }, text: { en: "If this Pokémon has any Fire Energy attached to it, this attack does 20 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 40 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Blizzard Burn", }, text: { en: "This Pokémon can't attack during your next turn.", }, damage: 130 }], weaknesses: [{ type: Type.METAL, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card