From 0271947e52c05554b121dbf71b4da58ef0040f6f Mon Sep 17 00:00:00 2001 From: Tom Boucher Date: Sat, 14 Mar 2026 19:56:44 -0400 Subject: [PATCH] feat(collections): add Entertainment & Recreation category MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds a new content category with three tiers of offline entertainment resources, all sourced from Kiwix's pre-built Stack Exchange ZIM files: Essential (~500 MB): - RPG Stack Exchange — D&D, Pathfinder, FATE rules Q&A - Board Games Stack Exchange — rules and strategy - Chess Stack Exchange — strategy, puzzles, openings Standard (~2.5 GB cumulative): - Worldbuilding Stack Exchange — setting design, lore - Sci-Fi & Fantasy Stack Exchange — genre encyclopedia Comprehensive (~3.3 GB cumulative): - Gaming Stack Exchange (Arqade) — video game guides Partially addresses #306. The TTRPG SRD websites requested in that issue don't have pre-built ZIM files on Kiwix's servers, but the RPG Stack Exchange covers the same rule systems with 60k+ answered questions across D&D 5e, Pathfinder 2e, FATE, Dungeon World, and hundreds of other systems. --- collections/kiwix-categories.json | 81 +++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) diff --git a/collections/kiwix-categories.json b/collections/kiwix-categories.json index f428609..60e5812 100644 --- a/collections/kiwix-categories.json +++ b/collections/kiwix-categories.json @@ -614,6 +614,87 @@ ] } ] + }, + { + "name": "Entertainment & Recreation", + "slug": "entertainment", + "icon": "IconDeviceGamepad2", + "description": "Tabletop RPG knowledge, board game rules, chess strategy, sci-fi lore, and gaming guides for offline entertainment.", + "language": "en", + "tiers": [ + { + "name": "Essential", + "slug": "entertainment-essential", + "description": "Tabletop RPG and board game knowledge \u2014 rules Q&A, strategy, and chess. Start here.", + "recommended": true, + "resources": [ + { + "id": "rpg.stackexchange.com_en_all", + "version": "2026-02", + "title": "RPG Stack Exchange", + "description": "Q&A for D&D, Pathfinder, FATE, and hundreds of tabletop RPG systems \u2014 rules, mechanics, GMing advice", + "url": "https://download.kiwix.org/zim/stack_exchange/rpg.stackexchange.com_en_all_2026-02.zim", + "size_mb": 321 + }, + { + "id": "boardgames.stackexchange.com_en_all", + "version": "2026-02", + "title": "Board Games Stack Exchange", + "description": "Rules clarifications and strategy for hundreds of board and card games", + "url": "https://download.kiwix.org/zim/stack_exchange/boardgames.stackexchange.com_en_all_2026-02.zim", + "size_mb": 102 + }, + { + "id": "chess.stackexchange.com_en_all", + "version": "2026-02", + "title": "Chess Stack Exchange", + "description": "Chess strategy, openings, endgames, puzzles, and engine analysis", + "url": "https://download.kiwix.org/zim/stack_exchange/chess.stackexchange.com_en_all_2026-02.zim", + "size_mb": 77 + } + ] + }, + { + "name": "Standard", + "slug": "entertainment-standard", + "description": "Adds worldbuilding and sci-fi/fantasy reference. Includes everything in Essential.", + "includesTier": "entertainment-essential", + "resources": [ + { + "id": "worldbuilding.stackexchange.com_en_all", + "version": "2026-02", + "title": "Worldbuilding Stack Exchange", + "description": "Setting design, lore creation, and fiction worldbuilding Q&A", + "url": "https://download.kiwix.org/zim/stack_exchange/worldbuilding.stackexchange.com_en_all_2026-02.zim", + "size_mb": 797 + }, + { + "id": "scifi.stackexchange.com_en_all", + "version": "2026-02", + "title": "Sci-Fi & Fantasy Stack Exchange", + "description": "Encyclopedic Q&A covering sci-fi and fantasy books, films, TV, and games", + "url": "https://download.kiwix.org/zim/stack_exchange/scifi.stackexchange.com_en_all_2026-02.zim", + "size_mb": 1200 + } + ] + }, + { + "name": "Comprehensive", + "slug": "entertainment-comprehensive", + "description": "Full entertainment reference including video game guides. Includes everything in Standard.", + "includesTier": "entertainment-standard", + "resources": [ + { + "id": "gaming.stackexchange.com_en_all", + "version": "2026-02", + "title": "Gaming Stack Exchange (Arqade)", + "description": "Video game walkthroughs, tips, and technical troubleshooting", + "url": "https://download.kiwix.org/zim/stack_exchange/gaming.stackexchange.com_en_all_2026-02.zim", + "size_mb": 771 + } + ] + } + ] } ] }