import { Card } from '../../../interfaces' import Set from '../Celestial Storm' const card: Card = { name: { en: "Loudred", fr: "Ramboum", }, illustrator: "Masakazu Fukuda", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 294, ], hp: 100, types: [ "Colorless", ], evolveFrom: { en: "Whismur", fr: "Chuchmur", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Cracking Voice", fr: "Super Voix", }, effect: { en: "Your opponent's Active Pokémon is now Confused.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", }, damage: 60, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 3, } export default card