This commit is contained in:
TheGiddyLimit
2024-02-11 22:28:07 +00:00
parent d16f838683
commit 661a119c6d
106 changed files with 6046 additions and 1330 deletions

26
test/util-test.js Normal file
View File

@@ -0,0 +1,26 @@
import "../js/parser.js";
import "../js/utils.js";
export const BLOCKLIST_SOURCES_PAGES = new Set([
// region Sources which only exist in digital form
Parser.SRC_DC,
Parser.SRC_SLW,
Parser.SRC_SDW,
Parser.SRC_VD,
Parser.SRC_HAT_TG,
Parser.SRC_HAT_LMI,
Parser.SRC_LK,
Parser.SRC_AATM,
Parser.SRC_HFStCM,
// N.b.: other MCV source creatures mysteriously have page numbers on Beyond
Parser.SRC_MCV4EC,
// endregion
// region Sources which are screens, and therefore "pageless"
Parser.SRC_SCREEN,
Parser.SRC_SCREEN_WILDERNESS_KIT,
Parser.SRC_SCREEN_DUNGEON_KIT,
Parser.SRC_SCREEN_SPELLJAMMER,
// endregion
]);