import { Card } from '../../../interfaces' import Set from '../Dark Explorers' const card: Card = { name: { en: "Groudon-EX", fr: "Groudon-EX", es: "Groudon-EX", it: "Groudon-EX", pt: "Groudon-EX", de: "Groudon-EX" }, illustrator: "Shizurow", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 383, ], hp: 180, types: [ "Fighting", ], suffix: "EX", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Tromp", }, effect: { en: "Does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 20, }, { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Giant Claw", }, effect: { en: "If the Defending Pokémon already has 2 or more damage counters on it, this attack does 40 more damage.", }, damage: 80, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], resistances: [ { type: "Lightning", value: "-20" }, ], retreat: 4 } export default card