import { Card } from '../../../interfaces' import Set from '../Legend Maker' const card: Card = { name: { en: "Gengar", }, illustrator: "Kouki Saitou", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 94, ], hp: 100, types: [ "Psychic", ], evolveFrom: { en: "Haunter", }, stage: "Stage2", abilities: [ { type: "Poke-POWER", name: { en: "Shadow Curse", }, effect: { en: "If Gengar would be Knocked Out by damage from an opponent's attack, you may put 3 damage counters on 1 of your opponent's Pokémon.", }, }, ], attacks: [ { cost: [ "Psychic", ], name: { en: "Cursed Reaction", }, effect: { en: "Put 2 damage counters on your opponent's Pokémon in any way you like. If Gengar has any React Energy cards attached to it, put 4 damage counters instead.", }, }, { cost: [ "Psychic", "Psychic", "Colorless", ], name: { en: "Super Psy Bolt", }, damage: 60, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card