import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "gym2-29", localId: 29, // Card informations name: { en: "Sabrina's Gengar", }, hp: 90, type: [ Type.PSYCHIC, ], dexId: 94, image: { low: { en: "https://assets.tcgdex.net/en/gym/gym2/29/low.png", }, high: { en: "https://assets.tcgdex.net/en/gym/gym2/29/high.png", }, }, evolveFrom: { en: "Haunter", }, tags: [ Tag.STAGE2, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.PSYCHIC, Type.PSYCHIC ], name: { en: "Dark Wave", }, text: { en: "All Pokémon Powers stop working until the end of your opponent's next turn.", }, damage: 20 },{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.PSYCHIC ], name: { en: "Shadow Bind", }, text: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", }, damage: 40 }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Gym Challenge", code: "gym2" } } export default card