export-table-pulgin-csharp 1.0.39 → 1.0.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ExportUnityCSJsonPlugin.d.ts.map +1 -1
- package/dist/ExportUnityCSJsonPlugin.js +18 -2
- package/package.json +1 -1
- package/src/ExportUnityCSJsonPlugin.ts +19 -2
- package/test/dist/EGBL/344/273/273/345/212/241/351/205/215/347/275/256-/344/273/273/345/212/241/345/210/227/350/241/250.asset +1 -1
- package/test/dist/EGBL/344/273/273/345/212/241/351/205/215/347/275/256-/344/273/273/345/212/241/345/210/227/350/241/250Loader.cs +1 -1
- package/test/dist/EGBL/344/273/273/345/212/241/351/205/215/347/275/256-/344/273/273/345/212/241/345/245/226/345/212/261.asset +1 -1
- package/test/dist/EGBL/344/273/273/345/212/241/351/205/215/347/275/256-/344/273/273/345/212/241/345/245/226/345/212/261Loader.cs +1 -1
- package/test/dist/EGBL/344/273/273/345/212/241/351/205/215/347/275/256-/344/273/273/345/212/241/346/227/266/351/231/220.asset +1 -1
- package/test/dist/EGBL/344/273/273/345/212/241/351/205/215/347/275/256-/344/273/273/345/212/241/346/227/266/351/231/220Loader.cs +1 -1
- package/test/dist/EGBL/344/273/273/345/212/241/351/205/215/347/275/256-/344/273/273/345/212/241/350/247/246/345/217/221/347/272/246/346/235/237/351/205/215/350/241/250.asset +1 -1
- package/test/dist/EGBL/344/273/273/345/212/241/351/205/215/347/275/256-/344/273/273/345/212/241/350/247/246/345/217/221/347/272/246/346/235/237/351/205/215/350/241/250Loader.cs +1 -1
- package/test/dist/SceneConfig-SceneConfig.asset +1 -1
- package/test/dist/SceneConfig-SceneConfigLoader.cs +1 -1
- package/test/dist/SceneConfig-Sheet2.asset +1 -1
- package/test/dist/SceneConfig-Sheet2Loader.cs +1 -1
- package/test/dist//345/257/271/350/257/235/350/241/250-/345/257/271/350/257/235/350/241/250.asset +1 -1
- package/test/dist//345/257/271/350/257/235/350/241/250-/345/257/271/350/257/235/350/241/250Loader.cs +1 -1
- package/test/dist//350/277/207/345/234/272/345/274/225/345/257/274-/350/277/207/345/234/272/345/274/225/345/257/274.asset +1 -1
- package/test/dist//350/277/207/345/234/272/345/274/225/345/257/274-/350/277/207/345/234/272/345/274/225/345/257/274Loader.cs +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ExportUnityCSJsonPlugin.d.ts","sourceRoot":"","sources":["../src/ExportUnityCSJsonPlugin.ts"],"names":[],"mappings":"AACA,OAAO,EAAO,iBAAiB,EAA+B,UAAU,EAAkC,MAAM,kBAAkB,CAAA;AAGlI,wBAAgB,WAAW,CAAC,KAAK,EAAE,iBAAiB,GAAG,MAAM,GAAG,IAAI,
|
|
1
|
+
{"version":3,"file":"ExportUnityCSJsonPlugin.d.ts","sourceRoot":"","sources":["../src/ExportUnityCSJsonPlugin.ts"],"names":[],"mappings":"AACA,OAAO,EAAO,iBAAiB,EAA+B,UAAU,EAAkC,MAAM,kBAAkB,CAAA;AAGlI,wBAAgB,WAAW,CAAC,KAAK,EAAE,iBAAiB,GAAG,MAAM,GAAG,IAAI,CAgDnE;AAED,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,iBAAiB,GAAG,MAAM,GAAG,IAAI,CAwCzE;AAED,qBAAa,iBAAkB,SAAQ,UAAU;IAChD,IAAI,SAAU;IACd,IAAI,EAAE,MAAM,EAAE,CAAY;IAE1B,WAAW,CAAC,KAAK,EAAE,iBAAiB;CAkBpC"}
|
|
@@ -28,8 +28,24 @@ const export_table_lib_1 = require("export-table-lib");
|
|
|
28
28
|
const fs = __importStar(require("fs-extra"));
|
|
29
29
|
function exportUJson(paras) {
|
|
30
30
|
let { datas, fields, name, objects, table, } = paras;
|
|
31
|
+
let firstLetterUpper = function (str) {
|
|
32
|
+
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
33
|
+
};
|
|
34
|
+
let firstLetterLower = function (str) {
|
|
35
|
+
return str.charAt(0).toLowerCase() + str.slice(1);
|
|
36
|
+
};
|
|
37
|
+
let convMemberName = function (str) {
|
|
38
|
+
return str.split("_").map(s => firstLetterUpper(s)).join("");
|
|
39
|
+
};
|
|
31
40
|
var fullName = `${table.workbookName}-${name}`;
|
|
32
|
-
let jsonString = JSON.stringify(objects
|
|
41
|
+
let jsonString = JSON.stringify(objects.map(obj => {
|
|
42
|
+
var newObj = Object.create(null);
|
|
43
|
+
Object.keys(obj).forEach(key => {
|
|
44
|
+
var newKey = convMemberName(key);
|
|
45
|
+
newObj[newKey] = obj[key];
|
|
46
|
+
});
|
|
47
|
+
return newObj;
|
|
48
|
+
}));
|
|
33
49
|
// !!!必须开头没有空格
|
|
34
50
|
let temp = `%YAML 1.1
|
|
35
51
|
%TAG !u! tag:unity3d.com,2011:
|
|
@@ -64,7 +80,7 @@ namespace MEEC.ExportedConfigs
|
|
|
64
80
|
{
|
|
65
81
|
static ${name}()
|
|
66
82
|
{
|
|
67
|
-
var loadUrl="Assets/Bundles/
|
|
83
|
+
var loadUrl="Assets/Bundles/GameConfigs/Auto/${fullName}.asset";
|
|
68
84
|
var configJson = Addressables.LoadAssetAsync<ExcelConfigJson>(loadUrl).WaitForCompletion();
|
|
69
85
|
if (configJson != null)
|
|
70
86
|
{
|
package/package.json
CHANGED
|
@@ -11,8 +11,25 @@ export function exportUJson(paras: HandleSheetParams): string | null {
|
|
|
11
11
|
table,
|
|
12
12
|
} = paras;
|
|
13
13
|
|
|
14
|
+
let firstLetterUpper = function (str: string) {
|
|
15
|
+
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
16
|
+
};
|
|
17
|
+
let firstLetterLower = function (str: string) {
|
|
18
|
+
return str.charAt(0).toLowerCase() + str.slice(1);
|
|
19
|
+
};
|
|
20
|
+
let convMemberName = function (str: string) {
|
|
21
|
+
return str.split("_").map(s => firstLetterUpper(s)).join("")
|
|
22
|
+
}
|
|
23
|
+
|
|
14
24
|
var fullName = `${table.workbookName}-${name}`
|
|
15
|
-
let jsonString = JSON.stringify(objects
|
|
25
|
+
let jsonString = JSON.stringify(objects.map(obj => {
|
|
26
|
+
var newObj = Object.create(null);
|
|
27
|
+
Object.keys(obj).forEach(key => {
|
|
28
|
+
var newKey = convMemberName(key);
|
|
29
|
+
newObj[newKey] = obj[key];
|
|
30
|
+
})
|
|
31
|
+
return newObj
|
|
32
|
+
}));
|
|
16
33
|
|
|
17
34
|
// !!!必须开头没有空格
|
|
18
35
|
let temp = `%YAML 1.1
|
|
@@ -56,7 +73,7 @@ namespace MEEC.ExportedConfigs
|
|
|
56
73
|
{
|
|
57
74
|
static ${name}()
|
|
58
75
|
{
|
|
59
|
-
var loadUrl="Assets/Bundles/
|
|
76
|
+
var loadUrl="Assets/Bundles/GameConfigs/Auto/${fullName}.asset";
|
|
60
77
|
var configJson = Addressables.LoadAssetAsync<ExcelConfigJson>(loadUrl).WaitForCompletion();
|
|
61
78
|
if (configJson != null)
|
|
62
79
|
{
|
|
@@ -12,4 +12,4 @@ MonoBehaviour:
|
|
|
12
12
|
m_Script: {fileID: 11500000, guid: 496f60086c072a8479a6e0b948efb5e8, type: 3}
|
|
13
13
|
m_Name: EGBL任务配置-任务列表
|
|
14
14
|
m_EditorClassIdentifier:
|
|
15
|
-
JsonText: "[{\"
|
|
15
|
+
JsonText: "[{\"Id\":50000,\"Name\":\"口腔\",\"SubTasks\":[],\"TaskRewards\":[],\"任务类型\":\"\",\"任务标签\":\"\",\"StartCmds\":\"`/tp @e[type=npc,c=1,tag=消化NPC] 24 47 -171`\",\"SucceedCmds\":\"\"},{\"Id\":50010,\"Name\":\"食道和胃\",\"SubTasks\":[],\"TaskRewards\":[],\"任务类型\":\"\",\"任务标签\":\"\",\"StartCmds\":\"\",\"SucceedCmds\":\"`/title @p title 恭喜你完成口腔关卡`,`/give @p myitem:xhdlxj_modle_kouqiang`\"},{\"Id\":50020,\"Name\":\"小肠\",\"SubTasks\":[],\"TaskRewards\":[],\"任务类型\":\"\",\"任务标签\":\"\",\"StartCmds\":\"\",\"SucceedCmds\":\"`/title @p title 恭喜你完成食道&胃关卡`,`/give @p myitem:xhdlxj_modle_shiguan`,`/give @p myitem:xhdlxj_modle_wei`\"},{\"Id\":50030,\"Name\":\"大肠\",\"SubTasks\":[],\"TaskRewards\":[],\"任务类型\":\"\",\"任务标签\":\"\",\"StartCmds\":\"\",\"SucceedCmds\":\"`/title @p title 恭喜你完成小肠关卡`\"},{\"Id\":50040,\"Name\":\"消化拼图\",\"SubTasks\":[],\"TaskRewards\":[],\"任务类型\":\"\",\"任务标签\":\"\",\"StartCmds\":\"\",\"SucceedCmds\":\"`/title @p title 恭喜你完成大肠关卡`,`/give @p myitem:xhdlxj_modle_xiaochang`,`/give @p myitem:xhdlxj_modle_dachang`\"},{\"Id\":50050,\"Name\":\"恭喜完成\",\"SubTasks\":[],\"TaskRewards\":[],\"任务类型\":\"\",\"任务标签\":\"\",\"StartCmds\":\"\",\"SucceedCmds\":\"`/title @p title 恭喜你完成课程内容`\"}]"
|
|
@@ -8,7 +8,7 @@ namespace MEEC.ExportedConfigs
|
|
|
8
8
|
{
|
|
9
9
|
static 任务列表()
|
|
10
10
|
{
|
|
11
|
-
var loadUrl="Assets/Bundles/
|
|
11
|
+
var loadUrl="Assets/Bundles/GameConfigs/Auto/EGBL任务配置-任务列表.asset";
|
|
12
12
|
var configJson = Addressables.LoadAssetAsync<ExcelConfigJson>(loadUrl).WaitForCompletion();
|
|
13
13
|
if (configJson != null)
|
|
14
14
|
{
|
|
@@ -12,4 +12,4 @@ MonoBehaviour:
|
|
|
12
12
|
m_Script: {fileID: 11500000, guid: 496f60086c072a8479a6e0b948efb5e8, type: 3}
|
|
13
13
|
m_Name: EGBL任务配置-任务奖励
|
|
14
14
|
m_EditorClassIdentifier:
|
|
15
|
-
JsonText: "[{\"
|
|
15
|
+
JsonText: "[{\"Id\":1001,\"Props1\":\"apple\",\"Count1\":1},{\"Id\":1002,\"Props1\":\"apple\",\"Count1\":1},{\"Id\":1003,\"Props1\":\"apple\",\"Count1\":1},{\"Id\":1004,\"Props1\":\"apple\",\"Count1\":1},{\"Id\":1005,\"Props1\":\"apple\",\"Count1\":1}]"
|
|
@@ -8,7 +8,7 @@ namespace MEEC.ExportedConfigs
|
|
|
8
8
|
{
|
|
9
9
|
static 任务奖励()
|
|
10
10
|
{
|
|
11
|
-
var loadUrl="Assets/Bundles/
|
|
11
|
+
var loadUrl="Assets/Bundles/GameConfigs/Auto/EGBL任务配置-任务奖励.asset";
|
|
12
12
|
var configJson = Addressables.LoadAssetAsync<ExcelConfigJson>(loadUrl).WaitForCompletion();
|
|
13
13
|
if (configJson != null)
|
|
14
14
|
{
|
|
@@ -8,7 +8,7 @@ namespace MEEC.ExportedConfigs
|
|
|
8
8
|
{
|
|
9
9
|
static 任务时限()
|
|
10
10
|
{
|
|
11
|
-
var loadUrl="Assets/Bundles/
|
|
11
|
+
var loadUrl="Assets/Bundles/GameConfigs/Auto/EGBL任务配置-任务时限.asset";
|
|
12
12
|
var configJson = Addressables.LoadAssetAsync<ExcelConfigJson>(loadUrl).WaitForCompletion();
|
|
13
13
|
if (configJson != null)
|
|
14
14
|
{
|
|
@@ -12,4 +12,4 @@ MonoBehaviour:
|
|
|
12
12
|
m_Script: {fileID: 11500000, guid: 496f60086c072a8479a6e0b948efb5e8, type: 3}
|
|
13
13
|
m_Name: EGBL任务配置-任务触发约束配表
|
|
14
14
|
m_EditorClassIdentifier:
|
|
15
|
-
JsonText: "[{\"
|
|
15
|
+
JsonText: "[{\"Id\":1,\"TaskId\":50000,\"AutoAccept\":false,\"Cond1\":\"\",\"Para1\":0,\"Cond2\":\"\",\"Para2\":0,\"Cond3\":\"\",\"Para3\":0,\"Limit1\":\"任务时限\",\"LimitPara1\":1001},{\"Id\":2,\"TaskId\":50010,\"AutoAccept\":true,\"Cond1\":\"前置任务\",\"Para1\":50000,\"Cond2\":\"\",\"Para2\":0,\"Cond3\":\"\",\"Para3\":0,\"Limit1\":\"任务时限\",\"LimitPara1\":1001},{\"Id\":7,\"TaskId\":50020,\"AutoAccept\":true,\"Cond1\":\"前置任务\",\"Para1\":50010,\"Cond2\":\"\",\"Para2\":0,\"Cond3\":\"\",\"Para3\":0,\"Limit1\":\"任务时限\",\"LimitPara1\":1001},{\"Id\":8,\"TaskId\":50030,\"AutoAccept\":true,\"Cond1\":\"前置任务\",\"Para1\":50020,\"Cond2\":\"\",\"Para2\":0,\"Cond3\":\"\",\"Para3\":0,\"Limit1\":\"任务时限\",\"LimitPara1\":1001},{\"Id\":9,\"TaskId\":50040,\"AutoAccept\":true,\"Cond1\":\"前置任务\",\"Para1\":50030,\"Cond2\":\"\",\"Para2\":0,\"Cond3\":\"\",\"Para3\":0,\"Limit1\":\"任务时限\",\"LimitPara1\":1001},{\"Id\":10,\"TaskId\":50050,\"AutoAccept\":true,\"Cond1\":\"前置任务\",\"Para1\":50040,\"Cond2\":\"\",\"Para2\":0,\"Cond3\":\"\",\"Para3\":0,\"Limit1\":\"任务时限\",\"LimitPara1\":1001}]"
|
|
@@ -8,7 +8,7 @@ namespace MEEC.ExportedConfigs
|
|
|
8
8
|
{
|
|
9
9
|
static 任务触发约束配表()
|
|
10
10
|
{
|
|
11
|
-
var loadUrl="Assets/Bundles/
|
|
11
|
+
var loadUrl="Assets/Bundles/GameConfigs/Auto/EGBL任务配置-任务触发约束配表.asset";
|
|
12
12
|
var configJson = Addressables.LoadAssetAsync<ExcelConfigJson>(loadUrl).WaitForCompletion();
|
|
13
13
|
if (configJson != null)
|
|
14
14
|
{
|
|
@@ -12,4 +12,4 @@ MonoBehaviour:
|
|
|
12
12
|
m_Script: {fileID: 11500000, guid: 496f60086c072a8479a6e0b948efb5e8, type: 3}
|
|
13
13
|
m_Name: SceneConfig-SceneConfig
|
|
14
14
|
m_EditorClassIdentifier:
|
|
15
|
-
JsonText: "[{\"
|
|
15
|
+
JsonText: "[{\"Uid\":1,\"SceneId\":\"第1章 格莫拉城\",\"OutingBaseGold\":1000},{\"Uid\":2,\"SceneId\":\"第2章 纳皮尔乐园\",\"OutingBaseGold\":1200}]"
|
|
@@ -8,7 +8,7 @@ namespace MEEC.ExportedConfigs
|
|
|
8
8
|
{
|
|
9
9
|
static SceneConfig()
|
|
10
10
|
{
|
|
11
|
-
var loadUrl="Assets/Bundles/
|
|
11
|
+
var loadUrl="Assets/Bundles/GameConfigs/Auto/SceneConfig-SceneConfig.asset";
|
|
12
12
|
var configJson = Addressables.LoadAssetAsync<ExcelConfigJson>(loadUrl).WaitForCompletion();
|
|
13
13
|
if (configJson != null)
|
|
14
14
|
{
|
|
@@ -12,4 +12,4 @@ MonoBehaviour:
|
|
|
12
12
|
m_Script: {fileID: 11500000, guid: 496f60086c072a8479a6e0b948efb5e8, type: 3}
|
|
13
13
|
m_Name: SceneConfig-Sheet2
|
|
14
14
|
m_EditorClassIdentifier:
|
|
15
|
-
JsonText: "[{\"
|
|
15
|
+
JsonText: "[{\"Uid\":1,\"SceneId\":\"第1章 格莫拉城\",\"OutingBaseGold\":1000},{\"Uid\":2,\"SceneId\":\"第2章 纳皮尔乐园\",\"OutingBaseGold\":1200}]"
|
|
@@ -8,7 +8,7 @@ namespace MEEC.ExportedConfigs
|
|
|
8
8
|
{
|
|
9
9
|
static Sheet2()
|
|
10
10
|
{
|
|
11
|
-
var loadUrl="Assets/Bundles/
|
|
11
|
+
var loadUrl="Assets/Bundles/GameConfigs/Auto/SceneConfig-Sheet2.asset";
|
|
12
12
|
var configJson = Addressables.LoadAssetAsync<ExcelConfigJson>(loadUrl).WaitForCompletion();
|
|
13
13
|
if (configJson != null)
|
|
14
14
|
{
|
package/test/dist//345/257/271/350/257/235/350/241/250-/345/257/271/350/257/235/350/241/250.asset
CHANGED
|
@@ -12,4 +12,4 @@ MonoBehaviour:
|
|
|
12
12
|
m_Script: {fileID: 11500000, guid: 496f60086c072a8479a6e0b948efb5e8, type: 3}
|
|
13
13
|
m_Name: 对话表-对话表
|
|
14
14
|
m_EditorClassIdentifier:
|
|
15
|
-
JsonText: "[{\"id\":40100001,\"group_id\":4010001,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Morning, sir!\",\"sound\":\"40100001\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100002,\"group_id\":4010001,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Good morning to you, too, kid! So glad you came!\",\"sound\":\"40100003\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100003,\"group_id\":4010001,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"I heard you have troubles(麻烦).\",\"sound\":\"40100004\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100004,\"group_id\":4010001,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Indeed(的确). And this time the troubles are strange.\",\"sound\":\"40100006\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100005,\"group_id\":4010001,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"How strange?\",\"sound\":\"40100007\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100006,\"group_id\":4010001,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"You remember finding my animals from before? \",\"sound\":\"40100009\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100007,\"group_id\":4010001,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Now they are too big or too small!\",\"sound\":\"40100010\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100008,\"group_id\":4010001,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Too big or too small?\",\"sound\":\"40100012\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100009,\"group_id\":4010001,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Yeah! Take the chickens for an example(比如说)\",\"sound\":\"40100013\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100010,\"group_id\":4010001,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"They were pretty small, but now they are huge!\",\"sound\":\"40100014\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100011,\"group_id\":4010001,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Huge chickens?!\",\"sound\":\"40100016\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100012,\"group_id\":4010001,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"I have to see this!\",\"sound\":\"40100018\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100013,\"group_id\":4010001,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Yes, please! Find a way to return them to normal!\",\"sound\":\"40100019\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100014,\"group_id\":4010001,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"As always\",\"sound\":\"40100021\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100015,\"group_id\":4010001,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"I'm on it, sir.\",\"sound\":\"40100023\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100016,\"group_id\":4010001,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Bless you!\",\"sound\":\"40100024\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100017,\"group_id\":4010002,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Morning, sir!\",\"sound\":\"40100026\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100018,\"group_id\":4010002,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Morning!\",\"sound\":\"40100027\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100019,\"group_id\":4010002,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"What are you doing here?\",\"sound\":\"40100029\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100020,\"group_id\":4010002,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"I'm a farm worker, so I'm doing farm work.\",\"sound\":\"40100030\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100021,\"group_id\":4010002,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"But now I'm too afraid.\",\"sound\":\"40100031\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100022,\"group_id\":4010002,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Why?\",\"sound\":\"40100032\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100023,\"group_id\":4010002,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Why? Look at that huge bee!\",\"sound\":\"40100034\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100024,\"group_id\":4010002,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Right.\",\"sound\":\"40100035\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100025,\"group_id\":4010002,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Let me check out the huge bee.\",\"sound\":\"40100038\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100026,\"group_id\":4010003,\"speaker_name\":\"巨型蜜蜂\",\"speaker_type\":1,\"sentence\":\"Biggest! Biggest!\",\"sound\":\"40100039\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100027,\"group_id\":4010004,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"The bee says biggest.\",\"sound\":\"40100041\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100028,\"group_id\":4010004,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Any idea what that means?\",\"sound\":\"40100043\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100029,\"group_id\":4010004,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Biggest? Let's say there are 3 stones(石头).\",\"sound\":\"40100044\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100030,\"group_id\":4010004,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"A tiny stone, a small stone, and a big stone. \",\"sound\":\"40100045\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100031,\"group_id\":4010004,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Then, we call the big stone, the biggest.\",\"sound\":\"40100046\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100032,\"group_id\":4010004,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"I see! \",\"sound\":\"40100047\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100033,\"group_id\":4010004,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Speaking of the biggest, I need a favor(帮忙).\",\"sound\":\"40100049\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100034,\"group_id\":4010004,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Name it!\",\"sound\":\"40100051\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100035,\"group_id\":4010004,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"I'm trying to feed the horses, and horses love apples.\",\"sound\":\"40100052\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100036,\"group_id\":4010004,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"I left some apples by the river, in the biggest tree.\",\"sound\":\"40100053\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100037,\"group_id\":4010004,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Would you fetch it for me?\",\"sound\":\"40100054\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100038,\"group_id\":4010004,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Getting apples for horses?\",\"sound\":\"40100056\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100039,\"group_id\":4010004,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"That's my kind of thing!\",\"sound\":\"40100058\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100040,\"group_id\":4010004,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Much appreciated! \",\"sound\":\"40100059\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100041,\"group_id\":4010005,\"speaker_name\":\"苹果树\",\"speaker_type\":1,\"sentence\":\"Give u apples\",\"sound\":\"2\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100042,\"group_id\":4010006,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"I found your apples!\",\"sound\":\"40100061\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100043,\"group_id\":4010006,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Many thanks! Since you found the apples,\",\"sound\":\"40100062\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100044,\"group_id\":4010006,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"you should feed them to the horses.\",\"sound\":\"40100063\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100045,\"group_id\":4010006,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"I love horses!\",\"sound\":\"40100065\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100046,\"group_id\":4010006,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Feeding horses is my thing!\",\"sound\":\"40100067\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100047,\"group_id\":4010007,\"speaker_name\":\"马\",\"speaker_type\":1,\"sentence\":\"Smallest! Smallest!\",\"sound\":\"40100068\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100048,\"group_id\":4010008,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"The horse says smallest.\",\"sound\":\"40100069\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100049,\"group_id\":4010008,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Any idea what that means?\",\"sound\":\"40100071\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100050,\"group_id\":4010008,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"The opposite(相反)of biggest. \",\"sound\":\"40100073\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100051,\"group_id\":4010008,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Opposite of biggest?\",\"sound\":\"40100074\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100052,\"group_id\":4010008,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Opposite of biggest?\",\"sound\":\"40100074\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100053,\"group_id\":4010008,\"speaker_name\":\"农场主\",\"speaker_type\":0,\"sentence\":\"Yeah. The opposite of biggest is smallest.\",\"sound\":\"40100076\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100054,\"group_id\":4010008,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"I see! \",\"sound\":\"40100077\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100055,\"group_id\":4010008,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Now I have to feed the sheep. Get some grass for me?\",\"sound\":\"40100079\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100056,\"group_id\":4010008,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Finding stuff is my thing!\",\"sound\":\"40100081\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100057,\"group_id\":4010008,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Wait! Only the grass by the smallest tree, near the river!\",\"sound\":\"40100082\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100058,\"group_id\":4010008,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"By the smallest tree!\",\"sound\":\"40100083\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100059,\"group_id\":4010009,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Dialog9\",\"sound\":\"9\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100060,\"group_id\":4010010,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Dialog10\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100061,\"group_id\":4010011,\"speaker_name\":\"羊\",\"speaker_type\":1,\"sentence\":\"Dialog11\",\"sound\":\"11\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100062,\"group_id\":4010012,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Dialog12\",\"sound\":\"12\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100063,\"group_id\":4010013,\"speaker_name\":\"鸡\",\"speaker_type\":1,\"sentence\":\"对话13\",\"sound\":\"13\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100064,\"group_id\":4010014,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"对话14\",\"sound\":\"14\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100065,\"group_id\":4010015,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"对话15\",\"sound\":\"15\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100066,\"group_id\":4010016,\"speaker_name\":\"鸡\",\"speaker_type\":1,\"sentence\":\"对话16\",\"sound\":\"16\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100067,\"group_id\":4010017,\"speaker_name\":\"火鸡\",\"speaker_type\":1,\"sentence\":\"对话17\",\"sound\":\"17\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,80,90],\"try_times\":4},{\"id\":40100068,\"group_id\":1,\"speaker_name\":\"小妹妹\",\"speaker_type\":1,\"sentence\":\"hello\",\"sound\":\"23\",\"step_type\":1,\"can_close\":false,\"score_rules\":[10,80,90],\"try_times\":1},{\"id\":40100069,\"group_id\":2,\"speaker_name\":\"路人甲\",\"speaker_type\":1,\"sentence\":\"hi\",\"sound\":\"24\",\"step_type\":1,\"can_close\":false,\"score_rules\":[10,80,90],\"try_times\":1},{\"id\":40100070,\"group_id\":3,\"speaker_name\":\"路人甲\",\"speaker_type\":1,\"sentence\":\"yo\",\"sound\":\"25\",\"step_type\":1,\"can_close\":false,\"score_rules\":[10,80,90],\"try_times\":1},{\"id\":40100071,\"group_id\":4,\"speaker_name\":\"路人甲\",\"speaker_type\":1,\"sentence\":\"ka\",\"sound\":\"26\",\"step_type\":1,\"can_close\":false,\"score_rules\":[10,80,90],\"try_times\":1},{\"id\":40100072,\"group_id\":5,\"speaker_name\":\"路人甲\",\"speaker_type\":1,\"sentence\":\"didi\",\"sound\":\"27\",\"step_type\":1,\"can_close\":false,\"score_rules\":[10,80,90],\"try_times\":1},{\"id\":40100073,\"group_id\":6,\"speaker_name\":\"路人甲\",\"speaker_type\":1,\"sentence\":\"kk\",\"sound\":\"28\",\"step_type\":1,\"can_close\":false,\"score_rules\":[10,80,90],\"try_times\":1},{\"id\":20400001,\"group_id\":2040001,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"废话1\",\"sound\":\"1\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20400002,\"group_id\":2040002,\"speaker_name\":\"混乱牛\",\"speaker_type\":1,\"sentence\":\"废话2\",\"sound\":\"2\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20400003,\"group_id\":2040003,\"speaker_name\":\"牛\",\"speaker_type\":1,\"sentence\":\"废话3\",\"sound\":\"3\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20400004,\"group_id\":2040004,\"speaker_name\":\"混乱鸭子\",\"speaker_type\":1,\"sentence\":\"废话4\",\"sound\":\"4\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20400005,\"group_id\":2040005,\"speaker_name\":\"鸭子\",\"speaker_type\":1,\"sentence\":\"废话5\",\"sound\":\"5\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20400006,\"group_id\":2040006,\"speaker_name\":\"混乱山羊\",\"speaker_type\":1,\"sentence\":\"废话6\",\"sound\":\"6\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20400007,\"group_id\":2040007,\"speaker_name\":\"山羊\",\"speaker_type\":1,\"sentence\":\"废话7\",\"sound\":\"7\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20400008,\"group_id\":2040008,\"speaker_name\":\"混乱兔子\",\"speaker_type\":1,\"sentence\":\"废话8\",\"sound\":\"8\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20400009,\"group_id\":2040009,\"speaker_name\":\"兔子\",\"speaker_type\":1,\"sentence\":\"废话9\",\"sound\":\"9\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20400010,\"group_id\":2040010,\"speaker_name\":\"混乱猪\",\"speaker_type\":1,\"sentence\":\"废话10\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20400011,\"group_id\":2040011,\"speaker_name\":\"猪\",\"speaker_type\":1,\"sentence\":\"废话11\",\"sound\":\"11\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20400012,\"group_id\":2040012,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"废话12\",\"sound\":\"12\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20400013,\"group_id\":2040013,\"speaker_name\":\"嗡嗡怪\",\"speaker_type\":1,\"sentence\":\"废话13\",\"sound\":\"13\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20400014,\"group_id\":2040014,\"speaker_name\":\"嗡嗡怪\",\"speaker_type\":1,\"sentence\":\"废话14\",\"sound\":\"14\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20401001,\"group_id\":2040101,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"对话1\",\"sound\":\"1\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20401002,\"group_id\":2040102,\"speaker_name\":\"猫\",\"speaker_type\":1,\"sentence\":\"对话2\",\"sound\":\"2\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20401003,\"group_id\":2040103,\"speaker_name\":\"萌宠1\",\"speaker_type\":1,\"sentence\":\"对话3\",\"sound\":\"3\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20401004,\"group_id\":2040104,\"speaker_name\":\"猫\",\"speaker_type\":1,\"sentence\":\"对话4\",\"sound\":\"4\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20401005,\"group_id\":2040105,\"speaker_name\":\"狗\",\"speaker_type\":1,\"sentence\":\"对话5\",\"sound\":\"5\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20401006,\"group_id\":2040106,\"speaker_name\":\"萌宠2\",\"speaker_type\":1,\"sentence\":\"对话6\",\"sound\":\"6\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20401007,\"group_id\":2040107,\"speaker_name\":\"狗\",\"speaker_type\":1,\"sentence\":\"对话7\",\"sound\":\"7\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20401008,\"group_id\":2040108,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"对话8\",\"sound\":\"8\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20401009,\"group_id\":2040199,\"speaker_name\":\"狗\",\"speaker_type\":1,\"sentence\":\"汪\",\"sound\":\"1\",\"step_type\":1,\"can_close\":false,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20401010,\"group_id\":2040198,\"speaker_name\":\"猫\",\"speaker_type\":1,\"sentence\":\"喵\",\"sound\":\"1\",\"step_type\":1,\"can_close\":false,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20402001,\"group_id\":2040201,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"垃圾话1\",\"sound\":\"15\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20402002,\"group_id\":2040202,\"speaker_name\":\"鹦鹉\",\"speaker_type\":1,\"sentence\":\"垃圾话2\",\"sound\":\"16\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20402003,\"group_id\":2040203,\"speaker_name\":\"萌宠1\",\"speaker_type\":1,\"sentence\":\"垃圾话3\",\"sound\":\"17\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20402004,\"group_id\":2040204,\"speaker_name\":\"鹦鹉\",\"speaker_type\":1,\"sentence\":\"垃圾话4\",\"sound\":\"18\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20402005,\"group_id\":2040205,\"speaker_name\":\"萌宠2\",\"speaker_type\":1,\"sentence\":\"垃圾话5\",\"sound\":\"19\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20402006,\"group_id\":2040206,\"speaker_name\":\"鹦鹉\",\"speaker_type\":1,\"sentence\":\"垃圾话6\",\"sound\":\"20\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20402007,\"group_id\":2040207,\"speaker_name\":\"萌宠3\",\"speaker_type\":1,\"sentence\":\"垃圾话7\",\"sound\":\"21\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20402008,\"group_id\":2040208,\"speaker_name\":\"森林鹦鹉\",\"speaker_type\":1,\"sentence\":\"垃圾话8\",\"sound\":\"22\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20402009,\"group_id\":2040209,\"speaker_name\":\"鹦鹉\",\"speaker_type\":1,\"sentence\":\"垃圾话9\",\"sound\":\"23\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20402010,\"group_id\":2040210,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"垃圾话10\",\"sound\":\"24\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500001,\"group_id\":2050001,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\"Kiddo! Why are you here?\",\"sound\":\"1\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500002,\"group_id\":2050001,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Could you do me a favor?\",\"sound\":\"2\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500003,\"group_id\":2050001,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\"Why should I?\",\"sound\":\"3\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500004,\"group_id\":2050001,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Please! I need the wonder potion!\",\"sound\":\"4\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500005,\"group_id\":2050001,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"It can defeat Buzzy!\",\"sound\":\"5\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500006,\"group_id\":2050001,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\"I will help you, if you can find something for me.\",\"sound\":\"6\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500007,\"group_id\":2050001,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"No problem! What is it?\",\"sound\":\"7\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500008,\"group_id\":2050001,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\"Find me some grass.\",\"sound\":\"8\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500009,\"group_id\":2050001,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"OK!\",\"sound\":\"9\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500010,\"group_id\":2050002,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\" Hi! I've got some grass.\",\"sound\":\"11\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,81],\"try_times\":4},{\"id\":20500011,\"group_id\":2050002,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\" Let me have a look!\",\"sound\":\"12\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,82],\"try_times\":4},{\"id\":20500012,\"group_id\":2050002,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\" Here you are.\",\"sound\":\"13\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,83],\"try_times\":4},{\"id\":20500013,\"group_id\":2050002,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\" Well, that's exactly what I need.\",\"sound\":\"14\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,84],\"try_times\":4},{\"id\":20500014,\"group_id\":2050002,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Yay! How about the wonder potion?\",\"sound\":\"15\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,85],\"try_times\":4},{\"id\":20500015,\"group_id\":2050002,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\"Shhhh! Get me five different colors of flowers.\",\"sound\":\"16\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,86],\"try_times\":4},{\"id\":20500016,\"group_id\":2050002,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"No problem!\",\"sound\":\"17\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,87],\"try_times\":4},{\"id\":20500017,\"group_id\":2050003,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\" Hi! I've got some flowers.\",\"sound\":\"1\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500018,\"group_id\":2050003,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\" Let me have a look!\",\"sound\":\"2\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500019,\"group_id\":2050003,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\" Here you are.\",\"sound\":\"3\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500020,\"group_id\":2050003,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\" Good! That's exactly what I need.\",\"sound\":\"4\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500021,\"group_id\":2050003,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Yay! How about the wonder potion?\",\"sound\":\"5\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500022,\"group_id\":2050003,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\"Shush! Get me five walnuts and peanuts.\",\"sound\":\"6\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500023,\"group_id\":2050003,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"No problem!\",\"sound\":\"7\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500024,\"group_id\":2050004,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\" Hi!I've got them. \",\"sound\":\"6\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500025,\"group_id\":2050004,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Some walnuts and peanuts.\",\"sound\":\"7\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500026,\"group_id\":2050004,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\" Let me have a look!\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500027,\"group_id\":2050004,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\" Here you are.\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500028,\"group_id\":2050004,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\" Nice! That's exactly what I need.\",\"sound\":\"6\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500029,\"group_id\":2050004,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Yay! How about the wonder potion?\",\"sound\":\"7\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500030,\"group_id\":2050004,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\"What potion? Get me some berries now.\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500031,\"group_id\":2050004,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"No problem!\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500032,\"group_id\":2050005,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\" Hi I've got some berries.\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500033,\"group_id\":2050005,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\" Let me have a look!\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500034,\"group_id\":2050005,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\" Here you are.\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500035,\"group_id\":2050005,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\" Perfect! That's exactly what I need.\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500036,\"group_id\":2050005,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Yay! How about the wonder potion now?\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500037,\"group_id\":2050005,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\"So be it.\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500038,\"group_id\":2050005,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"What do I need?\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500039,\"group_id\":2050005,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\"You need some grass, flowers, walnuts, peanuts, and berries.\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500040,\"group_id\":2050005,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Grass, flower, walnut, peanut, and berry?\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500041,\"group_id\":2050005,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\"Yes! And you have got them.\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500042,\"group_id\":2050005,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\"Here is the magic potion.\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500043,\"group_id\":2050005,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Wonderful! Thank you so much!\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500044,\"group_id\":2050005,\"speaker_name\":\"女巫\",\"speaker_type\":1,\"sentence\":\"Off you go now, kiddo!\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500045,\"group_id\":2050010,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"This is grass\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500046,\"group_id\":2050011,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"This is flower\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500047,\"group_id\":2050012,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"This is peanut\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500048,\"group_id\":2050013,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"This is walnut\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500049,\"group_id\":2050014,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"This is berry\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20500050,\"group_id\":20500001,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"grass\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20500051,\"group_id\":20500002,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"flower\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20500052,\"group_id\":20500003,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"berry\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20500053,\"group_id\":20500004,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"walnut\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20500054,\"group_id\":20500005,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"peanut\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20500055,\"group_id\":20500006,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"This is grass.\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20500056,\"group_id\":20500007,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"This is flower.\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20500057,\"group_id\":20500008,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"This is walnut.\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20500058,\"group_id\":20500009,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"This is berry.\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20500059,\"group_id\":20500010,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"This is peanut.\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20500060,\"group_id\":20500011,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"peanut\",\"sound\":\"10\",\"step_type\":2,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20500061,\"group_id\":20500012,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Wonderful\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20500062,\"group_id\":20500013,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Perfect\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20500063,\"group_id\":20500014,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Magic potion\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":1},{\"id\":20501001,\"group_id\":2050101,\"speaker_name\":\"法师\",\"speaker_type\":1,\"sentence\":\"Hi,Kiddo! How are you?\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501002,\"group_id\":2050101,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Great! And you?\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501003,\"group_id\":2050101,\"speaker_name\":\"法师\",\"speaker_type\":1,\"sentence\":\"I am all good.\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501004,\"group_id\":2050101,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Do me a favor, please.\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501005,\"group_id\":2050101,\"speaker_name\":\"法师\",\"speaker_type\":1,\"sentence\":\"What's the problem?\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501006,\"group_id\":2050101,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"It's the magical seed.\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501007,\"group_id\":2050101,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"I need to get it out.\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501008,\"group_id\":2050101,\"speaker_name\":\"法师\",\"speaker_type\":1,\"sentence\":\"Oh! The magical seed!\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501009,\"group_id\":2050101,\"speaker_name\":\"法师\",\"speaker_type\":1,\"sentence\":\"Let's go and check it out!\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501010,\"group_id\":2050101,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Great! Let's go!\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501011,\"group_id\":2050102,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"What should we do now?\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501012,\"group_id\":2050102,\"speaker_name\":\"法师\",\"speaker_type\":1,\"sentence\":\"I think we need an axe.\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501013,\"group_id\":2050102,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"An axe?\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501014,\"group_id\":2050102,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Where can we get it?\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501015,\"group_id\":2050102,\"speaker_name\":\"法师\",\"speaker_type\":1,\"sentence\":\"Maybe you can borrow from the farmer.\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501016,\"group_id\":2050102,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"OK! I will go now!\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501017,\"group_id\":2050103,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Hi, Kiddo! Why are you here?\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501018,\"group_id\":2050103,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Could I borrow your axe?\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501019,\"group_id\":2050103,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"Sure. No problem!\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501020,\"group_id\":2050103,\"speaker_name\":\"农场主\",\"speaker_type\":1,\"sentence\":\"It's in the cabin.\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501021,\"group_id\":2050103,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"Thank you!\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501022,\"group_id\":2050110,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"axe\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501023,\"group_id\":2050104,\"speaker_name\":\"法师\",\"speaker_type\":0,\"sentence\":\"Hey! You are back!\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501024,\"group_id\":2050104,\"speaker_name\":\"法师\",\"speaker_type\":0,\"sentence\":\"How did it go?\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501025,\"group_id\":2050104,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"It went well. \",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501026,\"group_id\":2050104,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"I got the axe.\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501027,\"group_id\":2050104,\"speaker_name\":\"法师\",\"speaker_type\":0,\"sentence\":\"Great!\\r\\n\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501028,\"group_id\":2050104,\"speaker_name\":\"法师\",\"speaker_type\":0,\"sentence\":\"Now we use the axe to break the rock.\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501029,\"group_id\":2050104,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"But how?\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501030,\"group_id\":2050104,\"speaker_name\":\"法师\",\"speaker_type\":0,\"sentence\":\"Just say \\\"axe\\\".\",\"sound\":\"10\",\"step_type\":1,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4},{\"id\":20501031,\"group_id\":2050104,\"speaker_name\":\"我\",\"speaker_type\":0,\"sentence\":\"OK!\",\"sound\":\"10\",\"step_type\":3,\"can_close\":true,\"score_rules\":[10,50,80],\"try_times\":4}]"
|
|
15
|
+
JsonText: "[{\"Id\":40100001,\"GroupId\":4010001,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Morning, sir!\",\"Sound\":\"40100001\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100002,\"GroupId\":4010001,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Good morning to you, too, kid! So glad you came!\",\"Sound\":\"40100003\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100003,\"GroupId\":4010001,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"I heard you have troubles(麻烦).\",\"Sound\":\"40100004\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100004,\"GroupId\":4010001,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Indeed(的确). And this time the troubles are strange.\",\"Sound\":\"40100006\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100005,\"GroupId\":4010001,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"How strange?\",\"Sound\":\"40100007\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100006,\"GroupId\":4010001,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"You remember finding my animals from before? \",\"Sound\":\"40100009\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100007,\"GroupId\":4010001,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Now they are too big or too small!\",\"Sound\":\"40100010\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100008,\"GroupId\":4010001,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Too big or too small?\",\"Sound\":\"40100012\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100009,\"GroupId\":4010001,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Yeah! Take the chickens for an example(比如说)\",\"Sound\":\"40100013\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100010,\"GroupId\":4010001,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"They were pretty small, but now they are huge!\",\"Sound\":\"40100014\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100011,\"GroupId\":4010001,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Huge chickens?!\",\"Sound\":\"40100016\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100012,\"GroupId\":4010001,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"I have to see this!\",\"Sound\":\"40100018\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100013,\"GroupId\":4010001,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Yes, please! Find a way to return them to normal!\",\"Sound\":\"40100019\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100014,\"GroupId\":4010001,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"As always\",\"Sound\":\"40100021\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100015,\"GroupId\":4010001,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"I'm on it, sir.\",\"Sound\":\"40100023\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100016,\"GroupId\":4010001,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Bless you!\",\"Sound\":\"40100024\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100017,\"GroupId\":4010002,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Morning, sir!\",\"Sound\":\"40100026\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100018,\"GroupId\":4010002,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Morning!\",\"Sound\":\"40100027\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100019,\"GroupId\":4010002,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"What are you doing here?\",\"Sound\":\"40100029\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100020,\"GroupId\":4010002,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"I'm a farm worker, so I'm doing farm work.\",\"Sound\":\"40100030\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100021,\"GroupId\":4010002,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"But now I'm too afraid.\",\"Sound\":\"40100031\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100022,\"GroupId\":4010002,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Why?\",\"Sound\":\"40100032\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100023,\"GroupId\":4010002,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Why? Look at that huge bee!\",\"Sound\":\"40100034\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100024,\"GroupId\":4010002,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Right.\",\"Sound\":\"40100035\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100025,\"GroupId\":4010002,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Let me check out the huge bee.\",\"Sound\":\"40100038\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100026,\"GroupId\":4010003,\"SpeakerName\":\"巨型蜜蜂\",\"SpeakerType\":1,\"Sentence\":\"Biggest! Biggest!\",\"Sound\":\"40100039\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100027,\"GroupId\":4010004,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"The bee says biggest.\",\"Sound\":\"40100041\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100028,\"GroupId\":4010004,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Any idea what that means?\",\"Sound\":\"40100043\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100029,\"GroupId\":4010004,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Biggest? Let's say there are 3 stones(石头).\",\"Sound\":\"40100044\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100030,\"GroupId\":4010004,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"A tiny stone, a small stone, and a big stone. \",\"Sound\":\"40100045\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100031,\"GroupId\":4010004,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Then, we call the big stone, the biggest.\",\"Sound\":\"40100046\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100032,\"GroupId\":4010004,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"I see! \",\"Sound\":\"40100047\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100033,\"GroupId\":4010004,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Speaking of the biggest, I need a favor(帮忙).\",\"Sound\":\"40100049\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100034,\"GroupId\":4010004,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Name it!\",\"Sound\":\"40100051\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100035,\"GroupId\":4010004,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"I'm trying to feed the horses, and horses love apples.\",\"Sound\":\"40100052\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100036,\"GroupId\":4010004,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"I left some apples by the river, in the biggest tree.\",\"Sound\":\"40100053\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100037,\"GroupId\":4010004,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Would you fetch it for me?\",\"Sound\":\"40100054\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100038,\"GroupId\":4010004,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Getting apples for horses?\",\"Sound\":\"40100056\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100039,\"GroupId\":4010004,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"That's my kind of thing!\",\"Sound\":\"40100058\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100040,\"GroupId\":4010004,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Much appreciated! \",\"Sound\":\"40100059\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100041,\"GroupId\":4010005,\"SpeakerName\":\"苹果树\",\"SpeakerType\":1,\"Sentence\":\"Give u apples\",\"Sound\":\"2\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100042,\"GroupId\":4010006,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"I found your apples!\",\"Sound\":\"40100061\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100043,\"GroupId\":4010006,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Many thanks! Since you found the apples,\",\"Sound\":\"40100062\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100044,\"GroupId\":4010006,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"you should feed them to the horses.\",\"Sound\":\"40100063\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100045,\"GroupId\":4010006,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"I love horses!\",\"Sound\":\"40100065\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100046,\"GroupId\":4010006,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Feeding horses is my thing!\",\"Sound\":\"40100067\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100047,\"GroupId\":4010007,\"SpeakerName\":\"马\",\"SpeakerType\":1,\"Sentence\":\"Smallest! Smallest!\",\"Sound\":\"40100068\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100048,\"GroupId\":4010008,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"The horse says smallest.\",\"Sound\":\"40100069\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100049,\"GroupId\":4010008,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Any idea what that means?\",\"Sound\":\"40100071\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100050,\"GroupId\":4010008,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"The opposite(相反)of biggest. \",\"Sound\":\"40100073\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100051,\"GroupId\":4010008,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Opposite of biggest?\",\"Sound\":\"40100074\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100052,\"GroupId\":4010008,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Opposite of biggest?\",\"Sound\":\"40100074\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100053,\"GroupId\":4010008,\"SpeakerName\":\"农场主\",\"SpeakerType\":0,\"Sentence\":\"Yeah. The opposite of biggest is smallest.\",\"Sound\":\"40100076\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100054,\"GroupId\":4010008,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"I see! \",\"Sound\":\"40100077\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100055,\"GroupId\":4010008,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Now I have to feed the sheep. Get some grass for me?\",\"Sound\":\"40100079\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100056,\"GroupId\":4010008,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Finding stuff is my thing!\",\"Sound\":\"40100081\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100057,\"GroupId\":4010008,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Wait! Only the grass by the smallest tree, near the river!\",\"Sound\":\"40100082\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100058,\"GroupId\":4010008,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"By the smallest tree!\",\"Sound\":\"40100083\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100059,\"GroupId\":4010009,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Dialog9\",\"Sound\":\"9\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100060,\"GroupId\":4010010,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Dialog10\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100061,\"GroupId\":4010011,\"SpeakerName\":\"羊\",\"SpeakerType\":1,\"Sentence\":\"Dialog11\",\"Sound\":\"11\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100062,\"GroupId\":4010012,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Dialog12\",\"Sound\":\"12\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100063,\"GroupId\":4010013,\"SpeakerName\":\"鸡\",\"SpeakerType\":1,\"Sentence\":\"对话13\",\"Sound\":\"13\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100064,\"GroupId\":4010014,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"对话14\",\"Sound\":\"14\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100065,\"GroupId\":4010015,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"对话15\",\"Sound\":\"15\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100066,\"GroupId\":4010016,\"SpeakerName\":\"鸡\",\"SpeakerType\":1,\"Sentence\":\"对话16\",\"Sound\":\"16\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100067,\"GroupId\":4010017,\"SpeakerName\":\"火鸡\",\"SpeakerType\":1,\"Sentence\":\"对话17\",\"Sound\":\"17\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,80,90],\"TryTimes\":4},{\"Id\":40100068,\"GroupId\":1,\"SpeakerName\":\"小妹妹\",\"SpeakerType\":1,\"Sentence\":\"hello\",\"Sound\":\"23\",\"StepType\":1,\"CanClose\":false,\"ScoreRules\":[10,80,90],\"TryTimes\":1},{\"Id\":40100069,\"GroupId\":2,\"SpeakerName\":\"路人甲\",\"SpeakerType\":1,\"Sentence\":\"hi\",\"Sound\":\"24\",\"StepType\":1,\"CanClose\":false,\"ScoreRules\":[10,80,90],\"TryTimes\":1},{\"Id\":40100070,\"GroupId\":3,\"SpeakerName\":\"路人甲\",\"SpeakerType\":1,\"Sentence\":\"yo\",\"Sound\":\"25\",\"StepType\":1,\"CanClose\":false,\"ScoreRules\":[10,80,90],\"TryTimes\":1},{\"Id\":40100071,\"GroupId\":4,\"SpeakerName\":\"路人甲\",\"SpeakerType\":1,\"Sentence\":\"ka\",\"Sound\":\"26\",\"StepType\":1,\"CanClose\":false,\"ScoreRules\":[10,80,90],\"TryTimes\":1},{\"Id\":40100072,\"GroupId\":5,\"SpeakerName\":\"路人甲\",\"SpeakerType\":1,\"Sentence\":\"didi\",\"Sound\":\"27\",\"StepType\":1,\"CanClose\":false,\"ScoreRules\":[10,80,90],\"TryTimes\":1},{\"Id\":40100073,\"GroupId\":6,\"SpeakerName\":\"路人甲\",\"SpeakerType\":1,\"Sentence\":\"kk\",\"Sound\":\"28\",\"StepType\":1,\"CanClose\":false,\"ScoreRules\":[10,80,90],\"TryTimes\":1},{\"Id\":20400001,\"GroupId\":2040001,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"废话1\",\"Sound\":\"1\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20400002,\"GroupId\":2040002,\"SpeakerName\":\"混乱牛\",\"SpeakerType\":1,\"Sentence\":\"废话2\",\"Sound\":\"2\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20400003,\"GroupId\":2040003,\"SpeakerName\":\"牛\",\"SpeakerType\":1,\"Sentence\":\"废话3\",\"Sound\":\"3\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20400004,\"GroupId\":2040004,\"SpeakerName\":\"混乱鸭子\",\"SpeakerType\":1,\"Sentence\":\"废话4\",\"Sound\":\"4\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20400005,\"GroupId\":2040005,\"SpeakerName\":\"鸭子\",\"SpeakerType\":1,\"Sentence\":\"废话5\",\"Sound\":\"5\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20400006,\"GroupId\":2040006,\"SpeakerName\":\"混乱山羊\",\"SpeakerType\":1,\"Sentence\":\"废话6\",\"Sound\":\"6\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20400007,\"GroupId\":2040007,\"SpeakerName\":\"山羊\",\"SpeakerType\":1,\"Sentence\":\"废话7\",\"Sound\":\"7\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20400008,\"GroupId\":2040008,\"SpeakerName\":\"混乱兔子\",\"SpeakerType\":1,\"Sentence\":\"废话8\",\"Sound\":\"8\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20400009,\"GroupId\":2040009,\"SpeakerName\":\"兔子\",\"SpeakerType\":1,\"Sentence\":\"废话9\",\"Sound\":\"9\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20400010,\"GroupId\":2040010,\"SpeakerName\":\"混乱猪\",\"SpeakerType\":1,\"Sentence\":\"废话10\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20400011,\"GroupId\":2040011,\"SpeakerName\":\"猪\",\"SpeakerType\":1,\"Sentence\":\"废话11\",\"Sound\":\"11\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20400012,\"GroupId\":2040012,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"废话12\",\"Sound\":\"12\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20400013,\"GroupId\":2040013,\"SpeakerName\":\"嗡嗡怪\",\"SpeakerType\":1,\"Sentence\":\"废话13\",\"Sound\":\"13\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20400014,\"GroupId\":2040014,\"SpeakerName\":\"嗡嗡怪\",\"SpeakerType\":1,\"Sentence\":\"废话14\",\"Sound\":\"14\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20401001,\"GroupId\":2040101,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"对话1\",\"Sound\":\"1\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20401002,\"GroupId\":2040102,\"SpeakerName\":\"猫\",\"SpeakerType\":1,\"Sentence\":\"对话2\",\"Sound\":\"2\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20401003,\"GroupId\":2040103,\"SpeakerName\":\"萌宠1\",\"SpeakerType\":1,\"Sentence\":\"对话3\",\"Sound\":\"3\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20401004,\"GroupId\":2040104,\"SpeakerName\":\"猫\",\"SpeakerType\":1,\"Sentence\":\"对话4\",\"Sound\":\"4\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20401005,\"GroupId\":2040105,\"SpeakerName\":\"狗\",\"SpeakerType\":1,\"Sentence\":\"对话5\",\"Sound\":\"5\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20401006,\"GroupId\":2040106,\"SpeakerName\":\"萌宠2\",\"SpeakerType\":1,\"Sentence\":\"对话6\",\"Sound\":\"6\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20401007,\"GroupId\":2040107,\"SpeakerName\":\"狗\",\"SpeakerType\":1,\"Sentence\":\"对话7\",\"Sound\":\"7\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20401008,\"GroupId\":2040108,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"对话8\",\"Sound\":\"8\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20401009,\"GroupId\":2040199,\"SpeakerName\":\"狗\",\"SpeakerType\":1,\"Sentence\":\"汪\",\"Sound\":\"1\",\"StepType\":1,\"CanClose\":false,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20401010,\"GroupId\":2040198,\"SpeakerName\":\"猫\",\"SpeakerType\":1,\"Sentence\":\"喵\",\"Sound\":\"1\",\"StepType\":1,\"CanClose\":false,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20402001,\"GroupId\":2040201,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"垃圾话1\",\"Sound\":\"15\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20402002,\"GroupId\":2040202,\"SpeakerName\":\"鹦鹉\",\"SpeakerType\":1,\"Sentence\":\"垃圾话2\",\"Sound\":\"16\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20402003,\"GroupId\":2040203,\"SpeakerName\":\"萌宠1\",\"SpeakerType\":1,\"Sentence\":\"垃圾话3\",\"Sound\":\"17\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20402004,\"GroupId\":2040204,\"SpeakerName\":\"鹦鹉\",\"SpeakerType\":1,\"Sentence\":\"垃圾话4\",\"Sound\":\"18\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20402005,\"GroupId\":2040205,\"SpeakerName\":\"萌宠2\",\"SpeakerType\":1,\"Sentence\":\"垃圾话5\",\"Sound\":\"19\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20402006,\"GroupId\":2040206,\"SpeakerName\":\"鹦鹉\",\"SpeakerType\":1,\"Sentence\":\"垃圾话6\",\"Sound\":\"20\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20402007,\"GroupId\":2040207,\"SpeakerName\":\"萌宠3\",\"SpeakerType\":1,\"Sentence\":\"垃圾话7\",\"Sound\":\"21\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20402008,\"GroupId\":2040208,\"SpeakerName\":\"森林鹦鹉\",\"SpeakerType\":1,\"Sentence\":\"垃圾话8\",\"Sound\":\"22\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20402009,\"GroupId\":2040209,\"SpeakerName\":\"鹦鹉\",\"SpeakerType\":1,\"Sentence\":\"垃圾话9\",\"Sound\":\"23\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20402010,\"GroupId\":2040210,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"垃圾话10\",\"Sound\":\"24\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500001,\"GroupId\":2050001,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\"Kiddo! Why are you here?\",\"Sound\":\"1\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500002,\"GroupId\":2050001,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Could you do me a favor?\",\"Sound\":\"2\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500003,\"GroupId\":2050001,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\"Why should I?\",\"Sound\":\"3\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500004,\"GroupId\":2050001,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Please! I need the wonder potion!\",\"Sound\":\"4\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500005,\"GroupId\":2050001,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"It can defeat Buzzy!\",\"Sound\":\"5\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500006,\"GroupId\":2050001,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\"I will help you, if you can find something for me.\",\"Sound\":\"6\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500007,\"GroupId\":2050001,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"No problem! What is it?\",\"Sound\":\"7\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500008,\"GroupId\":2050001,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\"Find me some grass.\",\"Sound\":\"8\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500009,\"GroupId\":2050001,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"OK!\",\"Sound\":\"9\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500010,\"GroupId\":2050002,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\" Hi! I've got some grass.\",\"Sound\":\"11\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,81],\"TryTimes\":4},{\"Id\":20500011,\"GroupId\":2050002,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\" Let me have a look!\",\"Sound\":\"12\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,82],\"TryTimes\":4},{\"Id\":20500012,\"GroupId\":2050002,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\" Here you are.\",\"Sound\":\"13\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,83],\"TryTimes\":4},{\"Id\":20500013,\"GroupId\":2050002,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\" Well, that's exactly what I need.\",\"Sound\":\"14\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,84],\"TryTimes\":4},{\"Id\":20500014,\"GroupId\":2050002,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Yay! How about the wonder potion?\",\"Sound\":\"15\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,85],\"TryTimes\":4},{\"Id\":20500015,\"GroupId\":2050002,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\"Shhhh! Get me five different colors of flowers.\",\"Sound\":\"16\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,86],\"TryTimes\":4},{\"Id\":20500016,\"GroupId\":2050002,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"No problem!\",\"Sound\":\"17\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,87],\"TryTimes\":4},{\"Id\":20500017,\"GroupId\":2050003,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\" Hi! I've got some flowers.\",\"Sound\":\"1\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500018,\"GroupId\":2050003,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\" Let me have a look!\",\"Sound\":\"2\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500019,\"GroupId\":2050003,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\" Here you are.\",\"Sound\":\"3\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500020,\"GroupId\":2050003,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\" Good! That's exactly what I need.\",\"Sound\":\"4\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500021,\"GroupId\":2050003,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Yay! How about the wonder potion?\",\"Sound\":\"5\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500022,\"GroupId\":2050003,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\"Shush! Get me five walnuts and peanuts.\",\"Sound\":\"6\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500023,\"GroupId\":2050003,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"No problem!\",\"Sound\":\"7\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500024,\"GroupId\":2050004,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\" Hi!I've got them. \",\"Sound\":\"6\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500025,\"GroupId\":2050004,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Some walnuts and peanuts.\",\"Sound\":\"7\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500026,\"GroupId\":2050004,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\" Let me have a look!\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500027,\"GroupId\":2050004,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\" Here you are.\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500028,\"GroupId\":2050004,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\" Nice! That's exactly what I need.\",\"Sound\":\"6\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500029,\"GroupId\":2050004,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Yay! How about the wonder potion?\",\"Sound\":\"7\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500030,\"GroupId\":2050004,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\"What potion? Get me some berries now.\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500031,\"GroupId\":2050004,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"No problem!\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500032,\"GroupId\":2050005,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\" Hi I've got some berries.\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500033,\"GroupId\":2050005,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\" Let me have a look!\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500034,\"GroupId\":2050005,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\" Here you are.\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500035,\"GroupId\":2050005,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\" Perfect! That's exactly what I need.\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500036,\"GroupId\":2050005,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Yay! How about the wonder potion now?\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500037,\"GroupId\":2050005,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\"So be it.\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500038,\"GroupId\":2050005,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"What do I need?\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500039,\"GroupId\":2050005,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\"You need some grass, flowers, walnuts, peanuts, and berries.\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500040,\"GroupId\":2050005,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Grass, flower, walnut, peanut, and berry?\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500041,\"GroupId\":2050005,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\"Yes! And you have got them.\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500042,\"GroupId\":2050005,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\"Here is the magic potion.\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500043,\"GroupId\":2050005,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Wonderful! Thank you so much!\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500044,\"GroupId\":2050005,\"SpeakerName\":\"女巫\",\"SpeakerType\":1,\"Sentence\":\"Off you go now, kiddo!\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500045,\"GroupId\":2050010,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"This is grass\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500046,\"GroupId\":2050011,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"This is flower\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500047,\"GroupId\":2050012,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"This is peanut\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500048,\"GroupId\":2050013,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"This is walnut\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500049,\"GroupId\":2050014,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"This is berry\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20500050,\"GroupId\":20500001,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"grass\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20500051,\"GroupId\":20500002,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"flower\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20500052,\"GroupId\":20500003,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"berry\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20500053,\"GroupId\":20500004,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"walnut\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20500054,\"GroupId\":20500005,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"peanut\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20500055,\"GroupId\":20500006,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"This is grass.\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20500056,\"GroupId\":20500007,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"This is flower.\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20500057,\"GroupId\":20500008,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"This is walnut.\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20500058,\"GroupId\":20500009,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"This is berry.\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20500059,\"GroupId\":20500010,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"This is peanut.\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20500060,\"GroupId\":20500011,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"peanut\",\"Sound\":\"10\",\"StepType\":2,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20500061,\"GroupId\":20500012,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Wonderful\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20500062,\"GroupId\":20500013,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Perfect\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20500063,\"GroupId\":20500014,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Magic potion\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":1},{\"Id\":20501001,\"GroupId\":2050101,\"SpeakerName\":\"法师\",\"SpeakerType\":1,\"Sentence\":\"Hi,Kiddo! How are you?\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501002,\"GroupId\":2050101,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Great! And you?\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501003,\"GroupId\":2050101,\"SpeakerName\":\"法师\",\"SpeakerType\":1,\"Sentence\":\"I am all good.\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501004,\"GroupId\":2050101,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Do me a favor, please.\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501005,\"GroupId\":2050101,\"SpeakerName\":\"法师\",\"SpeakerType\":1,\"Sentence\":\"What's the problem?\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501006,\"GroupId\":2050101,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"It's the magical seed.\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501007,\"GroupId\":2050101,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"I need to get it out.\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501008,\"GroupId\":2050101,\"SpeakerName\":\"法师\",\"SpeakerType\":1,\"Sentence\":\"Oh! The magical seed!\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501009,\"GroupId\":2050101,\"SpeakerName\":\"法师\",\"SpeakerType\":1,\"Sentence\":\"Let's go and check it out!\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501010,\"GroupId\":2050101,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Great! Let's go!\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501011,\"GroupId\":2050102,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"What should we do now?\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501012,\"GroupId\":2050102,\"SpeakerName\":\"法师\",\"SpeakerType\":1,\"Sentence\":\"I think we need an axe.\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501013,\"GroupId\":2050102,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"An axe?\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501014,\"GroupId\":2050102,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Where can we get it?\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501015,\"GroupId\":2050102,\"SpeakerName\":\"法师\",\"SpeakerType\":1,\"Sentence\":\"Maybe you can borrow from the farmer.\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501016,\"GroupId\":2050102,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"OK! I will go now!\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501017,\"GroupId\":2050103,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Hi, Kiddo! Why are you here?\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501018,\"GroupId\":2050103,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Could I borrow your axe?\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501019,\"GroupId\":2050103,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"Sure. No problem!\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501020,\"GroupId\":2050103,\"SpeakerName\":\"农场主\",\"SpeakerType\":1,\"Sentence\":\"It's in the cabin.\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501021,\"GroupId\":2050103,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"Thank you!\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501022,\"GroupId\":2050110,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"axe\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501023,\"GroupId\":2050104,\"SpeakerName\":\"法师\",\"SpeakerType\":0,\"Sentence\":\"Hey! You are back!\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501024,\"GroupId\":2050104,\"SpeakerName\":\"法师\",\"SpeakerType\":0,\"Sentence\":\"How did it go?\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501025,\"GroupId\":2050104,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"It went well. \",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501026,\"GroupId\":2050104,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"I got the axe.\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501027,\"GroupId\":2050104,\"SpeakerName\":\"法师\",\"SpeakerType\":0,\"Sentence\":\"Great!\\r\\n\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501028,\"GroupId\":2050104,\"SpeakerName\":\"法师\",\"SpeakerType\":0,\"Sentence\":\"Now we use the axe to break the rock.\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501029,\"GroupId\":2050104,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"But how?\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501030,\"GroupId\":2050104,\"SpeakerName\":\"法师\",\"SpeakerType\":0,\"Sentence\":\"Just say \\\"axe\\\".\",\"Sound\":\"10\",\"StepType\":1,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4},{\"Id\":20501031,\"GroupId\":2050104,\"SpeakerName\":\"我\",\"SpeakerType\":0,\"Sentence\":\"OK!\",\"Sound\":\"10\",\"StepType\":3,\"CanClose\":true,\"ScoreRules\":[10,50,80],\"TryTimes\":4}]"
|
package/test/dist//345/257/271/350/257/235/350/241/250-/345/257/271/350/257/235/350/241/250Loader.cs
CHANGED
|
@@ -8,7 +8,7 @@ namespace MEEC.ExportedConfigs
|
|
|
8
8
|
{
|
|
9
9
|
static 对话表()
|
|
10
10
|
{
|
|
11
|
-
var loadUrl="Assets/Bundles/
|
|
11
|
+
var loadUrl="Assets/Bundles/GameConfigs/Auto/对话表-对话表.asset";
|
|
12
12
|
var configJson = Addressables.LoadAssetAsync<ExcelConfigJson>(loadUrl).WaitForCompletion();
|
|
13
13
|
if (configJson != null)
|
|
14
14
|
{
|
|
@@ -12,4 +12,4 @@ MonoBehaviour:
|
|
|
12
12
|
m_Script: {fileID: 11500000, guid: 496f60086c072a8479a6e0b948efb5e8, type: 3}
|
|
13
13
|
m_Name: 过场引导-过场引导
|
|
14
14
|
m_EditorClassIdentifier:
|
|
15
|
-
JsonText: "[{\"id\":10100,\"group_id\":10100,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Morning, sir!\",\"sentence_zh_CN\":\"Morning, sir!\",\"sound\":\"40100001\"},{\"id\":10200,\"group_id\":10200,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Good morning to you, too, kid! So glad you came!\",\"sentence_zh_CN\":\"Good morning to you, too, kid! So glad you came!\",\"sound\":\"40100003\"},{\"id\":10300,\"group_id\":10300,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"I heard you have troubles(麻烦).\",\"sentence_zh_CN\":\"I heard you have troubles(麻烦).\",\"sound\":\"40100004\"},{\"id\":10400,\"group_id\":10400,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Indeed(的确). And this time the troubles are strange.\",\"sentence_zh_CN\":\"Indeed(的确). And this time the troubles are strange.\",\"sound\":\"40100006\"},{\"id\":10500,\"group_id\":10500,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"How strange?\",\"sentence_zh_CN\":\"How strange?\",\"sound\":\"40100007\"},{\"id\":10600,\"group_id\":10600,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"You remember finding my animals from before? \",\"sentence_zh_CN\":\"You remember finding my animals from before? \",\"sound\":\"40100009\"},{\"id\":20100,\"group_id\":20100,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Now they are too big or too small!\",\"sentence_zh_CN\":\"Now they are too big or too small!\",\"sound\":\"40100010\"},{\"id\":20200,\"group_id\":20200,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Too big or too small?\",\"sentence_zh_CN\":\"Too big or too small?\",\"sound\":\"40100012\"},{\"id\":20300,\"group_id\":20300,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Yeah! Take the chickens for an example(比如说)\",\"sentence_zh_CN\":\"Yeah! Take the chickens for an example(比如说)\",\"sound\":\"40100013\"},{\"id\":2040001,\"group_id\":20400,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"I checked the magic book.\",\"sentence_zh_CN\":\"我查阅了魔法书.\",\"sound\":\"2040001\"},{\"id\":2040002,\"group_id\":20400,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Making magic potions also requires golden feathers.\",\"sentence_zh_CN\":\"制作神奇药水还需要金色的羽毛.\",\"sound\":\"2040002\"},{\"id\":2040003,\"group_id\":20400,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"The farmer may have them.\",\"sentence_zh_CN\":\"农场主那里可能有.\",\"sound\":\"2040003\"},{\"id\":2040004,\"group_id\":20400,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"but his farm has been a little chaotic recently.\",\"sentence_zh_CN\":\"不过他的农场最近因为嗡嗡怪的作乱有点混乱.\",\"sound\":\"2040004\"},{\"id\":2040005,\"group_id\":20400,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"due to the disturbance of buzzing monster.\",\"sentence_zh_CN\":\"不过他的农场最近因为嗡嗡怪的作乱有点混乱.\",\"sound\":\"2040005\"},{\"id\":2040006,\"group_id\":20400,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Go and have a look first.\",\"sentence_zh_CN\":\"你们先去看看情况吧.\",\"sound\":\"2040006\"},{\"id\":20500,\"group_id\":20500,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Huge chickens?!\",\"sentence_zh_CN\":\"Huge chickens?!\",\"sound\":\"40100016\"},{\"id\":20600,\"group_id\":20600,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"I have to see this!\",\"sentence_zh_CN\":\"I have to see this!\",\"sound\":\"40100018\"},{\"id\":30100,\"group_id\":30100,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Yes, please! Find a way to return them to normal!\",\"sentence_zh_CN\":\"Yes, please! Find a way to return them to normal!\",\"sound\":\"40100019\"},{\"id\":30200,\"group_id\":30200,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"As always\",\"sentence_zh_CN\":\"As always\",\"sound\":\"40100021\"},{\"id\":30300,\"group_id\":30300,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"I'm on it, sir.\",\"sentence_zh_CN\":\"I'm on it, sir.\",\"sound\":\"40100023\"},{\"id\":30400,\"group_id\":30400,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100024\"},{\"id\":30500,\"group_id\":30500,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100025\"},{\"id\":30600,\"group_id\":30600,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100026\"},{\"id\":40100,\"group_id\":40100,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100027\"},{\"id\":40200,\"group_id\":40200,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100028\"},{\"id\":40300,\"group_id\":40300,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100029\"},{\"id\":40400,\"group_id\":40400,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100030\"},{\"id\":40500,\"group_id\":40500,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100031\"},{\"id\":40600,\"group_id\":40600,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100032\"},{\"id\":50100,\"group_id\":50100,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100033\"},{\"id\":50200,\"group_id\":50200,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100034\"},{\"id\":50300,\"group_id\":50300,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100035\"},{\"id\":50400,\"group_id\":50400,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100036\"},{\"id\":50500,\"group_id\":50500,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100037\"},{\"id\":50600,\"group_id\":50600,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100038\"},{\"id\":60100,\"group_id\":60100,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100039\"},{\"id\":60200,\"group_id\":60200,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100040\"},{\"id\":60300,\"group_id\":60300,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100041\"},{\"id\":60400,\"group_id\":60400,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100042\"},{\"id\":60500,\"group_id\":60500,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100043\"},{\"id\":60600,\"group_id\":60600,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100044\"},{\"id\":70100,\"group_id\":70100,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100045\"},{\"id\":70200,\"group_id\":70200,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100046\"},{\"id\":70300,\"group_id\":70300,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100047\"},{\"id\":70400,\"group_id\":70400,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100048\"},{\"id\":70500,\"group_id\":70500,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100049\"},{\"id\":70600,\"group_id\":70600,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100050\"},{\"id\":80100,\"group_id\":80100,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100051\"},{\"id\":80200,\"group_id\":80200,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100052\"},{\"id\":80300,\"group_id\":80300,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100053\"},{\"id\":80400,\"group_id\":80400,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100054\"},{\"id\":80500,\"group_id\":80500,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100055\"},{\"id\":80600,\"group_id\":80600,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100056\"},{\"id\":90100,\"group_id\":90100,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100057\"},{\"id\":90200,\"group_id\":90200,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100058\"},{\"id\":90300,\"group_id\":90300,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100059\"},{\"id\":90400,\"group_id\":90400,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100060\"},{\"id\":90500,\"group_id\":90500,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100061\"},{\"id\":90600,\"group_id\":90600,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100062\"},{\"id\":100100,\"group_id\":100100,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100063\"},{\"id\":100200,\"group_id\":100200,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100064\"},{\"id\":100300,\"group_id\":100300,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100065\"},{\"id\":100400,\"group_id\":100400,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100066\"},{\"id\":100500,\"group_id\":100500,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100067\"},{\"id\":100600,\"group_id\":100600,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100068\"},{\"id\":10101,\"group_id\":10101,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100068\"},{\"id\":10102,\"group_id\":10102,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100069\"},{\"id\":10201,\"group_id\":10201,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100070\"},{\"id\":10202,\"group_id\":10202,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100071\"},{\"id\":10301,\"group_id\":10301,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100072\"},{\"id\":10302,\"group_id\":10302,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100073\"},{\"id\":10401,\"group_id\":10401,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100074\"},{\"id\":10402,\"group_id\":10402,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100075\"},{\"id\":10501,\"group_id\":10501,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100076\"},{\"id\":10502,\"group_id\":10502,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100077\"},{\"id\":10601,\"group_id\":10601,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100078\"},{\"id\":10602,\"group_id\":10602,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100079\"},{\"id\":20101,\"group_id\":20101,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100080\"},{\"id\":20102,\"group_id\":20102,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100081\"},{\"id\":20201,\"group_id\":20201,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100082\"},{\"id\":20202,\"group_id\":20202,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100083\"},{\"id\":20301,\"group_id\":20301,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100084\"},{\"id\":20302,\"group_id\":20302,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100085\"},{\"id\":20401,\"group_id\":20401,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100086\"},{\"id\":20402,\"group_id\":20402,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100087\"},{\"id\":20501,\"group_id\":20501,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100088\"},{\"id\":20502,\"group_id\":20502,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100089\"},{\"id\":20601,\"group_id\":20601,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100090\"},{\"id\":20602,\"group_id\":20602,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100091\"},{\"id\":30101,\"group_id\":30101,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100092\"},{\"id\":30102,\"group_id\":30102,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100093\"},{\"id\":30201,\"group_id\":30201,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100094\"},{\"id\":30202,\"group_id\":30202,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100095\"},{\"id\":30301,\"group_id\":30301,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100096\"},{\"id\":30302,\"group_id\":30302,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100097\"},{\"id\":30401,\"group_id\":30401,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100098\"},{\"id\":30402,\"group_id\":30402,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100099\"},{\"id\":30501,\"group_id\":30501,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100100\"},{\"id\":30502,\"group_id\":30502,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100101\"},{\"id\":30601,\"group_id\":30601,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100102\"},{\"id\":30602,\"group_id\":30602,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100103\"},{\"id\":40101,\"group_id\":40101,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100104\"},{\"id\":40102,\"group_id\":40102,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100105\"},{\"id\":40201,\"group_id\":40201,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100106\"},{\"id\":40202,\"group_id\":40202,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100107\"},{\"id\":40301,\"group_id\":40301,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100108\"},{\"id\":40302,\"group_id\":40302,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100109\"},{\"id\":40401,\"group_id\":40401,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100110\"},{\"id\":40402,\"group_id\":40402,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100111\"},{\"id\":40501,\"group_id\":40501,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100112\"},{\"id\":40502,\"group_id\":40502,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100113\"},{\"id\":40601,\"group_id\":40601,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100114\"},{\"id\":40602,\"group_id\":40602,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100115\"},{\"id\":50101,\"group_id\":50101,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100116\"},{\"id\":50102,\"group_id\":50102,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100117\"},{\"id\":50201,\"group_id\":50201,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100118\"},{\"id\":50202,\"group_id\":50202,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100119\"},{\"id\":50301,\"group_id\":50301,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100120\"},{\"id\":50302,\"group_id\":50302,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100121\"},{\"id\":50401,\"group_id\":50401,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100122\"},{\"id\":50402,\"group_id\":50402,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100123\"},{\"id\":50501,\"group_id\":50501,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100124\"},{\"id\":50502,\"group_id\":50502,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100125\"},{\"id\":50601,\"group_id\":50601,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100126\"},{\"id\":50602,\"group_id\":50602,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100127\"},{\"id\":60101,\"group_id\":60101,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100128\"},{\"id\":60102,\"group_id\":60102,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100129\"},{\"id\":60201,\"group_id\":60201,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100130\"},{\"id\":60202,\"group_id\":60202,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100131\"},{\"id\":60301,\"group_id\":60301,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100132\"},{\"id\":60302,\"group_id\":60302,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100133\"},{\"id\":60401,\"group_id\":60401,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100134\"},{\"id\":60402,\"group_id\":60402,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100135\"},{\"id\":60501,\"group_id\":60501,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100136\"},{\"id\":60502,\"group_id\":60502,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100137\"},{\"id\":60601,\"group_id\":60601,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100138\"},{\"id\":60602,\"group_id\":60602,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100139\"},{\"id\":70101,\"group_id\":70101,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100140\"},{\"id\":70102,\"group_id\":70102,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100141\"},{\"id\":70201,\"group_id\":70201,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100142\"},{\"id\":70202,\"group_id\":70202,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100143\"},{\"id\":70301,\"group_id\":70301,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100144\"},{\"id\":70302,\"group_id\":70302,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100145\"},{\"id\":70401,\"group_id\":70401,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100146\"},{\"id\":70402,\"group_id\":70402,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100147\"},{\"id\":70501,\"group_id\":70501,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100148\"},{\"id\":70502,\"group_id\":70502,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100149\"},{\"id\":70601,\"group_id\":70601,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100150\"},{\"id\":70602,\"group_id\":70602,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100151\"},{\"id\":80101,\"group_id\":80101,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100152\"},{\"id\":80102,\"group_id\":80102,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100153\"},{\"id\":80201,\"group_id\":80201,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100154\"},{\"id\":80202,\"group_id\":80202,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100155\"},{\"id\":80301,\"group_id\":80301,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100156\"},{\"id\":80302,\"group_id\":80302,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100157\"},{\"id\":80401,\"group_id\":80401,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100158\"},{\"id\":80402,\"group_id\":80402,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100159\"},{\"id\":80501,\"group_id\":80501,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100160\"},{\"id\":80502,\"group_id\":80502,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100161\"},{\"id\":80601,\"group_id\":80601,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100162\"},{\"id\":80602,\"group_id\":80602,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100163\"},{\"id\":90101,\"group_id\":90101,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100164\"},{\"id\":90102,\"group_id\":90102,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100165\"},{\"id\":90201,\"group_id\":90201,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100166\"},{\"id\":90202,\"group_id\":90202,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100167\"},{\"id\":90301,\"group_id\":90301,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100168\"},{\"id\":90302,\"group_id\":90302,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100169\"},{\"id\":90401,\"group_id\":90401,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100170\"},{\"id\":90402,\"group_id\":90402,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100171\"},{\"id\":90501,\"group_id\":90501,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100172\"},{\"id\":90502,\"group_id\":90502,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100173\"},{\"id\":90601,\"group_id\":90601,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100174\"},{\"id\":90602,\"group_id\":90602,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100175\"},{\"id\":100101,\"group_id\":100101,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100176\"},{\"id\":100102,\"group_id\":100102,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100177\"},{\"id\":100201,\"group_id\":100201,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100178\"},{\"id\":100202,\"group_id\":100202,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100179\"},{\"id\":100301,\"group_id\":100301,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100180\"},{\"id\":100302,\"group_id\":100302,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100181\"},{\"id\":100401,\"group_id\":100401,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100182\"},{\"id\":100402,\"group_id\":100402,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100183\"},{\"id\":100501,\"group_id\":100501,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100184\"},{\"id\":100502,\"group_id\":100502,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100185\"},{\"id\":100601,\"group_id\":100601,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100186\"},{\"id\":100602,\"group_id\":100602,\"speaker_name\":\"魔盒爷爷\",\"sentence\":\"Bless you!\",\"sentence_zh_CN\":\"Bless you!\",\"sound\":\"40100187\"}]"
|
|
15
|
+
JsonText: "[{\"Id\":10100,\"GroupId\":10100,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Morning, sir!\",\"SentenceZhCN\":\"Morning, sir!\",\"Sound\":\"40100001\"},{\"Id\":10200,\"GroupId\":10200,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Good morning to you, too, kid! So glad you came!\",\"SentenceZhCN\":\"Good morning to you, too, kid! So glad you came!\",\"Sound\":\"40100003\"},{\"Id\":10300,\"GroupId\":10300,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"I heard you have troubles(麻烦).\",\"SentenceZhCN\":\"I heard you have troubles(麻烦).\",\"Sound\":\"40100004\"},{\"Id\":10400,\"GroupId\":10400,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Indeed(的确). And this time the troubles are strange.\",\"SentenceZhCN\":\"Indeed(的确). And this time the troubles are strange.\",\"Sound\":\"40100006\"},{\"Id\":10500,\"GroupId\":10500,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"How strange?\",\"SentenceZhCN\":\"How strange?\",\"Sound\":\"40100007\"},{\"Id\":10600,\"GroupId\":10600,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"You remember finding my animals from before? \",\"SentenceZhCN\":\"You remember finding my animals from before? \",\"Sound\":\"40100009\"},{\"Id\":20100,\"GroupId\":20100,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Now they are too big or too small!\",\"SentenceZhCN\":\"Now they are too big or too small!\",\"Sound\":\"40100010\"},{\"Id\":20200,\"GroupId\":20200,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Too big or too small?\",\"SentenceZhCN\":\"Too big or too small?\",\"Sound\":\"40100012\"},{\"Id\":20300,\"GroupId\":20300,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Yeah! Take the chickens for an example(比如说)\",\"SentenceZhCN\":\"Yeah! Take the chickens for an example(比如说)\",\"Sound\":\"40100013\"},{\"Id\":2040001,\"GroupId\":20400,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"I checked the magic book.\",\"SentenceZhCN\":\"我查阅了魔法书.\",\"Sound\":\"2040001\"},{\"Id\":2040002,\"GroupId\":20400,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Making magic potions also requires golden feathers.\",\"SentenceZhCN\":\"制作神奇药水还需要金色的羽毛.\",\"Sound\":\"2040002\"},{\"Id\":2040003,\"GroupId\":20400,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"The farmer may have them.\",\"SentenceZhCN\":\"农场主那里可能有.\",\"Sound\":\"2040003\"},{\"Id\":2040004,\"GroupId\":20400,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"but his farm has been a little chaotic recently.\",\"SentenceZhCN\":\"不过他的农场最近因为嗡嗡怪的作乱有点混乱.\",\"Sound\":\"2040004\"},{\"Id\":2040005,\"GroupId\":20400,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"due to the disturbance of buzzing monster.\",\"SentenceZhCN\":\"不过他的农场最近因为嗡嗡怪的作乱有点混乱.\",\"Sound\":\"2040005\"},{\"Id\":2040006,\"GroupId\":20400,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Go and have a look first.\",\"SentenceZhCN\":\"你们先去看看情况吧.\",\"Sound\":\"2040006\"},{\"Id\":20500,\"GroupId\":20500,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Huge chickens?!\",\"SentenceZhCN\":\"Huge chickens?!\",\"Sound\":\"40100016\"},{\"Id\":20600,\"GroupId\":20600,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"I have to see this!\",\"SentenceZhCN\":\"I have to see this!\",\"Sound\":\"40100018\"},{\"Id\":30100,\"GroupId\":30100,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Yes, please! Find a way to return them to normal!\",\"SentenceZhCN\":\"Yes, please! Find a way to return them to normal!\",\"Sound\":\"40100019\"},{\"Id\":30200,\"GroupId\":30200,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"As always\",\"SentenceZhCN\":\"As always\",\"Sound\":\"40100021\"},{\"Id\":30300,\"GroupId\":30300,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"I'm on it, sir.\",\"SentenceZhCN\":\"I'm on it, sir.\",\"Sound\":\"40100023\"},{\"Id\":30400,\"GroupId\":30400,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100024\"},{\"Id\":30500,\"GroupId\":30500,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100025\"},{\"Id\":30600,\"GroupId\":30600,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100026\"},{\"Id\":40100,\"GroupId\":40100,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100027\"},{\"Id\":40200,\"GroupId\":40200,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100028\"},{\"Id\":40300,\"GroupId\":40300,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100029\"},{\"Id\":40400,\"GroupId\":40400,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100030\"},{\"Id\":40500,\"GroupId\":40500,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100031\"},{\"Id\":40600,\"GroupId\":40600,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100032\"},{\"Id\":50100,\"GroupId\":50100,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100033\"},{\"Id\":50200,\"GroupId\":50200,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100034\"},{\"Id\":50300,\"GroupId\":50300,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100035\"},{\"Id\":50400,\"GroupId\":50400,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100036\"},{\"Id\":50500,\"GroupId\":50500,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100037\"},{\"Id\":50600,\"GroupId\":50600,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100038\"},{\"Id\":60100,\"GroupId\":60100,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100039\"},{\"Id\":60200,\"GroupId\":60200,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100040\"},{\"Id\":60300,\"GroupId\":60300,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100041\"},{\"Id\":60400,\"GroupId\":60400,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100042\"},{\"Id\":60500,\"GroupId\":60500,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100043\"},{\"Id\":60600,\"GroupId\":60600,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100044\"},{\"Id\":70100,\"GroupId\":70100,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100045\"},{\"Id\":70200,\"GroupId\":70200,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100046\"},{\"Id\":70300,\"GroupId\":70300,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100047\"},{\"Id\":70400,\"GroupId\":70400,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100048\"},{\"Id\":70500,\"GroupId\":70500,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100049\"},{\"Id\":70600,\"GroupId\":70600,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100050\"},{\"Id\":80100,\"GroupId\":80100,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100051\"},{\"Id\":80200,\"GroupId\":80200,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100052\"},{\"Id\":80300,\"GroupId\":80300,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100053\"},{\"Id\":80400,\"GroupId\":80400,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100054\"},{\"Id\":80500,\"GroupId\":80500,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100055\"},{\"Id\":80600,\"GroupId\":80600,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100056\"},{\"Id\":90100,\"GroupId\":90100,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100057\"},{\"Id\":90200,\"GroupId\":90200,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100058\"},{\"Id\":90300,\"GroupId\":90300,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100059\"},{\"Id\":90400,\"GroupId\":90400,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100060\"},{\"Id\":90500,\"GroupId\":90500,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100061\"},{\"Id\":90600,\"GroupId\":90600,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100062\"},{\"Id\":100100,\"GroupId\":100100,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100063\"},{\"Id\":100200,\"GroupId\":100200,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100064\"},{\"Id\":100300,\"GroupId\":100300,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100065\"},{\"Id\":100400,\"GroupId\":100400,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100066\"},{\"Id\":100500,\"GroupId\":100500,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100067\"},{\"Id\":100600,\"GroupId\":100600,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100068\"},{\"Id\":10101,\"GroupId\":10101,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100068\"},{\"Id\":10102,\"GroupId\":10102,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100069\"},{\"Id\":10201,\"GroupId\":10201,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100070\"},{\"Id\":10202,\"GroupId\":10202,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100071\"},{\"Id\":10301,\"GroupId\":10301,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100072\"},{\"Id\":10302,\"GroupId\":10302,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100073\"},{\"Id\":10401,\"GroupId\":10401,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100074\"},{\"Id\":10402,\"GroupId\":10402,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100075\"},{\"Id\":10501,\"GroupId\":10501,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100076\"},{\"Id\":10502,\"GroupId\":10502,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100077\"},{\"Id\":10601,\"GroupId\":10601,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100078\"},{\"Id\":10602,\"GroupId\":10602,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100079\"},{\"Id\":20101,\"GroupId\":20101,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100080\"},{\"Id\":20102,\"GroupId\":20102,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100081\"},{\"Id\":20201,\"GroupId\":20201,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100082\"},{\"Id\":20202,\"GroupId\":20202,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100083\"},{\"Id\":20301,\"GroupId\":20301,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100084\"},{\"Id\":20302,\"GroupId\":20302,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100085\"},{\"Id\":20401,\"GroupId\":20401,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100086\"},{\"Id\":20402,\"GroupId\":20402,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100087\"},{\"Id\":20501,\"GroupId\":20501,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100088\"},{\"Id\":20502,\"GroupId\":20502,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100089\"},{\"Id\":20601,\"GroupId\":20601,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100090\"},{\"Id\":20602,\"GroupId\":20602,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100091\"},{\"Id\":30101,\"GroupId\":30101,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100092\"},{\"Id\":30102,\"GroupId\":30102,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100093\"},{\"Id\":30201,\"GroupId\":30201,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100094\"},{\"Id\":30202,\"GroupId\":30202,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100095\"},{\"Id\":30301,\"GroupId\":30301,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100096\"},{\"Id\":30302,\"GroupId\":30302,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100097\"},{\"Id\":30401,\"GroupId\":30401,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100098\"},{\"Id\":30402,\"GroupId\":30402,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100099\"},{\"Id\":30501,\"GroupId\":30501,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100100\"},{\"Id\":30502,\"GroupId\":30502,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100101\"},{\"Id\":30601,\"GroupId\":30601,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100102\"},{\"Id\":30602,\"GroupId\":30602,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100103\"},{\"Id\":40101,\"GroupId\":40101,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100104\"},{\"Id\":40102,\"GroupId\":40102,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100105\"},{\"Id\":40201,\"GroupId\":40201,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100106\"},{\"Id\":40202,\"GroupId\":40202,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100107\"},{\"Id\":40301,\"GroupId\":40301,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100108\"},{\"Id\":40302,\"GroupId\":40302,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100109\"},{\"Id\":40401,\"GroupId\":40401,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100110\"},{\"Id\":40402,\"GroupId\":40402,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100111\"},{\"Id\":40501,\"GroupId\":40501,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100112\"},{\"Id\":40502,\"GroupId\":40502,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100113\"},{\"Id\":40601,\"GroupId\":40601,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100114\"},{\"Id\":40602,\"GroupId\":40602,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100115\"},{\"Id\":50101,\"GroupId\":50101,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100116\"},{\"Id\":50102,\"GroupId\":50102,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100117\"},{\"Id\":50201,\"GroupId\":50201,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100118\"},{\"Id\":50202,\"GroupId\":50202,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100119\"},{\"Id\":50301,\"GroupId\":50301,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100120\"},{\"Id\":50302,\"GroupId\":50302,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100121\"},{\"Id\":50401,\"GroupId\":50401,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100122\"},{\"Id\":50402,\"GroupId\":50402,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100123\"},{\"Id\":50501,\"GroupId\":50501,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100124\"},{\"Id\":50502,\"GroupId\":50502,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100125\"},{\"Id\":50601,\"GroupId\":50601,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100126\"},{\"Id\":50602,\"GroupId\":50602,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100127\"},{\"Id\":60101,\"GroupId\":60101,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100128\"},{\"Id\":60102,\"GroupId\":60102,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100129\"},{\"Id\":60201,\"GroupId\":60201,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100130\"},{\"Id\":60202,\"GroupId\":60202,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100131\"},{\"Id\":60301,\"GroupId\":60301,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100132\"},{\"Id\":60302,\"GroupId\":60302,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100133\"},{\"Id\":60401,\"GroupId\":60401,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100134\"},{\"Id\":60402,\"GroupId\":60402,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100135\"},{\"Id\":60501,\"GroupId\":60501,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100136\"},{\"Id\":60502,\"GroupId\":60502,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100137\"},{\"Id\":60601,\"GroupId\":60601,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100138\"},{\"Id\":60602,\"GroupId\":60602,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100139\"},{\"Id\":70101,\"GroupId\":70101,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100140\"},{\"Id\":70102,\"GroupId\":70102,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100141\"},{\"Id\":70201,\"GroupId\":70201,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100142\"},{\"Id\":70202,\"GroupId\":70202,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100143\"},{\"Id\":70301,\"GroupId\":70301,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100144\"},{\"Id\":70302,\"GroupId\":70302,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100145\"},{\"Id\":70401,\"GroupId\":70401,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100146\"},{\"Id\":70402,\"GroupId\":70402,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100147\"},{\"Id\":70501,\"GroupId\":70501,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100148\"},{\"Id\":70502,\"GroupId\":70502,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100149\"},{\"Id\":70601,\"GroupId\":70601,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100150\"},{\"Id\":70602,\"GroupId\":70602,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100151\"},{\"Id\":80101,\"GroupId\":80101,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100152\"},{\"Id\":80102,\"GroupId\":80102,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100153\"},{\"Id\":80201,\"GroupId\":80201,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100154\"},{\"Id\":80202,\"GroupId\":80202,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100155\"},{\"Id\":80301,\"GroupId\":80301,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100156\"},{\"Id\":80302,\"GroupId\":80302,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100157\"},{\"Id\":80401,\"GroupId\":80401,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100158\"},{\"Id\":80402,\"GroupId\":80402,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100159\"},{\"Id\":80501,\"GroupId\":80501,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100160\"},{\"Id\":80502,\"GroupId\":80502,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100161\"},{\"Id\":80601,\"GroupId\":80601,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100162\"},{\"Id\":80602,\"GroupId\":80602,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100163\"},{\"Id\":90101,\"GroupId\":90101,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100164\"},{\"Id\":90102,\"GroupId\":90102,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100165\"},{\"Id\":90201,\"GroupId\":90201,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100166\"},{\"Id\":90202,\"GroupId\":90202,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100167\"},{\"Id\":90301,\"GroupId\":90301,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100168\"},{\"Id\":90302,\"GroupId\":90302,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100169\"},{\"Id\":90401,\"GroupId\":90401,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100170\"},{\"Id\":90402,\"GroupId\":90402,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100171\"},{\"Id\":90501,\"GroupId\":90501,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100172\"},{\"Id\":90502,\"GroupId\":90502,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100173\"},{\"Id\":90601,\"GroupId\":90601,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100174\"},{\"Id\":90602,\"GroupId\":90602,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100175\"},{\"Id\":100101,\"GroupId\":100101,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100176\"},{\"Id\":100102,\"GroupId\":100102,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100177\"},{\"Id\":100201,\"GroupId\":100201,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100178\"},{\"Id\":100202,\"GroupId\":100202,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100179\"},{\"Id\":100301,\"GroupId\":100301,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100180\"},{\"Id\":100302,\"GroupId\":100302,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100181\"},{\"Id\":100401,\"GroupId\":100401,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100182\"},{\"Id\":100402,\"GroupId\":100402,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100183\"},{\"Id\":100501,\"GroupId\":100501,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100184\"},{\"Id\":100502,\"GroupId\":100502,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100185\"},{\"Id\":100601,\"GroupId\":100601,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100186\"},{\"Id\":100602,\"GroupId\":100602,\"SpeakerName\":\"魔盒爷爷\",\"Sentence\":\"Bless you!\",\"SentenceZhCN\":\"Bless you!\",\"Sound\":\"40100187\"}]"
|
|
@@ -8,7 +8,7 @@ namespace MEEC.ExportedConfigs
|
|
|
8
8
|
{
|
|
9
9
|
static 过场引导()
|
|
10
10
|
{
|
|
11
|
-
var loadUrl="Assets/Bundles/
|
|
11
|
+
var loadUrl="Assets/Bundles/GameConfigs/Auto/过场引导-过场引导.asset";
|
|
12
12
|
var configJson = Addressables.LoadAssetAsync<ExcelConfigJson>(loadUrl).WaitForCompletion();
|
|
13
13
|
if (configJson != null)
|
|
14
14
|
{
|