https://www.serebii.net/pokemongo/pokemon.shtml
const eggs = [];
document.querySelectorAll(".pokemon-list > tbody > tr").forEach(p => {
const obj = {
name: p.querySelector("td:nth-of-type(3) > a").textContent,
inEggs: p.querySelector("td:nth-of-type(6)").textContent.trim()
}
eggs.push(obj)
})https://www.serebii.net/pokemongo/shiny.shtml
document.querySelectorAll(".dextable > tbody > tr").map(p => p.querySelector("td:nth-of-type(3) > a").textContent)