├── .github ├── FUNDING.yml └── workflows │ └── pypi-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── nonebot_plugin_bawiki ├── __init__.py ├── command │ ├── __init__.py │ ├── arona.py │ ├── calender.py │ ├── clear_cache.py │ ├── craft.py │ ├── emoji.py │ ├── event.py │ ├── furniture.py │ ├── gacha.py │ ├── level_guide.py │ ├── logo_generate.py │ ├── manga.py │ ├── raid.py │ ├── raid_data_cn.py │ ├── stu_fav.py │ ├── stu_rank.py │ ├── stu_wiki_gamekee.py │ ├── stu_wiki_schale.py │ ├── time_atk.py │ ├── update_future.py │ └── voice.py ├── compat.py ├── config.py ├── data │ ├── __init__.py │ ├── arona.py │ ├── bawiki.py │ ├── gacha.py │ ├── gamekee.py │ ├── logo_generate.py │ ├── playwright.py │ ├── schaledb.py │ └── shittim_chest.py ├── help │ ├── __init__.py │ ├── const.py │ ├── manual.py │ └── pic_menu.py ├── resource │ ├── __init__.py │ └── res │ │ ├── gacha │ │ ├── gacha_bg.webp │ │ ├── gacha_bg_old.webp │ │ ├── gacha_card_bg.png │ │ ├── gacha_card_mask.png │ │ ├── gacha_new.png │ │ ├── gacha_pickup.png │ │ ├── gacha_star.png │ │ └── gacha_stu_err.png │ │ ├── gamekee │ │ └── gamekee_util.js │ │ ├── general │ │ ├── calender_banner.png │ │ └── gradient.webp │ │ ├── index.html │ │ ├── logo │ │ ├── ba_logo.js │ │ ├── cross.png │ │ └── halo.png │ │ ├── schale │ │ ├── schale_util.css │ │ └── schale_util.js │ │ └── shittim │ │ ├── assets │ │ ├── BG_AronaRoom_In.webp │ │ ├── Card_Bg.png │ │ ├── Common_Icon_Asist.png │ │ ├── diamond.webp │ │ ├── frame │ │ │ ├── Explosion.png │ │ │ ├── Mystic.png │ │ │ └── Pierce.png │ │ ├── gold.webp │ │ ├── role │ │ │ ├── DamageDealer.png │ │ │ ├── Healer.png │ │ │ ├── Supporter.png │ │ │ └── Tanker.png │ │ ├── silver.webp │ │ └── star │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ └── 5.png │ │ ├── css │ │ ├── shittim.css │ │ └── shittim_util.css │ │ ├── js │ │ └── shittim_util.js │ │ └── templates │ │ ├── base.html.jinja │ │ ├── components.html.jinja │ │ ├── content_raid_rank.html.jinja │ │ └── content_rank_detail.html.jinja └── util.py ├── pdm.lock └── pyproject.toml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | custom: ["https://afdian.net/@lgc2333/"] 4 | -------------------------------------------------------------------------------- /.github/workflows/pypi-publish.yml: -------------------------------------------------------------------------------- 1 | name: Publish Python 🐍 distributions 📦 to PyPI 2 | 3 | on: 4 | release: 5 | types: [published] 6 | workflow_dispatch: 7 | 8 | jobs: 9 | build-n-publish: 10 | name: Use PDM to Build and publish Python 🐍 distributions 📦 to PyPI 11 | runs-on: ubuntu-latest 12 | 13 | permissions: 14 | # IMPORTANT: this permission is mandatory for trusted publishing 15 | id-token: write 16 | 17 | steps: 18 | - name: Checkout 19 | uses: actions/checkout@master 20 | with: 21 | submodules: true 22 | 23 | - name: Setup PDM 24 | uses: pdm-project/setup-pdm@v3 25 | 26 | - name: Build and Publish distribution 📦 to PyPI 27 | run: pdm publish 28 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | # /.vscode/ 3 | /testnb2/ 4 | /dist/ 5 | venv/ 6 | poetry.lock 7 | .pdm-python 8 | build/ 9 | __pycache__/ 10 | /bawiki-data/ 11 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 LgCookie 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | **本插件已放弃维护** 4 | 5 |
排名 | 93 |分数 | 94 |难度 | 95 |用时 | 96 |刀数 | 97 |
---|---|---|---|---|
{{ rank.rank }} | 104 |{{ "{:,}".format(rank.best_ranking_point) }} | 105 |
106 | {{ rank.hard }}
107 | |
108 | {{ rank.battle_time }} | 109 |{%- if rank.try_number_infos -%}{{ rank.try_number_infos | length }}{%- else -%}未知{%- endif -%} | 110 |
第 {{ info.try_number }} 刀
162 |