├── .editorconfig ├── .gitignore ├── .prettierrc ├── README.md ├── do_replace.js ├── examples ├── 001.如何开始.js ├── 002.留下作者信息.js ├── 003.创建自定义扩展.js ├── 004.写一条自定义指令.js ├── 005.进行随机.js ├── 006.抽取牌堆&调用自定义文案.js ├── 007.存储数据.js ├── 008.读取玩家或群组数据.js ├── 009.编写暗骰指令.js ├── 010.编写代骰指令.js ├── 011.网络请求.js ├── 012.自定义COC规则.js └── 013.自定义TRPG游戏规则.js ├── examples_ts ├── 002.留下作者信息.ts ├── 004.写一条自定义指令.ts ├── 006.抽取牌堆&调用自定义文案.ts ├── 007.存储数据.ts ├── 008.读取玩家或群组数据.ts ├── 010.编写代骰指令.ts ├── 011.网络请求.ts ├── 012.自定义COC规则.ts ├── 013.自定义TRPG游戏规则.ts └── seal.d.ts ├── package.json ├── scripts ├── .gitkeep ├── 其他 │ ├── .gitkeep │ ├── anchor.js │ ├── anko-thread.js │ ├── clue.js │ ├── inventory.js │ ├── nameweb.js │ ├── teamup.js │ ├── timeline.js │ ├── 官方机器人使用说明.js │ ├── 空白st show.js │ ├── 跑团进度条.js │ ├── 骰主公告插件_重置版v1.0.1re.js │ └── 骰主公告插件v.1.1.2.js ├── 娱乐向 │ ├── .gitkeep │ ├── BV号解析.js │ ├── BV解析(关键词识别版).js │ ├── base64编码解码.js │ ├── blackjack.js │ ├── chatgpt │ │ ├── README.md │ │ ├── chatgpt.js │ │ ├── chatgpt_api.py │ │ └── chatgpt_official_api.py │ ├── dicemaid-ai.js │ ├── emojikitchen.js │ ├── latex │ │ ├── README.md │ │ ├── latex.js │ │ └── png_to_jpg.py │ ├── sxcx.js │ ├── 一言.js │ ├── 俄罗斯轮盘赌.js │ ├── 天气.js │ ├── 定时任务2.0.0.js │ ├── 每日新闻与历史上的今天(图片api调用示例).js │ ├── 每日新闻与历史上的今天与摸鱼人日历.js │ ├── 每日新闻自动版2.0.0.js │ ├── 游戏王查卡.js │ ├── 点歌.js │ ├── 试作:排序.js │ └── 随机猫猫图片.js └── 桌游规则 │ ├── .gitkeep │ ├── DG人物作成.js │ ├── DND5e施法辅助(deno) │ ├── js │ │ └── spell.js │ └── server │ │ ├── data │ │ └── spells-phb.json │ │ ├── match_spell.ts │ │ ├── match_spell_test.ts │ │ ├── read_data.ts │ │ ├── readme.md │ │ └── spells.ts │ ├── SwordWorld2_5.js │ ├── ark.js │ ├── arkdice人物作成.js │ ├── bcdice.js │ ├── brp规则及使用对抗表对抗.js │ ├── vs.js │ ├── 北欧奇谭规则检定.js │ └── 魔法猫猫救世界游戏规则.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/README.md -------------------------------------------------------------------------------- /do_replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/do_replace.js -------------------------------------------------------------------------------- /examples/001.如何开始.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples/001.如何开始.js -------------------------------------------------------------------------------- /examples/002.留下作者信息.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples/002.留下作者信息.js -------------------------------------------------------------------------------- /examples/003.创建自定义扩展.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples/003.创建自定义扩展.js -------------------------------------------------------------------------------- /examples/004.写一条自定义指令.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples/004.写一条自定义指令.js -------------------------------------------------------------------------------- /examples/005.进行随机.js: -------------------------------------------------------------------------------- 1 | // TODO 2 | -------------------------------------------------------------------------------- /examples/006.抽取牌堆&调用自定义文案.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples/006.抽取牌堆&调用自定义文案.js -------------------------------------------------------------------------------- /examples/007.存储数据.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples/007.存储数据.js -------------------------------------------------------------------------------- /examples/008.读取玩家或群组数据.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples/008.读取玩家或群组数据.js -------------------------------------------------------------------------------- /examples/009.编写暗骰指令.js: -------------------------------------------------------------------------------- 1 | // TODO 2 | -------------------------------------------------------------------------------- /examples/010.编写代骰指令.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples/010.编写代骰指令.js -------------------------------------------------------------------------------- /examples/011.网络请求.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples/011.网络请求.js -------------------------------------------------------------------------------- /examples/012.自定义COC规则.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples/012.自定义COC规则.js -------------------------------------------------------------------------------- /examples/013.自定义TRPG游戏规则.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples/013.自定义TRPG游戏规则.js -------------------------------------------------------------------------------- /examples_ts/002.留下作者信息.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples_ts/002.留下作者信息.ts -------------------------------------------------------------------------------- /examples_ts/004.写一条自定义指令.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples_ts/004.写一条自定义指令.ts -------------------------------------------------------------------------------- /examples_ts/006.抽取牌堆&调用自定义文案.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples_ts/006.抽取牌堆&调用自定义文案.ts -------------------------------------------------------------------------------- /examples_ts/007.存储数据.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples_ts/007.存储数据.ts -------------------------------------------------------------------------------- /examples_ts/008.读取玩家或群组数据.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples_ts/008.读取玩家或群组数据.ts -------------------------------------------------------------------------------- /examples_ts/010.编写代骰指令.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples_ts/010.编写代骰指令.ts -------------------------------------------------------------------------------- /examples_ts/011.网络请求.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples_ts/011.网络请求.ts -------------------------------------------------------------------------------- /examples_ts/012.自定义COC规则.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples_ts/012.自定义COC规则.ts -------------------------------------------------------------------------------- /examples_ts/013.自定义TRPG游戏规则.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples_ts/013.自定义TRPG游戏规则.ts -------------------------------------------------------------------------------- /examples_ts/seal.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/examples_ts/seal.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/package.json -------------------------------------------------------------------------------- /scripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/其他/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/其他/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/其他/anchor.js -------------------------------------------------------------------------------- /scripts/其他/anko-thread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/其他/anko-thread.js -------------------------------------------------------------------------------- /scripts/其他/clue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/其他/clue.js -------------------------------------------------------------------------------- /scripts/其他/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/其他/inventory.js -------------------------------------------------------------------------------- /scripts/其他/nameweb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/其他/nameweb.js -------------------------------------------------------------------------------- /scripts/其他/teamup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/其他/teamup.js -------------------------------------------------------------------------------- /scripts/其他/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/其他/timeline.js -------------------------------------------------------------------------------- /scripts/其他/官方机器人使用说明.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/其他/官方机器人使用说明.js -------------------------------------------------------------------------------- /scripts/其他/空白st show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/其他/空白st show.js -------------------------------------------------------------------------------- /scripts/其他/跑团进度条.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/其他/跑团进度条.js -------------------------------------------------------------------------------- /scripts/其他/骰主公告插件_重置版v1.0.1re.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/其他/骰主公告插件_重置版v1.0.1re.js -------------------------------------------------------------------------------- /scripts/其他/骰主公告插件v.1.1.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/其他/骰主公告插件v.1.1.2.js -------------------------------------------------------------------------------- /scripts/娱乐向/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/娱乐向/BV号解析.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/BV号解析.js -------------------------------------------------------------------------------- /scripts/娱乐向/BV解析(关键词识别版).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/BV解析(关键词识别版).js -------------------------------------------------------------------------------- /scripts/娱乐向/base64编码解码.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/base64编码解码.js -------------------------------------------------------------------------------- /scripts/娱乐向/blackjack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/blackjack.js -------------------------------------------------------------------------------- /scripts/娱乐向/chatgpt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/chatgpt/README.md -------------------------------------------------------------------------------- /scripts/娱乐向/chatgpt/chatgpt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/chatgpt/chatgpt.js -------------------------------------------------------------------------------- /scripts/娱乐向/chatgpt/chatgpt_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/chatgpt/chatgpt_api.py -------------------------------------------------------------------------------- /scripts/娱乐向/chatgpt/chatgpt_official_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/chatgpt/chatgpt_official_api.py -------------------------------------------------------------------------------- /scripts/娱乐向/dicemaid-ai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/dicemaid-ai.js -------------------------------------------------------------------------------- /scripts/娱乐向/emojikitchen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/emojikitchen.js -------------------------------------------------------------------------------- /scripts/娱乐向/latex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/latex/README.md -------------------------------------------------------------------------------- /scripts/娱乐向/latex/latex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/latex/latex.js -------------------------------------------------------------------------------- /scripts/娱乐向/latex/png_to_jpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/latex/png_to_jpg.py -------------------------------------------------------------------------------- /scripts/娱乐向/sxcx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/sxcx.js -------------------------------------------------------------------------------- /scripts/娱乐向/一言.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/一言.js -------------------------------------------------------------------------------- /scripts/娱乐向/俄罗斯轮盘赌.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/俄罗斯轮盘赌.js -------------------------------------------------------------------------------- /scripts/娱乐向/天气.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/天气.js -------------------------------------------------------------------------------- /scripts/娱乐向/定时任务2.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/定时任务2.0.0.js -------------------------------------------------------------------------------- /scripts/娱乐向/每日新闻与历史上的今天(图片api调用示例).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/每日新闻与历史上的今天(图片api调用示例).js -------------------------------------------------------------------------------- /scripts/娱乐向/每日新闻与历史上的今天与摸鱼人日历.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/每日新闻与历史上的今天与摸鱼人日历.js -------------------------------------------------------------------------------- /scripts/娱乐向/每日新闻自动版2.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/每日新闻自动版2.0.0.js -------------------------------------------------------------------------------- /scripts/娱乐向/游戏王查卡.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/游戏王查卡.js -------------------------------------------------------------------------------- /scripts/娱乐向/点歌.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/点歌.js -------------------------------------------------------------------------------- /scripts/娱乐向/试作:排序.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/试作:排序.js -------------------------------------------------------------------------------- /scripts/娱乐向/随机猫猫图片.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/娱乐向/随机猫猫图片.js -------------------------------------------------------------------------------- /scripts/桌游规则/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/桌游规则/DG人物作成.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/DG人物作成.js -------------------------------------------------------------------------------- /scripts/桌游规则/DND5e施法辅助(deno)/js/spell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/DND5e施法辅助(deno)/js/spell.js -------------------------------------------------------------------------------- /scripts/桌游规则/DND5e施法辅助(deno)/server/data/spells-phb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/DND5e施法辅助(deno)/server/data/spells-phb.json -------------------------------------------------------------------------------- /scripts/桌游规则/DND5e施法辅助(deno)/server/match_spell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/DND5e施法辅助(deno)/server/match_spell.ts -------------------------------------------------------------------------------- /scripts/桌游规则/DND5e施法辅助(deno)/server/match_spell_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/DND5e施法辅助(deno)/server/match_spell_test.ts -------------------------------------------------------------------------------- /scripts/桌游规则/DND5e施法辅助(deno)/server/read_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/DND5e施法辅助(deno)/server/read_data.ts -------------------------------------------------------------------------------- /scripts/桌游规则/DND5e施法辅助(deno)/server/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/DND5e施法辅助(deno)/server/readme.md -------------------------------------------------------------------------------- /scripts/桌游规则/DND5e施法辅助(deno)/server/spells.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/DND5e施法辅助(deno)/server/spells.ts -------------------------------------------------------------------------------- /scripts/桌游规则/SwordWorld2_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/SwordWorld2_5.js -------------------------------------------------------------------------------- /scripts/桌游规则/ark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/ark.js -------------------------------------------------------------------------------- /scripts/桌游规则/arkdice人物作成.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/arkdice人物作成.js -------------------------------------------------------------------------------- /scripts/桌游规则/bcdice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/bcdice.js -------------------------------------------------------------------------------- /scripts/桌游规则/brp规则及使用对抗表对抗.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/brp规则及使用对抗表对抗.js -------------------------------------------------------------------------------- /scripts/桌游规则/vs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/vs.js -------------------------------------------------------------------------------- /scripts/桌游规则/北欧奇谭规则检定.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/北欧奇谭规则检定.js -------------------------------------------------------------------------------- /scripts/桌游规则/魔法猫猫救世界游戏规则.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/scripts/桌游规则/魔法猫猫救世界游戏规则.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sealdice/javascript/HEAD/tsconfig.json --------------------------------------------------------------------------------