import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Gengar", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 94, ], hp: 120, types: [ "Psychic", ], evolveFrom: { en: "Haunter", }, stage: "Stage2", attacks: [ { cost: [ "Psychic", "Colorless", ], name: { en: "Sharpshooting", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 40 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, { cost: [ "Psychic", "Colorless", "Colorless", ], name: { en: "Poison Jab", }, effect: { en: "The Defending Pokémon is now Poisoned.", }, damage: 60, }, ], weaknesses: [ { type: "Darkness", value: "+30" }, ], resistances: [ { type: "Colorless", value: "-20" }, ], } export default card