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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS23/high.png", }, }, evolveFrom: { en: "Porygon", }, tags: [ Tag.STAGE1, ], illustrator: { id: 20, name: "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