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: "xy3-50", localId: 50, // Card informations name: { en: "Breloom", fr: "Chapignon", }, hp: 100, type: [ Type.FIGHTING, ], dexId: 286, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy3/50/low", fr: "https://assets.tcgdex.net/fr/xy/xy3/50/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/50/high", fr: "https://assets.tcgdex.net/fr/xy/xy3/50/high", }, }, evolveFrom: { en: "Shroomish", fr: "Balignon", }, tags: [ Tag.STAGE1, ], illustrator: "Hitoshi Ariga", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Giga Drain", fr: "Giga-Sangsue", }, text: { en: "Heal from this Pokémon the same amount of damage you did to your opponent's Active Pokémon.", fr: "Soignez à ce Pokémon la même quantité de dégâts que vous avez infligée au Pokémon Actif de votre adversaire.", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Sky Uppercut", fr: "Stratopercut", }, text: { en: "This attack's damage isn't affected by Resistance.", fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.", }, damage: 70 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Furious Fists", code: "xy3" } } export default card