import { Card } from '../../../interfaces' import Set from '../Unseen Forces' const card: Card = { name: { en: "Porygon", fr: "Porygon", de: "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", de: "3-D Attack" }, 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.", de: "Flip 3 coins. This attack does 10 damage times the number of heads." }, damage: "10x", }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card