import { Card } from '../../../interfaces' import Set from '../Crystal Guardians' const card: Card = { name: { en: "Exploud ex", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 295, ], hp: 150, types: [ "Colorless", ], evolveFrom: { en: "Loudred", }, suffix: "EX", abilities: [ { type: "Poke-BODY", name: { en: "Extra Noise", }, effect: { en: "As long as Exploud ex is your Active Pokémon, put 1 damage counter on each of your opponent's Pokémon-ex between turns.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Derail", }, effect: { en: "Discard a Special Energy card, if any, attached to the Defending Pokémon.", }, damage: 40, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Hyper Tail", }, effect: { en: "If the Defending Pokémon has any Poké-Powers or Poké-Bodies, this attack does 60 damage plus 20 more damage.", }, damage: 60, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card