├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── achieves ├── del.ts ├── draw_analysis.ts ├── draw_analysis_history.ts ├── export.ts └── import.ts ├── assets ├── fonts │ └── GachaFont.ttf ├── images │ ├── 5-Star.png │ ├── Icon_5_Stars.png │ ├── item.png │ ├── main.png │ └── title.png ├── js │ ├── echarts.min.js │ ├── http.js │ ├── translate.js │ ├── url.js │ ├── util.js │ └── vue@3.2.47.min.js └── styles │ ├── analysis-phone.css │ └── analysis.css ├── commands.ts ├── components ├── analysis │ └── app.js └── analysis_phone │ ├── app.js │ ├── character.js │ └── item.js ├── init.ts ├── module └── GachaAnalysisConfig.ts ├── package.json ├── routes ├── analysis-route.ts └── index.ts ├── util ├── api.ts ├── types.ts └── util.ts └── views ├── analysis-phone.html └── analysis.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/README.md -------------------------------------------------------------------------------- /achieves/del.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/achieves/del.ts -------------------------------------------------------------------------------- /achieves/draw_analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/achieves/draw_analysis.ts -------------------------------------------------------------------------------- /achieves/draw_analysis_history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/achieves/draw_analysis_history.ts -------------------------------------------------------------------------------- /achieves/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/achieves/export.ts -------------------------------------------------------------------------------- /achieves/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/achieves/import.ts -------------------------------------------------------------------------------- /assets/fonts/GachaFont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/assets/fonts/GachaFont.ttf -------------------------------------------------------------------------------- /assets/images/5-Star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/assets/images/5-Star.png -------------------------------------------------------------------------------- /assets/images/Icon_5_Stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/assets/images/Icon_5_Stars.png -------------------------------------------------------------------------------- /assets/images/item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/assets/images/item.png -------------------------------------------------------------------------------- /assets/images/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/assets/images/main.png -------------------------------------------------------------------------------- /assets/images/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/assets/images/title.png -------------------------------------------------------------------------------- /assets/js/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/assets/js/echarts.min.js -------------------------------------------------------------------------------- /assets/js/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/assets/js/http.js -------------------------------------------------------------------------------- /assets/js/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/assets/js/translate.js -------------------------------------------------------------------------------- /assets/js/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/assets/js/url.js -------------------------------------------------------------------------------- /assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/assets/js/util.js -------------------------------------------------------------------------------- /assets/js/vue@3.2.47.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/assets/js/vue@3.2.47.min.js -------------------------------------------------------------------------------- /assets/styles/analysis-phone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/assets/styles/analysis-phone.css -------------------------------------------------------------------------------- /assets/styles/analysis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/assets/styles/analysis.css -------------------------------------------------------------------------------- /commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/commands.ts -------------------------------------------------------------------------------- /components/analysis/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/components/analysis/app.js -------------------------------------------------------------------------------- /components/analysis_phone/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/components/analysis_phone/app.js -------------------------------------------------------------------------------- /components/analysis_phone/character.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/components/analysis_phone/character.js -------------------------------------------------------------------------------- /components/analysis_phone/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/components/analysis_phone/item.js -------------------------------------------------------------------------------- /init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/init.ts -------------------------------------------------------------------------------- /module/GachaAnalysisConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/module/GachaAnalysisConfig.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/package.json -------------------------------------------------------------------------------- /routes/analysis-route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/routes/analysis-route.ts -------------------------------------------------------------------------------- /routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/routes/index.ts -------------------------------------------------------------------------------- /util/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/util/api.ts -------------------------------------------------------------------------------- /util/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/util/types.ts -------------------------------------------------------------------------------- /util/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/util/util.ts -------------------------------------------------------------------------------- /views/analysis-phone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/views/analysis-phone.html -------------------------------------------------------------------------------- /views/analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wickedll/genshin_draw_analysis/HEAD/views/analysis.html --------------------------------------------------------------------------------