import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Porygon", }, illustrator: "Tomoaki Imakuni", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 137, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Data Retrieval", }, effect: { en: "If you have less than 4 cards in your hand, draw cards until you have 4 cards in your hand.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Confuse Ray", }, effect: { en: "The Defending Pokémon is now Confused.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card