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: "dp1-63", localId: 63, // Card informations name: { en: "Silcoon", fr: "Armulys", }, hp: 80, type: [ Type.GRASS, ], dexId: 266, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp1/63/low", fr: "https://assets.tcgdex.net/fr/dp/dp1/63/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp1/63/high", fr: "https://assets.tcgdex.net/fr/dp/dp1/63/high", }, }, evolveFrom: { en: "Wurmple", fr: "Chenipotte", }, tags: [ Tag.STAGE1, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.GRASS ], name: { en: "Harden", fr: "Armure", }, text: { en: "During your opponent's next turn, if Silcoon would be damaged by an attack, prevent that attack's damage done to Silcoon if that damage is 30 or less.", fr: "Lors du prochain tour de votre adversaire, si une attaque inflige des dégâts à Armulys, prévenez ces dégâts s'ils sont de 30 ou moins.", }, },{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Entangling String", fr: "Fil emmêlant", }, text: { en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur ne peut pas attaquer lors du prochain tour de votre adversaire.", }, damage: 20 }], weaknesses: [{ type: Type.FIRE, value: "+20" }], retreat: 3, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Diamond & Pearl", code: "dp1" } } export default card