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: "sm1-14", localId: 14, // Card informations name: { en: "Fomantis", fr: "Mimantis", }, hp: 60, type: [ Type.GRASS, ], dexId: 753, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm1/14/low", fr: "https://assets.tcgdex.net/fr/sm/sm1/14/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm1/14/high", fr: "https://assets.tcgdex.net/fr/sm/sm1/14/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Synthesis", fr: "Synthèse", }, text: { en: "Search your deck for a Grass Energy card and attach it to 1 of your Pokémon. Then, shuffle your deck.", fr: "Cherchez une carte Énergie Grass dans votre deck et attachez-la à l’un de vos Pokémon. Mélangez ensuite votre deck.", }, },{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Leafage", fr: "Feuillage", }, damage: 20 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Sun & Moon", code: "sm1" } } export default card