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: "sm8-70", localId: 70, // Card informations name: { en: "Bruxish", fr: "Denticrisse", }, hp: 90, type: [ Type.WATER, ], dexId: 779, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm8/70/low", fr: "https://assets.tcgdex.net/fr/sm/sm8/70/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm8/70/high", fr: "https://assets.tcgdex.net/fr/sm/sm8/70/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "tetsuya koizumi", attacks: [{ cost: [ Type.WATER ], name: { en: "Mind Bend", fr: "Contrôleur d’Esprit", }, text: { en: "Your opponent's Active Pokémon is now Confused.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", }, damage: 20 },{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Follow the Wound", fr: "Bonjour les Dégâts", }, text: { en: "This attack does 60 damage to 1 of your opponent's Benched Pokémon that has any damage counters on it. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 60 dégâts à l’un des Pokémon de Banc de votre adversaire ayant au moins un marqueur de dégâts. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Lost Thunder", code: "sm8" } } export default card