模块 nonebot_plugin_marshoai.plugins.twisuki_petcat
@on_function_call(description='传入猫猫种类, 新建一只猫猫').params(type=String(description='猫猫种类, 默认"猫1", 可留空'))
async func cat_new(type: str) -> str
说明: 新建猫猫
源代码 或 在GitHub上查看
@on_function_call(description='传入猫猫种类, 新建一只猫猫').params(type=String(description='猫猫种类, 默认"猫1", 可留空'))
async def cat_new(type: str) -> str:
return pc_cat.cat_new(type)
@on_function_call(description='传入token(一串长20的b64字符串), 新名字, 选用技能, 进行猫猫的初始化').params(token=String(description='token(一串长20的b64字符串)'), name=String(description='新名字'), skill=String(description='技能'))
async func cat_init(token: str, name: str, skill: str) -> str
说明: 初始化猫猫
源代码 或 在GitHub上查看
@on_function_call(description='传入token(一串长20的b64字符串), 新名字, 选用技能, 进行猫猫的初始化').params(token=String(description='token(一串长20的b64字符串)'), name=String(description='新名字'), skill=String(description='技能'))
async def cat_init(token: str, name: str, skill: str) -> str:
return pc_cat.cat_init(token, name, skill)
@on_function_call(description='传入token, 查看猫猫信息').params(token=String(description='token(一串长20的b64字符串)'))
async func cat_show(token: str) -> str
说明: 查询信息
源代码 或 在GitHub上查看
@on_function_call(description='传入token, 查看猫猫信息').params(token=String(description='token(一串长20的b64字符串)'))
async def cat_show(token: str) -> str:
return pc_cat.cat_show(token)
@on_function_call(description='传入token, 玩猫').params(token=String(description='token(一串长20的b64字符串)'))
async func cat_play(token: str) -> str
说明: 玩猫
源代码 或 在GitHub上查看
@on_function_call(description='传入token, 玩猫').params(token=String(description='token(一串长20的b64字符串)'))
async def cat_play(token: str) -> str:
return pc_cat.cat_play(token)
@on_function_call(description='传入token, 投喂猫猫').params(token=String(description='token(一串长20的b64字符串)'))
async func cat_feed(token: str) -> str
说明: 喂猫
源代码 或 在GitHub上查看
@on_function_call(description='传入token, 投喂猫猫').params(token=String(description='token(一串长20的b64字符串)'))
async def cat_feed(token: str) -> str:
return pc_cat.cat_feed(token)
@on_function_call(description='帮助文档/如何创建一只猫猫').params()
async func help_cat_new() -> str
源代码 或 在GitHub上查看
@on_function_call(description='帮助文档/如何创建一只猫猫').params()
async def help_cat_new() -> str:
return pc_info.help_cat_new()
@on_function_call(description='可选种类').params()
async func help_cat_type() -> str
源代码 或 在GitHub上查看
@on_function_call(description='可选种类').params()
async def help_cat_type() -> str:
return pc_info.print_type_list()
@on_function_call(description='可选技能').params()
async func help_cat_skill() -> str
源代码 或 在GitHub上查看
@on_function_call(description='可选技能').params()
async def help_cat_skill() -> str:
return pc_info.print_skill_list()