import { Card } from '../../../interfaces' import Set from '../Unseen Forces' const card: Card = { name: { en: "Porygon", fr: "Porygon" }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 137, ], hp: 50, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "3-D Attack", fr: "Attaque en 3-D" }, effect: { en: "Flip 3 coins. This attack does 10 damage times the number of heads.", fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de faces." }, damage: "10×", }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card