import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Lugia", fr: "Lugia" }, illustrator: "Hasuno", rarity: "Rare", category: "Pokemon", set: Set, hp: 130, types: [ "Colorless", ], attacks: [ { cost: [ "Colorless", ], name: { en: "Gust", fr: "Tornade" }, damage: 30, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Energy Loop", fr: "Boucle d’Énergie" }, effect: { en: "Put an Energy attached to this Pokémon into your hand.", fr: "Ajoutez à votre main une Énergie attachée à ce Pokémon." }, damage: 120, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 2, } export default card