🎲 骰子大作战 — 六种经典骰子玩法(吹牛、猜红点、猜红蓝、猜大小、猜单双、猜顺子),单人 vs AI + PeerJS 联机,全量中英双语,侧边栏入口打开游戏面板。
安装
# npm 包(预构建)
dsh plugin --profile web add dsh-dice-game
# GitHub 源码(首次需按提示配置 allowBuilds 构建授权后重试)
dsh plugin --profile web add github:zmm863-commits/dsh-dice-game
装任何插件都等于在你的机器上跑第三方代码,权限和你本人一样大——能读你的文件、用你的凭据、访问网络,工具审批管不到它。GitHub 来源的插件还会在安装时执行构建脚本——pnpm 默认拦截,所以安装可能停在 ERR_PNPM_GIT_DEP_PREPARE_NOT_ALLOWED 或 ERR_PNPM_IGNORED_BUILDS;dsh 会打印出需要添加的确切键名,把它加进该 profile 的 pnpm-workspace.yaml 的 allowBuilds 下,重跑一次即可装上。放行构建本身就是一次信任判断:请只安装可信来源,并尽量锁定 commit(github:owner/repo#sha)。
README
🏮 源自中国山西晋城的地方骰子玩法 — These six dice games are traditional folk games from Jincheng, Shanxi, China (中国山西省晋城市). 晋城骰子大作战收录了晋城地区流行的六种经典骰子玩法,是当地茶余饭后、亲友聚会的传统娱乐。

A collection of classic dice games that runs as a DSH Web GUI plugin. The sidebar entry "🎲 骰子大作战" opens the game panel right in the center column.
经典骰子游戏合集,作为 DSH Web GUI 插件运行。侧边栏「🎲 骰子大作战」入口打开游戏面板,直接在中心列游玩。
📌 当前状态:单机版 — Online multiplayer is temporarily disabled (
MP_DISABLED = true); the game runs fully single-player vs AI. Networking will be restored in a later release. 当前为单机版:联机功能暂缓上线(MP_DISABLED),目前为单人 vs AI 模式;后续版本恢复联机。
Games / 玩法
📜 晋城传统玩法 — All six games are played across Jincheng, Shanxi, China.
- Liar's Dice (吹牛) — the classic bluffing dice game, single-player vs AI · 经典吹牛骰子,单人 vs AI
- Guess Red Dots (猜红点) · 晋城特色:①=1分 ④=4分
- Guess Red/Blue (猜红蓝) · 红蓝点对决
- Guess Big/Small (猜大小) · 大小博弈
- Guess Odd/Even (猜单双) · 单双对决
- Guess Straight (猜顺子) · 顺子挑战
The game is pure frontend HTML (assets/index.html + peerjs.min.js + qrcode.min.js), served by the plugin host via the /dice-game/ route, loaded in a center-column iframe. The iframe is an opaque-origin sandbox (no allow-same-origin): the game document is isolated from the DSH GUI and cannot read its DOM, cookies, localStorage, or same-origin APIs. PeerJS/WebRTC online play still works because signaling goes over the PeerJS cloud (wss), which does not require same-origin access.
游戏为纯前端 HTML(assets/index.html + peerjs.min.js + qrcode.min.js),由插件 host 通过 /dice-game/ 路由托管,在中心列 iframe 中加载。iframe 使用不透明源沙箱(无 allow-same-origin):游戏文档与 DSH GUI 完全隔离,无法读取页面 DOM、Cookie、localStorage 或同源 API。PeerJS/WebRTC 联机仍可正常使用,因为信令走 PeerJS 云端(wss),不依赖同源权限。
About / 关于玩法
晋城骰子文化 (Jincheng Dice Culture):
晋城骰子大作战收录的六种玩法均源自中国山西省晋城地区——这里是太行山南端的古城,民间骰子游戏历史悠久。吹牛、猜红点、猜红蓝、猜大小、猜单双、猜顺子,是晋城百姓聚会、待客时喜闻乐见的传统娱乐。本插件将这些地方玩法数字化,让更多人了解晋城的骰子文化。
The six games in Jincheng Dice Battle all originate from Jincheng, Shanxi Province, China — an ancient city at the southern end of the Taihang Mountains with a long folk tradition of dice games. This plugin digitizes these local games so more people can discover Jincheng's dice culture.
Poster / 海报
Bilingual promotional poster (中英双语宣传海报) is included at docs/poster.png.
Install / 安装
dsh plugin --profile web add dsh-dice-game
# or local development:
dsh plugin --profile web add link:/root/软件项目/骰子大作战
Restart dsh web, then click "🎲 骰子大作战" in the sidebar to start playing.
Development / 开发
npm install
npm run build # tsdown build → __ModuleLoader__ client wrap → copy assets
npm run watch # watch mode
⚠️ Client bundle note: the build runs
build.mjsaftertsdown, wrappinglib/client.jsinwindow.__ModuleLoader__.load({ id, factory })— the format DSH's client-modules requires. Do not remove this step, or the web shell fails to boot when the plugin is installed.⚠️ Client bundle 说明:构建在
tsdown之后运行build.mjs,将lib/client.js包装为 DSH client-modules 要求的window.__ModuleLoader__.load({ id, factory })格式。请勿移除该步骤,否则 安装插件后网页 shell 将无法启动。
Project structure / 项目结构
src/
index.ts # Host: /dice-game static route + agent system prompt
client/
index.ts # Client entry: sidebar entry + game panel
controller.ts # Panel open/close state (framework-free)
sidebar-entry.ts# Sidebar entry (DOM injection + MutationObserver self-heal)
mount.ts # Center-column panel (title bar + iframe)
styles.ts # Panel & entry styles (--dsw-* theme vars)
assets/ # Game static assets (copied to lib/assets on build)
build.mjs # __ModuleLoader__ client bundle wrapper
cordis.patch.yml # profile bundle mount patch
docs/ # Poster & promotional assets
Known limitations / 已知限制
- Online multiplayer is temporarily disabled (MP_DISABLED) — single-player only for now · 联机暂缓上线,当前为单机版
- Game is for casual entertainment only — no real money or gambling · 游戏仅为休闲娱乐用途,不含任何真实货币或赌博功能
反馈 / Feedback
有任何问题、建议或想汇报 bug?欢迎在 GitHub 提 issue:
- 🐛 Bug 反馈:描述问题 + 复现步骤 + 截图(如有)
- 💡 功能建议:告诉我们你想加什么玩法或改进
- 💬 一般讨论:任何关于骰子游戏的反馈都欢迎
👉 提交 Issue
📧 联系邮箱:25894126@qq.com
License / 许可
MIT
链接
同类插件
zhu1090093659/dsh-web-ui#packages/dsh-pet★ 6816
常驻界面的鲸鱼娘:随智能体状态切换动画,可摸头互动、喂小鱼干养亲密度,从幼鲸一路养成。
Nagi-ovo/dsh-ads★ 606
2005 年中文站点风格的整活广告插件:侧栏广告/信息流/角落弹窗 + 假关闭叉,素材全虚构。
PC2005-cloud/dsh-pet#dsh-pet★ 536
DSH Web UI 桌面宠物:25 个透明动画、屏幕漫游、点击反应与拖拽,附可复现的素材生成链。
vlln/whale-girl★ 310
桌面宠物(QQ 宠物形态):右下角悬浮、可拖拽/投喂/玩耍。
yyh-001/dsh-meme★ 75
聊天表情包:纯文本斗图、情绪主动发图、像 QQ/微信 一样发图、AI 自动学图、自定义表情包。
Awu12277/dsh-stock-watch★ 71
A 股自选股实时行情盯盘插件:在 DeepSeek Harness(DSH)Web 界面的右上角显示一个可折叠弹窗,实时监控自选股行情、切换分组、查看分时与 K 线、设置买卖目标价。
社区评论
评论公开保存在 GitHub Discussions。加载评论会连接 GitHub 和 Giscus;发表内容需要 GitHub 账号。