import { Card } from '../../../interfaces' import Set from '../Plasma Blast' const card: Card = { name: { en: "Porygon", fr: "Porygon", es: "Porygon", it: "Porygon", pt: "Porygon", de: "Porygon" }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 137, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", fr: "Charge", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card