1.2.2.2 ,修改了色块的位置

This commit is contained in:
waynebian01
2026-06-20 23:26:59 +08:00
parent 386f386d77
commit 734383a521
17 changed files with 1899 additions and 76 deletions

View File

@@ -104,9 +104,9 @@ public sealed class ConfigService
public JsonObject BuildStateConfig(int? classId, int? specId)
{
var merged = new JsonObject();
foreach (var key in new[] { "锚点", "职业", "专精" })
foreach (var (key, node) in Root)
{
if (Root.TryGetPropertyValue(key, out var node) && node is JsonObject obj && obj.ContainsKey("step"))
if (node is JsonObject obj && obj.ContainsKey("step"))
{
merged[key] = obj.DeepClone();
}

View File

@@ -9,9 +9,9 @@
<AssemblyName>Shigure</AssemblyName>
<RootNamespace>Shigure</RootNamespace>
<Company>Arasaka Corporation</Company>
<Version>1.2.2.1</Version>
<AssemblyVersion>1.2.2.1</AssemblyVersion>
<FileVersion>1.2.2.1</FileVersion>
<Version>1.2.2.2</Version>
<AssemblyVersion>1.2.2.2</AssemblyVersion>
<FileVersion>1.2.2.2</FileVersion>
<ApplicationIcon>Assets\arasaka-icon.ico</ApplicationIcon>
</PropertyGroup>

View File

@@ -515,7 +515,9 @@ public sealed class StatusForm : Form
foreach (var (key, value) in snapshot.State.Values)
{
if (key is "spells" or "auras" or "group" || key.StartsWith('$'))
if (key is "spells" or "auras" or "group"
|| string.Equals(key, RecognizedAuraFields.StateKey, StringComparison.Ordinal)
|| key.StartsWith('$'))
{
continue;
}

View File

@@ -11,74 +11,24 @@
"step": 3,
"type": "int"
},
"state": {
"有效性": {
"step": 4,
"type": "bool"
},
"战斗时间": {
"step": 5,
"type": "int"
},
"移动": {
"step": 6,
"type": "bool"
},
"施法": {
"step": 7,
"type": "int"
},
"引导": {
"step": 8,
"type": "int"
},
"蓄力": {
"step": 9,
"type": "int"
},
"蓄力层数": {
"step": 10,
"type": "int"
},
"生命值": {
"step": 11,
"type": "int"
},
"能量值": {
"step": 12,
"type": "int"
},
"一键辅助": {
"step": 13,
"type": "int"
},
"法术失败": {
"step": 14,
"type": "int"
},
"目标类型": {
"step": 15,
"type": "int"
},
"队伍类型": {
"step": 16,
"type": "int"
},
"队伍人数": {
"step": 17,
"type": "int"
},
"首领战": {
"step": 18,
"type": "int"
},
"难度": {
"step": 19,
"type": "int"
},
"英雄天赋": {
"step": 20,
"type": "int"
}
"队伍类型": {
"step": 4,
"type": "int"
},
"英雄天赋": {
"step": 5,
"type": "int"
},
"有效性": {
"step": 6,
"type": "bool"
},
"一键辅助": {
"step": 7,
"type": "int"
},
"法术失败": {
"step": 8,
"type": "int"
}
}

View File

@@ -21,6 +21,54 @@
"31": "黑檀之力"
},
"1": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"施法技能": {
"step": 21,
"type": "int"
@@ -134,6 +182,54 @@
}
},
"3": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"施法技能": {
"step": 21,
"type": "int"

View File

@@ -29,6 +29,54 @@
"26": "十字军打击"
},
"1": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"法力值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"神圣能量": {
"step": 21,
"type": "int"
@@ -179,6 +227,54 @@
}
},
"2": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"法力值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"神圣能量": {
"step": 21,
"type": "int"
@@ -337,6 +433,54 @@
}
},
"3": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"法力值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"神圣能量": {
"step": 21,
"type": "int"

View File

@@ -53,6 +53,54 @@
"53": "重殴"
},
"1": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标生命值": {
"step": 21,
"type": "int"
@@ -125,6 +173,54 @@
}
},
"2": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标生命值": {
"step": 21,
"type": "int"
@@ -193,6 +289,54 @@
}
},
"3": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标生命值": {
"step": 21,
"type": "int"
@@ -323,6 +467,54 @@
}
},
"4": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"姿态": {
"step": 21,
"type": "int"

View File

@@ -71,6 +71,54 @@
"56": "献祭光环"
},
"1": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"恶魔之怒": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"敌人人数": {
"step": 21,
"type": "int"
@@ -180,6 +228,54 @@
}
},
"2": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"恶魔之怒": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"投掷利刃": {
"step": "bar",
"bar": 2,
@@ -251,7 +347,6 @@
"type": "int"
}
},
"spells": {
"黑暗": {
"step": 40,
@@ -352,6 +447,54 @@
}
},
"3": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"恶魔之怒": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"敌人人数": {
"step": 21,
"type": "int"

View File

@@ -44,6 +44,54 @@
"39": "斩杀"
},
"1": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标生命值": {
"step": 21,
"type": "int"
@@ -170,6 +218,54 @@
}
},
"2": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标施法": {
"step": 21,
"type": "int"
@@ -255,6 +351,54 @@
}
},
"3": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标生命值": {
"step": 21,
"type": "int"

View File

@@ -72,6 +72,54 @@
"61": "召唤萨亚德"
},
"1": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"灵魂碎片": {
"step": 21,
"type": "int"
@@ -177,6 +225,54 @@
}
},
"2": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"小鬼数量": {
"step": "bar",
"bar": 1,
@@ -324,6 +420,54 @@
}
},
"3": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标施法": {
"step": 21,
"type": "int"

View File

@@ -30,6 +30,54 @@
"24": "升龙霸"
},
"1": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"酒池": {
"step": 21,
"type": "int"
@@ -185,6 +233,54 @@
}
},
"2": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"敌人人数": {
"step": 21,
"type": "int"
@@ -345,6 +441,54 @@
}
},
"3": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标生命值": {
"step": 21,
"type": "int"

View File

@@ -48,6 +48,54 @@
"42": "凋零缠绕"
},
"1": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"符文能量": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"符文": {
"step": 21,
"type": "int"
@@ -136,6 +184,54 @@
}
},
"2": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"符文能量": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"符文": {
"step": 21,
"type": "int"
@@ -283,6 +379,54 @@
}
},
"3": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"符文能量": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"符文": {
"step": 21,
"type": "int"

View File

@@ -63,6 +63,54 @@
"55": "造餐术"
},
"1": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标施法": {
"step": 21,
"type": "int"
@@ -97,6 +145,54 @@
}
},
"2": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标施法": {
"step": 21,
"type": "int"
@@ -131,6 +227,54 @@
}
},
"3": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"施法技能": {
"step": 22,
"type": "int"

View File

@@ -29,6 +29,54 @@
"28": "光晕"
},
"1": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标生命值": {
"step": 21,
"type": "int"
@@ -217,6 +265,54 @@
}
},
"2": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"施法技能": {
"step": 22,
"type": "int"
@@ -345,6 +441,54 @@
}
},
"3": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"爆发开关": {
"step": 21,
"type": "int"

View File

@@ -46,6 +46,54 @@
"46": "猛禽一击"
},
"1": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"敌人人数": {
"step": 21,
"type": "int"
@@ -175,6 +223,54 @@
}
},
"2": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标施法": {
"step": 21,
"type": "int"
@@ -268,6 +364,54 @@
}
},
"3": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标施法": {
"step": 21,
"type": "int"

View File

@@ -64,6 +64,54 @@
"60": "致命一击"
},
"1": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标施法": {
"step": 21,
"type": "int"
@@ -181,6 +229,54 @@
}
},
"2": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标施法": {
"step": 21,
"type": "int"
@@ -310,6 +406,54 @@
}
},
"3": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标施法": {
"step": 21,
"type": "int"

View File

@@ -42,6 +42,54 @@
"45": "治疗之雨"
},
"1": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标生命值": {
"step": 21,
"type": "int"
@@ -174,6 +222,54 @@
}
},
"2": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"目标生命值": {
"step": 21,
"type": "int"
@@ -325,6 +421,54 @@
}
},
"3": {
"战斗时间": {
"step": 9,
"type": "int"
},
"移动": {
"step": 10,
"type": "bool"
},
"施法": {
"step": 11,
"type": "int"
},
"引导": {
"step": 12,
"type": "int"
},
"蓄力": {
"step": 13,
"type": "int"
},
"蓄力层数": {
"step": 14,
"type": "int"
},
"生命值": {
"step": 15,
"type": "int"
},
"能量值": {
"step": 16,
"type": "int"
},
"目标类型": {
"step": 17,
"type": "int"
},
"队伍人数": {
"step": 18,
"type": "int"
},
"首领战": {
"step": 19,
"type": "int"
},
"难度": {
"step": 20,
"type": "int"
},
"延迟": {
"step": 21,
"type": "int"