import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Ampharos", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 181, ], hp: 80, types: [ "Lightning", ], evolveFrom: { en: "Flaaffy", }, stage: "Stage2", attacks: [ { cost: [ "Lightning", "Lightning", "Lightning", ], name: { en: "Gigaspark", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed and this attack does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 40, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card