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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY128/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 27, name: "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.RareHolo, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card