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-62", localId: 62, // Card informations name: { en: "Sableye", }, hp: 70, type: [ Type.DARKNESS, ], dexId: 302, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw5/62/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/62/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 27, name: "kawayoo" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Confuse Ray", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 10 },{ cost: [ Type.DARKNESS ], name: { en: "Junk Hunt", }, text: { en: "Put 2 Item cards from your discard pile into your hand.", }, }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card