nonebot-plugin-fishing2 0.1.0__tar.gz → 1.0.1__tar.gz
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.
- {nonebot_plugin_fishing2-0.1.0 → nonebot_plugin_fishing2-1.0.1}/LICENSE +21 -21
- {nonebot_plugin_fishing2-0.1.0 → nonebot_plugin_fishing2-1.0.1}/PKG-INFO +14 -25
- {nonebot_plugin_fishing2-0.1.0 → nonebot_plugin_fishing2-1.0.1}/README.md +6 -18
- {nonebot_plugin_fishing2-0.1.0 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/__init__.py +601 -466
- {nonebot_plugin_fishing2-0.1.0 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/config.py +301 -301
- {nonebot_plugin_fishing2-0.1.0 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/data_source.py +920 -776
- {nonebot_plugin_fishing2-0.1.0 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/fish_helper.py +157 -157
- {nonebot_plugin_fishing2-0.1.0 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/migrations/7609e6d106dd_init_db.py +43 -43
- {nonebot_plugin_fishing2-0.1.0 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/migrations/c5ab992c9af3_add_achievements.py +38 -38
- {nonebot_plugin_fishing2-0.1.0 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/model.py +20 -20
- {nonebot_plugin_fishing2-0.1.0 → nonebot_plugin_fishing2-1.0.1}/pyproject.toml +9 -5
- {nonebot_plugin_fishing2-0.1.0 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/migrations/68463f3e5f33_.py +0 -0
- {nonebot_plugin_fishing2-0.1.0 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/migrations/e9015df43907_add_special_fishes_field.py +0 -0
- {nonebot_plugin_fishing2-0.1.0 → nonebot_plugin_fishing2-1.0.1}/nonebot_plugin_fishing2/migrations/f70bdeaec7a4_add_specialfishes_table.py +0 -0
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 Polaris_Light
|
|
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.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Polaris_Light
|
|
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.
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: nonebot-plugin-fishing2
|
|
3
|
-
Version: 0.1
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: 更好的电子钓鱼
|
|
5
|
-
License: MIT
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
License-File: LICENSE
|
|
6
7
|
Keywords: fishing
|
|
7
|
-
Author:
|
|
8
|
-
Author-email:
|
|
8
|
+
Author: Polaris_Light
|
|
9
|
+
Author-email: 995905922@qq.com
|
|
9
10
|
Requires-Python: >=3.8
|
|
10
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.8
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.9
|
|
@@ -15,29 +15,26 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
18
19
|
Requires-Dist: nonebot-adapter-onebot (>=2.0.0-beta.1)
|
|
19
20
|
Requires-Dist: nonebot-plugin-localstore (>=0.6.0)
|
|
20
21
|
Requires-Dist: nonebot-plugin-orm (>=0.7.1)
|
|
21
22
|
Requires-Dist: nonebot2 (>=2.2.1)
|
|
22
23
|
Requires-Dist: pydantic (>=1.10)
|
|
23
24
|
Requires-Dist: sqlalchemy (>=2.0.27)
|
|
24
|
-
Project-URL: Homepage, https://github.com/
|
|
25
|
+
Project-URL: Homepage, https://github.com/GLDYM/nonebot-plugin-fishing2
|
|
25
26
|
Description-Content-Type: text/markdown
|
|
26
27
|
|
|
27
28
|
<div align="center">
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
<p><img src="https://github.com/A-kirami/nonebot-plugin-template/blob/resources/NoneBotPlugin.svg" width="240" alt="NoneBotPluginText"></p>
|
|
31
|
-
</div>
|
|
32
|
-
|
|
33
|
-
<div align="center">
|
|
29
|
+
<a href="https://v2.nonebot.dev/store">
|
|
30
|
+
<img src="https://raw.githubusercontent.com/fllesser/nonebot-plugin-template/refs/heads/resource/.docs/NoneBotPlugin.svg" width="310" alt="logo"></a>
|
|
34
31
|
|
|
35
32
|
# nonebot-plugin-fishing2
|
|
36
33
|
|
|
37
34
|
_✨ 更好的电子钓鱼 ✨_
|
|
38
35
|
|
|
39
36
|
<a href="./LICENSE">
|
|
40
|
-
<img src="https://img.shields.io/github/license/
|
|
37
|
+
<img src="https://img.shields.io/github/license/GLDYM/nonebot-plugin-fishing2.svg" alt="license">
|
|
41
38
|
</a>
|
|
42
39
|
<a href="https://pypi.python.org/pypi/nonebot-plugin-fishing2">
|
|
43
40
|
<img src="https://img.shields.io/pypi/v/nonebot-plugin-fishing2.svg" alt="pypi">
|
|
@@ -147,14 +144,7 @@ FISHES='
|
|
|
147
144
|
|
|
148
145
|
### 指令表
|
|
149
146
|
|
|
150
|
-
在群聊或私聊发送“钓鱼帮助”查看本插件的帮助,或者使用[NoneBot-Plugin-PicMenu-Next](https://github.com/lgc-NB2Dev/nonebot-plugin-picmenu-next)
|
|
151
|
-
|
|
152
|
-
### 管理员指令表
|
|
153
|
-
|
|
154
|
-
| 指令 | 范围 | 说明 |
|
|
155
|
-
|:--------:|:----:|:----------------------------------------------:|
|
|
156
|
-
| 钓鱼预测 | 所有 | 对钓鱼进行模拟,查看各鱼的概率与期望,便于填表 |
|
|
157
|
-
| 鱼池 | 所有 | 查看数据库里面的所有特殊鱼 |
|
|
147
|
+
在群聊或私聊发送“钓鱼帮助”查看本插件的帮助,或者使用[NoneBot-Plugin-PicMenu-Next](https://github.com/lgc-NB2Dev/nonebot-plugin-picmenu-next)等帮助插件查看。管理员指令默认隐藏,只能由 SUPERUSER 发送“钓鱼帮助”查看。
|
|
158
148
|
|
|
159
149
|
### 赛博放生
|
|
160
150
|
|
|
@@ -170,7 +160,6 @@ FISHES='
|
|
|
170
160
|
- [x] 为钓鱼背包添加排序
|
|
171
161
|
- [x] 添加成就系统
|
|
172
162
|
- [x] 买装备!
|
|
173
|
-
- [
|
|
174
|
-
- [
|
|
175
|
-
- [ ] 屏蔽词库
|
|
163
|
+
- [x] 支持卖与普通鱼同名的特殊鱼
|
|
164
|
+
- [x] 管理员命令:捞鱼
|
|
176
165
|
|
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<p><img src="https://github.com/A-kirami/nonebot-plugin-template/blob/resources/NoneBotPlugin.svg" width="240" alt="NoneBotPluginText"></p>
|
|
5
|
-
</div>
|
|
6
|
-
|
|
7
|
-
<div align="center">
|
|
2
|
+
<a href="https://v2.nonebot.dev/store">
|
|
3
|
+
<img src="https://raw.githubusercontent.com/fllesser/nonebot-plugin-template/refs/heads/resource/.docs/NoneBotPlugin.svg" width="310" alt="logo"></a>
|
|
8
4
|
|
|
9
5
|
# nonebot-plugin-fishing2
|
|
10
6
|
|
|
11
7
|
_✨ 更好的电子钓鱼 ✨_
|
|
12
8
|
|
|
13
9
|
<a href="./LICENSE">
|
|
14
|
-
<img src="https://img.shields.io/github/license/
|
|
10
|
+
<img src="https://img.shields.io/github/license/GLDYM/nonebot-plugin-fishing2.svg" alt="license">
|
|
15
11
|
</a>
|
|
16
12
|
<a href="https://pypi.python.org/pypi/nonebot-plugin-fishing2">
|
|
17
13
|
<img src="https://img.shields.io/pypi/v/nonebot-plugin-fishing2.svg" alt="pypi">
|
|
@@ -121,14 +117,7 @@ FISHES='
|
|
|
121
117
|
|
|
122
118
|
### 指令表
|
|
123
119
|
|
|
124
|
-
在群聊或私聊发送“钓鱼帮助”查看本插件的帮助,或者使用[NoneBot-Plugin-PicMenu-Next](https://github.com/lgc-NB2Dev/nonebot-plugin-picmenu-next)
|
|
125
|
-
|
|
126
|
-
### 管理员指令表
|
|
127
|
-
|
|
128
|
-
| 指令 | 范围 | 说明 |
|
|
129
|
-
|:--------:|:----:|:----------------------------------------------:|
|
|
130
|
-
| 钓鱼预测 | 所有 | 对钓鱼进行模拟,查看各鱼的概率与期望,便于填表 |
|
|
131
|
-
| 鱼池 | 所有 | 查看数据库里面的所有特殊鱼 |
|
|
120
|
+
在群聊或私聊发送“钓鱼帮助”查看本插件的帮助,或者使用[NoneBot-Plugin-PicMenu-Next](https://github.com/lgc-NB2Dev/nonebot-plugin-picmenu-next)等帮助插件查看。管理员指令默认隐藏,只能由 SUPERUSER 发送“钓鱼帮助”查看。
|
|
132
121
|
|
|
133
122
|
### 赛博放生
|
|
134
123
|
|
|
@@ -144,6 +133,5 @@ FISHES='
|
|
|
144
133
|
- [x] 为钓鱼背包添加排序
|
|
145
134
|
- [x] 添加成就系统
|
|
146
135
|
- [x] 买装备!
|
|
147
|
-
- [
|
|
148
|
-
- [
|
|
149
|
-
- [ ] 屏蔽词库
|
|
136
|
+
- [x] 支持卖与普通鱼同名的特殊鱼
|
|
137
|
+
- [x] 管理员命令:捞鱼
|