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: "smp-SM61", localId: "SM61", // Card informations name: { en: "Tapu Bulu", fr: "Tokotoro", }, hp: 130, type: [ Type.GRASS, ], dexId: 786, image: { low: { en: "https://assets.tcgdex.net/en/sm/smp/SM61/low", fr: "https://assets.tcgdex.net/fr/sm/smp/SM61/low", }, high: { en: "https://assets.tcgdex.net/en/sm/smp/SM61/high", fr: "https://assets.tcgdex.net/fr/sm/smp/SM61/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Megumi Mizutani", attacks: [{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Horn Leech", fr: "Encornebois", }, text: { en: "Heal 30 damage from this Pokémon.", fr: "Soignez 30 dégâts à ce Pokémon.", }, damage: 30 },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Calm Strike", fr: "Frappe Placide", }, text: { en: "If you used your GX attack, this attack does 60 more damage.", fr: "Si vous avez utilisé votre attaque GX, cette attaque inflige 60 dégâts supplémentaires.", }, damage: 60 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 2, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "SM Black Star Promos", code: "smp" } } export default card