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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex10/47/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 37, name: "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