@lf_maple/koishi-plugin-phi-plugin-full 0.1.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/core/.github/ISSUE_TEMPLATE/bug.yaml +133 -0
- package/core/.github/ISSUE_TEMPLATE/config.yml +1 -0
- package/core/.github/ISSUE_TEMPLATE/enhancement.yml +44 -0
- package/core/.vscode/c_cpp_properties.json +18 -0
- package/core/.vscode/launch.json +24 -0
- package/core/.vscode/settings.json +59 -0
- package/core/CHANGELOG.md +184 -0
- package/core/LICENSE +674 -0
- package/core/README.md +330 -0
- package/core/README_en.md +285 -0
- package/core/apps/Dan.js +129 -0
- package/core/apps/RankList.js +322 -0
- package/core/apps/aliasProposal.js +223 -0
- package/core/apps/apiSetting.js +592 -0
- package/core/apps/b19.js +1329 -0
- package/core/apps/botClient.js +64 -0
- package/core/apps/chart.js +692 -0
- package/core/apps/guessGame/guessIll.js +821 -0
- package/core/apps/guessGame/guessLetter.js +831 -0
- package/core/apps/guessGame/guessTips.js +254 -0
- package/core/apps/guessGame/letterGameUtils.js +74 -0
- package/core/apps/guessGame.js +214 -0
- package/core/apps/help.js +117 -0
- package/core/apps/manage.js +288 -0
- package/core/apps/market.js +243 -0
- package/core/apps/money.js +1064 -0
- package/core/apps/phisong.js +1418 -0
- package/core/apps/session.js +664 -0
- package/core/apps/setting.js +468 -0
- package/core/apps/update.js +541 -0
- package/core/apps/user.js +968 -0
- package/core/components/Config.js +249 -0
- package/core/components/Data.js +304 -0
- package/core/components/FileWatcherRegistry.js +102 -0
- package/core/components/Logger.js +11 -0
- package/core/components/ProcessCleanup.js +113 -0
- package/core/components/Version.js +56 -0
- package/core/components/YamlReader.js +157 -0
- package/core/components/baseClass.js +287 -0
- package/core/components/common.js +47 -0
- package/core/components/index.js +13 -0
- package/core/components/platform/index.js +79 -0
- package/core/components/platform/koishi.js +800 -0
- package/core/components/platform/koishiDatabaseRedis.js +391 -0
- package/core/components/platform/memoryRedis.js +209 -0
- package/core/components/platform/types.d.ts +272 -0
- package/core/components/platform/yunzai.js +604 -0
- package/core/components/segment.js +4 -0
- package/core/config/config//350/277/231/351/207/214/346/230/257/351/205/215/347/275/256/346/226/207/344/273/266/347/233/256/345/275/225.txt +0 -0
- package/core/config/default_config/banGroup.yaml +14 -0
- package/core/config/default_config/config.yaml +159 -0
- package/core/config/default_config/nickconfig.yaml +6 -0
- package/core/config/default_config/otherinfo.yaml +51 -0
- package/core/guoba.support.js +597 -0
- package/core/index.js +85 -0
- package/core/lib/AES.js +40 -0
- package/core/lib/Base64.js +22 -0
- package/core/lib/ByteReader.js +168 -0
- package/core/lib/GameProgress.js +37 -0
- package/core/lib/GameRecord.js +47 -0
- package/core/lib/GameSettings.js +24 -0
- package/core/lib/GameUser.js +19 -0
- package/core/lib/Level.js +6 -0
- package/core/lib/LevelRecord.js +9 -0
- package/core/lib/PhigrosUser.js +135 -0
- package/core/lib/SaveManager.js +117 -0
- package/core/lib/Summary.js +47 -0
- package/core/lib/TapTap/CompleteQRCodeData.js +27 -0
- package/core/lib/TapTap/LCHelper.js +81 -0
- package/core/lib/TapTap/TapTapHelper.js +170 -0
- package/core/lib/TapTap/getQRcode.js +61 -0
- package/core/lib/Util.js +30 -0
- package/core/lib/getQRcode.js +73 -0
- package/core/lib/http.js +105 -0
- package/core/model/README.md +3 -0
- package/core/model/api/aliasProposalService.js +151 -0
- package/core/model/api/apiVersion.js +67 -0
- package/core/model/api/autoSeekApi.js +165 -0
- package/core/model/api/botApiAuth.js +208 -0
- package/core/model/api/botSyncService.js +78 -0
- package/core/model/api/gameRecordPayload.js +24 -0
- package/core/model/api/makeRequest.js +1004 -0
- package/core/model/api/makeRequestFnc.js +17 -0
- package/core/model/api/phiApiClient.js +53 -0
- package/core/model/api/phiApiErrors.js +121 -0
- package/core/model/filesystem/getFile.js +256 -0
- package/core/model/filesystem/path.js +84 -0
- package/core/model/game/Chart.js +57 -0
- package/core/model/game/LevelRecordInfo.js +109 -0
- package/core/model/game/SongsInfo.js +46 -0
- package/core/model/game/b30Analysis.js +93 -0
- package/core/model/game/chartParser/Chart.js +23 -0
- package/core/model/game/chartParser/JudgeLine.js +38 -0
- package/core/model/game/chartParser/base/JudgeLineEvent.js +99 -0
- package/core/model/game/chartParser/base/Note.js +44 -0
- package/core/model/game/chartParser/base/SpeedEvent.js +25 -0
- package/core/model/game/chartParser/base/baseType.js +2 -0
- package/core/model/game/constNum.js +215 -0
- package/core/model/game/fCompute.js +711 -0
- package/core/model/game/getChartTag.js +140 -0
- package/core/model/game/getComment.js +132 -0
- package/core/model/game/getInfo.js +1069 -0
- package/core/model/game/getRksRank.js +77 -0
- package/core/model/game/markdown.js +77 -0
- package/core/model/integrations/Vika.js +103 -0
- package/core/model/integrations/getInfoFromTap.js +80 -0
- package/core/model/render/getPic.js +79 -0
- package/core/model/render/picmodle.js +496 -0
- package/core/model/render/progress-bar.js +44 -0
- package/core/model/render/puppeteer.js +431 -0
- package/core/model/render/renderPressureHistory.js +71 -0
- package/core/model/render/send.js +94 -0
- package/core/model/save/Save.js +953 -0
- package/core/model/save/analyzeSaveHistory.js +413 -0
- package/core/model/save/getBackup.js +328 -0
- package/core/model/save/getSave.js +90 -0
- package/core/model/save/getSaveFromApi.js +46 -0
- package/core/model/save/saveHistory.js +586 -0
- package/core/model/save/scoreHistory.js +101 -0
- package/core/model/theme/catalog.js +192 -0
- package/core/model/theme/installGuard.js +275 -0
- package/core/model/theme/installLock.js +174 -0
- package/core/model/theme/installer.js +398 -0
- package/core/model/theme/manager.js +408 -0
- package/core/model/theme/marketClient.js +294 -0
- package/core/model/theme/paths.js +42 -0
- package/core/model/theme/policy.js +54 -0
- package/core/model/theme/recovery.js +167 -0
- package/core/model/theme/useService.js +187 -0
- package/core/model/type/aliasProposal.d.ts +45 -0
- package/core/model/type/type.js +420 -0
- package/core/model/user/apiPermission.js +62 -0
- package/core/model/user/getBanGroup.js +120 -0
- package/core/model/user/getNotes.js +48 -0
- package/core/model/user/pluginData.js +101 -0
- package/core/model/user/userCredentialStore.js +154 -0
- package/core/model/user/userCredentials.js +860 -0
- package/core/package.json +60 -0
- package/core/resources/0608badSave/save.json +1 -0
- package/core/resources/LICENSE +201 -0
- package/core/resources/html/analyzeSaveHistory/analyzeSaveHistory.art +220 -0
- package/core/resources/html/analyzeSaveHistory/analyzeSaveHistory.css +345 -0
- package/core/resources/html/analyzeSaveHistory/analyzeSaveHistory.html +434 -0
- package/core/resources/html/arcgrosB19/arcgros.png +0 -0
- package/core/resources/html/arcgrosB19/arcgrosB19-orz.html +276 -0
- package/core/resources/html/arcgrosB19/arcgrosB19.art +168 -0
- package/core/resources/html/arcgrosB19/arcgrosB19.css +637 -0
- package/core/resources/html/atlas/atlas-orz.html +313 -0
- package/core/resources/html/atlas/atlas.art +194 -0
- package/core/resources/html/atlas/atlas.css +695 -0
- package/core/resources/html/avatar/-SURREALISM-.png +0 -0
- package/core/resources/html/avatar/Alkaid.png +0 -0
- package/core/resources/html/avatar/Aphasia.png +0 -0
- package/core/resources/html/avatar/Artificial Existence.png +0 -0
- package/core/resources/html/avatar/Bonus Time.png +0 -0
- package/core/resources/html/avatar/Burn.png +0 -0
- package/core/resources/html/avatar/Cereris1.png +0 -0
- package/core/resources/html/avatar/Cereris2.png +0 -0
- package/core/resources/html/avatar/Cereris3.png +0 -0
- package/core/resources/html/avatar/Christmas -2019.png +0 -0
- package/core/resources/html/avatar/Cipher1.png +0 -0
- package/core/resources/html/avatar/Class Memories.png +0 -0
- package/core/resources/html/avatar/Credits.png +0 -0
- package/core/resources/html/avatar/Dash.png +0 -0
- package/core/resources/html/avatar/Dlyrotz.png +0 -0
- package/core/resources/html/avatar/Doppelganger1.png +0 -0
- package/core/resources/html/avatar/Doppelganger2.png +0 -0
- package/core/resources/html/avatar/Drop it.png +0 -0
- package/core/resources/html/avatar/Energy Synergy Matrix1.png +0 -0
- package/core/resources/html/avatar/Energy Synergy Matrix2.png +0 -0
- package/core/resources/html/avatar/Energy Synergy Matrix3.png +0 -0
- package/core/resources/html/avatar/Engine x Start!! (melody mix).png +0 -0
- package/core/resources/html/avatar/Engine x Start!! extra 1 -by cycats.png +0 -0
- package/core/resources/html/avatar/Eradication Catastrophe.png +0 -0
- package/core/resources/html/avatar/FULi AUTO SHOOTER extra 1 -by cycats.png +0 -0
- package/core/resources/html/avatar/FULi AUTO SHOOTER.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/264-Special1.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/264-Special2.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2641.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2642.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2643.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2644.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2645.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2646.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2647.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2648.png +0 -0
- package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2649.png +0 -0
- package/core/resources/html/avatar/Find_Me.png +0 -0
- package/core/resources/html/avatar/Geopelia 1 -by cycats.png +0 -0
- package/core/resources/html/avatar/Geopelia 2 -by cycats.png +0 -0
- package/core/resources/html/avatar/Geopelia 3 -by /344/275/225/345/221/265.png +0 -0
- package/core/resources/html/avatar/Geopelia in WEPLAY -by /346/265/267/344/272/247.png +0 -0
- package/core/resources/html/avatar/Gino-AprilFool.png +0 -0
- package/core/resources/html/avatar/Glaciaxion.png +0 -0
- package/core/resources/html/avatar/HumaN.png +0 -0
- package/core/resources/html/avatar/Indelible Scar.png +0 -0
- package/core/resources/html/avatar/Introduction.png +0 -0
- package/core/resources/html/avatar/Khronostasis Katharsis.png +0 -0
- package/core/resources/html/avatar/MARENOL.png +0 -0
- package/core/resources/html/avatar/Marenol extra 1 -by /345/226/265n/350/221/265.png +0 -0
- package/core/resources/html/avatar/Non-Melodic Ragez (MUG Edit).png +0 -0
- package/core/resources/html/avatar/Non-Melodic Ragez extra 1 -by cycats.png +0 -0
- package/core/resources/html/avatar/Oblivion +0 -0
- package/core/resources/html/avatar/OblivionPHIN.png +0 -0
- package/core/resources/html/avatar/Para.png +0 -0
- package/core/resources/html/avatar/Pixel Rebelz1.png +0 -0
- package/core/resources/html/avatar/Pixel Rebelz2.png +0 -0
- package/core/resources/html/avatar/Pixel Rebelz3.png +0 -0
- package/core/resources/html/avatar/RIPPER extra 1 -by cycats.png +0 -0
- package/core/resources/html/avatar/RIPPER extra 2 -by /344/275/225/345/221/265.png +0 -0
- package/core/resources/html/avatar/Sein.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-Special.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-Special2.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-/346/231/256/351/200/232.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-/346/233/262/347/273/230Ver.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/351/270/240-Special.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/351/270/240-/346/231/256/351/200/232.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/351/270/240-/346/233/262/347/273/230Ver.png +0 -0
- package/core/resources/html/avatar/ShineAfter-/351/270/240/345/222/214/346/260/264/351/235/222-Special.png +0 -0
- package/core/resources/html/avatar/Snow Desert.png +0 -0
- package/core/resources/html/avatar/Sparkle New Life.png +0 -0
- package/core/resources/html/avatar/Sultan Rage.png +0 -0
- package/core/resources/html/avatar/Winter /342/206/221cube/342/206/223.png +0 -0
- package/core/resources/html/avatar/Xenolith.png +0 -0
- package/core/resources/html/avatar/[PRAW].png +0 -0
- package/core/resources/html/avatar/dB doll.png +0 -0
- package/core/resources/html/avatar/ripper.png +0 -0
- package/core/resources/html/avatar//343/202/202/343/201/272/343/202/202/343/201/2721.png +0 -0
- package/core/resources/html/avatar//343/202/202/343/201/272/343/202/202/343/201/2722.png +0 -0
- package/core/resources/html/avatar//344/270/207/345/220/250/345/214/277/345/220/215/344/277/241.png +0 -0
- package/core/resources/html/avatar//344/272/221/345/245/263/345/255/251 extra 1 -by /345/276/241/345/235/202/346/236/234/345/255/220.png +0 -0
- package/core/resources/html/avatar//344/272/221/345/245/263/345/255/251.png +0 -0
- package/core/resources/html/avatar//345/205/211.png +0 -0
- package/core/resources/html/avatar//345/274/200/345/277/203/347/227/2051.png +0 -0
- package/core/resources/html/avatar//345/274/200/345/277/203/347/227/2052.png +0 -0
- package/core/resources/html/avatar//346/260/264/351/235/222-/344/270/200/345/221/250/345/271/264/347/233/270/350/201/232.png +0 -0
- package/core/resources/html/avatar//346/267/267/344/271/261-Confusion.png +0 -0
- package/core/resources/html/avatar//347/213/202/345/226/234/350/230/255/350/210/2361.png +0 -0
- package/core/resources/html/avatar//347/213/202/345/226/234/350/230/255/350/210/2362.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/201-Special.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/2011.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/2012.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/2013.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/2014.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/2015.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/2016.png +0 -0
- package/core/resources/html/avatar//347/223/267/345/262/2017.png +0 -0
- package/core/resources/html/avatar//347/233/217/350/214/227-Special.png +0 -0
- package/core/resources/html/avatar//347/233/217/350/214/2271.png +0 -0
- package/core/resources/html/avatar//347/233/217/350/214/2272.png +0 -0
- package/core/resources/html/avatar//347/233/217/350/214/2273.png +0 -0
- package/core/resources/html/avatar//350/217/257/347/201/257/347/210/2611.png +0 -0
- package/core/resources/html/avatar//350/217/257/347/201/257/347/210/2612.png +0 -0
- package/core/resources/html/avatar//350/220/244/347/201/253/350/231/253/343/201/256/346/200/2501.png +0 -0
- package/core/resources/html/avatar//350/220/244/347/201/253/350/231/253/343/201/256/346/200/2502.png +0 -0
- package/core/resources/html/avatar//351/235/222/350/212/275-Special.png +0 -0
- package/core/resources/html/avatar//351/235/222/350/212/275.png +0 -0
- package/core/resources/html/avatar//351/243/216/345/261/277.png +0 -0
- package/core/resources/html/avatar//351/270/240-AprilFool.png +0 -0
- package/core/resources/html/avatar//351/270/240-/344/270/200/345/221/250/345/271/264/347/233/270/350/201/232.png +0 -0
- package/core/resources/html/b19/b19.art +490 -0
- package/core/resources/html/b19/b19.css +1261 -0
- package/core/resources/html/b19/b19666.art +350 -0
- package/core/resources/html/b19/b19666.css +1409 -0
- package/core/resources/html/b19/b19666.html +481 -0
- package/core/resources/html/b19/b19title.css +120 -0
- package/core/resources/html/b19/best19.html +853 -0
- package/core/resources/html/b19/dss2-orz.html +428 -0
- package/core/resources/html/b19/dss2.art +298 -0
- package/core/resources/html/b19/dss2.css +776 -0
- package/core/resources/html/b19/res/666.jpeg +0 -0
- package/core/resources/html/chap/chap-orz.html +93 -0
- package/core/resources/html/chap/chap.art +87 -0
- package/core/resources/html/chap/chap.css +365 -0
- package/core/resources/html/chartImg/chartImg.art +169 -0
- package/core/resources/html/chartImg/chartImg.css +439 -0
- package/core/resources/html/chartImg/echarts-wordcloud.min.js +3 -0
- package/core/resources/html/chartImg/echarts.js +85796 -0
- package/core/resources/html/chartImg/img/Drag.png +0 -0
- package/core/resources/html/chartImg/img/DragHL.png +0 -0
- package/core/resources/html/chartImg/img/Flick.png +0 -0
- package/core/resources/html/chartImg/img/FlickHL.png +0 -0
- package/core/resources/html/chartImg/img/Hold.png +0 -0
- package/core/resources/html/chartImg/img/HoldHL.png +0 -0
- package/core/resources/html/chartImg/img/Hold_End.png +0 -0
- package/core/resources/html/chartImg/img/Hold_Head.png +0 -0
- package/core/resources/html/chartImg/img/Hold_HeadHL.png +0 -0
- package/core/resources/html/chartImg/img/Tap.png +0 -0
- package/core/resources/html/chartImg/img/TapHL.png +0 -0
- package/core/resources/html/chartInfo/chartInfo-orz.html +250 -0
- package/core/resources/html/chartInfo/chartInfo.art +222 -0
- package/core/resources/html/chartInfo/chartInfo.css +265 -0
- package/core/resources/html/chartInfo/echarts-wordcloud.min.js +3 -0
- package/core/resources/html/chartInfo/echarts.js +85796 -0
- package/core/resources/html/clg/clg-orz.html +218 -0
- package/core/resources/html/clg/clg.art +88 -0
- package/core/resources/html/clg/clg.css +230 -0
- package/core/resources/html/clg/demo.jpg +0 -0
- package/core/resources/html/common/common.css +319 -0
- package/core/resources/html/common/css/playerInfo.css +136 -0
- package/core/resources/html/common/font/Aldrich-Regular.ttf +0 -0
- package/core/resources/html/common/font/HIMALAYA.TTF +0 -0
- package/core/resources/html/common/font/NotoColorEmoji-Regular.ttf +0 -0
- package/core/resources/html/common/font/NotoSans-Regular.ttf +0 -0
- package/core/resources/html/common/font/NotoSansArabic.ttf +0 -0
- package/core/resources/html/common/font/NotoSansCanadianAboriginal.ttf +0 -0
- package/core/resources/html/common/font/NotoSansJP.ttf +0 -0
- package/core/resources/html/common/font/NotoSansKannada.ttf +0 -0
- package/core/resources/html/common/font/NotoSansMath-Regular.ttf +0 -0
- package/core/resources/html/common/font/NotoSansSymbols2.ttf +0 -0
- package/core/resources/html/common/font/phi.ttf +0 -0
- package/core/resources/html/common/font//345/220/236/345/274/245/346/201/260/344/277/212.ttf +0 -0
- package/core/resources/html/common/layout/default.art +324 -0
- package/core/resources/html/common/layout/elem.art +21 -0
- package/core/resources/html/common/theme/snow/snow.css +17 -0
- package/core/resources/html/common/theme/snow/snow.js +19 -0
- package/core/resources/html/common/theme/star/star.js +201 -0
- package/core/resources/html/common/theme/topText/topText.css +15 -0
- package/core/resources/html/common/theme/topText/topText.js +30 -0
- package/core/resources/html/difficultyHistory/difficultyHistory-orz.html +361 -0
- package/core/resources/html/difficultyHistory/difficultyHistory.art +102 -0
- package/core/resources/html/difficultyHistory/difficultyHistory.css +205 -0
- package/core/resources/html/guess/guess-orz.html +50 -0
- package/core/resources/html/guess/guess.art +51 -0
- package/core/resources/html/guess/guess.css +33 -0
- package/core/resources/html/help/help-orz.html +73 -0
- package/core/resources/html/help/help.art +84 -0
- package/core/resources/html/help/help.css +266 -0
- package/core/resources/html/historyB30/historyB30-orz.html +168 -0
- package/core/resources/html/historyB30/historyB30.art +143 -0
- package/core/resources/html/historyB30/historyB30.css +270 -0
- package/core/resources/html/ill/ill-orz.html +21 -0
- package/core/resources/html/ill/ill.art +23 -0
- package/core/resources/html/ill/ill.css +79 -0
- package/core/resources/html/jrrp/ShineAfter.removebg.png +0 -0
- package/core/resources/html/jrrp/jrrp-orz.html +68 -0
- package/core/resources/html/jrrp/jrrp.art +58 -0
- package/core/resources/html/jrrp/jrrp.css +251 -0
- package/core/resources/html/list/list-orz.html +35 -0
- package/core/resources/html/list/list.art +67 -0
- package/core/resources/html/list/list.css +259 -0
- package/core/resources/html/lvsco/demo.jpg +0 -0
- package/core/resources/html/lvsco/lvsco-orz.html +334 -0
- package/core/resources/html/lvsco/lvsco.art +314 -0
- package/core/resources/html/lvsco/lvsco.css +706 -0
- package/core/resources/html/market/detail.art +44 -0
- package/core/resources/html/market/market.art +86 -0
- package/core/resources/html/market/market.css +64 -0
- package/core/resources/html/newSong/newSong.art +34 -0
- package/core/resources/html/newSong/newSong.css +48 -0
- package/core/resources/html/newSong/newSong.html +23 -0
- package/core/resources/html/newnotice/newnotice.art +47 -0
- package/core/resources/html/newnotice/newnotice.css +83 -0
- package/core/resources/html/otherimg/0.png +0 -0
- package/core/resources/html/otherimg/1.png +0 -0
- package/core/resources/html/otherimg/2.png +0 -0
- package/core/resources/html/otherimg/3.png +0 -0
- package/core/resources/html/otherimg/4.png +0 -0
- package/core/resources/html/otherimg/5.png +0 -0
- package/core/resources/html/otherimg/A.png +0 -0
- package/core/resources/html/otherimg/B.png +0 -0
- package/core/resources/html/otherimg/C.png +0 -0
- package/core/resources/html/otherimg/F.png +0 -0
- package/core/resources/html/otherimg/FC.png +0 -0
- package/core/resources/html/otherimg/NEW.png +0 -0
- package/core/resources/html/otherimg/Phigros_Icon_3.0.0.png +0 -0
- package/core/resources/html/otherimg/S.png +0 -0
- package/core/resources/html/otherimg/Star1.png +0 -0
- package/core/resources/html/otherimg/Star2.png +0 -0
- package/core/resources/html/otherimg/V.png +0 -0
- package/core/resources/html/otherimg/callback.png +0 -0
- package/core/resources/html/otherimg/chapHelp.png +0 -0
- package/core/resources/html/otherimg/dan_code.png +0 -0
- package/core/resources/html/otherimg/data.png +0 -0
- package/core/resources/html/otherimg/helpDoc.png +0 -0
- package/core/resources/html/otherimg/nickSuggest.png +0 -0
- package/core/resources/html/otherimg/phi.png +0 -0
- package/core/resources/html/otherimg/phigros.png +0 -0
- package/core/resources/html/otherimg/snow1.png +0 -0
- package/core/resources/html/otherimg/snow2.png +0 -0
- package/core/resources/html/otherimg/snow3.png +0 -0
- package/core/resources/html/otherimg/snow4.png +0 -0
- package/core/resources/html/otherimg/title.png +0 -0
- package/core/resources/html/rand/rand-orz.html +62 -0
- package/core/resources/html/rand/rand.art +59 -0
- package/core/resources/html/rand/rand.css +257 -0
- package/core/resources/html/rankingList/rankingList-orz.html +456 -0
- package/core/resources/html/rankingList/rankingList.art +171 -0
- package/core/resources/html/rankingList/rankingList.css +570 -0
- package/core/resources/html/rankingList-old/rankingList-orz.html +300 -0
- package/core/resources/html/rankingList-old/rankingList.art +89 -0
- package/core/resources/html/rankingList-old/rankingList.css +265 -0
- package/core/resources/html/score/score-orz.html +625 -0
- package/core/resources/html/score/score.art +249 -0
- package/core/resources/html/score/score.css +435 -0
- package/core/resources/html/score/scoreOld-orz.html +128 -0
- package/core/resources/html/score/scoreOld.art +230 -0
- package/core/resources/html/score/scoreOld.css +475 -0
- package/core/resources/html/score/scoreRankList-orz.html +613 -0
- package/core/resources/html/score/scoreRankList.art +231 -0
- package/core/resources/html/score/scoreRankList.css +197 -0
- package/core/resources/html/setting/setting-orz.html +123 -0
- package/core/resources/html/setting/setting.art +72 -0
- package/core/resources/html/setting/setting.css +170 -0
- package/core/resources/html/setting/userSetting-orz.html +132 -0
- package/core/resources/html/setting/userSetting.art +48 -0
- package/core/resources/html/setting/userSetting.css +160 -0
- package/core/resources/html/sign/sign-orz.html +262 -0
- package/core/resources/html/sign/sign.art +163 -0
- package/core/resources/html/sign/sign.css +706 -0
- package/core/resources/html/suggest/suggest.art +271 -0
- package/core/resources/html/suggest/suggest.css +300 -0
- package/core/resources/html/table/table-orz.html +228 -0
- package/core/resources/html/table/table.art +163 -0
- package/core/resources/html/table/table.css +401 -0
- package/core/resources/html/tasks/tasks-orz.html +83 -0
- package/core/resources/html/tasks/tasks.art +118 -0
- package/core/resources/html/tasks/tasks.css +334 -0
- package/core/resources/html/update/update-orz.html +735 -0
- package/core/resources/html/update/update.art +259 -0
- package/core/resources/html/update/update.css +676 -0
- package/core/resources/html/userinfo/userinfo-old-orz.html +408 -0
- package/core/resources/html/userinfo/userinfo-old.art +233 -0
- package/core/resources/html/userinfo/userinfo-old.css +466 -0
- package/core/resources/html/userinfo/userinfo-orz.html +543 -0
- package/core/resources/html/userinfo/userinfo.art +288 -0
- package/core/resources/html/userinfo/userinfo.css +757 -0
- package/core/resources/info/DLC/arc.json +412 -0
- package/core/resources/info/DLC/chunithm.json +1172 -0
- package/core/resources/info/DLC/dynamix.json +455 -0
- package/core/resources/info/DLC/fanshi.json +132 -0
- package/core/resources/info/DLC/lanota.json +412 -0
- package/core/resources/info/DLC/maimai.json +1110 -0
- package/core/resources/info/DLC/orz.json +158 -0
- package/core/resources/info/DLC/rizline.json +40 -0
- package/core/resources/info/DLC/rotaeno.json +159 -0
- package/core/resources/info/DLC/ryceam.json +53 -0
- package/core/resources/info/avatar.txt +109 -0
- package/core/resources/info/chaplist.yaml +102 -0
- package/core/resources/info/help/api.json +83 -0
- package/core/resources/info/help.json +436 -0
- package/core/resources/info/info.csv +315 -0
- package/core/resources/info/infolist.json +1758 -0
- package/core/resources/info/jrrp.json +92 -0
- package/core/resources/info/nicklist.yaml +2373 -0
- package/core/resources/info/notesInfo.json +1 -0
- package/core/resources/info/notice.json +11 -0
- package/core/resources/info/oldInfo/100/change.csv +218 -0
- package/core/resources/info/oldInfo/100/info.json +7 -0
- package/core/resources/info/oldInfo/101/change.csv +218 -0
- package/core/resources/info/oldInfo/101/info.json +7 -0
- package/core/resources/info/oldInfo/102/change.csv +223 -0
- package/core/resources/info/oldInfo/102/info.json +7 -0
- package/core/resources/info/oldInfo/103/change.csv +224 -0
- package/core/resources/info/oldInfo/103/info.json +7 -0
- package/core/resources/info/oldInfo/104/change.csv +225 -0
- package/core/resources/info/oldInfo/104/info.json +7 -0
- package/core/resources/info/oldInfo/105/change.csv +228 -0
- package/core/resources/info/oldInfo/105/info.json +7 -0
- package/core/resources/info/oldInfo/106/change.csv +229 -0
- package/core/resources/info/oldInfo/106/info.json +7 -0
- package/core/resources/info/oldInfo/108/change.csv +233 -0
- package/core/resources/info/oldInfo/108/info.json +7 -0
- package/core/resources/info/oldInfo/109/change.csv +235 -0
- package/core/resources/info/oldInfo/109/info.json +7 -0
- package/core/resources/info/oldInfo/110/change.csv +235 -0
- package/core/resources/info/oldInfo/110/info.json +7 -0
- package/core/resources/info/oldInfo/111/change.csv +242 -0
- package/core/resources/info/oldInfo/111/info.json +7 -0
- package/core/resources/info/oldInfo/112/change.csv +242 -0
- package/core/resources/info/oldInfo/112/info.json +7 -0
- package/core/resources/info/oldInfo/113/change.csv +244 -0
- package/core/resources/info/oldInfo/113/info.json +7 -0
- package/core/resources/info/oldInfo/115/change.csv +247 -0
- package/core/resources/info/oldInfo/115/info.json +7 -0
- package/core/resources/info/oldInfo/116/change.csv +249 -0
- package/core/resources/info/oldInfo/116/info.json +7 -0
- package/core/resources/info/oldInfo/118/change.csv +252 -0
- package/core/resources/info/oldInfo/118/info.json +7 -0
- package/core/resources/info/oldInfo/119/change.csv +255 -0
- package/core/resources/info/oldInfo/119/info.json +7 -0
- package/core/resources/info/oldInfo/120/change.csv +255 -0
- package/core/resources/info/oldInfo/120/info.json +7 -0
- package/core/resources/info/oldInfo/121/change.csv +257 -0
- package/core/resources/info/oldInfo/121/info.json +7 -0
- package/core/resources/info/oldInfo/122/change.csv +260 -0
- package/core/resources/info/oldInfo/122/info.json +7 -0
- package/core/resources/info/oldInfo/123/change.csv +260 -0
- package/core/resources/info/oldInfo/123/info.json +7 -0
- package/core/resources/info/oldInfo/124/change.csv +262 -0
- package/core/resources/info/oldInfo/124/info.json +7 -0
- package/core/resources/info/oldInfo/125/change.csv +266 -0
- package/core/resources/info/oldInfo/125/info.json +7 -0
- package/core/resources/info/oldInfo/126/change.csv +269 -0
- package/core/resources/info/oldInfo/126/info.json +7 -0
- package/core/resources/info/oldInfo/127/change.csv +270 -0
- package/core/resources/info/oldInfo/127/info.json +7 -0
- package/core/resources/info/oldInfo/128/change.csv +273 -0
- package/core/resources/info/oldInfo/128/info.json +7 -0
- package/core/resources/info/oldInfo/129/change.csv +274 -0
- package/core/resources/info/oldInfo/129/info.json +7 -0
- package/core/resources/info/oldInfo/130/change.csv +275 -0
- package/core/resources/info/oldInfo/130/info.json +7 -0
- package/core/resources/info/oldInfo/131/change.csv +278 -0
- package/core/resources/info/oldInfo/131/info.json +7 -0
- package/core/resources/info/oldInfo/132/change.csv +280 -0
- package/core/resources/info/oldInfo/132/info.json +7 -0
- package/core/resources/info/oldInfo/133/change.csv +284 -0
- package/core/resources/info/oldInfo/133/info.json +7 -0
- package/core/resources/info/oldInfo/134/change.csv +286 -0
- package/core/resources/info/oldInfo/134/info.json +7 -0
- package/core/resources/info/oldInfo/135/change.csv +290 -0
- package/core/resources/info/oldInfo/135/info.json +7 -0
- package/core/resources/info/oldInfo/136/change.csv +290 -0
- package/core/resources/info/oldInfo/136/info.json +7 -0
- package/core/resources/info/oldInfo/137/change.csv +293 -0
- package/core/resources/info/oldInfo/137/info.json +7 -0
- package/core/resources/info/oldInfo/138/change.csv +295 -0
- package/core/resources/info/oldInfo/138/info.json +7 -0
- package/core/resources/info/oldInfo/139/change.csv +295 -0
- package/core/resources/info/oldInfo/139/info.json +7 -0
- package/core/resources/info/oldInfo/140/change.csv +298 -0
- package/core/resources/info/oldInfo/140/info.json +7 -0
- package/core/resources/info/oldInfo/141/change.csv +300 -0
- package/core/resources/info/oldInfo/141/info.json +7 -0
- package/core/resources/info/oldInfo/142/change.csv +302 -0
- package/core/resources/info/oldInfo/142/info.json +7 -0
- package/core/resources/info/oldInfo/143/change.csv +303 -0
- package/core/resources/info/oldInfo/143/info.json +7 -0
- package/core/resources/info/oldInfo/144/change.csv +303 -0
- package/core/resources/info/oldInfo/144/info.json +7 -0
- package/core/resources/info/oldInfo/145/change.csv +305 -0
- package/core/resources/info/oldInfo/145/info.json +7 -0
- package/core/resources/info/oldInfo/146/change.csv +305 -0
- package/core/resources/info/oldInfo/146/info.json +7 -0
- package/core/resources/info/oldInfo/148/change.csv +307 -0
- package/core/resources/info/oldInfo/148/info.json +7 -0
- package/core/resources/info/oldInfo/149/change.csv +307 -0
- package/core/resources/info/oldInfo/149/info.json +7 -0
- package/core/resources/info/oldInfo/151/change.csv +309 -0
- package/core/resources/info/oldInfo/151/info.json +7 -0
- package/core/resources/info/oldInfo/152/change.csv +312 -0
- package/core/resources/info/oldInfo/152/info.json +7 -0
- package/core/resources/info/oldInfo/153/change.csv +313 -0
- package/core/resources/info/oldInfo/153/info.json +7 -0
- package/core/resources/info/oldInfo/154/change.csv +315 -0
- package/core/resources/info/oldInfo/154/info.json +7 -0
- package/core/resources/info/oldInfo/92/change.csv +204 -0
- package/core/resources/info/oldInfo/92/info.json +7 -0
- package/core/resources/info/oldInfo/93/change.csv +206 -0
- package/core/resources/info/oldInfo/93/info.json +7 -0
- package/core/resources/info/oldInfo/94/change.csv +209 -0
- package/core/resources/info/oldInfo/94/info.json +7 -0
- package/core/resources/info/oldInfo/95/change.csv +211 -0
- package/core/resources/info/oldInfo/95/info.json +7 -0
- package/core/resources/info/oldInfo/96/change.csv +216 -0
- package/core/resources/info/oldInfo/96/info.json +7 -0
- package/core/resources/info/oldInfo/98/change.csv +216 -0
- package/core/resources/info/oldInfo/98/info.json +7 -0
- package/core/resources/info/oldInfo/99/change.csv +217 -0
- package/core/resources/info/oldInfo/99/info.json +7 -0
- package/core/resources/info/oldNotesInfo.json +1 -0
- package/core/resources/info/sentences.json +1 -0
- package/core/resources/info/spinfo.json +362 -0
- package/core/resources/info/tips.txt +278 -0
- package/core/resources/otherill//351/233/252/351/231/215SP.png +0 -0
- package/core/resources/song-select.html +535 -0
- package/core/resources/themes/README.md +24 -0
- package/core/resources/themes/milthm/A.png +0 -0
- package/core/resources/themes/milthm/B.png +0 -0
- package/core/resources/themes/milthm/C.png +0 -0
- package/core/resources/themes/milthm/F.png +0 -0
- package/core/resources/themes/milthm/FC.png +0 -0
- package/core/resources/themes/milthm/S.png +0 -0
- package/core/resources/themes/milthm/V.png +0 -0
- package/core/resources/themes/milthm/arcgrosB19.css +36 -0
- package/core/resources/themes/milthm/b19.art +464 -0
- package/core/resources/themes/milthm/b19.css +1314 -0
- package/core/resources/themes/milthm/bg.png +0 -0
- package/core/resources/themes/milthm/clg.css +37 -0
- package/core/resources/themes/milthm/difficultyHistory.css +42 -0
- package/core/resources/themes/milthm/font.ttf +0 -0
- package/core/resources/themes/milthm/help.css +36 -0
- package/core/resources/themes/milthm/historyB30.css +48 -0
- package/core/resources/themes/milthm/info.yaml +45 -0
- package/core/resources/themes/milthm/list.css +39 -0
- package/core/resources/themes/milthm/phi.png +0 -0
- package/core/resources/themes/milthm/setting.css +37 -0
- package/core/resources/themes/milthm/sign.css +81 -0
- package/core/resources/themes/milthm/suggest.css +40 -0
- package/core/resources/themes/milthm/table.css +54 -0
- package/core/resources/themes/milthm/update.css +68 -0
- package/core/tests/aliasProposalService.test.js +82 -0
- package/core/tests/apiAccountDeletion.test.js +125 -0
- package/core/tests/apiPermission.test.js +44 -0
- package/core/tests/apiVersion.test.js +55 -0
- package/core/tests/b30Analysis.test.js +38 -0
- package/core/tests/backgroundIllustration.test.js +21 -0
- package/core/tests/botApiAuthRecovery.test.js +148 -0
- package/core/tests/botSyncService.test.js +42 -0
- package/core/tests/fileWatcherRegistry.test.js +44 -0
- package/core/tests/gameRecordPayload.test.js +34 -0
- package/core/tests/guessLetter.test.js +79 -0
- package/core/tests/makeRequestHandling.test.js +118 -0
- package/core/tests/marketOverflow.test.js +31 -0
- package/core/tests/platformTemplateCache.test.js +92 -0
- package/core/tests/pluginDataThemePreference.test.js +36 -0
- package/core/tests/processCleanup.test.js +58 -0
- package/core/tests/puppeteerShutdown.test.js +17 -0
- package/core/tests/renderPressureHistory.test.js +59 -0
- package/core/tests/saveStats.test.js +26 -0
- package/core/tests/themeInstallGuard.test.js +289 -0
- package/core/tests/themeManager.test.js +625 -0
- package/core/tests/themeManagerInit.test.js +11 -0
- package/core/tests/themeMarket.test.js +855 -0
- package/core/tests/themePageRouting.test.js +431 -0
- package/core/tests/themePolicy.test.js +28 -0
- package/core/tests/themeStorageRecovery.test.js +192 -0
- package/core/tests/userCredentialModuleBoundaries.test.js +41 -0
- package/core/tests/userCredentials.test.js +285 -0
- package/core/tsconfig.json +32 -0
- package/core/types/vendor.d.ts +14 -0
- package/lib/index.cjs +358 -0
- package/lib/index.d.cts +182 -0
- package/lib/index.d.ts +182 -0
- package/lib/index.js +320 -0
- package/package.json +74 -0
- package/readme.md +3 -0
package/core/README.md
ADDED
|
@@ -0,0 +1,330 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<h1>
|
|
3
|
+
<picture>
|
|
4
|
+
<source srcset="https://github.com/user-attachments/assets/c18cd28c-220e-445d-9001-3f7a8f25ac51" type="image/avif" width="80%" />
|
|
5
|
+
<img src="https://github.com/Catrong/phi-plugin/assets/117198625/731e11cb-71d3-4575-8c0d-b9cedcd442d4" width="80%" />
|
|
6
|
+
</picture>
|
|
7
|
+
|
|
8
|
+
### 中文 | [English](./README_en.md)
|
|
9
|
+
</h1>
|
|
10
|
+
|
|
11
|
+
[](https://pd.qq.com/s/e3z86q6bw)
|
|
12
|
+
[](https://discord.gg/invite/RkBwFBaRqa)
|
|
13
|
+
[](https://space.bilibili.com/403342249)
|
|
14
|
+
[](../../stargazers)
|
|
15
|
+
|
|
16
|
+

|
|
17
|
+

|
|
18
|
+

|
|
19
|
+
[](../../yoimiya-kokomi/Yunzai-Bot)
|
|
20
|
+
[](../../yoimiya-kokomi/Miao-Yunzai)
|
|
21
|
+
[](../../TimeRainStarSky/Yunzai)
|
|
22
|
+
</div>
|
|
23
|
+
|
|
24
|
+
### 介绍
|
|
25
|
+
|
|
26
|
+
`phi-plugin` 为查询Phigros信息的插件,包括b30、score、userinfo以及更多Phigros相关功能,有相关的建议和问题可以在[Issues](../../issues)中提出,欢迎[PR](../../pulls)。
|
|
27
|
+
|
|
28
|
+
具体功能可在安装插件后 通过 `/phihelp` 查看详细指令
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
<!--
|
|
32
|
+
|
|
33
|
+
### 贡献者
|
|
34
|
+
|
|
35
|
+
感谢以下贡献者对本项目做出的贡献
|
|
36
|
+
|
|
37
|
+
<table>
|
|
38
|
+
<tr>
|
|
39
|
+
<td align="center" valign="top" width="10%" nowrap="nowrap"><a href="https://github.com/Walkersifolia"><img src="https://avatars.githubusercontent.com/u/129571444?v=4?s=100" style="border-radius: 50%" width="50px;" alt="圈圈"/><br /><sub><b>@Walkersifolia</b></sub></a><br /><a href="https://github.com/Catrong/phi-plugin/graphs/contributors/commits?author=Walkersifolia" title="Contributor">🌸</a></td>
|
|
40
|
+
<td align="center" valign="top" width="10%" nowrap="nowrap"><a href="https://github.com/KeluIsAfkeru"><img src="https://avatars.githubusercontent.com/u/107661829?v=4?s=100" style="border-radius: 50%" width="50px;" alt="屑克鲁"/><br /><sub><b>@KeluIsAfkeru</b></sub></a><br /><a href="https://github.com/Catrong/phi-plugin/graphs/contributors/commits?author=KeluIsAfkeru" title="Contributor">🌸</a></td>
|
|
41
|
+
<td align="center" valign="top" width="10%" nowrap="nowrap"><a href="https://github.com/S-t-e-v-e-e"><img src="https://avatars.githubusercontent.com/u/117198625?v=4?s=100" style="border-radius: 50%" width="50px;" alt="史蒂夫"/><br /><sub><b>@Steve~ɘvɘɈƧ</b></sub></a><br /><a href="https://github.com/Catrong/phi-plugin/graphs/contributors/commits?author=S-t-e-v-e-e" title="Contributor">🌸</a></td>
|
|
42
|
+
<td align="center" valign="top" width="10%" nowrap="nowrap"><a href="https://github.com/7aGiven"><img src="https://avatars.githubusercontent.com/u/77519196?v=4?s=100" style="border-radius: 50%" width="50px;" alt="文酱"/><br /><sub><b>@7aGiven</b></sub></a><br /><a href="https://github.com/Catrong/phi-plugin/graphs/contributors/commits?author=7aGiven" title="Contributor">🌸</a></td>
|
|
43
|
+
<td align="center" valign="top" width="10%" nowrap="nowrap"><a href="https://github.com/MYS-KISO"><img src="https://avatars.githubusercontent.com/u/101465504?v=4?s=100" style="border-radius: 50%" width="50px;" alt="MoistCrystal"/><br /><sub><b>@MoistCrystal</b></sub></a><br /><a href="https://github.com/Catrong/phi-plugin/graphs/contributors/commits?author=MYS-KISO" title="Contributor">🌸</a></td>
|
|
44
|
+
<td align="center" valign="top" width="10%" nowrap="nowrap"><a href="https://github.com/yt6983138"><img src="https://avatars.githubusercontent.com/u/83499886?v=4?s=100" style="border-radius: 50%" width="50px;" alt="yt6983138"/><br /><sub><b>@static_void</b></sub></a><br /><a href="https://github.com/yt6983138" title="Contributor">🌸</a></td>
|
|
45
|
+
<td align="center" valign="top" width="15%" nowrap="nowrap"><a href="https://github.com/wms26"><img src="https://avatars.githubusercontent.com/u/50258919?v=4?s=100" style="border-radius: 50%" width="50px;" alt="wms26"/><br /><sub><b>@千柒</b></sub></a><br /><a href="https://github.com/wms26" title="Contributor">🌸</a></td>
|
|
46
|
+
</tr>
|
|
47
|
+
</table>
|
|
48
|
+
-->
|
|
49
|
+
|
|
50
|
+
### 安装:
|
|
51
|
+
|
|
52
|
+
在Yunzai目录下运行
|
|
53
|
+
|
|
54
|
+
> 使用Github
|
|
55
|
+
|
|
56
|
+
```
|
|
57
|
+
#安装插件本体
|
|
58
|
+
git clone --depth=1 https://github.com/Catrong/phi-plugin.git ./plugins/phi-plugin/
|
|
59
|
+
#进入插件目录
|
|
60
|
+
cd ./plugins/phi-plugin/
|
|
61
|
+
#安装插件所需依赖
|
|
62
|
+
pnpm install -P
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
> 使用Gitee
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
#安装插件本体
|
|
69
|
+
git clone --depth=1 https://gitee.com/catrong/phi-plugin.git ./plugins/phi-plugin/
|
|
70
|
+
#进入插件目录
|
|
71
|
+
cd ./plugins/phi-plugin/
|
|
72
|
+
#安装插件所需依赖
|
|
73
|
+
pnpm install -P
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
> [!WARNING]
|
|
77
|
+
> 请使用主人权限执行该指令以下载曲绘,否则相关曲绘将无法正常展示!(可以是标准输入或者其他平台)
|
|
78
|
+
>
|
|
79
|
+
>```
|
|
80
|
+
> /phi downill
|
|
81
|
+
>```
|
|
82
|
+
|
|
83
|
+
> [!TIP]
|
|
84
|
+
> 如果安装依赖时速度过慢,运行:
|
|
85
|
+
>
|
|
86
|
+
>```
|
|
87
|
+
> pnpm config set registry https://registry.npmmirror.com
|
|
88
|
+
>```
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
#### Todo
|
|
93
|
+
|
|
94
|
+
* [ ] 优化界面设计
|
|
95
|
+
|
|
96
|
+
* [ ] 加入收集品、头像等的图鉴
|
|
97
|
+
|
|
98
|
+
* [ ] 点phi的歌
|
|
99
|
+
|
|
100
|
+
* [ ] 优化扫码获取sessionToken
|
|
101
|
+
|
|
102
|
+
* [ ] 指令修改部分设置
|
|
103
|
+
|
|
104
|
+
* [ ] 曲目历史定数查询
|
|
105
|
+
|
|
106
|
+
* [ ] 谱面标签
|
|
107
|
+
|
|
108
|
+
* [ ] 适配TapTap国际版
|
|
109
|
+
|
|
110
|
+
* [ ] ……
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
### 功能
|
|
114
|
+
|
|
115
|
+
以下#均可用/代替,命令头可自定义
|
|
116
|
+
|
|
117
|
+
#### **以下为用户功能**
|
|
118
|
+
|
|
119
|
+
| **功能名称** | **功能说明**
|
|
120
|
+
| :- | :-
|
|
121
|
+
| `#phi帮助` | 获取帮助
|
|
122
|
+
| `#phi (cn\|gb)?(bind\|绑定)xxx` | 绑定sessionToken,支持国服/国际服,默认为国服
|
|
123
|
+
| `#phi (unbind\|解绑)` | 仅清除当前 Bot 本地保存的 sessionToken、API ID、存档和历史,不修改 API 平台绑定
|
|
124
|
+
| `#phi clean` | 删除所有记录
|
|
125
|
+
| `#phi (update\|更新存档)` | 更新存档
|
|
126
|
+
| `#phi (rks\|pgr\|b30)` | 查询rks,会提供得出的b30结果
|
|
127
|
+
| `#phi x30` | 查询1Good b30
|
|
128
|
+
| `#phi fc30` | 查询Full Combo b30
|
|
129
|
+
| `杠批比三零` | 同上
|
|
130
|
+
| `#phi info(1\|2)?` | 查询个人统计信息
|
|
131
|
+
| `#phi lmtacc [0-100]` | 计算限制最低 ACC 后的 RKS
|
|
132
|
+
| `#phi (lvsco(re)\|scolv) <定数范围> <难度>` | 获取区间成绩
|
|
133
|
+
| `#phi chap <章节名称\|help>` | 获取章节成绩
|
|
134
|
+
| `#phi ahv <定数>[-v 版本]` | 获取定数成绩表
|
|
135
|
+
| `#phi list <-dif 定数范围> <-acc ACC范围> <EZ\|HD\|IN\|AT> <NEW\|C\|B\|A\|S\|V\|FC\|PHI>` | 获取区间每首曲目的成绩
|
|
136
|
+
| `#phi hisb30` | 根据历史记录计算B30变化情况
|
|
137
|
+
| `#phi best1(+)` | 查询文字版b30(或更多),最高b99
|
|
138
|
+
| `#phi (score\|单曲成绩)xxx [-dif 难度] [-or acc\|score\|fc\|time] [-unrank]` | 获取单曲成绩及这首歌的推分建议,参数为对分数排行的参数,目前仅开启API后有效
|
|
139
|
+
| `#phi (suggest\|推分)` | 获取可以让RKS+0.01的曲目及其所需ACC
|
|
140
|
+
| `#phi (ranklist\|排行榜) [名次]` | 获取 RKS 排行榜
|
|
141
|
+
| `#phi rankfind <rks>` | 获取有多少人大于查询 RKS
|
|
142
|
+
| `#phi data` | 获取用户data数量
|
|
143
|
+
| `#phi (guess\|猜曲绘) [-l <0-3>]` | 猜曲绘,回答无特殊命令,直接回复,如果不是曲名就不会说话,如果是不正确的曲名会回复。#ans 结束
|
|
144
|
+
| `#phi (ltr\|开字母)` | 根据字母猜曲名,#出/#open... 开指定的字母,#第n个/#nX.xxx 进行回答,#ans 获取答案
|
|
145
|
+
| `#phi (tipgame\|提示猜曲)` | 根据提示猜曲名,#tip获得下一条提示,#ans 获取答案,回答直接回复
|
|
146
|
+
| `#phi (song\|曲) xxx` | 查询phigros中某一曲目的图鉴,支持设定别名
|
|
147
|
+
| `#phi chart <曲名> [难度=IN]` | 查询phigros中某一谱面的详细信息
|
|
148
|
+
| `#phi tag <曲名> [难度=IN] <标签>` | 查看谱面标签,标签可选项见回复说明,难度默认为IN
|
|
149
|
+
| `#phi settag <曲名> [难度=IN] <标签>` | 给谱面打标签,推荐先使用/tag查询标签列表,难度默认为IN
|
|
150
|
+
| `#phi (comment\|cmt\|评论\|评价) <曲名> [难度=IN](换行)<内容>` | 评论曲目,难度默认为IN
|
|
151
|
+
| `#phi recmt <评论ID>` | 查看并确认是否删评,仅发送者和主人权限,需要二次确认
|
|
152
|
+
| `#phi mycmt` | 查看自己的云端评论
|
|
153
|
+
| `#phi (table\|定数表) <定数>` | 查询phigros定数表
|
|
154
|
+
| `#phi (difHis\|历史定数)` | 查询曲目历史定数
|
|
155
|
+
| `#phi new` | 查询更新的曲目
|
|
156
|
+
| `#phi tips` | 随机tips
|
|
157
|
+
| `#phi jrrp` | 今日人品
|
|
158
|
+
| `#phi alias xxx` | 查询某一曲目的别名
|
|
159
|
+
| `#phi (rand\|随机) [定数] [难度]` | 根据条件随机曲目,条件支持难度、定数,难度可以多选,定数以-作为分隔
|
|
160
|
+
| `#phi randclg [课题总值] [难度] ([曲目定数范围])` | 随机课题 eg: /rand 40 (IN 13-15)
|
|
161
|
+
| `#phi (曲绘\|ill\|Ill) xxx` | 查询phigros中某一曲目的曲绘
|
|
162
|
+
| `#phi (search\|查询\|检索) <条件 值>` | 检索曲库中的曲目,支持BPM 定数 物量,条件 bpm dif cmb,值可以为区间,以 - 间隔
|
|
163
|
+
| `#phi (theme\|主题) [编号]` | 切换绘图主题,页面级样式按主题包配置生效
|
|
164
|
+
| `#phi (myset\|个人设置)` | 查看和修改用户设置,参数为设置项名称,值支持使用序号选择,建议先查看设置项列表
|
|
165
|
+
| `sign/签到` | 签到获取Notes
|
|
166
|
+
| `task/我的任务` | 查看自己的任务
|
|
167
|
+
| `retask/刷新任务` | 刷新任务,需要花费20Notes
|
|
168
|
+
| `#phi (send\|送\|转) <目标> <数量>` | 送给目标Note,支持@或QQ号
|
|
169
|
+
|
|
170
|
+
#### **以下为管理功能**
|
|
171
|
+
|
|
172
|
+
| 功能名称 | 功能说明
|
|
173
|
+
| :- | :-
|
|
174
|
+
| `#phi backup (back)?` | 备份存档文件,+ back 发送该备份文件,自动保存在 /phi-plugin/backup/ 目录下
|
|
175
|
+
| `#phi restore` | 从备份中还原,不会丢失已有数据,需要将文件放在 /phi-plugin/backup/ 目录下
|
|
176
|
+
| `#phi(设置别名\|setnick) xxx ---> xxx` | 设置某一歌曲的别名,格式为 原名(或已有别名) ---> 别名(会自动过滤--->两边的空格)
|
|
177
|
+
| `#phi(删除别名\|delnick) xxx` | 删除某一歌曲的别名
|
|
178
|
+
| `#phi(强制\|qz)?(更新\|gx)` | 更新本插件
|
|
179
|
+
| `#phi repu` | 重启puppeteer
|
|
180
|
+
| `#下载曲绘\|down ill` | 下载曲绘到本地
|
|
181
|
+
| `#phi get <名次>` | 获取排行榜上某一名次的sessionToken
|
|
182
|
+
| `#phi del <sessionToken>` | 禁用某一sessionToken
|
|
183
|
+
| `#phi allow <sessionToken>` | 恢复某一sessionToken
|
|
184
|
+
| `#phi (set\|设置)<功能><值>` | 修改设置,建议先/phi set查看功能名称,没有空格
|
|
185
|
+
| `#phi ban <功能>` | 禁用某一类功能,详见 [功能参数说明](#phi-ban-%E5%8A%9F%E8%83%BD%E5%8F%82%E6%95%B0%E8%AF%B4%E6%98%8E)
|
|
186
|
+
| `#phi 获取Bot认领链接` | **主人命令** 获取 15 分钟内有效的 Bot 平台认领链接,建议私聊发送
|
|
187
|
+
| `#phi 重置API Bot身份` | **主人命令** 重新申请一套 API Bot 身份,仅用于凭据丢失、被撤销或主动更换身份
|
|
188
|
+
|
|
189
|
+
<details open>
|
|
190
|
+
<summary>功能参数说明</summary>
|
|
191
|
+
|
|
192
|
+
#### `#phi ban` 功能参数说明
|
|
193
|
+
|
|
194
|
+
| 参数 | 功能 | 影响指令
|
|
195
|
+
| :- | :- | :-
|
|
196
|
+
| 全部 | 全部功能 | 所有
|
|
197
|
+
| help | 帮助功能 | /help /tkhelp /myset
|
|
198
|
+
| bind | 绑定功能 | /bind /unbind
|
|
199
|
+
| b19 | 图片查分功能 | /pgr /update /info /list /pb30 /p30 /lmtacc /score /lvsco /chap /suggest
|
|
200
|
+
| wb19 | 文字查分功能 | /data /best
|
|
201
|
+
| song | 图鉴功能 | /song /chart /ill /search /alias /rand /randclg /table /cmt /recmt /addtag /subtag /retag
|
|
202
|
+
| ranklist | 排行榜功能,不会禁用用户排名 | /ranklist /godlist
|
|
203
|
+
| fnc | 小功能 | /com /tips /new
|
|
204
|
+
| tipgame | tip猜歌 | /tipgame
|
|
205
|
+
| guessgame | 猜歌 | /guess
|
|
206
|
+
| ltrgame | 猜字母 | /letter /ltr
|
|
207
|
+
| sign | 娱乐功能 | /sign /send /task /retask /jrrp
|
|
208
|
+
| setting | 系统设置 | /theme
|
|
209
|
+
| dan | 段位认证相关 | /dan /danupdate
|
|
210
|
+
</details>
|
|
211
|
+
|
|
212
|
+
## API功能正式开启测试
|
|
213
|
+
|
|
214
|
+
可在设置项手动设置打开与关闭,开启后,将自动同步用户在Phi-Plugin系列应用(网页、云崽,暂不含koishi)使用记录与历史成绩到API端,且部分功能需要开启API后才能使用
|
|
215
|
+
|
|
216
|
+
| 功能名称 | 功能说明
|
|
217
|
+
| :- | :-
|
|
218
|
+
| `#phi (bind\|绑定) <userId>` | 开启查分API可用,绑定API账号
|
|
219
|
+
| `#phi setApiToken <token>` | 设置API Token
|
|
220
|
+
| `#phi tokenList` | 获取当前绑定的平台列表
|
|
221
|
+
| `#phi auth <api Token>` | 通过API Token 获取 sessionToken
|
|
222
|
+
| `#phi alias submit 曲目 \| 别名 \| 备注` | 私聊提交曲目别名提案 |
|
|
223
|
+
| `#phi alias mine` | 查询自己的别名提案 |
|
|
224
|
+
| `#phi alias appeal 提案ID \| 理由` | 私聊申请公开评审 |
|
|
225
|
+
| `#phi alias public` | 查询正在公开投票的提案 |
|
|
226
|
+
| `#phi alias vote 提案ID 赞成/反对` | 参与公开投票或改票 |
|
|
227
|
+
| `#phi alias unvote 提案ID` | 撤回公开投票 |
|
|
228
|
+
| `#phi clearApiData` | 永久注销 phi-api 账号并清除云端数据,需要 Phigros SSTK 权限及二次确认
|
|
229
|
+
| `#phi updateHistory` | 将BOT端的历史成绩更新到API端
|
|
230
|
+
| `#phi updateUserToken` | **主人命令** 上传当前BOT端的用户Token到API端
|
|
231
|
+
|
|
232
|
+
#### Bot 平台认领(Bot 主人)
|
|
233
|
+
|
|
234
|
+
认领用于把当前 phi-plugin 部署关联到已登录的网页账号,以便在网页控制台查看 Bot 状态、绑定统计和进行管理。Bot 在 API 注册成功后已经可以正常工作,未认领不会影响 Bot 激活或用户查分。
|
|
235
|
+
|
|
236
|
+
认领步骤:
|
|
237
|
+
|
|
238
|
+
1. 将 phi-plugin 更新到支持 Bot 平台认证的版本,并确认配置项 `openPhiPluginApi` 已开启。
|
|
239
|
+
2. 启动或重启一次 Bot。插件缺少 API Bot 身份时会自动向 API 注册,并将凭据写入本地配置;请勿公开或手工发送 `apiBotClientSecret`。
|
|
240
|
+
3. Bot 主人在**私聊**中发送 `#phi 获取Bot认领链接`(也可使用 `#phi botClaimLink`)。
|
|
241
|
+
4. 在 15 分钟内打开 Bot 返回的认领链接。若网页尚未登录,请先完成登录,随后继续原认领页面。
|
|
242
|
+
5. 核对页面显示的 Bot 名称和 `clientId`,确认认领。完成后可在网页控制台的 Bot 管理页面查看和管理该 Bot。
|
|
243
|
+
|
|
244
|
+
认领链接为一次性链接,过期或使用后需重新发送命令获取。在群聊中执行时,插件不会把链接发到群内,而会将链接输出到 Bot 控制台;建议改为私聊执行。
|
|
245
|
+
|
|
246
|
+
`#phi 重置API Bot身份`(别名 `#phi resetApiBot`)会申请全新的 `clientId` 和 secret,并替换当前 Bot 身份。该命令不是正常认领步骤,只应在本地凭据丢失、身份被 API 撤销或确定要更换 Bot 身份时使用;重置后需要重新认领。为避免敏感信息泄露,在群聊中执行时,新的身份信息和认领链接只会输出到 Bot 控制台。
|
|
247
|
+
|
|
248
|
+
#### 关于权限的详细说明:
|
|
249
|
+
|
|
250
|
+
仅通过查分ID即可绑定与获取存档,首次使用`sessionToken`绑定时会将`API Token`设置为`sessionToken`,且用户绑定时若提供`sessionToken`,bot端本地会保存。
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
---
|
|
255
|
+
|
|
256
|
+
### 支持我的创作
|
|
257
|
+
|
|
258
|
+
[<img src="https://github.com/user-attachments/assets/8c181f08-a2b6-4e67-8b61-bd2e4027a6a4" width="400" />](https://afdian.com/a/Feijiang_)
|
|
259
|
+
|
|
260
|
+
感谢您的支持,您的支持就是我创作的最大动力!
|
|
261
|
+
|
|
262
|
+
#### 赞助者
|
|
263
|
+
|
|
264
|
+
感谢以下赞助者对本项目的支持,鸣谢名单可能更新不及时,欢迎来QQ催我!
|
|
265
|
+
|
|
266
|
+
<table>
|
|
267
|
+
<tr>
|
|
268
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><a href="https://github.com/qilinX88"><img src="https://avatars.githubusercontent.com/u/92022485?v=4?s=100" style="border-radius: 50%" width="50px;" alt="Loser_X"/><br /><sub><b>@Loser_X</b></sub></a><br />🌸 20 🌸</td>
|
|
269
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><a href="https://github.com/S-t-e-v-e-e"><img src="https://avatars.githubusercontent.com/u/117198625?v=4?s=100" style="border-radius: 50%" width="50px;" alt="史蒂夫"/><br /><sub><b>@Steve~ɘvɘɈƧ</b></sub><br />🌸 40 🌸</td>
|
|
270
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><img src="https://pic1.afdiancdn.com/user/a743be34fb4e11ef81be52540025c377/avatar/a284c446cefded67dbbf0c14b9eda2a0_w1080_h1080_s115.jpeg?imageView2/1/w/240/h/240" style="border-radius: 50%" width="50px;" alt="溯洌RIPPLE"/><br /><sub><b>溯洌RIPPLE</b></sub><br/>🌸 35 🌸</td>
|
|
271
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><img src="https://pic1.afdiancdn.com/default/avatar/avatar-purple.png?imageView2/1/" style="border-radius: 50%" width="50px;" alt="祈"/><br /><sub><b>祈</b></sub><br/>🌸 15 🌸</td>
|
|
272
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><img src="https://pic1.afdiancdn.com/user/7f56847012a911f0853552540025c377/avatar/752eaae4cf8018a82719ea8f42569eae_w2000_h2000_s2699.png?imageView2/1/w/240/h/240" style="border-radius: 50%" width="50px;" alt="茗亿"/><br /><sub><b>茗亿</b></sub><br/>🌸 30 🌸</td>
|
|
273
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><img src="https://pic1.afdiancdn.com/user/fbcb2b98204611eea8f152540025c377/avatar/d4e7f58683064153bfbedb99ad95c6d8_w855_h875_s117.jpeg?imageView2/1/w/240/h/240" style="border-radius: 50%" width="50px;" alt="..."/><br /><sub><b>...</b></sub><br/>🌸 50 🌸</td>
|
|
274
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><img src="https://pic1.afdiancdn.com/user/4041ac584eb111f0b57952540025c377/avatar/04de899ed964c6cfe315d27ea56a1fea_w1080_h1080_s69.jpeg?imageView2/1/w/240/h/240" style="border-radius: 50%" width="50px;" alt="夏夏肃炎"/><br /><sub><b>夏夏肃炎</b></sub><br/>🌸 5 🌸</td>
|
|
275
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><img src="https://pic1.afdiancdn.com/user/7737c9cca1f211ed896a5254001e7c00/avatar/7a320f384ead8f4fca4630efa31c0c3b_w705_h705_s346.jpeg?imageView2/1/w/240/h/240" style="border-radius: 50%" width="50px;" alt="Bluerosion"/><br /><sub><b>Bluerosion</b></sub><br/>🌸 52.0 🌸</td>
|
|
276
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><img src="https://pic1.afdiancdn.com/user/00794630e24f11ebac7252540025c377/avatar/f67fff0ab78bcf86d81a7b12a55ba3ca_w374_h354_s148.png?imageView2/1/w/240/h/240" style="border-radius: 50%" width="50px;" alt="Bluerosion"/><br /><sub><b>铃</b></sub><br/>🌸 5 🌸</td>
|
|
277
|
+
</tr>
|
|
278
|
+
</table>
|
|
279
|
+
|
|
280
|
+
---
|
|
281
|
+
|
|
282
|
+
### 部分功能预览
|
|
283
|
+
|
|
284
|
+
|**Best30效果图**<br><picture><source srcset="https://github.com/user-attachments/assets/22670da2-cd67-4da3-9589-e139f3db6d82" type="image/avif" width="80%" /><img src="https://github.com/user-attachments/assets/7faf1dba-2cd5-44d5-bc9d-d880fd2f2201" width="80%" /></picture><br>效果图来自[@Steve喵~](https://github.com/S-t-e-v-e-e) | **单曲成绩效果图**<br><picture><source srcset="https://github.com/user-attachments/assets/8a5adadb-3cdf-4371-b1d3-cc869f89a545" type="image/avif" width="40%" /><img src="https://github.com/user-attachments/assets/4594ef39-dacf-4079-9612-5090626f572b" width="40%"></picture><br>效果图来自[@Steve喵~](https://github.com/S-t-e-v-e-e)<br><br>**单曲成绩效果图(Legacy)**<br><picture><source srcset="https://github.com/user-attachments/assets/83296c38-2181-479f-ad26-dfb2e09bccf8" type="image/avif" width="40%" /><img src="https://github.com/Catrong/phi-plugin/assets/117198625/093e3d30-7f9e-48cb-9e12-bb9f0bb3b40c" width="40%"></picture><br>效果图来自[@Steve喵~](https://github.com/S-t-e-v-e-e)<br><br>**单曲图鉴效果图**<br><picture><source srcset="https://github.com/user-attachments/assets/e332c88d-ecd0-49e7-aa6b-310645f14a5a" type="image/avif" width="40%" /><img src="https://github.com/Catrong/phi-plugin/assets/117198625/c6eb9694-8f72-4d3f-85d9-5120375b047b" width="40%"></picture> |
|
|
285
|
+
|:-------------------:|:------------------------:|
|
|
286
|
+
|**范围成绩效果图**<br><picture><source srcset="https://github.com/user-attachments/assets/b1a4ff41-d26b-4ccc-942d-087797ff02b3" type="image/avif" /><img src="https://github.com/Catrong/phi-plugin/assets/117198625/411dff8e-ec93-4ebe-80ff-510105fd3f65"></picture><br>效果图来自[@东城Eastown](https://space.bilibili.com/171389567) <br><br>**个人信息效果图**<br><picture><source srcset="https://github.com/user-attachments/assets/1361b1e9-510f-4140-a87d-a74b2ee70337" type="image/avif" /><img src="https://github.com/user-attachments/assets/ed20abfa-5bb1-4215-8b2b-8c5171126432"></picture><br>效果图来自[@Steve喵~](https://github.com/S-t-e-v-e-e)|**个人信息效果图(Legacy)**<br><picture><source srcset="https://github.com/user-attachments/assets/c876119b-d98f-4751-85ba-675e6f2ba55f" type="image/avif" width="60%" /><img src="https://github.com/Catrong/phi-plugin/assets/117198625/9e536f1a-4cbe-41da-b2da-94d1bcd70488" width="60%"></picture><br>效果图来自[@东城Eastown](https://space.bilibili.com/171389567)|
|
|
287
|
+
|
|
288
|
+
---
|
|
289
|
+
|
|
290
|
+
### 贡献者
|
|
291
|
+
|
|
292
|
+
感谢以下贡献者对本项目做出的贡献
|
|
293
|
+
|
|
294
|
+
<a href="https://github.com/Catrong/phi-plugin/graphs/contributors">
|
|
295
|
+
<img src="https://contrib.rocks/image?repo=Catrong/phi-plugin" />
|
|
296
|
+
</a>
|
|
297
|
+
|
|
298
|
+

|
|
299
|
+
|
|
300
|
+
### Star History
|
|
301
|
+
|
|
302
|
+
<a href="https://www.star-history.com/#Catrong/phi-plugin&Date">
|
|
303
|
+
<picture>
|
|
304
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=Catrong/phi-plugin&type=Date&theme=dark" />
|
|
305
|
+
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=Catrong/phi-plugin&type=Date" />
|
|
306
|
+
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=Catrong/phi-plugin&type=Date" />
|
|
307
|
+
</picture>
|
|
308
|
+
</a>
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
---
|
|
312
|
+
|
|
313
|
+
### 免责声明
|
|
314
|
+
|
|
315
|
+
1. 功能仅限内部交流与小范围使用,请勿将`Yunzai-Bot`及`phi-Plugin`用于任何以盈利为目的的场景.
|
|
316
|
+
2. 图片与其他素材均来自于网络,仅供交流学习使用,如有侵权请联系,会立即删除.
|
|
317
|
+
3. 云存档由 [7aGiven/PhigrosLibrary](https://github.com/7aGiven/PhigrosLibrary) 改写而来
|
|
318
|
+
|
|
319
|
+
###### 写的不好,轻喷……
|
|
320
|
+
|
|
321
|
+
### 友情链接
|
|
322
|
+
|
|
323
|
+
<table>
|
|
324
|
+
<tr>
|
|
325
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"> <a href="https://github.com/yhArcadia/Yunzai-Bot-plugins-index"><b>Yunzai-Bot 相关内容索引</b></a></td>
|
|
326
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"> <a href="https://github.com/yoimiya-kokomi/Yunzai-Bot"><b>Yunzai-Bot</b></a></td>
|
|
327
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"> <a href="https://github.com/yoimiya-kokomi/Miao-Yunzai"><b>Miao-Yunzai</b></a></td>
|
|
328
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"> <a href="https://github.com/TimeRainStarSky/Yunzai"><b>TRSS-Yunzai</b></a></td>
|
|
329
|
+
</tr>
|
|
330
|
+
</table>
|
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<h1>
|
|
3
|
+
<picture>
|
|
4
|
+
<source srcset="https://github.com/user-attachments/assets/b9dd395d-b983-4532-a6b1-12abfaba5cea" type="image/avif" width="80%" />
|
|
5
|
+
<img src="https://github.com/Catrong/phi-plugin/assets/117198625/3d952c50-80b5-4031-9104-666027fbddcb" width="80%">
|
|
6
|
+
</picture>
|
|
7
|
+
|
|
8
|
+
### [中文](./README.md) | English
|
|
9
|
+
</h1>
|
|
10
|
+
|
|
11
|
+
[](https://pd.qq.com/s/e3z86q6bw)
|
|
12
|
+
[](https://discord.gg/invite/RkBwFBaRqa)
|
|
13
|
+
[](https://space.bilibili.com/403342249)
|
|
14
|
+
[](../../stargazers)
|
|
15
|
+
|
|
16
|
+

|
|
17
|
+

|
|
18
|
+

|
|
19
|
+
[](/yoimiya-kokomi/Yunzai-Bot)
|
|
20
|
+
[](/yoimiya-kokomi/Miao-Yunzai)
|
|
21
|
+
[](/TimeRainStarSky/Yunzai)
|
|
22
|
+
</div>
|
|
23
|
+
|
|
24
|
+
### Introduction
|
|
25
|
+
|
|
26
|
+
`phi-plugin` is a plugin for querying Phigros information, including b30, score, userinfo, and more Phigros-related features. Suggestions and issues can be submitted via [Issues](./issues). [Pull request](./pulls) are welcome.
|
|
27
|
+
|
|
28
|
+
Use `/phihelp` after installation to view detailed commands.
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
### Installation
|
|
33
|
+
|
|
34
|
+
Run the following commands in your Yunzai directory:
|
|
35
|
+
|
|
36
|
+
> Using GitHub
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
# Install plugin core
|
|
40
|
+
git clone --depth=1 https://github.com/Catrong/phi-plugin.git ./plugins/phi-plugin/
|
|
41
|
+
# Enter plugin directory
|
|
42
|
+
cd ./plugins/phi-plugin/
|
|
43
|
+
# Install dependencies
|
|
44
|
+
pnpm install -P
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
> Using Gitee
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
# Install plugin core
|
|
51
|
+
git clone --depth=1 https://gitee.com/catrong/phi-plugin.git ./plugins/phi-plugin/
|
|
52
|
+
# Enter plugin directory
|
|
53
|
+
cd ./plugins/phi-plugin/
|
|
54
|
+
# Install dependencies
|
|
55
|
+
pnpm install -P
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
> [!WARNING]
|
|
59
|
+
> Please use the master's permission to execute this command to download the song illustrations. Otherwise, the relevant song illustrations will not be displayed properly! (It can be standard input or other platforms.)
|
|
60
|
+
>
|
|
61
|
+
>```
|
|
62
|
+
> /phi downill
|
|
63
|
+
>```
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
#### Todo
|
|
68
|
+
|
|
69
|
+
* [ ] Optimize UI design
|
|
70
|
+
* [ ] Add collection/avatar gallery
|
|
71
|
+
* [ ] Song selection via phi
|
|
72
|
+
* [ ] Optimize sessionToken QR scanning
|
|
73
|
+
* [ ] Modify settings via commands
|
|
74
|
+
* [ ] Query Song History Constants
|
|
75
|
+
* [ ] Score Map Tags
|
|
76
|
+
* [ ] Adapt to TapTap International Version
|
|
77
|
+
* [ ] ...
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
### Features
|
|
82
|
+
|
|
83
|
+
Note: `#` can be replaced with `/`. Command headers are customizable.
|
|
84
|
+
|
|
85
|
+
#### **User Features**
|
|
86
|
+
|
|
87
|
+
| **Command** | **Description** |
|
|
88
|
+
| :- | :- |
|
|
89
|
+
| `#phi help` | Show help |
|
|
90
|
+
| `#phi (gb\|cn)?bind <token>` | Bind sessionToken (supports CN/Global, default is CN) |
|
|
91
|
+
| `#phi unbind` | Clear the current Bot's local sessionToken, API ID, save, and history only; API platform bindings are unchanged |
|
|
92
|
+
| `#phi clean` | Delete all records |
|
|
93
|
+
| `#phi update` | Update save data |
|
|
94
|
+
| `#phi (rks\|pgr\|b30)` | Query Rks (provides b30 results) |
|
|
95
|
+
| `#phi x30` | Query 1Good b30 |
|
|
96
|
+
| `#phi fc30` | Query Full Combo b30 |
|
|
97
|
+
| `杠批比三零` | Same as above,but looks like Arcaea Online |
|
|
98
|
+
| `#phi info(1\|2)?` | View personal stats |
|
|
99
|
+
| `#phi lmtacc [0-100]` | Calculate Rks with minimum ACC limit |
|
|
100
|
+
| `#phi (lvsco(re)\|scolv) <rating range> <difficulty>` | Get scores in range |
|
|
101
|
+
| `#phi chap <chapter name\|help>` | Get chapter scores |
|
|
102
|
+
| `#phi ahv <rating>[-v version]` | Get rating score table |
|
|
103
|
+
| `#phi list <-dif difficultyRange> <-acc accRange> <EZ\|HD\|IN\|AT> <NEW\|C\|B\|A\|S\|V\|FC\|PHI>` | List scores per song in range |
|
|
104
|
+
| `#phi hisb30` | Calculate B30 changes based on history |
|
|
105
|
+
| `#phi best1(+)` | Text-based b30 (up to b99) |
|
|
106
|
+
| `#phi score xxx [-dif (EZ\|HD\|IN\|AT)] [-or (acc\|score\|fc\|time)] [-unrank]` | Get single score & improvement tips (parameters for score ranking, API required) |
|
|
107
|
+
| `#phi suggest` | Get songs that can increase Rks by +0.01 |
|
|
108
|
+
| `#phi ranklist [rank]` | Rks leaderboard |
|
|
109
|
+
| `#phi rankfind <rks>` | Find how many users have higher RKS than the queried RKS |
|
|
110
|
+
| `#phi data` | Check user data count |
|
|
111
|
+
| `#phi guess` | Guess song from illustration (reply directly) |
|
|
112
|
+
| `#phi (ltr\|letter)` | Guess song via letters (use #open/#ans) |
|
|
113
|
+
| `#phi tipgame` | Guess song via hints (use #tip/#ans) |
|
|
114
|
+
| `#phi song xxx` | Query song info (supports aliases) |
|
|
115
|
+
| `#phi chart <song> [difficulty=IN]` | View chart details |
|
|
116
|
+
| `#phi tag <song name> [difficulty=IN] <tag>` | View chart tags, available tags shown in response, default difficulty is IN |
|
|
117
|
+
| `#phi settag <song name> [difficulty=IN] <tag>` | Tag a chart, recommended to use /tag to query tag list first, default difficulty is IN |
|
|
118
|
+
| `#phi (comment\|cmt) <song> [difficulty=IN](newline)<text>` | Comment on songs |
|
|
119
|
+
| `#phi mycmt` | View own cloud comments |
|
|
120
|
+
| `#phi recmt <ID>` | Delete comment (owner/admin) |
|
|
121
|
+
| `#phi (table\|ratings) <rating>` | Phigros rating table |
|
|
122
|
+
| `#phi (difHis\|历史定数)` | Query song rating history |
|
|
123
|
+
| `#phi new` | Check new songs |
|
|
124
|
+
| `#phi tips` | Random tips |
|
|
125
|
+
| `#phi jrrp` | Daily luck |
|
|
126
|
+
| `#phi alias xxx` | Query song aliases |
|
|
127
|
+
| `#phi (rand\|random) [rating] [difficulty]` | Random song by criteria |
|
|
128
|
+
| `#phi randclg [total] [difficulty] ([rating range])` | Random challenge (e.g., /rand 40 (IN 13-15)) |
|
|
129
|
+
| `#phi ill xxx` | View song illustration |
|
|
130
|
+
| `#phi search <criteria>` | Search songs by BPM/rating/notes |
|
|
131
|
+
| `#phi theme [number]` | Switch themes; page styles are applied according to the theme package |
|
|
132
|
+
| `#phi myset <field> <value>` | View/modify user settings, value supports selection by number (e.g., /myset theme 1) |
|
|
133
|
+
| `sign/sign` | Daily check-in |
|
|
134
|
+
| `task/mytasks` | View tasks |
|
|
135
|
+
| `retask/refresh` | Refresh tasks (20 Notes) |
|
|
136
|
+
| `#phi (send\|give) <target> <amount>` | Send Notes |
|
|
137
|
+
|
|
138
|
+
#### **Admin Features**
|
|
139
|
+
|
|
140
|
+
| **Command** | **Description** |
|
|
141
|
+
| :- | :- |
|
|
142
|
+
| `#phi backup (back)?` | Backup saves (+back to send) |
|
|
143
|
+
| `#phi restore` | Restore from backup |
|
|
144
|
+
| `#phi(setnick) xxx ---> xxx` | Set song alias |
|
|
145
|
+
| `#phi(delnick) xxx` | Remove alias |
|
|
146
|
+
| `#phi(force)?(update)` | Update plugin |
|
|
147
|
+
| `#phi repu` | Restart puppeteer |
|
|
148
|
+
| `#download ill` | Download illustration |
|
|
149
|
+
| `#phi get <rank>` | Get sessionToken by rank |
|
|
150
|
+
| `#phi del <token>` | Ban sessionToken |
|
|
151
|
+
| `#phi allow <token>` | Unban sessionToken |
|
|
152
|
+
| `#phi (set\|set)<feature><value>` | Modify settings |
|
|
153
|
+
| `#phi ban <feature>` | Disable features |
|
|
154
|
+
| `#phi botClaimLink` | **Owner command** Get a Bot platform claim link that is valid for 15 minutes; private chat is recommended |
|
|
155
|
+
| `#phi resetApiBot` | **Owner command** Issue a new API Bot identity; only use this if the credentials are lost or revoked, or when intentionally replacing the identity |
|
|
156
|
+
|
|
157
|
+
<details open>
|
|
158
|
+
<summary>Ban Parameters</summary>
|
|
159
|
+
|
|
160
|
+
#### `#phi ban` Parameters
|
|
161
|
+
|
|
162
|
+
| Parameter | Feature | Affected Commands |
|
|
163
|
+
| :- | :- | :- |
|
|
164
|
+
| all | All features | All |
|
|
165
|
+
| help | Help | /help /tkhelp |
|
|
166
|
+
| bind | Binding | /bind /unbind |
|
|
167
|
+
| b19 | Image queries | /pgr /update /info /list /pb30 /p30 /lmtacc /score /lvsco /chap /suggest |
|
|
168
|
+
| wb19 | Text queries | /data /best |
|
|
169
|
+
| song | Song info | /song /chart /ill /search /alias /rand /randclg /table /cmt /recmt /addtag /subtag /retag |
|
|
170
|
+
| ranklist | Leaderboards | /ranklist /godlist |
|
|
171
|
+
| fnc | Utilities | /com /tips /new |
|
|
172
|
+
| tipgame | Hint game | /tipgame |
|
|
173
|
+
| guessgame | Guess game | /guess |
|
|
174
|
+
| ltrgame | Letter game | /letter /ltr |
|
|
175
|
+
| sign | Social | /sign /send /task /retask /jrrp |
|
|
176
|
+
| setting | Settings | /theme |
|
|
177
|
+
| dan | Dan authentication | /dan /danupdate |
|
|
178
|
+
</details>
|
|
179
|
+
|
|
180
|
+
## API Feature Testing Now Open
|
|
181
|
+
|
|
182
|
+
API features can be manually enabled/disabled in settings. When enabled, it automatically syncs user usage records and historical scores from Phi-Plugin applications (web, Yunzai, excluding Koishi for now) to the API server. Some features require API to be enabled.
|
|
183
|
+
|
|
184
|
+
| **Command** | **Description**
|
|
185
|
+
| :- | :-
|
|
186
|
+
| `#phi bind <userId>` | Enable score query API, bind API account
|
|
187
|
+
| `#phi setApiToken <token>` | Set API Token
|
|
188
|
+
| `#phi tokenList` | Get list of currently bound platforms
|
|
189
|
+
| `#phi auth <api Token>` | Get sessionToken via API Token
|
|
190
|
+
| `#phi clearApiData` | Permanently delete the phi-api account and cloud data; requires Phigros SSTK permission and confirmation
|
|
191
|
+
| `#phi updateHistory` | Update historical scores from BOT to API server
|
|
192
|
+
| `#phi updateUserToken` | **Owner command** Upload current BOT user tokens to API server
|
|
193
|
+
|
|
194
|
+
#### Claiming the Bot Platform Identity (Bot Owner)
|
|
195
|
+
|
|
196
|
+
Claiming associates this phi-plugin deployment with your signed-in web account so that you can view its status and binding statistics and manage it from the web dashboard. The Bot is already active after it successfully registers with the API; leaving it unclaimed does not disable the Bot or user score queries.
|
|
197
|
+
|
|
198
|
+
Claim procedure:
|
|
199
|
+
|
|
200
|
+
1. Update phi-plugin to a version that supports Bot platform authentication and make sure `openPhiPluginApi` is enabled.
|
|
201
|
+
2. Start or restart the Bot once. If the plugin has no API Bot identity, it automatically registers with the API and writes the credentials to the local configuration. Never disclose or manually send `apiBotClientSecret`.
|
|
202
|
+
3. As the Bot owner, send `#phi botClaimLink` (or `#phi 获取Bot认领链接`) in a **private chat** with the Bot.
|
|
203
|
+
4. Open the returned claim link within 15 minutes. If you are not signed in on the website, sign in first and then continue from the original claim page.
|
|
204
|
+
5. Verify the Bot name and `clientId` shown on the page, then confirm the claim. You can then view and manage the Bot from the Bot management page in the web dashboard.
|
|
205
|
+
|
|
206
|
+
A claim link is single-use. If it expires or has already been used, send the command again to obtain a new one. When the command is sent in a group chat, the plugin does not post the link in the group; it writes the link to the Bot console instead. Using a private chat is recommended.
|
|
207
|
+
|
|
208
|
+
`#phi resetApiBot` (or `#phi 重置API Bot身份`) issues a completely new `clientId` and secret and replaces the current Bot identity. This is not part of the normal claim procedure. Only use it if the local credentials are lost, the identity has been revoked by the API, or you intentionally want to replace the Bot identity. The new identity must be claimed again. To prevent sensitive information from leaking, when this command is used in a group chat, the new identity details and claim link are written only to the Bot console.
|
|
209
|
+
|
|
210
|
+
#### Detailed Permission Explanation:
|
|
211
|
+
|
|
212
|
+
Binding and retrieving saves only requires a score query ID. When binding with `sessionToken` for the first time, the `API Token` will be set to the `sessionToken`, and if users provide a `sessionToken` during binding, the bot will save it locally.
|
|
213
|
+
|
|
214
|
+
---
|
|
215
|
+
|
|
216
|
+
### Support Development
|
|
217
|
+
|
|
218
|
+
[<img src="https://github.com/user-attachments/assets/8c181f08-a2b6-4e67-8b61-bd2e4027a6a4" width="400" />](https://afdian.com/a/Feijiang_)
|
|
219
|
+
|
|
220
|
+
Your support is my greatest motivation!
|
|
221
|
+
|
|
222
|
+
#### Sponsors
|
|
223
|
+
|
|
224
|
+
Special thanks to these sponsors (list may not be fully updated):
|
|
225
|
+
|
|
226
|
+
<table>
|
|
227
|
+
<tr>
|
|
228
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><a href="https://github.com/qilinX88"><img src="https://avatars.githubusercontent.com/u/92022485?v=4?s=100" style="border-radius: 50%" width="50px;" alt="Loser_X"/><br /><sub><b>@Loser_X</b></sub></a><br />🌸 20 🌸</td>
|
|
229
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><a href="https://github.com/S-t-e-v-e-e"><img src="https://avatars.githubusercontent.com/u/117198625?v=4?s=100" style="border-radius: 50%" width="50px;" alt="史蒂夫"/><br /><sub><b>@Steve~ɘvɘɈƧ</b></sub><br />🌸 40 🌸</td>
|
|
230
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><img src="https://pic1.afdiancdn.com/user/a743be34fb4e11ef81be52540025c377/avatar/a284c446cefded67dbbf0c14b9eda2a0_w1080_h1080_s115.jpeg?imageView2/1/w/240/h/240" style="border-radius: 50%" width="50px;" alt="溯洌RIPPLE"/><br /><sub><b>溯洌RIPPLE</b></sub><br/>🌸 35 🌸</td>
|
|
231
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><img src="https://pic1.afdiancdn.com/default/avatar/avatar-purple.png?imageView2/1/" style="border-radius: 50%" width="50px;" alt="祈"/><br /><sub><b>祈</b></sub><br/>🌸 15 🌸</td>
|
|
232
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><img src="https://pic1.afdiancdn.com/user/7f56847012a911f0853552540025c377/avatar/752eaae4cf8018a82719ea8f42569eae_w2000_h2000_s2699.png?imageView2/1/w/240/h/240" style="border-radius: 50%" width="50px;" alt="茗亿"/><br /><sub><b>茗亿</b></sub><br/>🌸 30 🌸</td>
|
|
233
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><img src="https://pic1.afdiancdn.com/user/fbcb2b98204611eea8f152540025c377/avatar/d4e7f58683064153bfbedb99ad95c6d8_w855_h875_s117.jpeg?imageView2/1/w/240/h/240" style="border-radius: 50%" width="50px;" alt="..."/><br /><sub><b>...</b></sub><br/>🌸 50 🌸</td>
|
|
234
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><img src="https://pic1.afdiancdn.com/user/4041ac584eb111f0b57952540025c377/avatar/04de899ed964c6cfe315d27ea56a1fea_w1080_h1080_s69.jpeg?imageView2/1/w/240/h/240" style="border-radius: 50%" width="50px;" alt="夏夏肃炎"/><br /><sub><b>夏夏肃炎</b></sub><br/>🌸 5 🌸</td>
|
|
235
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><img src="https://pic1.afdiancdn.com/user/7737c9cca1f211ed896a5254001e7c00/avatar/7a320f384ead8f4fca4630efa31c0c3b_w705_h705_s346.jpeg?imageView2/1/w/240/h/240" style="border-radius: 50%" width="50px;" alt="Bluerosion"/><br /><sub><b>Bluerosion</b></sub><br/>🌸 52.0 🌸</td>
|
|
236
|
+
<td align="center" valign="top" width="35%" nowrap="nowrap"><img src="https://pic1.afdiancdn.com/user/00794630e24f11ebac7252540025c377/avatar/f67fff0ab78bcf86d81a7b12a55ba3ca_w374_h354_s148.png?imageView2/1/w/240/h/240" style="border-radius: 50%" width="50px;" alt="Bluerosion"/><br /><sub><b>铃</b></sub><br/>🌸 5 🌸</td>
|
|
237
|
+
</tr>
|
|
238
|
+
</table>
|
|
239
|
+
|
|
240
|
+
---
|
|
241
|
+
|
|
242
|
+
### Previews
|
|
243
|
+
|
|
244
|
+
| **Best30**<br><picture><source srcset="https://github.com/user-attachments/assets/22670da2-cd67-4da3-9589-e139f3db6d82" type="image/avif" width="80%" /><img src="https://github.com/user-attachments/assets/7faf1dba-2cd5-44d5-bc9d-d880fd2f2201" width="80%" /></picture><br>By [@Steve~ɘvɘɈƧ](https://github.com/S-t-e-v-e-e) | **Single Score**<br><picture><source srcset="https://github.com/user-attachments/assets/8a5adadb-3cdf-4371-b1d3-cc869f89a545" type="image/avif" width="40%" /><img src="https://github.com/user-attachments/assets/4594ef39-dacf-4079-9612-5090626f572b" width="40%"></picture><br>Legacy Version<br><picture><source srcset="https://github.com/user-attachments/assets/83296c38-2181-479f-ad26-dfb2e09bccf8" type="image/avif" width="40%" /><img src="https://github.com/Catrong/phi-plugin/assets/117198625/093e3d30-7f9e-48cb-9e12-bb9f0bb3b40c" width="40%"></picture><br>**Song Info**<br><picture><source srcset="https://github.com/user-attachments/assets/e332c88d-ecd0-49e7-aa6b-310645f14a5a" type="image/avif" width="40%" /><img src="https://github.com/Catrong/phi-plugin/assets/117198625/c6eb9694-8f72-4d3f-85d9-5120375b047b" width="40%"></picture> |
|
|
245
|
+
|:-------------------:|:------------------------:|
|
|
246
|
+
| **Range Scores**<br><picture><source srcset="https://github.com/user-attachments/assets/b1a4ff41-d26b-4ccc-942d-087797ff02b3" type="image/avif" /><img src="https://github.com/Catrong/phi-plugin/assets/117198625/411dff8e-ec93-4ebe-80ff-510105fd3f65"></picture><br>By [@东城Eastown](https://space.bilibili.com/171389567) <br>**User Stats**<br><picture><source srcset="https://github.com/user-attachments/assets/1361b1e9-510f-4140-a87d-a74b2ee70337" type="image/avif" /><img src="https://github.com/user-attachments/assets/ed20abfa-5bb1-4215-8b2b-8c5171126432"></picture> | **Legacy Stats**<br><picture><source srcset="https://github.com/user-attachments/assets/c876119b-d98f-4751-85ba-675e6f2ba55f" type="image/avif" width="60%" /><img src="https://github.com/Catrong/phi-plugin/assets/117198625/9e536f1a-4cbe-41da-b2da-94d1bcd70488" width="60%"></picture> |
|
|
247
|
+
|
|
248
|
+
---
|
|
249
|
+
|
|
250
|
+
### Contributors
|
|
251
|
+
|
|
252
|
+
<a href="https://github.com/Catrong/phi-plugin/graphs/contributors">
|
|
253
|
+
<img src="https://contrib.rocks/image?repo=Catrong/phi-plugin" />
|
|
254
|
+
</a>
|
|
255
|
+
|
|
256
|
+

|
|
257
|
+
|
|
258
|
+
### Star History
|
|
259
|
+
|
|
260
|
+
<a href="https://www.star-history.com/#Catrong/phi-plugin&Date">
|
|
261
|
+
<picture>
|
|
262
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=Catrong/phi-plugin&type=Date&theme=dark" />
|
|
263
|
+
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=Catrong/phi-plugin&type=Date" />
|
|
264
|
+
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=Catrong/phi-plugin&type=Date" />
|
|
265
|
+
</picture>
|
|
266
|
+
</a>
|
|
267
|
+
|
|
268
|
+
---
|
|
269
|
+
|
|
270
|
+
### Disclaimer
|
|
271
|
+
|
|
272
|
+
1. This plugin is intended for non-commercial use only.
|
|
273
|
+
2. All images/assets are from the internet and will be removed upon request.
|
|
274
|
+
3. Cloud save system adapted from [7aGiven/PhigrosLibrary](https://github.com/7aGiven/PhigrosLibrary)
|
|
275
|
+
|
|
276
|
+
### Related Projects
|
|
277
|
+
|
|
278
|
+
<table>
|
|
279
|
+
<tr>
|
|
280
|
+
<td align="center"><a href="https://github.com/yhArcadia/Yunzai-Bot-plugins-index"><b>Yunzai-Bot Plugin Index</b></a></td>
|
|
281
|
+
<td align="center"><a href="https://github.com/yoimiya-kokomi/Yunzai-Bot"><b>Yunzai-Bot</b></a></td>
|
|
282
|
+
<td align="center"><a href="https://github.com/yoimiya-kokomi/Miao-Yunzai"><b>Miao-Yunzai</b></a></td>
|
|
283
|
+
<td align="center"><a href="https://github.com/TimeRainStarSky/Yunzai"><b>TRSS-Yunzai</b></a></td>
|
|
284
|
+
</tr>
|
|
285
|
+
</table>
|