import { Card } from '../../../interfaces' import Set from '../Neo Destiny' const card: Card = { name: { en: "Dark Ampharos", }, illustrator: "Kagemaru Himeno", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 181, ], hp: 70, types: [ "Lightning", ], evolveFrom: { en: "Flaaffy", }, stage: "Stage2", abilities: [ { type: "Poke-POWER", name: { en: "Conductivity", }, effect: { en: "Whenever your opponent attaches an Energy card to a Pokémon from his or her hand, this Power does 10 damage to that Pokémon. (Don't apply Weakness and Resistance) This power stops working if you have more than 1 Dark Ampharos in play or while Dark Ampharos is Asleep, Confused or Paralysed.", }, }, ], attacks: [ { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Shock Bolt", }, effect: { en: "Discard all Energy cards attached to this Pokémon in order to use this attack.", }, damage: 50, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card