chore(minecraft): remove unused scenario test files

Removes basic-chat.json and damage-reaction.json scenario definitions that are no longer used for testing chat responses and damage reactions.
This commit is contained in:
Rin
2026-02-18 11:14:45 +08:00
committed by Neko Ayaka
parent ae297e8b06
commit 13805ab7b5
2 changed files with 0 additions and 60 deletions
@@ -1,25 +0,0 @@
{
"name": "Basic Chat Response",
"steps": [
{
"name": "Inject Hello Message",
"action": "inject_chat",
"params": {
"username": "Tester",
"message": "Hello bot, are you working?"
}
},
{
"name": "Wait for Processing",
"action": "wait",
"params": { "ms": 5000 }
},
{
"name": "Verify Bot Response",
"action": "wait",
"expect": {
"log_contains": "Action completed: chat"
}
}
]
}
@@ -1,35 +0,0 @@
{
"name": "Damage Reaction",
"steps": [
{
"name": "Inject Damage Event",
"action": "inject_event",
"params": {
"type": "perception",
"payload": {
"type": "damage_taken",
"description": "Ouch! Took 2 damage from Zombie",
"sourceId": "zombie_1",
"confidence": 1.0,
"timestamp": 1770000000000,
"metadata": {
"amount": 2,
"source": "zombie"
}
},
"source": {
"type": "minecraft",
"id": "zombie_1"
}
}
},
{
"name": "Wait for Reaction",
"action": "wait",
"params": { "ms": 5000 },
"expect": {
"log_contains": "Action completed: chat"
}
}
]
}