mirror of
https://github.com/Kornstalx/5etools-mirror-2.github.io.git
synced 2025-10-28 20:45:35 -05:00
27 lines
628 B
JavaScript
27 lines
628 B
JavaScript
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
|
|
]);
|