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: "gym2-36", localId: 36, // Card informations name: { en: "Brock's Sandslash", }, hp: 70, type: [ Type.FIGHTING, ], dexId: 28, image: { low: { en: "https://assets.tcgdex.net/en/gym/gym2/36/low.png", }, high: { en: "https://assets.tcgdex.net/en/gym/gym2/36/high.png", }, }, evolveFrom: { en: "Sandshrew", }, tags: [ Tag.STAGE1, ], illustrator: { id: 32, name: "Atsuko Nishida" }, attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Swift", }, text: { en: "This attack's damage isn't affected by Weakness, Resistance, Pokémon Powers, or any other effects on the Defending Pokémon.", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.FIGHTING ], name: { en: "Needle Ball", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, }], weaknesses: [{ type: Type.GRASS, value: "×2" }], resistances: [{ type: Type.LIGHTNING, value: "-30" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Gym Challenge", code: "gym2" } } export default card