Spaces:
Runtime error
Runtime error
File size: 3,873 Bytes
1a91c20 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | [
{
"id": "intent_001",
"input": "和村长老伯谈谈最近森林里的怪事",
"intent": "TALK",
"target": "村长老伯",
"setup": {
"player": {
"location": "村庄广场"
},
"world": {
"current_scene": "村庄广场"
}
}
},
{
"id": "intent_002",
"input": "前往村庄旅店",
"intent": "MOVE",
"target": "村庄旅店",
"setup": {
"player": {
"location": "村庄广场"
},
"world": {
"current_scene": "村庄广场"
}
}
},
{
"id": "intent_003",
"input": "探索一下村庄广场",
"intent": "EXPLORE"
},
{
"id": "intent_004",
"input": "使用小型治疗药水",
"intent": "USE_ITEM",
"target": "小型治疗药水"
},
{
"id": "intent_005",
"input": "装备铁剑",
"intent": "EQUIP",
"target": "铁剑"
},
{
"id": "intent_006",
"input": "和铁匠格林交易",
"intent": "TRADE",
"target": "铁匠格林",
"setup": {
"player": {
"location": "村庄铁匠铺"
},
"world": {
"current_scene": "村庄铁匠铺"
}
}
},
{
"id": "intent_007",
"input": "休息一会儿",
"intent": "REST"
},
{
"id": "intent_008",
"input": "查看当前任务",
"intent": "QUEST"
},
{
"id": "intent_009",
"input": "施放火球术",
"intent": "SKILL",
"setup": {
"player": {
"location": "村庄广场",
"skills": [
"火球术"
]
},
"world": {
"current_scene": "村庄广场"
}
}
},
{
"id": "intent_010",
"input": "拿起火把",
"intent": "PICKUP",
"target": "火把"
},
{
"id": "intent_011",
"input": "赶紧逃跑",
"intent": "FLEE"
},
{
"id": "intent_012",
"input": "和旅店老板娘莉娜聊聊",
"intent": "TALK",
"target": "旅店老板娘莉娜",
"setup": {
"player": {
"location": "村庄旅店"
},
"world": {
"current_scene": "村庄旅店"
}
}
},
{
"id": "intent_013",
"input": "买一瓶解毒药水",
"intent": "TRADE",
"target": "解毒药水"
},
{
"id": "intent_014",
"input": "去村口小路看看",
"intent": "MOVE",
"target": "村口小路",
"setup": {
"player": {
"location": "村庄广场"
},
"world": {
"current_scene": "村庄广场"
}
}
},
{
"id": "intent_015",
"input": "吃一个面包",
"intent": "USE_ITEM",
"target": "面包"
},
{
"id": "intent_016",
"input": "接受这个任务",
"intent": "QUEST"
},
{
"id": "intent_017",
"input": "搜索附近有没有线索",
"intent": "EXPLORE"
},
{
"id": "intent_018",
"input": "穿上皮甲",
"intent": "EQUIP",
"target": "皮甲"
},
{
"id": "intent_019",
"input": "去村庄杂货铺买点东西",
"intent": "TRADE",
"target": "村庄杂货铺",
"setup": {
"player": {
"location": "村庄广场"
},
"world": {
"current_scene": "村庄广场"
}
}
},
{
"id": "intent_020",
"input": "调查黑暗森林入口",
"intent": "EXPLORE",
"target": "黑暗森林入口",
"setup": {
"player": {
"location": "村口小路"
},
"world": {
"current_scene": "村口小路"
}
}
},
{
"id": "intent_021",
"input": "和村长老伯谈判",
"intent": "TALK",
"target": "村长老伯",
"setup": {
"player": {
"location": "村庄广场"
},
"world": {
"current_scene": "村庄广场"
}
}
},
{
"id": "intent_022",
"input": "我想扔石头试试看",
"intent": "CUSTOM"
}
]
|