import { Card } from "../../../interfaces" import Set from "../Shining Revelry" const card: Card = { set: Set, name: { en: "Pikachu ex" }, illustrator: "PLANETA Igarashi", rarity: "Four Diamond", category: "Pokemon", hp: 120, types: ["Lightning"], stage: "Basic", suffix: "EX", attacks: [{ name: { en: "Thunderbolt" }, damage: 150, cost: ["Lightning", "Lightning", "Lightning"], effect: { en: "Discard all Energy from this Pokémon." } }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1 } export default card