play_with_pet
Engage in interactive activities like ball, chase, or puzzle to play with your virtual pet on MCPet, fostering its growth and companionship in a nostalgic digital environment.
Instructions
Play with your virtual pet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activity | Yes | Type of play activity: ball, chase, or puzzle |
Input Schema (JSON Schema)
{
"properties": {
"activity": {
"description": "Type of play activity: ball, chase, or puzzle",
"enum": [
"ball",
"chase",
"puzzle"
],
"type": "string"
}
},
"required": [
"activity"
],
"type": "object"
}