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: "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.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/4/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/4/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/4/high.png", }, }, evolveFrom: { en: "Metapod", fr: "Chrysacier", }, tags: [ Tag.STAGE2, ], illustrator: { id: 2, name: "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