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: "ex11-82", localId: 82, // Card informations name: { en: "Sandshrew", }, hp: 50, type: [ Type.WATER, ], dexId: 27, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex11/82/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex11/82/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 18, name: "Tomokazu Komiya" }, attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Dig Under", }, text: { en: "Choose 1 of your opponent's Pokémon. This attack does 10 damage to that Pokémon. This attack's damage isn't affected by Weakness or Resistance.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Scratch", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Delta Species", code: "ex11" } } export default card