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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/46/high.png", }, }, evolveFrom: { en: "Wurmple", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "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