import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Lugia", }, illustrator: "Hironobu Yoshida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 249, ], hp: 90, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Fire", "Water", "Lightning", ], name: { en: "Elemental Blast", }, effect: { en: "Discard a Energy card, a Energy card, and a Energy card attached to Lugia in order to use this attack.", }, damage: 90, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card