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-119", localId: 119, // Card informations name: { en: "Exploud", fr: "Brouhabam", }, hp: 150, type: [ Type.COLORLESS, ], dexId: 295, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm7/119/low", fr: "https://assets.tcgdex.net/fr/sm/sm7/119/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm7/119/high", fr: "https://assets.tcgdex.net/fr/sm/sm7/119/high", }, }, evolveFrom: { en: "Loudred", fr: "Ramboum", }, tags: [ Tag.STAGE2, ], illustrator: "kawayoo", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Dangerous Concert", fr: "Concert Risqué", }, text: { en: "This attack does 30 damage to each 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 30 dégâts à chacun 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.)", }, damage: 80 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Heavy Impact", fr: "Gros Impact", }, damage: 100 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Celestial Storm", code: "sm7" } } export default card