import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Lugia ex" }, illustrator: "SIE NANAHARA", rarity: "Three Star", category: "Pokemon", hp: 150, types: ["Colorless"], stage: "Basic", suffix: "EX", attacks: [{ name: { en: "Elemental Blast" }, damage: 180, cost: ["Fire", "Water", "Lightning"], effect: { en: "Discard a {R}, {W}, and {L} Energy from this Pokémon." } }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 2 } export default card