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: "gym2-98", localId: 98, // Card informations name: { en: "Sabrina's Porygon", }, hp: 40, type: [ Type.COLORLESS, ], dexId: 137, image: { low: { en: "https://assets.tcgdex.net/en/gym/gym2/98/low", }, high: { en: "https://assets.tcgdex.net/en/gym/gym2/98/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Sharp Point", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Barrier Attack", }, text: { en: "All damage done by attacks to Sabrina's Porygon during your opponent's next turn is reduced by 10 (after applying Weakness and Resistance).", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Gym Challenge", code: "gym2" } } export default card