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: "base5-48", localId: 48, // Card informations name: { en: "Porygon", }, hp: 40, type: [ Type.COLORLESS, ], dexId: 137, image: { low: { en: "https://assets.tcgdex.net/en/base/base5/48/low", }, high: { en: "https://assets.tcgdex.net/en/base/base5/48/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Keiji Kinebuchi", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Conversion 1", }, text: { en: "If Defending Pokémon has a Weakness, you may change it to a type of your choice other than Colorless.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Psybeam", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Team Rocket", code: "base5" } } export default card