mirror of
https://github.com/baiqwerdvd/StarRailUID.git
synced 2025-05-06 19:53:44 +08:00
🐛少了一个文件()
This commit is contained in:
parent
fbd8f74605
commit
e02c415236
63
StarRailUID/starrailuid_note/note_text.py
Normal file
63
StarRailUID/starrailuid_note/note_text.py
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
from ..utils.mys_api import mys_api
|
||||||
|
from ..utils.error_reply import get_error
|
||||||
|
|
||||||
|
month_im = """==============
|
||||||
|
SR_UID:{}
|
||||||
|
==============
|
||||||
|
本日获取星琼:{}
|
||||||
|
本日获取星轨通票&星轨专票:{}
|
||||||
|
==============
|
||||||
|
昨日获取星琼:{}
|
||||||
|
昨日获取星轨通票&星轨专票:{}
|
||||||
|
==============
|
||||||
|
本月获取星琼:{}
|
||||||
|
本月获取星轨通票&星轨专票:{}
|
||||||
|
==============
|
||||||
|
上月获取星琼:{}
|
||||||
|
上月获取星轨通票&星轨专票:{}
|
||||||
|
==============
|
||||||
|
星琼收入组成:
|
||||||
|
{}=============="""
|
||||||
|
|
||||||
|
|
||||||
|
async def award(uid) -> str:
|
||||||
|
data = await mys_api.get_award(uid)
|
||||||
|
if isinstance(data, int):
|
||||||
|
return get_error(data)
|
||||||
|
day_hcoin = data['day_data']['current_hcoin']
|
||||||
|
day_rails_pass = data['day_data']['current_rails_pass']
|
||||||
|
lastday_hcoin = 0
|
||||||
|
lastday_rails_pass = 0
|
||||||
|
if int(uid[0]) < 6:
|
||||||
|
lastday_hcoin = data['day_data']['last_hcoin']
|
||||||
|
lastday_rails_pass = data['day_data']['last_rails_pass']
|
||||||
|
month_stone = data['month_data']['current_hcoin']
|
||||||
|
month_rails_pass = data['month_data']['current_rails_pass']
|
||||||
|
lastmonth_stone = data['month_data']['last_hcoin']
|
||||||
|
lastmonth_rails_pass = data['month_data']['last_rails_pass']
|
||||||
|
group_str = ''
|
||||||
|
for i in data['month_data']['group_by']:
|
||||||
|
group_str = (
|
||||||
|
group_str
|
||||||
|
+ i['action_name']
|
||||||
|
+ ':'
|
||||||
|
+ str(i['num'])
|
||||||
|
+ '('
|
||||||
|
+ str(i['percent'])
|
||||||
|
+ '%)'
|
||||||
|
+ '\n'
|
||||||
|
)
|
||||||
|
|
||||||
|
im = month_im.format(
|
||||||
|
uid,
|
||||||
|
day_hcoin,
|
||||||
|
day_rails_pass,
|
||||||
|
lastday_hcoin,
|
||||||
|
lastday_rails_pass,
|
||||||
|
month_stone,
|
||||||
|
month_rails_pass,
|
||||||
|
lastmonth_stone,
|
||||||
|
lastmonth_rails_pass,
|
||||||
|
group_str,
|
||||||
|
)
|
||||||
|
return im
|
Loading…
x
Reference in New Issue
Block a user