import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ex10-47", localId: 47, // Card informations name: { en: "Shuckle", }, hp: 60, type: [ Type.GRASS, ], dexId: 213, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex10/47/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex10/47/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Miki Tanaka", abilities: [{ id: 646, type: AbilityType.POKEBODY, name: { en: "Extra Tight", }, text: { en: "Prevent all damage done to Shuckle by attacks from your opponent's Pokémon-ex.", } }], attacks: [{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Toxic", }, text: { en: "The Defending Pokémon is now Poisoned. Put 2 damage counters instead of 1 on the Defending Pokémon between turns.", }, }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Unseen Forces", code: "ex10" } } export default card