import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Porygon2" }, illustrator: "Nagomi Nijo", rarity: "Two Diamond", category: "Pokemon", hp: 80, types: ["Colorless"], evolveFrom: { en: "Porygon" }, description: { en: "This is a Porygon that was updated with special\ndata. Porygon2 develops itself by learning about\nmany different subjects all on its own." }, stage: "Stage1", abilities: [{ type: "Ability", name: { en: "Buggy Evolution" }, effect: { en: "Whenever you attach an Energy from your Energy Zone to this Pokémon, put a random card from your deck that evolves from this Pokémon onto this Pokémon to evolve it." } }], attacks: [{ name: { en: "Spinning Attack" }, damage: 40, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 2 } export default card