< 可调用对象列表
此部分为机器人的花瓣功能相关。
若配置文件中 enable_petal
为 False
,将无法正常使用这些对象。
async def gained_petal
gained_petal(msg: Bot.MessageSession, amount: int)
参数:
msg
:消息会话。-
amount
:增加的花瓣数量。
返回:增加花瓣的提示消息。
此异步函数可以增加用户的花瓣数量。
async def lost_petal
lost_petal(msg: Bot.MessageSession, amount: int)
参数:
msg
:消息会话。-
amount
:减少的花瓣数量。
返回:减少花瓣的提示消息。
此异步函数可以减少用户的花瓣数量。
async def cost_petal
cost_petal(msg: Bot.MessageSession, amount: int) -> bool
参数:
msg
:消息会话。-
amount
:花费的花瓣数量。
返回:是否成功处理请求。
此异步函数可以处理用户花费的花瓣数量。