get_character_info
Retrieve character details from Wuthering Waves including skills and cultivation strategies in Markdown format for game planning and strategy development.
Instructions
获取库街区上的角色详细信息包括角色技能,养成攻略等,并以 Markdown 格式返回。
Args:
character_name: 要查询的角色的中文名称。
Returns:
包含角色信息的 Markdown 字符串,
或者在找不到角色或获取数据失败时返回错误消息。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| character_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"character_name": {
"title": "Character Name",
"type": "string"
}
},
"required": [
"character_name"
],
"type": "object"
}