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: "ex8-46", localId: 46, // Card informations name: { en: "Silcoon", }, hp: 80, type: [ Type.GRASS, ], dexId: 266, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex8/46/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/46/high", }, }, evolveFrom: { en: "Wurmple", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Ram", }, damage: 10 },{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Advanced Armor", }, text: { en: "During your opponent's next turn, prevent all effects of attacks, including damage, done to Silcoon by your opponent's Evolved Pokémon.", }, }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Deoxys", code: "ex8" } } export default card