refactor(loldle): source all champion data from loldle.net

loldle.net's JS bundle ships the complete set of classic-mode axes in
plaintext, so ddragon merging is no longer needed. Scraper now produces
the final schema directly.

Schema changes: drop title, skinCount, image, and genre (ddragon-only).
Replace genre (class tags like Fighter/Mage) with species (Human/Darkin/
Vastayan) — the axis loldle.net actually uses. Promote region to a
multi-value field so multi-region champions compare correctly.

Handlers no longer show "Name — Title" on win/giveup.
This commit is contained in:
2026-04-22 13:19:10 +07:00
parent 9855b4d7d0
commit 0836f02ab8
8 changed files with 1443 additions and 5211 deletions
+16 -10
View File
@@ -4,10 +4,10 @@ import { CLASSIC_ATTRIBUTES, compareChampions } from "../../../src/modules/loldl
const aatrox = {
id: "Aatrox",
gender: "male",
genre: "Fighter",
species: "darkin",
attackType: "close",
resource: "Blood Well",
region: "runeterra",
resource: "Manaless",
region: "runeterra,shurima",
lane: "top",
releaseDate: 2013,
};
@@ -15,7 +15,7 @@ const aatrox = {
const ahri = {
id: "Ahri",
gender: "female",
genre: "Mage,Assassin",
species: "vastayan",
attackType: "range",
resource: "Mana",
region: "ionia",
@@ -26,7 +26,7 @@ const ahri = {
const akali = {
id: "Akali",
gender: "female",
genre: "Assassin",
species: "human",
attackType: "close",
resource: "Energy",
region: "ionia",
@@ -49,18 +49,24 @@ describe("compareChampions", () => {
expect(byKey(r, "gender").result).toBe("wrong");
expect(byKey(r, "attackType").result).toBe("wrong");
expect(byKey(r, "resource").result).toBe("wrong");
expect(byKey(r, "region").result).toBe("wrong");
});
it("multi-value partial overlap is partial", () => {
const r = compareChampions(akali, ahri);
expect(byKey(r, "genre").result).toBe("partial");
const r = compareChampions({ ...akali, lane: "mid,top" }, { ...ahri, lane: "mid" });
expect(byKey(r, "lane").result).toBe("partial");
const r2 = compareChampions(
{ ...aatrox, region: "runeterra,shurima" },
{ ...ahri, region: "runeterra,ionia" },
);
expect(byKey(r2, "region").result).toBe("partial");
});
it("multi-value identical sets are correct even if order/case differ", () => {
const r = compareChampions({ ...akali, genre: "assassin" }, { ...akali, genre: "Assassin" });
expect(byKey(r, "genre").result).toBe("correct");
const r = compareChampions(
{ ...akali, species: "human,ninja" },
{ ...akali, species: "Ninja,Human" },
);
expect(byKey(r, "species").result).toBe("correct");
});
it("year direction hints up when guess < target", () => {