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: "ex1-103", localId: 103, // Card informations name: { en: "Sneasel ex", }, hp: 80, type: [ Type.DARKNESS, ], dexId: 215, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex1/103/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex1/103/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 1, name: "Ryo Ueda" }, attacks: [{ cost: [ Type.DARKNESS ], name: { en: "Double Scratch", }, text: { en: "Flip 2 coins. This attack does 10 damage times the number of heads.", }, damage: 10 },{ cost: [ Type.DARKNESS, Type.DARKNESS, Type.COLORLESS ], name: { en: "Beat Up", }, text: { en: "Flip a coin for each of your Pokémon in play (including Sneasel ex). This attack does 20 damage times the number of heads.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "Ruby & Sapphire", code: "ex1" } } export default card