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: "bw9-31", localId: 31, // Card informations name: { en: "Kyurem", fr: "Kyurem", }, hp: 130, type: [ Type.WATER, ], dexId: 646, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw9/31/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw9/31/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw9/31/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw9/31/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Frost Spear", fr: "Lance de Givre", }, text: { en: "Does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Inflige 30 dégâts à 1 des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, damage: 30 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Blizzard Burn", fr: "Blizzard Étourdissant", }, text: { en: "This Pokémon can't attack during your next turn.", fr: "Ce Pokémon ne peut pas attaquer pendant votre prochain tour.", }, damage: 120 }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 3, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Plasma Freeze", code: "bw9" } } export default card