import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Ampharos", fr: "Pharamp" }, illustrator: "kodama", rarity: "Rare", category: "Pokemon", set: Set, hp: 150, types: [ "Lightning", ], evolveFrom: { en: "Flaaffy", fr: "Lainergie" }, attacks: [ { cost: [ "Lightning", ], name: { en: "Dazzle Blast", fr: "Explosion de Lumière" }, effect: { en: "Your opponent’s Active Pokémon is now Confused.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus." }, damage: 50, }, { cost: [ "Lightning", "Lightning", ], name: { en: "Electric Ball", fr: "Boule de Foudre" }, damage: 130, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, } export default card