import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Ampharos", }, illustrator: "Shin-ichi Yoshida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 181, ], hp: 100, types: [ "Lightning", ], evolveFrom: { en: "Flaaffy", }, stage: "Stage2", attacks: [ { cost: [ "Lightning", ], name: { en: "Thundershock", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, { cost: [ "Lightning", "Lightning", "Colorless", ], name: { en: "Reflect Energy", }, effect: { en: "If you have any Benched Pokémon and if there are any basic Energy cards attached to Ampharos, take 1 of those Energy cards and attach it to 1 of those Pokémon.", }, damage: 50, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card