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: "bw11-52", localId: 52, // Card informations name: { en: "Zekrom-EX", }, hp: 180, type: [ Type.LIGHTNING, ], dexId: 644, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/52/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/52/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 17, name: "Shizurow" }, attacks: [{ cost: [ Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Glinting Claw", }, text: { en: "Flip a coin. If heads, this attack does 30 more damage.", }, damage: 50 },{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Strong Volt", }, text: { en: "Discard 2 Energy attached to this Pokémon.", }, damage: 150 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card