import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "pl4-16", localId: 16, // Card informations name: { en: "Gengar", }, hp: 110, type: [ Type.PSYCHIC, ], dexId: 94, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl4/16/low", }, high: { en: "https://assets.tcgdex.net/en/pl/pl4/16/high", }, }, evolveFrom: { en: "Haunter", }, tags: [ Tag.STAGE2, ], illustrator: "Midori Harada", abilities: [{ id: 164, type: AbilityType.POKEPOWER, name: { en: "Curse", }, text: { en: "Once during your turn (before your attack), you may move 1 damage counter from 1 of your opponent's Pokémon to another of your opponent's Pokémon. This power can't be used if Gengar is affected by a Special Condition.", } }], attacks: [{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS ], name: { en: "Shadow Skip", }, text: { en: "Does 10 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) You may switch Gengar with 1 of your Benched Pokémon.", }, damage: 60 }], weaknesses: [{ type: Type.DARKNESS, value: "+30" }], resistances: [{ type: Type.COLORLESS, value: "-20" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Arceus", code: "pl4" } } export default card