import { Card } from '../../../interfaces' import Set from '../Unbroken Bonds' const card: Card = { name: { en: "Porygon", fr: "Porygon", }, illustrator: "Suwama Chiaki", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 137, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Quick Draw", fr: "Pioche Rapide", }, effect: { en: "Draw a card.", fr: "Piochez une carte.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Ram", fr: "Collision", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card