import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", fr: "https://assets.tcgdex.net/fr/sm/sm7/119/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm7/119/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm7/119/high.png", }, }, evolveFrom: { en: "Loudred", fr: "Ramboum", }, tags: [ Tag.STAGE2, ], illustrator: { id: 27, name: "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