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: "sm7-21", localId: 21, // Card informations name: { en: "Tropius", fr: "Tropius", }, hp: 110, type: [ Type.GRASS, ], dexId: 357, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm7/21/low", fr: "https://assets.tcgdex.net/fr/sm/sm7/21/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm7/21/high", fr: "https://assets.tcgdex.net/fr/sm/sm7/21/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.GRASS ], name: { en: "Find a Friend", fr: "Trouver un Ami", }, text: { en: "Search your deck for up to 2 Pokémon, reveal them, and put them into your hand. Then, shuffle your deck.", fr: "Cherchez jusqu’à 2 Pokémon dans votre deck, montrez-les, puis ajoutez-les à votre main. 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.UNCOMMON, category: Category.POKEMON, set: { name: "Celestial Storm", code: "sm7" } } export default card