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: "bwp-BW59", localId: "BW59", // Card informations name: { en: "White Kyurem", fr: "Kyurem Blanc", }, hp: 130, type: [ Type.DRAGON, ], dexId: 646, image: { low: { en: "https://assets.tcgdex.net/en/bw/bwp/BW59/low.png", fr: "https://assets.tcgdex.net/fr/bw/bwp/BW59/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bwp/BW59/high.png", fr: "https://assets.tcgdex.net/fr/bw/bwp/BW59/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Damage Rush", fr: "Charge Destructrice", }, text: { en: "Flip a coin until you get tails. This attack does 20 damage times the number of heads.", fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Cette attaque inflige 20 dégâts multipliés par le nombre de côtés face.", }, damage: 20 },{ cost: [ Type.FIRE, Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Cold Fire", fr: "Flammes de Glace", }, text: { en: "Flip a coin. If heads, this attack does 40 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts supplémentaires.", }, damage: 80 }], weaknesses: [{ type: Type.DRAGON, value: "×2" }], retreat: 2, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "BW Black Star Promos", code: "bwp" } } export default card