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: "hgssp-HGSS23", localId: "HGSS23", // Card informations name: { en: "Porygon2", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 233, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS23/low", }, high: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS23/high", }, }, evolveFrom: { en: "Porygon", }, tags: [ Tag.STAGE1, ], illustrator: "TOKIYA", abilities: [{ id: 1414, type: AbilityType.POKEBODY, name: { en: "Shortcut", }, text: { en: "The Retreat Cost for each Porygon, Porygon2, and Porygon-Z you have in play is Colorless less.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Reckless Charge", }, text: { en: "Porygon2 does 10 damage to itself.", }, damage: 50 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "HGSS Black Star Promos", code: "hgssp" } } export default card