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: "sm10-4", localId: 4, // Card informations name: { en: "Butterfree", fr: "Papilusion", }, hp: 130, type: [ Type.GRASS, ], dexId: 12, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm10/4/low", fr: "https://assets.tcgdex.net/fr/sm/sm10/4/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/4/high", fr: "https://assets.tcgdex.net/fr/sm/sm10/4/high", }, }, evolveFrom: { en: "Metapod", fr: "Chrysacier", }, tags: [ Tag.STAGE2, ], illustrator: "Midori Harada", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Triple Charge", fr: "Triple Charge", }, text: { en: "Search your deck for up to 3 basic Energy cards and attach them to your Pokémon in any way you like. Then, shuffle your deck.", fr: "Cherchez jusqu’à 3 cartes Énergie de base dans votre deck et attachez-les à vos Pokémon, de la manière que vous voulez. Mélangez ensuite votre deck.", }, },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Solar Beam", fr: "Lance-Soleil", }, damage: 70 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unbroken Bonds", code: "sm10" } } export default card