import { Card } from '../../../interfaces' import Set from '../Call of Legends' const card: Card = { name: { en: "Lugia", fr: "Lugia", de: "Lugia" }, illustrator: "Ryo Ueda", rarity: "Rare Holo", category: "Pokemon", set: Set, dexId: [ 249, ], hp: 100, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Linear Attack", fr: "Attaque linéaire", de: "Linearer Angriff" }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 30 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Choisissez l’un des Pokémon de votre adversaire. Cette attaque inflige 30 dégâts à ce Pokémon (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", de: "Wähle 1 Pokémon deines Gegners. Dieser Angriff fügt dem gewählten Pokémon 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)" }, }, { cost: [ "Water", "Water", "Water", "Colorless", "Colorless", ], name: { en: "Hydro Splash", fr: "Hydro-éclaboussure", de: "Hydroplatscher" }, damage: 80, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 3, } export default card