import { Card } from '../../../interfaces' import Set from '../Neo Revelation' const card: Card = { name: { en: "Lugia", }, illustrator: "Aya Kusube", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 249, ], hp: 90, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Aerowing", }, effect: { en: "You may flip a coin. If heads, this attack does 80 damage. If tails, this attack does nothing.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card