├── .github └── workflows │ └── page.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── const-dist └── CNAME └── docs ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── src ├── .vuepress │ ├── client.ts │ ├── components │ │ └── group_link.ts │ ├── config.ts │ ├── config │ │ ├── navbar.ts │ │ └── sidebar.ts │ ├── public │ │ ├── favicon.ico │ │ ├── images │ │ │ ├── avatar │ │ │ │ └── yuyuko.webp │ │ │ ├── logo.webp │ │ │ ├── memes │ │ │ │ ├── 5000生成.webp │ │ │ │ ├── Google生成.webp │ │ │ │ ├── axl指.webp │ │ │ │ ├── balogo.webp │ │ │ │ ├── ph生成.webp │ │ │ │ ├── yt生成.webp │ │ │ │ ├── zun举牌.webp │ │ │ │ ├── zun拿牌.webp │ │ │ │ ├── 不叫我是吧.webp │ │ │ │ ├── 不是你老婆.webp │ │ │ │ ├── 不是很礼貌.webp │ │ │ │ ├── 为什么艾特我.webp │ │ │ │ ├── 亲个.webp │ │ │ │ ├── 你可能需要.webp │ │ │ │ ├── 像样的亲亲.webp │ │ │ │ ├── 别被拐了.webp │ │ │ │ ├── 可达鸭.webp │ │ │ │ ├── 吸个.webp │ │ │ │ ├── 哦不爆炸.webp │ │ │ │ ├── 唱片转.webp │ │ │ │ ├── 啾个.webp │ │ │ │ ├── 喜报.webp │ │ │ │ ├── 回去干活.webp │ │ │ │ ├── 头像生成.webp │ │ │ │ ├── 奥利奥生成.webp │ │ │ │ ├── 完美的东西.webp │ │ │ │ ├── 小伞举牌.webp │ │ │ │ ├── 恰个.webp │ │ │ │ ├── 悄悄话.webp │ │ │ │ ├── 悲报.webp │ │ │ │ ├── 意见如下.webp │ │ │ │ ├── 我想上的.webp │ │ │ │ ├── 打拳.webp │ │ │ │ ├── 扔个.webp │ │ │ │ ├── 拍个瓜.webp │ │ │ │ ├── 挠头.webp │ │ │ │ ├── 捂脸.webp │ │ │ │ ├── 搓个.webp │ │ │ │ ├── 摸个.webp │ │ │ │ ├── 敲个.webp │ │ │ │ ├── 旅行伙伴加入.webp │ │ │ │ ├── 旅行伙伴觉醒.webp │ │ │ │ ├── 无法加载.webp │ │ │ │ ├── 早苗喊.webp │ │ │ │ ├── 来玩游戏.webp │ │ │ │ ├── 永远爱你.webp │ │ │ │ ├── 沙沙想.webp │ │ │ │ ├── 波奇手稿.webp │ │ │ │ ├── 满脑子都是.webp │ │ │ │ ├── 烧香.webp │ │ │ │ ├── 盔甲破防.webp │ │ │ │ ├── 精神支柱.webp │ │ │ │ ├── 紧抓不放.webp │ │ │ │ ├── 结婚登记.webp │ │ │ │ ├── 给社会添乱.webp │ │ │ │ ├── 脑子无响应.webp │ │ │ │ ├── 膜拜.webp │ │ │ │ ├── 艺术签名.webp │ │ │ │ ├── 虹夏举牌.webp │ │ │ │ ├── 被看扁了.webp │ │ │ │ ├── 要我一直.webp │ │ │ │ ├── 让xx告诉你吧.webp │ │ │ │ ├── 诺基亚生成.webp │ │ │ │ ├── 追火车.webp │ │ │ │ ├── 金龙盘旋.webp │ │ │ │ ├── 金龙飞升.webp │ │ │ │ ├── 钻出垃圾桶.webp │ │ │ │ ├── 锤个.webp │ │ │ │ ├── 阿尼亚喜欢.webp │ │ │ │ ├── 顶个.webp │ │ │ │ ├── 高血压.webp │ │ │ │ └── 鼓个掌.webp │ │ │ ├── pjsk │ │ │ │ ├── pjsk123.webp │ │ │ │ └── pjsk233.webp │ │ │ ├── random_meme │ │ │ │ ├── 0721.webp │ │ │ │ ├── all_padoru.webp │ │ │ │ ├── anya.webp │ │ │ │ ├── arako_noriko.webp │ │ │ │ ├── ba.webp │ │ │ │ ├── beifang.webp │ │ │ │ ├── bocchi.webp │ │ │ │ ├── capoo.webp │ │ │ │ ├── cat.webp │ │ │ │ ├── cecilia.webp │ │ │ │ ├── cheshire.webp │ │ │ │ ├── cirno.webp │ │ │ │ ├── derby.webp │ │ │ │ ├── doro.webp │ │ │ │ ├── eveonecat.webp │ │ │ │ ├── frieren.webp │ │ │ │ ├── fufu.webp │ │ │ │ ├── fumo.webp │ │ │ │ ├── gal.webp │ │ │ │ ├── gbc.webp │ │ │ │ ├── jashin-chan.webp │ │ │ │ ├── kagura_nana.webp │ │ │ │ ├── karabichu.webp │ │ │ │ ├── kemomimi.webp │ │ │ │ ├── konata.webp │ │ │ │ ├── lily_white.webp │ │ │ │ ├── mahiro.webp │ │ │ │ ├── mygo.webp │ │ │ │ ├── natsuki.webp │ │ │ │ ├── nonnonbiyori.webp │ │ │ │ ├── padoru.webp │ │ │ │ ├── parakeet.webp │ │ │ │ ├── sheri.webp │ │ │ │ ├── taffy.webp │ │ │ │ └── zspms.webp │ │ │ └── sponsor │ │ │ │ ├── alipay_all.webp │ │ │ │ ├── qq2.webp │ │ │ │ └── qq_next.webp │ │ ├── miniapp │ │ │ ├── help_data.json │ │ │ ├── yuyuko_festival.jpg │ │ │ ├── yuyuko_qrcode.jpg │ │ │ ├── yuyuko_share_default.png │ │ │ └── yuyuko_small_qrcode.png │ │ └── robots.txt │ ├── styles │ │ ├── config.scss │ │ ├── index.scss │ │ └── palette.scss │ └── theme.ts ├── FAQ │ └── README.md ├── README.md ├── about │ ├── botlist.md │ ├── contribute │ │ └── docs.md │ ├── glossary.md │ ├── index.md │ ├── instructions.md │ ├── sponsor.md │ ├── wechat1-20250405.webp │ └── wechat2-20250405.webp ├── changelog │ ├── README.md │ ├── next.md │ ├── v6.0.0-beta23.md │ ├── v6.0.0-rc1.md │ ├── v6.0.0-rc2.md │ ├── v6.0.0-rc3.md │ ├── v6.0.0-rc4.md │ ├── v6.0.0.md │ ├── v6.1.0.md │ ├── v6.10.0.md │ ├── v6.2.0.md │ ├── v6.3.0.md │ ├── v6.4.0.md │ ├── v6.5.0.md │ ├── v6.6.0.md │ ├── v6.7.0.md │ ├── v6.8.0.md │ └── v6.9.0.md ├── function │ ├── README.md │ ├── admin │ │ ├── README.md │ │ ├── event_limit.md │ │ ├── follow_delete.md │ │ ├── group_action.md │ │ ├── group_manager.md │ │ ├── invite_request.md │ │ ├── load_balance.md │ │ ├── platform.md │ │ ├── plugin_manager.md │ │ ├── plugin_manager_bot.md │ │ ├── task_manager.md │ │ └── user_interaction.md │ ├── img │ │ ├── README.md │ │ ├── img2url.md │ │ ├── img_deeper.md │ │ ├── img_editor.md │ │ ├── img_meme.md │ │ ├── img_recognition.md │ │ ├── img_search.md │ │ ├── meme_searcher.md │ │ ├── pixiv_plugin.md │ │ ├── random_meme.md │ │ ├── rgb.md │ │ ├── safebooru.md │ │ └── stickers.md │ ├── play │ │ ├── README.md │ │ ├── asoul.md │ │ ├── char_reverse.md │ │ ├── crazy_thursday.md │ │ ├── draw_card.md │ │ ├── emoji_idiom.md │ │ ├── emoji_mix.md │ │ ├── fabing.md │ │ ├── fantasy.md │ │ ├── handle.md │ │ ├── help_choose.md │ │ ├── hitokoto.md │ │ ├── httpcat.md │ │ ├── minesweeper.md │ │ ├── modern_word.md │ │ ├── poem_writer.md │ │ ├── remake.md │ │ ├── riddle.md │ │ ├── saying.md │ │ ├── shindanmaker.md │ │ ├── tarot.md │ │ ├── today_luck.md │ │ ├── voice.md │ │ ├── what2eat.md │ │ └── wordle.md │ ├── query │ │ ├── README.md │ │ ├── bilibili.md │ │ ├── earthquake.md │ │ ├── garbage.md │ │ ├── github.md │ │ ├── hypixel.md │ │ ├── idiom.md │ │ ├── maps.md │ │ ├── minecraft.md │ │ ├── orange_juice.md │ │ ├── patchyvideo.md │ │ ├── shadowverse.md │ │ ├── steam.md │ │ ├── weibo.md │ │ ├── wiki.md │ │ └── ygo.md │ ├── touhou │ │ ├── README.md │ │ ├── random_scene.md │ │ ├── random_shion.md │ │ ├── random_touhou.md │ │ ├── touhou_date.md │ │ ├── touhou_doujin.md │ │ ├── touhou_genson_shinju.md │ │ ├── touhou_grass.md │ │ ├── touhou_guess.md │ │ ├── touhou_music.md │ │ ├── touhou_news.md │ │ ├── touhou_quiz.md │ │ ├── touhou_spellcard.md │ │ ├── touhou_sticker.md │ │ └── yunmengdu.md │ └── useful │ │ ├── 60s.md │ │ ├── README.md │ │ ├── aminer.md │ │ ├── chatai.md │ │ ├── chemical.md │ │ ├── countdown.md │ │ ├── dice.md │ │ ├── everyday_en.md │ │ ├── exchange_rate.md │ │ ├── lang_plugin.md │ │ ├── math.md │ │ ├── music.md │ │ ├── ncm_plugin.md │ │ ├── run_code.md │ │ ├── schedule_reminder.md │ │ ├── search.md │ │ ├── shortof.md │ │ ├── tongue_twister.md │ │ ├── translate.md │ │ ├── useful.md │ │ ├── wantwords.md │ │ ├── weather.md │ │ └── wordcloud.md └── start │ └── README.md └── tsconfig.json /.github/workflows/page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/.github/workflows/page.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.tabSize": 2 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/README.md -------------------------------------------------------------------------------- /const-dist/CNAME: -------------------------------------------------------------------------------- 1 | gh-pages.yunmengdu.cn -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/pnpm-lock.yaml -------------------------------------------------------------------------------- /docs/src/.vuepress/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/client.ts -------------------------------------------------------------------------------- /docs/src/.vuepress/components/group_link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/components/group_link.ts -------------------------------------------------------------------------------- /docs/src/.vuepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/config.ts -------------------------------------------------------------------------------- /docs/src/.vuepress/config/navbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/config/navbar.ts -------------------------------------------------------------------------------- /docs/src/.vuepress/config/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/config/sidebar.ts -------------------------------------------------------------------------------- /docs/src/.vuepress/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/favicon.ico -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/avatar/yuyuko.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/avatar/yuyuko.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/logo.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/5000生成.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/5000生成.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/Google生成.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/Google生成.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/axl指.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/axl指.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/balogo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/balogo.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/ph生成.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/ph生成.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/yt生成.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/yt生成.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/zun举牌.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/zun举牌.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/zun拿牌.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/zun拿牌.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/不叫我是吧.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/不叫我是吧.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/不是你老婆.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/不是你老婆.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/不是很礼貌.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/不是很礼貌.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/为什么艾特我.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/为什么艾特我.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/亲个.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/亲个.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/你可能需要.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/你可能需要.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/像样的亲亲.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/像样的亲亲.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/别被拐了.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/别被拐了.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/可达鸭.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/可达鸭.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/吸个.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/吸个.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/哦不爆炸.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/哦不爆炸.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/唱片转.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/唱片转.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/啾个.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/啾个.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/喜报.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/喜报.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/回去干活.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/回去干活.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/头像生成.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/头像生成.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/奥利奥生成.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/奥利奥生成.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/完美的东西.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/完美的东西.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/小伞举牌.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/小伞举牌.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/恰个.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/恰个.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/悄悄话.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/悄悄话.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/悲报.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/悲报.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/意见如下.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/意见如下.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/我想上的.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/我想上的.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/打拳.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/打拳.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/扔个.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/扔个.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/拍个瓜.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/拍个瓜.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/挠头.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/挠头.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/捂脸.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/捂脸.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/搓个.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/搓个.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/摸个.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/摸个.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/敲个.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/敲个.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/旅行伙伴加入.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/旅行伙伴加入.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/旅行伙伴觉醒.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/旅行伙伴觉醒.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/无法加载.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/无法加载.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/早苗喊.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/早苗喊.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/来玩游戏.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/来玩游戏.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/永远爱你.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/永远爱你.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/沙沙想.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/沙沙想.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/波奇手稿.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/波奇手稿.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/满脑子都是.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/满脑子都是.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/烧香.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/烧香.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/盔甲破防.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/盔甲破防.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/精神支柱.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/精神支柱.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/紧抓不放.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/紧抓不放.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/结婚登记.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/结婚登记.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/给社会添乱.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/给社会添乱.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/脑子无响应.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/脑子无响应.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/膜拜.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/膜拜.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/艺术签名.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/艺术签名.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/虹夏举牌.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/虹夏举牌.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/被看扁了.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/被看扁了.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/要我一直.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/要我一直.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/让xx告诉你吧.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/让xx告诉你吧.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/诺基亚生成.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/诺基亚生成.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/追火车.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/追火车.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/金龙盘旋.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/金龙盘旋.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/金龙飞升.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/金龙飞升.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/钻出垃圾桶.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/钻出垃圾桶.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/锤个.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/锤个.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/阿尼亚喜欢.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/阿尼亚喜欢.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/顶个.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/顶个.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/高血压.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/高血压.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/memes/鼓个掌.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/memes/鼓个掌.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/pjsk/pjsk123.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/pjsk/pjsk123.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/pjsk/pjsk233.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/pjsk/pjsk233.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/0721.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/0721.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/all_padoru.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/all_padoru.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/anya.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/anya.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/arako_noriko.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/arako_noriko.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/ba.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/ba.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/beifang.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/beifang.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/bocchi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/bocchi.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/capoo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/capoo.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/cat.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/cat.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/cecilia.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/cecilia.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/cheshire.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/cheshire.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/cirno.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/cirno.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/derby.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/derby.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/doro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/doro.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/eveonecat.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/eveonecat.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/frieren.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/frieren.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/fufu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/fufu.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/fumo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/fumo.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/gal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/gal.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/gbc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/gbc.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/jashin-chan.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/jashin-chan.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/kagura_nana.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/kagura_nana.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/karabichu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/karabichu.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/kemomimi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/kemomimi.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/konata.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/konata.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/lily_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/lily_white.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/mahiro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/mahiro.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/mygo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/mygo.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/natsuki.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/natsuki.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/nonnonbiyori.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/nonnonbiyori.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/padoru.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/padoru.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/parakeet.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/parakeet.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/sheri.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/sheri.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/taffy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/taffy.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/random_meme/zspms.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/random_meme/zspms.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/sponsor/alipay_all.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/sponsor/alipay_all.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/sponsor/qq2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/sponsor/qq2.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/images/sponsor/qq_next.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/images/sponsor/qq_next.webp -------------------------------------------------------------------------------- /docs/src/.vuepress/public/miniapp/help_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/miniapp/help_data.json -------------------------------------------------------------------------------- /docs/src/.vuepress/public/miniapp/yuyuko_festival.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/miniapp/yuyuko_festival.jpg -------------------------------------------------------------------------------- /docs/src/.vuepress/public/miniapp/yuyuko_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/miniapp/yuyuko_qrcode.jpg -------------------------------------------------------------------------------- /docs/src/.vuepress/public/miniapp/yuyuko_share_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/miniapp/yuyuko_share_default.png -------------------------------------------------------------------------------- /docs/src/.vuepress/public/miniapp/yuyuko_small_qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/miniapp/yuyuko_small_qrcode.png -------------------------------------------------------------------------------- /docs/src/.vuepress/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/public/robots.txt -------------------------------------------------------------------------------- /docs/src/.vuepress/styles/config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/styles/config.scss -------------------------------------------------------------------------------- /docs/src/.vuepress/styles/index.scss: -------------------------------------------------------------------------------- 1 | // place your custom styles here 2 | -------------------------------------------------------------------------------- /docs/src/.vuepress/styles/palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/styles/palette.scss -------------------------------------------------------------------------------- /docs/src/.vuepress/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/.vuepress/theme.ts -------------------------------------------------------------------------------- /docs/src/FAQ/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/FAQ/README.md -------------------------------------------------------------------------------- /docs/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/README.md -------------------------------------------------------------------------------- /docs/src/about/botlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/about/botlist.md -------------------------------------------------------------------------------- /docs/src/about/contribute/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/about/contribute/docs.md -------------------------------------------------------------------------------- /docs/src/about/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/about/glossary.md -------------------------------------------------------------------------------- /docs/src/about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/about/index.md -------------------------------------------------------------------------------- /docs/src/about/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/about/instructions.md -------------------------------------------------------------------------------- /docs/src/about/sponsor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/about/sponsor.md -------------------------------------------------------------------------------- /docs/src/about/wechat1-20250405.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/about/wechat1-20250405.webp -------------------------------------------------------------------------------- /docs/src/about/wechat2-20250405.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/about/wechat2-20250405.webp -------------------------------------------------------------------------------- /docs/src/changelog/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | icon: clock 3 | --- 4 | 5 | # 更新日志 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/src/changelog/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/changelog/next.md -------------------------------------------------------------------------------- /docs/src/changelog/v6.0.0-beta23.md: -------------------------------------------------------------------------------- 1 | # v6.0.0-beta23 2 | 3 | ::: warning 4 | 本节目前还在施工中 5 | ::: 6 | -------------------------------------------------------------------------------- /docs/src/changelog/v6.0.0-rc1.md: -------------------------------------------------------------------------------- 1 | # v6.0.0-rc1 2 | 3 | ::: warning 4 | 本节目前还在施工中 5 | ::: 6 | -------------------------------------------------------------------------------- /docs/src/changelog/v6.0.0-rc2.md: -------------------------------------------------------------------------------- 1 | # v6.0.0-rc2 2 | 3 | ::: warning 4 | 本节目前还在施工中 5 | ::: 6 | -------------------------------------------------------------------------------- /docs/src/changelog/v6.0.0-rc3.md: -------------------------------------------------------------------------------- 1 | # v6.0.0-rc3 2 | 3 | ::: warning 4 | 本节目前还在施工中 5 | ::: 6 | -------------------------------------------------------------------------------- /docs/src/changelog/v6.0.0-rc4.md: -------------------------------------------------------------------------------- 1 | # v6.0.0-rc4 2 | 3 | ::: warning 4 | 本节目前还在施工中 5 | ::: 6 | -------------------------------------------------------------------------------- /docs/src/changelog/v6.0.0.md: -------------------------------------------------------------------------------- 1 | # v6.0.0 2 | 3 | ::: warning 4 | 本节目前还在施工中 5 | ::: 6 | -------------------------------------------------------------------------------- /docs/src/changelog/v6.1.0.md: -------------------------------------------------------------------------------- 1 | # v6.1.0 2 | 3 | ::: warning 4 | 本节目前还在施工中 5 | ::: 6 | -------------------------------------------------------------------------------- /docs/src/changelog/v6.10.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/changelog/v6.10.0.md -------------------------------------------------------------------------------- /docs/src/changelog/v6.2.0.md: -------------------------------------------------------------------------------- 1 | # v6.2.0 2 | 3 | ::: warning 4 | 本节目前还在施工中 5 | ::: 6 | -------------------------------------------------------------------------------- /docs/src/changelog/v6.3.0.md: -------------------------------------------------------------------------------- 1 | # v6.3.0 2 | 3 | ::: warning 4 | 本节目前还在施工中 5 | ::: 6 | -------------------------------------------------------------------------------- /docs/src/changelog/v6.4.0.md: -------------------------------------------------------------------------------- 1 | # v6.4.0 2 | 3 | ::: warning 4 | 本节目前还在施工中 5 | ::: 6 | -------------------------------------------------------------------------------- /docs/src/changelog/v6.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/changelog/v6.5.0.md -------------------------------------------------------------------------------- /docs/src/changelog/v6.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/changelog/v6.6.0.md -------------------------------------------------------------------------------- /docs/src/changelog/v6.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/changelog/v6.7.0.md -------------------------------------------------------------------------------- /docs/src/changelog/v6.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/changelog/v6.8.0.md -------------------------------------------------------------------------------- /docs/src/changelog/v6.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/changelog/v6.9.0.md -------------------------------------------------------------------------------- /docs/src/function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/README.md -------------------------------------------------------------------------------- /docs/src/function/admin/README.md: -------------------------------------------------------------------------------- 1 | # 🛠️管理功能 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/src/function/admin/event_limit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/admin/event_limit.md -------------------------------------------------------------------------------- /docs/src/function/admin/follow_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/admin/follow_delete.md -------------------------------------------------------------------------------- /docs/src/function/admin/group_action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/admin/group_action.md -------------------------------------------------------------------------------- /docs/src/function/admin/group_manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/admin/group_manager.md -------------------------------------------------------------------------------- /docs/src/function/admin/invite_request.md: -------------------------------------------------------------------------------- 1 | # 好友/邀请请求处理 2 | 3 | :::info 4 | 担保群聊等相关功能尚未开放 5 | ::: 6 | -------------------------------------------------------------------------------- /docs/src/function/admin/load_balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/admin/load_balance.md -------------------------------------------------------------------------------- /docs/src/function/admin/platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/admin/platform.md -------------------------------------------------------------------------------- /docs/src/function/admin/plugin_manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/admin/plugin_manager.md -------------------------------------------------------------------------------- /docs/src/function/admin/plugin_manager_bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/admin/plugin_manager_bot.md -------------------------------------------------------------------------------- /docs/src/function/admin/task_manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/admin/task_manager.md -------------------------------------------------------------------------------- /docs/src/function/admin/user_interaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/admin/user_interaction.md -------------------------------------------------------------------------------- /docs/src/function/img/README.md: -------------------------------------------------------------------------------- 1 | # 🎨图片功能 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/src/function/img/img2url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/img/img2url.md -------------------------------------------------------------------------------- /docs/src/function/img/img_deeper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/img/img_deeper.md -------------------------------------------------------------------------------- /docs/src/function/img/img_editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/img/img_editor.md -------------------------------------------------------------------------------- /docs/src/function/img/img_meme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/img/img_meme.md -------------------------------------------------------------------------------- /docs/src/function/img/img_recognition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/img/img_recognition.md -------------------------------------------------------------------------------- /docs/src/function/img/img_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/img/img_search.md -------------------------------------------------------------------------------- /docs/src/function/img/meme_searcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/img/meme_searcher.md -------------------------------------------------------------------------------- /docs/src/function/img/pixiv_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/img/pixiv_plugin.md -------------------------------------------------------------------------------- /docs/src/function/img/random_meme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/img/random_meme.md -------------------------------------------------------------------------------- /docs/src/function/img/rgb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/img/rgb.md -------------------------------------------------------------------------------- /docs/src/function/img/safebooru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/img/safebooru.md -------------------------------------------------------------------------------- /docs/src/function/img/stickers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/img/stickers.md -------------------------------------------------------------------------------- /docs/src/function/play/README.md: -------------------------------------------------------------------------------- 1 | # 🎈娱乐功能 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/src/function/play/asoul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/asoul.md -------------------------------------------------------------------------------- /docs/src/function/play/char_reverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/char_reverse.md -------------------------------------------------------------------------------- /docs/src/function/play/crazy_thursday.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/crazy_thursday.md -------------------------------------------------------------------------------- /docs/src/function/play/draw_card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/draw_card.md -------------------------------------------------------------------------------- /docs/src/function/play/emoji_idiom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/emoji_idiom.md -------------------------------------------------------------------------------- /docs/src/function/play/emoji_mix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/emoji_mix.md -------------------------------------------------------------------------------- /docs/src/function/play/fabing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/fabing.md -------------------------------------------------------------------------------- /docs/src/function/play/fantasy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/fantasy.md -------------------------------------------------------------------------------- /docs/src/function/play/handle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/handle.md -------------------------------------------------------------------------------- /docs/src/function/play/help_choose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/help_choose.md -------------------------------------------------------------------------------- /docs/src/function/play/hitokoto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/hitokoto.md -------------------------------------------------------------------------------- /docs/src/function/play/httpcat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/httpcat.md -------------------------------------------------------------------------------- /docs/src/function/play/minesweeper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/minesweeper.md -------------------------------------------------------------------------------- /docs/src/function/play/modern_word.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/modern_word.md -------------------------------------------------------------------------------- /docs/src/function/play/poem_writer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/poem_writer.md -------------------------------------------------------------------------------- /docs/src/function/play/remake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/remake.md -------------------------------------------------------------------------------- /docs/src/function/play/riddle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/riddle.md -------------------------------------------------------------------------------- /docs/src/function/play/saying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/saying.md -------------------------------------------------------------------------------- /docs/src/function/play/shindanmaker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/shindanmaker.md -------------------------------------------------------------------------------- /docs/src/function/play/tarot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/tarot.md -------------------------------------------------------------------------------- /docs/src/function/play/today_luck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/today_luck.md -------------------------------------------------------------------------------- /docs/src/function/play/voice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/voice.md -------------------------------------------------------------------------------- /docs/src/function/play/what2eat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/what2eat.md -------------------------------------------------------------------------------- /docs/src/function/play/wordle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/play/wordle.md -------------------------------------------------------------------------------- /docs/src/function/query/README.md: -------------------------------------------------------------------------------- 1 | # 🔍查询数据 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/src/function/query/bilibili.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/query/bilibili.md -------------------------------------------------------------------------------- /docs/src/function/query/earthquake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/query/earthquake.md -------------------------------------------------------------------------------- /docs/src/function/query/garbage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/query/garbage.md -------------------------------------------------------------------------------- /docs/src/function/query/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/query/github.md -------------------------------------------------------------------------------- /docs/src/function/query/hypixel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/query/hypixel.md -------------------------------------------------------------------------------- /docs/src/function/query/idiom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/query/idiom.md -------------------------------------------------------------------------------- /docs/src/function/query/maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/query/maps.md -------------------------------------------------------------------------------- /docs/src/function/query/minecraft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/query/minecraft.md -------------------------------------------------------------------------------- /docs/src/function/query/orange_juice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/query/orange_juice.md -------------------------------------------------------------------------------- /docs/src/function/query/patchyvideo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/query/patchyvideo.md -------------------------------------------------------------------------------- /docs/src/function/query/shadowverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/query/shadowverse.md -------------------------------------------------------------------------------- /docs/src/function/query/steam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/query/steam.md -------------------------------------------------------------------------------- /docs/src/function/query/weibo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/query/weibo.md -------------------------------------------------------------------------------- /docs/src/function/query/wiki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/query/wiki.md -------------------------------------------------------------------------------- /docs/src/function/query/ygo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/query/ygo.md -------------------------------------------------------------------------------- /docs/src/function/touhou/README.md: -------------------------------------------------------------------------------- 1 | # ⛩️东方相关 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/src/function/touhou/random_scene.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/touhou/random_scene.md -------------------------------------------------------------------------------- /docs/src/function/touhou/random_shion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/touhou/random_shion.md -------------------------------------------------------------------------------- /docs/src/function/touhou/random_touhou.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/touhou/random_touhou.md -------------------------------------------------------------------------------- /docs/src/function/touhou/touhou_date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/touhou/touhou_date.md -------------------------------------------------------------------------------- /docs/src/function/touhou/touhou_doujin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/touhou/touhou_doujin.md -------------------------------------------------------------------------------- /docs/src/function/touhou/touhou_genson_shinju.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/touhou/touhou_genson_shinju.md -------------------------------------------------------------------------------- /docs/src/function/touhou/touhou_grass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/touhou/touhou_grass.md -------------------------------------------------------------------------------- /docs/src/function/touhou/touhou_guess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/touhou/touhou_guess.md -------------------------------------------------------------------------------- /docs/src/function/touhou/touhou_music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/touhou/touhou_music.md -------------------------------------------------------------------------------- /docs/src/function/touhou/touhou_news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/touhou/touhou_news.md -------------------------------------------------------------------------------- /docs/src/function/touhou/touhou_quiz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/touhou/touhou_quiz.md -------------------------------------------------------------------------------- /docs/src/function/touhou/touhou_spellcard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/touhou/touhou_spellcard.md -------------------------------------------------------------------------------- /docs/src/function/touhou/touhou_sticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/touhou/touhou_sticker.md -------------------------------------------------------------------------------- /docs/src/function/touhou/yunmengdu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/touhou/yunmengdu.md -------------------------------------------------------------------------------- /docs/src/function/useful/60s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/60s.md -------------------------------------------------------------------------------- /docs/src/function/useful/README.md: -------------------------------------------------------------------------------- 1 | # 🌐实用功能 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/src/function/useful/aminer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/aminer.md -------------------------------------------------------------------------------- /docs/src/function/useful/chatai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/chatai.md -------------------------------------------------------------------------------- /docs/src/function/useful/chemical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/chemical.md -------------------------------------------------------------------------------- /docs/src/function/useful/countdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/countdown.md -------------------------------------------------------------------------------- /docs/src/function/useful/dice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/dice.md -------------------------------------------------------------------------------- /docs/src/function/useful/everyday_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/everyday_en.md -------------------------------------------------------------------------------- /docs/src/function/useful/exchange_rate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/exchange_rate.md -------------------------------------------------------------------------------- /docs/src/function/useful/lang_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/lang_plugin.md -------------------------------------------------------------------------------- /docs/src/function/useful/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/math.md -------------------------------------------------------------------------------- /docs/src/function/useful/music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/music.md -------------------------------------------------------------------------------- /docs/src/function/useful/ncm_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/ncm_plugin.md -------------------------------------------------------------------------------- /docs/src/function/useful/run_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/run_code.md -------------------------------------------------------------------------------- /docs/src/function/useful/schedule_reminder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/schedule_reminder.md -------------------------------------------------------------------------------- /docs/src/function/useful/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/search.md -------------------------------------------------------------------------------- /docs/src/function/useful/shortof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/shortof.md -------------------------------------------------------------------------------- /docs/src/function/useful/tongue_twister.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/tongue_twister.md -------------------------------------------------------------------------------- /docs/src/function/useful/translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/translate.md -------------------------------------------------------------------------------- /docs/src/function/useful/useful.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/useful.md -------------------------------------------------------------------------------- /docs/src/function/useful/wantwords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/wantwords.md -------------------------------------------------------------------------------- /docs/src/function/useful/weather.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/weather.md -------------------------------------------------------------------------------- /docs/src/function/useful/wordcloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/function/useful/wordcloud.md -------------------------------------------------------------------------------- /docs/src/start/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/src/start/README.md -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyYuuka/YuukaBot-docs/HEAD/docs/tsconfig.json --------------------------------------------------------------------------------