import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Lugia-EX", }, illustrator: "Toyste Beach", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 249, ], hp: 180, types: [ "Colorless", ], suffix: "EX", abilities: [ { type: "Ability", name: { en: "Overflow", }, effect: { en: "If your opponent’s Pokémon is Knocked Out by damage from an attack of this Pokémon, take 1 more Prize card.", }, }, ], attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Plasma Gale", }, effect: { en: "Discard a Plasma Energy attached to this Pokémon. If you can't discard a Plasma Energy, this attack does nothing.", }, damage: 120, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 2 } export default card