We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4f19cc5 + 31a96d4 commit 60e0c8cCopy full SHA for 60e0c8c
data/numbers.ts
@@ -43,6 +43,15 @@ const data: ScrapeQuery[] = [
43
return document.querySelector(".PopUpActions-textPicker > input").placeholder.split(" ").length
44
}
45
},
46
+ {
47
+ number: 5,
48
+ url: "https://www.smogon.com/dex/sm/formats/ru/",
49
+ queryFunction: () => {
50
+ let [hp, atk] = document.querySelector("a[href='/dex/sm/pokemon/bewear/']")
51
+ .parentElement.parentElement.querySelectorAll(".PokemonAltRow-hp, .PokemonAltRow-atk");
52
+ return atk.querySelector("span").innerText - hp.querySelector("span").innerText
53
+ }
54
+ },
55
56
]
57
0 commit comments