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: "bw5-89", localId: 89, // Card informations name: { en: "Haxorus", }, hp: 140, type: [ Type.COLORLESS, ], dexId: 612, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw5/89/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/89/high.png", }, }, evolveFrom: { en: "Fraxure", }, tags: [ Tag.STAGE2, ], illustrator: { id: 48, name: "Akira Komayama" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Guillotine", }, damage: 60 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Stunning Uppercut", }, text: { en: "Flip 2 coins. If both of them are heads, the Defending Pokémon is now Paralyzed. If both of them are tails, this attack does nothing.", }, damage: 80 }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card