diff --git a/AscNet.GameServer/Handlers/CurrentClientStudyTables.cs b/AscNet.GameServer/Handlers/CurrentClientStudyTables.cs index 40a70e31..8a446ffa 100644 --- a/AscNet.GameServer/Handlers/CurrentClientStudyTables.cs +++ b/AscNet.GameServer/Handlers/CurrentClientStudyTables.cs @@ -2,6 +2,7 @@ using AscNet.Table.V2.share.fuben; using AscNet.Table.V2.share.robot; using Newtonsoft.Json.Linq; +using System.Reflection; namespace AscNet.GameServer.Handlers; @@ -16,6 +17,8 @@ internal static class CurrentClientStudyTables internal const int StudyStageCount = 467; internal const int StageLevelControlCount = 141; internal const int RobotCount = 170; + internal const int EnhanceSkillCount = 82; + internal const int EnhanceSkillGroupCount = 92; private const int ProgressionEdgeCount = 255; private const int ProgressionChainCount = 212; @@ -62,6 +65,9 @@ internal static bool TryGetRobot(int robotId, out RobotTable robot) return Data.Value.Robots.TryGetValue(robotId, out robot!); } + /// Frozen 4.6 enhance-skill inputs of the imported Study robots, matching their frozen Robot rows. + internal static EnhanceSkillSource EnhanceSkills => Data.Value.EnhanceSkills; + internal static bool TryGetPracticeChapterId(long stageId, out int chapterId) { if (!TryGetStageKey(stageId, out int key)) @@ -112,7 +118,7 @@ private static Catalog Load() JObject sourcePaths = RequireObject(root, "SourcePaths"); JObject sourceHashes = RequireObject(root, "SourceHashes"); - foreach (string source in new[] { "Stage", "StageLevelControl", "Robot", "PracticeChapter", "PracticeGroup", "PracticeActivity", "TeachingActivity", "TeachingRobot" }) + foreach (string source in new[] { "Stage", "StageLevelControl", "Robot", "PracticeChapter", "PracticeGroup", "PracticeActivity", "TeachingActivity", "TeachingRobot", "EnhanceSkill", "EnhanceSkillGroup" }) { string? path = sourcePaths.Value(source); if (string.IsNullOrWhiteSpace(path) || !path.StartsWith("en/bytes/", StringComparison.Ordinal) || !path.EndsWith(".json", StringComparison.Ordinal)) @@ -131,6 +137,8 @@ private static Catalog Load() ValidateDeclaredCount(expectedCounts, "StudyStages", StudyStageCount); ValidateDeclaredCount(expectedCounts, "StageLevelControls", StageLevelControlCount); ValidateDeclaredCount(expectedCounts, "Robots", RobotCount); + ValidateDeclaredCount(expectedCounts, "EnhanceSkills", EnhanceSkillCount); + ValidateDeclaredCount(expectedCounts, "EnhanceSkillGroups", EnhanceSkillGroupCount); JArray practiceChapters = RequireArray(root, "PracticeChapters", PracticeChapterCount); JArray practiceGroups = RequireArray(root, "PracticeGroups", PracticeGroupCount); @@ -140,6 +148,8 @@ private static Catalog Load() JArray stageRows = RequireArray(root, "Stages", StudyStageCount); JArray stageLevelControlRows = RequireArray(root, "StageLevelControls", StageLevelControlCount); JArray robotRows = RequireArray(root, "Robots", RobotCount); + JArray enhanceSkillRows = RequireArray(root, "EnhanceSkills", EnhanceSkillCount); + JArray enhanceSkillGroupRows = RequireArray(root, "EnhanceSkillGroups", EnhanceSkillGroupCount); HashSet studyStageIds = new(); foreach (JObject row in practiceGroups.OfType()) @@ -242,6 +252,32 @@ private static Catalog Load() if (robots.Values.Any(robot => robot.CharacterId <= 0)) throw new InvalidDataException($"{ResourcePath}: every imported Robot must define a CharacterId."); + Dictionary enhanceSkillGroupIds = new(); + foreach (JObject row in enhanceSkillRows.OfType()) + { + int characterId = row.Value("CharacterId"); + if (characterId <= 0 || !enhanceSkillGroupIds.TryAdd(characterId, ReadPositiveIds(row["SkillGroupId"]))) + throw new InvalidDataException($"{ResourcePath}: invalid or duplicate EnhanceSkill CharacterId {characterId}."); + } + if (!enhanceSkillGroupIds.Keys.ToHashSet().SetEquals(robots.Values.Select(robot => robot.CharacterId))) + throw new InvalidDataException($"{ResourcePath}: EnhanceSkills must cover exactly the imported Robot characters."); + + Dictionary enhanceSkillGroupSkills = new(); + foreach (JObject row in enhanceSkillGroupRows.OfType()) + { + int groupId = row.Value("Id"); + if (groupId <= 0 || !enhanceSkillGroupSkills.TryAdd(groupId, ReadPositiveIds(row["SkillId"]))) + throw new InvalidDataException($"{ResourcePath}: invalid or duplicate EnhanceSkillGroup Id {groupId}."); + } + foreach ((int characterId, int[] groupIds) in enhanceSkillGroupIds) + { + foreach (int groupId in groupIds) + { + if (!enhanceSkillGroupSkills.ContainsKey(groupId)) + throw new InvalidDataException($"{ResourcePath}: EnhanceSkill {characterId} references missing EnhanceSkillGroup {groupId}."); + } + } + Dictionary> controls = new(); HashSet controlIds = new(); foreach (JObject token in stageLevelControlRows.OfType()) @@ -262,6 +298,9 @@ private static Catalog Load() configuredRobotIds, controls.ToDictionary(pair => pair.Key, pair => pair.Value.ToArray()), robots, + new EnhanceSkillSource( + characterId => enhanceSkillGroupIds.GetValueOrDefault(characterId, []), + groupId => enhanceSkillGroupSkills.GetValueOrDefault(groupId, [])), practiceChapterIds, teachingActivityIds.ToDictionary(pair => pair.Key, pair => pair.Value.Distinct().Order().ToArray())); } @@ -322,6 +361,7 @@ private static Dictionary ToUniqueDictionary(JArray rows, Func() ?? throw new InvalidDataException($"{ResourcePath}: invalid {section} row."); + MaterializeOmittedArrays(row); int key = keySelector(row); if (key <= 0 || !result.TryAdd(key, row)) throw new InvalidDataException($"{ResourcePath}: invalid or duplicate {section} key {key}."); @@ -329,6 +369,22 @@ private static Dictionary ToUniqueDictionary(JArray rows, Func(T row) + { + foreach (PropertyInfo property in typeof(T).GetProperties()) + { + if (property.PropertyType.IsGenericType + && property.PropertyType.GetGenericTypeDefinition() == typeof(List<>) + && property.GetValue(row) is null) + { + property.SetValue(row, Activator.CreateInstance(property.PropertyType)); + } + } + } + private static void NormalizeBooleanScalars(JObject row) { foreach (JProperty property in row.Properties().Where(property => property.Value.Type == JTokenType.Boolean).ToArray()) @@ -382,6 +438,7 @@ private sealed record Catalog( IReadOnlyDictionary ConfiguredRobotIds, IReadOnlyDictionary StageLevelControls, IReadOnlyDictionary Robots, + EnhanceSkillSource EnhanceSkills, IReadOnlyDictionary PracticeChapterIds, IReadOnlyDictionary TeachingActivityIds); } diff --git a/AscNet.GameServer/Handlers/FightModule.cs b/AscNet.GameServer/Handlers/FightModule.cs index 4b37c655..9bc246fb 100644 --- a/AscNet.GameServer/Handlers/FightModule.cs +++ b/AscNet.GameServer/Handlers/FightModule.cs @@ -8,6 +8,7 @@ using AscNet.Table.V2.share.partner; using AscNet.Table.V2.share.team; using AscNet.Table.V2.share.character; +using AscNet.Table.V2.share.character.enhanceskill; using AscNet.Table.V2.share.character.skill; using AscNet.Table.V2.share.fuben; using AscNet.Table.V2.share.fashion; @@ -299,6 +300,21 @@ public class LeaveFightResponse #pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable. #endregion + /// One client version's enhance-skill inputs: the authored groups of a character and the + /// authored skills of a group. Premade deployments resolve both from the robot row's version. + internal sealed class EnhanceSkillSource(Func> groupIds, Func> skillIds) + { + // Live tables shipped with the server, used by every deployment from the live Robot table. + internal static EnhanceSkillSource Live { get; } = new( + characterId => TableReaderV2.Parse() + .Find(row => row.CharacterId == characterId)?.SkillGroupId ?? [], + groupId => TableReaderV2.Parse() + .Find(row => row.Id == groupId)?.SkillId ?? []); + + internal IReadOnlyList GroupIds(int characterId) => groupIds(characterId); + internal IReadOnlyList SkillIds(int groupId) => skillIds(groupId); + } + internal class FightModule { private const int TeamManagerSetTeamParaError = 20004003; @@ -768,7 +784,11 @@ public static void PreFightRequestHandler(Session session, Packet.Request packet while (playerNpcData.ContainsKey(npcKey)) npcKey++; - (CharacterData robotCharacterData, List equips) = BuildRobotDeployment(robot); + // Legacy Study stages deploy version-frozen 4.6 premise rows, so their enhance + // inputs come from the same frozen version instead of the live tables. + (CharacterData robotCharacterData, List equips) = isCurrentStudyStage + ? BuildRobotDeployment(robot, CurrentClientStudyTables.EnhanceSkills) + : BuildRobotDeployment(robot); deployedCharacters.Add(robotCharacterData); playerNpcData.Add(npcKey, new { @@ -838,6 +858,13 @@ public static void PreFightRequestHandler(Session session, Packet.Request packet } internal static (CharacterData Character, List Equips) BuildRobotDeployment(RobotTable robot) + => BuildRobotDeployment(robot, EnhanceSkillSource.Live); + + /// + /// Enhance-skill inputs of the robot row's own client version. Premade rows served from a + /// version-frozen catalog must be deployed with that version's inputs, never the live ones. + /// + internal static (CharacterData Character, List Equips) BuildRobotDeployment(RobotTable robot, EnhanceSkillSource enhanceSkills) { CharacterSkillTable? characterSkill = TableReaderV2.Parse().Find(x => x.CharacterId == robot.CharacterId); IEnumerable skills = characterSkill?.SkillGroupId.SelectMany(x => TableReaderV2.Parse().Find(y => y.Id == x)?.SkillId ?? new List()) ?? new List(); @@ -889,6 +916,7 @@ internal static (CharacterData Character, List Equips) BuildRobotDepl Level = Math.Min(Convert.ToInt32(robot.SkillLevel), TableReaderV2.Parse() .Where(row => row.SkillId == id).Select(row => row.Level).DefaultIfEmpty(1).Max()) }).ToList(), + EnhanceSkillList = BuildRobotEnhanceSkills(robot, enhanceSkills), FashionId = fashionId, TrustLv = 1, Ability = robot.ShowAbility ?? 0, @@ -898,6 +926,31 @@ internal static (CharacterData Character, List Equips) BuildRobotDepl return (data, equips); } + /// One active skill per owned enhance group; a removed skill or an absent level yields none. + internal static List BuildRobotEnhanceSkills(RobotTable robot, EnhanceSkillSource enhanceSkills) + { + List enhanceSkillList = []; + if (robot.EnhanceSkillLevel <= 0) + return enhanceSkillList; + + HashSet removedSkillIds = robot.RemoveSkillId?.ToHashSet() ?? []; + foreach (int groupId in enhanceSkills.GroupIds(robot.CharacterId).Where(id => id > 0).Distinct()) + { + // The client's XEnhanceSkillGroup activates the group's first configured skill. + int skillId = enhanceSkills.SkillIds(groupId).FirstOrDefault(id => id > 0); + if (skillId <= 0 || removedSkillIds.Contains(skillId)) + continue; + + int maxLevel = Character.EnhanceSkillMaxLevel(skillId); + enhanceSkillList.Add(new CharacterSkill + { + Id = (uint)skillId, + Level = Math.Clamp(robot.EnhanceSkillLevel, 1, Math.Max(1, maxLevel)) + }); + } + return enhanceSkillList; + } + private static List BuildRobotResonance(string? templates, string? types, int characterId) { List result = []; diff --git a/AscNet.Test/Program.Theatre.Combat.cs b/AscNet.Test/Program.Theatre.Combat.cs index cddcf375..b7fa8380 100644 --- a/AscNet.Test/Program.Theatre.Combat.cs +++ b/AscNet.Test/Program.Theatre.Combat.cs @@ -274,7 +274,11 @@ private static void ValidateTheatreCombatCompatibility() test.Data.CurRoleLv = level.Lv; var robot = TableReaderV2.Parse().Single(row => row.Id == TableReaderV2.Parse().Single(row => row.RoleId == test.Data.RecruitRole[0] && row.Lv == level.Lv).RobotId); - var build = RequiredAscNetGameServerType("AscNet.GameServer.Handlers.FightModule").GetMethod("BuildRobotDeployment", BindingFlags.Static | BindingFlags.NonPublic)!; + var build = RequiredMethod( + RequiredAscNetGameServerType("AscNet.GameServer.Handlers.FightModule"), + "BuildRobotDeployment", + BindingFlags.Static | BindingFlags.NonPublic, + [typeof(RobotTable)]); var deployment = ((CharacterData Character, List Equips))build.Invoke(null, [robot])!; test.Session.character.Characters.RemoveAll(row => row.Id == deployment.Character.Id); test.Session.character.Characters.Add(deployment.Character); diff --git a/AscNet.Test/Program.cs b/AscNet.Test/Program.cs index 3fa5d977..75eadb65 100644 --- a/AscNet.Test/Program.cs +++ b/AscNet.Test/Program.cs @@ -24100,6 +24100,8 @@ static JArray CompatibilityRows(JObject root, string name) => AssertEqual(467, CompatibilityRows(compatibility, "Stages").Count, "Study compatibility Stage row count"); AssertEqual(141, CompatibilityRows(compatibility, "StageLevelControls").Count, "Study compatibility StageLevelControl row count"); AssertEqual(170, CompatibilityRows(compatibility, "Robots").Count, "Study compatibility Robot row count"); + AssertEqual(82, CompatibilityRows(compatibility, "EnhanceSkills").Count, "Study compatibility EnhanceSkill row count"); + AssertEqual(92, CompatibilityRows(compatibility, "EnhanceSkillGroups").Count, "Study compatibility EnhanceSkillGroup row count"); JArray studyRobotRows = CompatibilityRows(compatibility, "Robots"); JObject StudyRobotRow(int robotId) => @@ -24192,6 +24194,41 @@ JObject StudyRobotRow(int robotId) => // Weapon-only sparse shape: authored weapon, no core wafer arrays at all. AssertStudyRobotEquipPayload(weaponOnlyFight, 1_142, StudyRobotRow(1_142), "Study weapon-only robot stage 30100883"); + + PreFightResponse baseWeaveFight = AssertStudyStageRobotDeployment( + stageId: 30_100_971, + cardIds: [], + robotIds: [], + expectedCharacterId: 1_021_005, + expectedRobotId: 9_161, + luciaLotusCharacterId, + "Study base-form Crimson Weave stage 30100971"); + AssertRobotDeployedEnhanceSkills(baseWeaveFight, 9_161, [], + "Study base-form Crimson Weave stage 30100971"); + PreFightResponse leapWeaveFight = AssertStudyStageRobotDeployment( + stageId: 30_100_099, + cardIds: [], + robotIds: [], + expectedCharacterId: 1_021_005, + expectedRobotId: 9_239, + luciaLotusCharacterId, + "Study Crimson Weave leap trial stage 30100099"); + AssertRobotDeployedEnhanceSkills(leapWeaveFight, 9_239, + [(102_531, 18), (102_529, 18), (102_530, 18)], + "Study Crimson Weave leap trial stage 30100099"); + + PreFightResponse basePyroathFight = AssertStudyStageRobotDeployment( + stageId: 30_100_081, + cardIds: [], + robotIds: [], + expectedCharacterId: 1_021_006, + expectedRobotId: 2_273, + luciaLotusCharacterId, + "Study level-1 Pyroath effect practice stage 30100081"); + // 4.6 authors no enhance groups for Pyroath, so the version-frozen robot grants none and + // its authored removal list is already satisfied. + AssertRobotDeployedEnhanceSkills(basePyroathFight, 2_273, [], + "Study level-1 Pyroath effect practice stage 30100081"); } private static PreFightResponse AssertStudyStageRobotDeployment( @@ -24369,6 +24406,37 @@ private static void AssertStudyRobotNpcSlot( AssertEqual(expectedRobotId, RequiredDynamicInteger(npcData, "RobotId", name), $"{name}.RobotId"); } + private static void AssertRobotDeployedEnhanceSkills( + PreFightResponse preFightResponse, + int robotId, + IReadOnlyList<(int SkillId, int Level)> expected, + string name) + { + if (preFightResponse.FightData is null) + throw new InvalidDataException($"{name}: expected FightData."); + System.Collections.IDictionary npc = preFightResponse.FightData.RoleData + .SelectMany(role => role.NpcData.Values) + .Select(value => RequiredDynamicMap(value, $"{name} NpcData")) + .Single(candidate => RequiredDynamicInteger(candidate, "RobotId", $"{name} NpcData") == robotId); + System.Collections.IDictionary character = RequiredDynamicMap( + RequiredDynamicValue(npc, "Character", name), + $"{name}.Character"); + List<(int SkillId, int Level)> actual = RequiredDynamicObjectList(character, "EnhanceSkillList", $"{name}.Character.EnhanceSkillList") + .Select(value => RequiredDynamicMap(value, $"{name} enhance skill")) + .Select(skill => ( + SkillId: RequiredDynamicInteger(skill, "Id", $"{name} enhance skill"), + Level: RequiredDynamicInteger(skill, "Level", $"{name} enhance skill"))) + .OrderBy(skill => skill.SkillId) + .ToList(); + List<(int SkillId, int Level)> orderedExpected = expected.OrderBy(skill => skill.SkillId).ToList(); + AssertEqual(orderedExpected.Count, actual.Count, $"{name} EnhanceSkillList count"); + for (int i = 0; i < orderedExpected.Count; i++) + { + AssertEqual(orderedExpected[i].SkillId, actual[i].SkillId, $"{name} EnhanceSkillList[{i}].Id"); + AssertEqual(orderedExpected[i].Level, actual[i].Level, $"{name} EnhanceSkillList[{i}].Level"); + } + } + private static void AssertPreFightDoesNotDeployCharacter( PreFightResponse preFightResponse, long playerId, diff --git a/Resources/Configs/study_compatibility_4.6.0.json b/Resources/Configs/study_compatibility_4.6.0.json index d1456e9d..b2513d6e 100644 --- a/Resources/Configs/study_compatibility_4.6.0.json +++ b/Resources/Configs/study_compatibility_4.6.0.json @@ -1 +1 @@ -{"ClientVersion":"4.6.0","GeneratedDate":"2026-07-17","SourceRevision":"bb3c34765c9d9c1c542079d536a17e82b27f3245","SourcePaths":{"Stage":"en/bytes/share/fuben/Stage.json","StageLevelControl":"en/bytes/share/fuben/StageLevelControl.json","Robot":"en/bytes/share/robot/Robot.json","PracticeChapter":"en/bytes/share/fuben/practice/PracticeChapter.json","PracticeGroup":"en/bytes/share/fuben/practice/PracticeGroup.json","PracticeActivity":"en/bytes/share/fuben/practice/PracticeActivity.json","TeachingActivity":"en/bytes/share/fuben/teaching/TeachingActivity.json","TeachingRobot":"en/bytes/share/fuben/teaching/TeachingRobot.json"},"SourceHashes":{"Stage":"2d71b6040d3fee4803c7ae3c67990a099d40eeba","StageLevelControl":"8beb6e894385ede2ef0458ed3e037add437a4ef1","Robot":"00586b82e0d6ddb9ba7af04d6110c40aed10faea","PracticeChapter":"db863fca549831069e3ae50ac82738aba9df94b3","PracticeGroup":"ec4dc2c9a6d1a1456e6c7e1dd87a557ba789e85c","PracticeActivity":"429b120ab987d8533f374efe4db8dbbc7bb51e2f","TeachingActivity":"59e86c0502a983445c740db4e40b281206a51f17","TeachingRobot":"5d67e9e8c46cea782280aa000e48a6c01f75afad"},"ExpectedCounts":{"PracticeChapters":8,"PracticeGroups":88,"PracticeActivities":250,"TeachingActivities":49,"TeachingRobots":142,"StudyStages":467,"StageLevelControls":141,"Robots":170},"PracticeGroups":[{"GroupId":1021001,"StageIds":[30100801],"LinkStageIds":[0]},{"GroupId":1031001,"StageIds":[30100802],"LinkStageIds":[0]},{"GroupId":1051001,"StageIds":[30100803],"LinkStageIds":[0]},{"GroupId":1011002,"StageIds":[30100804,30100922],"LinkStageIds":[0,0]},{"GroupId":1071002,"StageIds":[30100805],"LinkStageIds":[0]},{"GroupId":1041002,"StageIds":[30100806],"LinkStageIds":[0]},{"GroupId":1081002,"StageIds":[30100807],"LinkStageIds":[0]},{"GroupId":1061002,"StageIds":[30100808],"LinkStageIds":[0]},{"GroupId":1021002,"StageIds":[30100809,30100921],"LinkStageIds":[0,0]},{"GroupId":1031002,"StageIds":[30100810],"LinkStageIds":[0]},{"GroupId":1061003,"StageIds":[30100811],"LinkStageIds":[0]},{"GroupId":1031003,"StageIds":[30100812,30100923],"LinkStageIds":[0,0]},{"GroupId":1011003,"StageIds":[30100813],"LinkStageIds":[0]},{"GroupId":1071003,"StageIds":[30100814],"LinkStageIds":[0]},{"GroupId":1051003,"StageIds":[30100815,30100987],"LinkStageIds":[0,0]},{"GroupId":1021003,"StageIds":[30100816,30100994],"LinkStageIds":[0,0]},{"GroupId":1091002,"StageIds":[30100817],"LinkStageIds":[0]},{"GroupId":1081003,"StageIds":[30100818,30100932],"LinkStageIds":[0,0]},{"GroupId":1041003,"StageIds":[30100819,30100013],"LinkStageIds":[0,0]},{"GroupId":1111002,"StageIds":[30100820],"LinkStageIds":[0]},{"GroupId":1121002,"StageIds":[30100821],"LinkStageIds":[0]},{"GroupId":1021004,"StageIds":[30100822],"LinkStageIds":[0]},{"GroupId":1511003,"StageIds":[30100823],"LinkStageIds":[0]},{"GroupId":1131002,"StageIds":[30100824,30100968],"LinkStageIds":[0,0]},{"GroupId":1141003,"StageIds":[30100825,30100939],"LinkStageIds":[0,0]},{"GroupId":1161002,"StageIds":[30100826],"LinkStageIds":[0]},{"GroupId":1521003,"StageIds":[30100827],"LinkStageIds":[0]},{"GroupId":1171003,"StageIds":[30100883,30100832,30100884,30100885],"LinkStageIds":[0,0,0,0]},{"GroupId":1531003,"StageIds":[30100850],"LinkStageIds":[0]},{"GroupId":1211002,"StageIds":[30100851],"LinkStageIds":[0]},{"GroupId":1121003,"StageIds":[30100892,30100856,30100893,30100894],"LinkStageIds":[0,0,0,0]},{"GroupId":1221002,"StageIds":[30100857],"LinkStageIds":[0]},{"GroupId":1131003,"StageIds":[30100895,30100862,30100896,30100897,30100026],"LinkStageIds":[0,0,0,0,0]},{"GroupId":1541003,"StageIds":[30100867,30100898,30100899],"LinkStageIds":[0,0,0]},{"GroupId":1031004,"StageIds":[30100900,30100872,30100901,30100902,30100027],"LinkStageIds":[0,0,0,0,0]},{"GroupId":1531004,"StageIds":[30100877,30100903,30100904],"LinkStageIds":[0,0,0]},{"GroupId":1551003,"StageIds":[30100881,30100905,30100906],"LinkStageIds":[0,0,0]},{"GroupId":1201003,"StageIds":[30100886,30100833,30100889],"LinkStageIds":[0,0,0]},{"GroupId":1181003,"StageIds":[30100887,30100834,30100890],"LinkStageIds":[0,0,0]},{"GroupId":1191003,"StageIds":[30100888,30100835,30100891],"LinkStageIds":[0,0,0]},{"GroupId":1051004,"StageIds":[30100911,30100912,30100913,30100914],"LinkStageIds":[0,0,0,0]},{"GroupId":1561003,"StageIds":[30100918,30100919,30100920],"LinkStageIds":[0,0,0]},{"GroupId":1071004,"StageIds":[30100928,30100929,30100930,30100931,30100068],"LinkStageIds":[0,0,0,0]},{"GroupId":1571003,"StageIds":[30100936,30100937,30100938],"LinkStageIds":[0,0,0]},{"GroupId":1041004,"StageIds":[30100940,30100941,30100942,30100943,30100088],"LinkStageIds":[0,0,0,0]},{"GroupId":1231002,"StageIds":[30100948,30100949,30100950],"LinkStageIds":[0,0,0]},{"GroupId":1011004,"StageIds":[30100954,30100955,30100956,30100957],"LinkStageIds":[0,0,0,0]},{"GroupId":1091003,"StageIds":[30100962,30100963,30100964],"LinkStageIds":[0,0,0]},{"GroupId":1021005,"StageIds":[30100969,30100970,30100971,30100099],"LinkStageIds":[0,0,0]},{"GroupId":1241002,"StageIds":[30100975,30100976,30100977],"LinkStageIds":[0,0,0]},{"GroupId":1221003,"StageIds":[30100981,30100982,30100983],"LinkStageIds":[0,0,0]},{"GroupId":1251002,"StageIds":[30100988,30100989,30100990],"LinkStageIds":[0,0,0]},{"GroupId":1261003,"StageIds":[30100995,30100996,30100997,30100135],"LinkStageIds":[0,0,0]},{"GroupId":1271003,"StageIds":[30100001,30100002,30100003],"LinkStageIds":[0,0,0]},{"GroupId":1281002,"StageIds":[30100007,30100008,30100009],"LinkStageIds":[30100010,30100011,30100012]},{"GroupId":1081004,"StageIds":[30100014,30100015,30100016,30100166],"LinkStageIds":[30100017,30100018,30100019,0]},{"GroupId":1521004,"StageIds":[30100020,30100021,30100022],"LinkStageIds":[30100023,30100024,30100025]},{"GroupId":1291002,"StageIds":[30100031,30100032,30100033],"LinkStageIds":[30100034,30100035,30100036]},{"GroupId":1171004,"StageIds":[30100040,30100041,30100042,30100185],"LinkStageIds":[30100043,30100044,30100045,0]},{"GroupId":1301002,"StageIds":[30100049,30100050,30100051],"LinkStageIds":[30100052,30100053,30100054]},{"GroupId":5001001,"StageIds":[30100055],"LinkStageIds":[0,0,0]},{"GroupId":5001002,"StageIds":[30100056],"LinkStageIds":[0,0,0]},{"GroupId":5001003,"StageIds":[30100058],"LinkStageIds":[0,0,0]},{"GroupId":5001004,"StageIds":[30100057],"LinkStageIds":[0,0,0]},{"GroupId":5001005,"StageIds":[30100075],"LinkStageIds":[0,0,0]},{"GroupId":5001006,"StageIds":[30100098],"LinkStageIds":[0,0,0]},{"GroupId":5001007,"StageIds":[30101098],"LinkStageIds":[0,0,0]},{"GroupId":1241003,"StageIds":[30100062,30100063,30100064,30100213],"LinkStageIds":[30100065,30100066,30100067,0]},{"GroupId":1211003,"StageIds":[30100069,30100070,30100071],"LinkStageIds":[30100072,30100073,30100074]},{"GroupId":1021006,"StageIds":[30100079,30100080,30100081],"LinkStageIds":[30100082,30100083,30100084]},{"GroupId":1311002,"StageIds":[30100089,30100090,30100091],"LinkStageIds":[30100092,30100093,30100094]},{"GroupId":1051005,"StageIds":[30100110,30100111,30100112],"LinkStageIds":[30100104,30100105,30100106]},{"GroupId":1321003,"SkipId":20236},{"GroupId":1331003,"SkipId":20243},{"GroupId":1531005,"SkipId":20250},{"GroupId":1341002,"SkipId":20263},{"GroupId":1351003,"SkipId":20277},{"GroupId":1361003,"SkipId":20278},{"GroupId":1131004,"SkipId":20268},{"GroupId":1041005,"SkipId":20280},{"GroupId":1371002,"SkipId":20296},{"GroupId":1381003,"SkipId":20302},{"GroupId":1031005,"SkipId":20309},{"GroupId":1291003,"SkipId":20314},{"GroupId":1141004,"SkipId":20323},{"GroupId":1391003,"SkipId":20326},{"GroupId":1061004,"SkipId":20337},{"GroupId":1021007,"SkipId":20367}],"PracticeChapters":[{"Id":1,"Name":"Basic Battle","ChallengeType":1,"StageId":[30100103,30100203,30100303,30100503,30100504,30100704,30100882]},{"Id":2,"Name":"Advanced Battle","ChallengeType":2,"StageId":[30100701,30100702,30100703]},{"Id":3,"Name":"Member Battle","ChallengeType":2,"IsOpen":1},{"Id":4,"Name":"S-Rank Omniframe","ChallengeType":2,"IsOpen":1,"Groups":[1061003,1031003,1011003,1071003,1051003,1021003,1041003,1021004,1141003,1171003,1121003,1131003,1031004,1531004,1051004,1071004,1041004,1011004,1091003,1021005,1221003,1261003,1271003,1081004,1521004,1171004,1241003,1211003,1021006,1051005,1321003,1331003,1531005,1131004,1041005,1381003,1031005,1291003,1141004,1391003,1061004,1021007]},{"Id":5,"Name":"A/B-Rank Omniframe","ChallengeType":2,"IsOpen":1,"Groups":[1021001,1031001,1051001,1011002,1071002,1041002,1081002,1061002,1021002,1031002,1091002,1081003,1111002,1121002,1131002,1161002,1211002,1221002,1231002,1241002,1251002,1291002,1301002,1311002,1341002,1371002]},{"Id":6,"Name":"Uniframe","ChallengeType":2,"IsOpen":1,"Groups":[1511003,1521003,1531003,1541003,1551003,1561003,1571003]},{"Id":7,"Name":"Collab Frame","ChallengeType":2,"IsOpen":1,"Groups":[1201003,1181003,1191003,1281002,1351003,1361003]},{"Id":8,"Name":"Effect Tutorial","ChallengeType":2,"IsOpen":1,"Groups":[5001001,5001002,5001003,5001004,5001005,5001006,5001007]}],"PracticeActivities":[{"StageId":30100103},{"StageId":30100203},{"StageId":30100303},{"StageId":30100503},{"StageId":30100504},{"StageId":30100704},{"StageId":30100882},{"StageId":30100701},{"StageId":30100702},{"StageId":30100703},{"StageId":30100801},{"StageId":30100802},{"StageId":30100803},{"StageId":30100804},{"StageId":30100805},{"StageId":30100806},{"StageId":30100807},{"StageId":30100808},{"StageId":30100809},{"StageId":30100810},{"StageId":30100811},{"StageId":30100812},{"StageId":30100813},{"StageId":30100814},{"StageId":30100815},{"StageId":30100816},{"StageId":30100817},{"StageId":30100818},{"StageId":30100819},{"StageId":30100820},{"StageId":30100821},{"StageId":30100822},{"StageId":30100823},{"StageId":30100824},{"StageId":30100825},{"StageId":30100826},{"StageId":30100827},{"StageId":30100832},{"StageId":30100850},{"StageId":30100851},{"StageId":30100856},{"StageId":30100857},{"StageId":30100862},{"StageId":30100867},{"StageId":30100872},{"StageId":30100877},{"StageId":30100881},{"StageId":30100833},{"StageId":30100834},{"StageId":30100835},{"StageId":30100883},{"StageId":30100884},{"StageId":30100885},{"StageId":30100886},{"StageId":30100887},{"StageId":30100888},{"StageId":30100889},{"StageId":30100890},{"StageId":30100891},{"StageId":30100892},{"StageId":30100893},{"StageId":30100894},{"StageId":30100895},{"StageId":30100896},{"StageId":30100897},{"StageId":30100898},{"StageId":30100899},{"StageId":30100900},{"StageId":30100901},{"StageId":30100902},{"StageId":30100903},{"StageId":30100904},{"StageId":30100905},{"StageId":30100906},{"StageId":30100911},{"StageId":30100912},{"StageId":30100913},{"StageId":30100914},{"StageId":30100918},{"StageId":30100919},{"StageId":30100920},{"StageId":30100921},{"StageId":30100922},{"StageId":30100923},{"StageId":30100928},{"StageId":30100929},{"StageId":30100930},{"StageId":30100931},{"StageId":30100932},{"StageId":30100936},{"StageId":30100937},{"StageId":30100938},{"StageId":30100939},{"StageId":30100940},{"StageId":30100941},{"StageId":30100942},{"StageId":30100943},{"StageId":30100948},{"StageId":30100949},{"StageId":30100950},{"StageId":30100954},{"StageId":30100955},{"StageId":30100956},{"StageId":30100957},{"StageId":30100962},{"StageId":30100963},{"StageId":30100964},{"StageId":30100968},{"StageId":30100969},{"StageId":30100970},{"StageId":30100971},{"StageId":30100975},{"StageId":30100976},{"StageId":30100977},{"StageId":30100981},{"StageId":30100982},{"StageId":30100983},{"StageId":30100987},{"StageId":30100988},{"StageId":30100989},{"StageId":30100990},{"StageId":30100994},{"StageId":30100995},{"StageId":30100996},{"StageId":30100997},{"StageId":30100135},{"StageId":30100001},{"StageId":30100002},{"StageId":30100003},{"StageId":30100007},{"StageId":30100008},{"StageId":30100009},{"StageId":30100013},{"StageId":30100014},{"StageId":30100015},{"StageId":30100016},{"StageId":30100020},{"StageId":30100021},{"StageId":30100022},{"StageId":30100026},{"StageId":30100027},{"StageId":30100031},{"StageId":30100032},{"StageId":30100033},{"StageId":30100034},{"StageId":30100035},{"StageId":30100036},{"StageId":30100040},{"StageId":30100041},{"StageId":30100042},{"StageId":30100043},{"StageId":30100044},{"StageId":30100045},{"StageId":30100049},{"StageId":30100050},{"StageId":30100051},{"StageId":30100052},{"StageId":30100053},{"StageId":30100054},{"StageId":30100055},{"StageId":30100056},{"StageId":30100057},{"StageId":30100058},{"StageId":30100062},{"StageId":30100063},{"StageId":30100064},{"StageId":30100065},{"StageId":30100066},{"StageId":30100067},{"StageId":30100068},{"StageId":30100069},{"StageId":30100070},{"StageId":30100071},{"StageId":30100072},{"StageId":30100073},{"StageId":30100074},{"StageId":30100075},{"StageId":30100079},{"StageId":30100080},{"StageId":30100081},{"StageId":30100082},{"StageId":30100083},{"StageId":30100084},{"StageId":30100088},{"StageId":30100089},{"StageId":30100090},{"StageId":30100091},{"StageId":30100092},{"StageId":30100093},{"StageId":30100094},{"StageId":30100098},{"StageId":30100099},{"StageId":30100110},{"StageId":30100111},{"StageId":30100112},{"StageId":30100104},{"StageId":30100105},{"StageId":30100106},{"StageId":30100116},{"StageId":30100117},{"StageId":30100118},{"StageId":30100122},{"StageId":30100134},{"StageId":30100124},{"StageId":30100128},{"StageId":30100129},{"StageId":30100130},{"StageId":30100136},{"StageId":30100137},{"StageId":30100138},{"StageId":30100142},{"StageId":30100143},{"StageId":30100144},{"StageId":30100145},{"StageId":30100146},{"StageId":30100147},{"StageId":30100154},{"StageId":30100155},{"StageId":30100156},{"StageId":30101098},{"StageId":30100160},{"StageId":30100161},{"StageId":30100162},{"StageId":30100166},{"StageId":30100167},{"StageId":30100168},{"StageId":30100172},{"StageId":30100173},{"StageId":30100174},{"StageId":30100175},{"StageId":30100179},{"StageId":30100180},{"StageId":30100181},{"StageId":30100185},{"StageId":30100186},{"StageId":30100187},{"StageId":30100188},{"StageId":30100192},{"StageId":30100193},{"StageId":30100194},{"StageId":30100204},{"StageId":30100205},{"StageId":30100206},{"StageId":30100210},{"StageId":30100211},{"StageId":30100212},{"StageId":30100213},{"StageId":30100217},{"StageId":30100218},{"StageId":30100219}],"TeachingActivities":[{"Id":1,"Name":"Refraction","StageId":[30100836,30100837,30100830,30100831],"LinkStageId":[0,0,0,0],"TreasureId":[1,2,3],"TotalStars":12,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNewCharActivity/FuBenNewCharActivity.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/GridStage/GridStageNewCharActivity.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner22.png","CharacterId":1171003,"SkipIdDraw":20010,"NewCharType":1},{"Id":2,"Name":"Trailblazer Beacon","TreasureId":[4,5,6,7],"TotalStars":12,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FunbenKoroTutorial/FunbenKoroTutorial01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/GridStage/GridFunbenKoroTutorial01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FunbenKoroTutorial/FunbenKoroTutorial02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/GridStage/GridFunbenKoroTutorial02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner34.png","CharacterId":1121003,"SkipIdDraw":20010,"SkipIdChar":7403,"NewCharType":2},{"Id":3,"Name":"Warrior's Triumph","ChallengeStage":[30160504,30160505],"StageId":[30100858,30100859,30100860,30100861],"LinkStageId":[0,0,0,0],"TreasureId":[8,9,10,11],"TotalStars":6,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FunbenWeiLaTutorial/FunbenWeilaTutorial01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/GridStage/GridFunbenWeilaTutorial01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FunbenWeiLaTutorial/FunbenWeilaTutorial02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/GridStage/GridFunbenWeilaTutorial02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner42.png","CharacterId":1131003,"SkipIdDraw":20010,"SkipIdChar":7403,"SkipIdSkin":80023,"NewCharType":3,"MovieId":10020},{"Id":4,"Name":"Play of a Loner","ChallengeStage":[30160507,30160506],"StageId":[30100864,30100865,30100866],"LinkStageId":[0,0,0],"TreasureId":[12,13,14,15],"TotalStars":6,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FunbenLuolanTutorial/FunbenLuolanTutorial01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/GridStage/GridFunbenLuolanTutorial01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FunbenLuolanTutorial/FunbenLuolanTutorial02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/GridStage/GridFunbenLuolanTutorial02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner46.png","CharacterId":1541003,"SkipIdDraw":20023,"SkipIdChar":7403,"SkipIdSkin":80023,"NewCharType":4},{"Id":5,"Name":"Glimmering Life","ChallengeStage":[30160508,30160509],"StageId":[30100868,30100869,30100870,30100871],"LinkStageId":[0,0,0,0],"TreasureId":[16,17,18,19],"TotalStars":6,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLifuActivity/FuBenLifuActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLifuActivity/GridLifuActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLifuActivity/FuBenLifuActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLifuActivity/GridLifuActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner50.png","CharacterId":1031004,"SkipIdDraw":7209,"SkipIdChar":7403,"SkipIdSkin":80023,"NewCharType":5},{"Id":6,"Name":"Accompanist's Song","ChallengeStage":[30160510,30160511,30160512],"StageId":[30100873,30100874,30100875],"LinkStageId":[0,0,0],"TreasureId":[20,21,22,23],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSelenaActivity/FuBenSelenaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSelenaActivity/GridSelenaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSelenaActivity/FuBenSelenaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSelenaActivity/GridSelenaActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner54.png","CharacterId":1531004,"SkipIdDraw":7209,"SkipIdChar":82020,"SkipIdSkin":80023,"NewCharType":6},{"Id":7,"Name":"Roamer Records","ChallengeStage":[30160513,30160514,30160515],"StageId":[30100878,30100879,30100880],"LinkStageId":[0,0,0],"TreasureId":[24,25,26,27],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenPulaoActivity/FuBenPulaoActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenPulaoActivity/GridPulaoActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenPulaoActivity/FuBenPulaoActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenPulaoActivity/GridPulaoActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner56.png","CharacterId":1551003,"SkipIdDraw":7210,"SkipIdSkin":20111,"NewCharType":7,"ChallengeCondition":96000},{"Id":8,"Name":"Robo-Heart","ChallengeStage":[30160516,30160517,30160518],"StageId":[30100907,30100908,30100909,30100910],"LinkStageId":[0,0,0,0],"TreasureId":[28,29,30,31],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNanamiActivity/FuBenNanamiActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNanamiActivity/GridNanamiActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNanamiActivity/FuBenNanamiActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNanamiActivity/GridNanamiActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner66.png","CharacterId":1051004,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":8,"ChallengeCondition":96001},{"Id":9,"Name":"Godseeker's Psalm","ChallengeStage":[30160519,30160520,30160521],"StageId":[30100915,30100916,30100917],"LinkStageId":[0,0,0],"TreasureId":[32,33,34,35],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHachamaActivity/FuBenHachamaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHachamaActivity/GridHachamaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHachamaActivity/FuBenHachamaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHachamaActivity/GridHachamaActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner71.png","CharacterId":1561003,"SkipIdDraw":7210,"SkipIdSkin":20111,"NewCharType":9,"ChallengeCondition":96002},{"Id":10,"Name":"Nuclear Darkness","ChallengeStage":[30160522,30160523,30160524],"StageId":[30100924,30100925,30100926,30100927],"LinkStageId":[0,0,0,0],"TreasureId":[36,37,38,39],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperKareninaActivity/FuBenSuperKareninaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperKareninaActivity/GridSuperKareninaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperKareninaActivity/FuBenSuperKareninaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperKareninaActivity/GridSuperKareninaActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner71.png","CharacterId":1071004,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":10,"ChallengeCondition":96003},{"Id":11,"Name":"A Sinner's Confession","ChallengeStage":[30160525,30160526,30160527],"StageId":[30100933,30100934,30100935],"LinkStageId":[0,0,0],"TreasureId":[40,41,42,43],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoanActivity/FuBenNoanActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoanActivity/GridNoanActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoanActivity/FuBenNoanActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoanActivity/GridNoanActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner79.png","CharacterId":1571003,"SkipIdDraw":7210,"SkipIdSkin":20111,"NewCharType":11,"ChallengeCondition":96004},{"Id":12,"Name":"Reborn Resolve","ChallengeStage":[30160528,30160529,30160530],"StageId":[30100944,30100945,30100946,30100947],"LinkStageId":[0,0,0,0],"TreasureId":[44,45,46,47],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/FuBenSuperBiancaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/GridSuperBiancaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/FuBenSuperBiancaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/GridSuperBiancaActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner84.png","CharacterId":1041004,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":12,"ChallengeCondition":96005},{"Id":13,"Name":"Dialogues with an Existentialist","ChallengeStage":[30160531,30160532,30160533],"StageId":[30100951,30100952,30100953],"LinkStageId":[0,0,0],"TreasureId":[48,49,50,51],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/FuBenBombinataActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/GridBombinataActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/FuBenBombinataActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/GridBombinataActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner85.png","CharacterId":1231002,"SkipIdDraw":7205,"SkipIdSkin":20111,"NewCharType":13,"ChallengeCondition":96006},{"Id":14,"Name":"However Improbable","ChallengeStage":[30160534,30160535,30160536],"StageId":[30100958,30100959,30100960,30100961],"LinkStageId":[0,0,0,0],"TreasureId":[52,53,54,55],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLeeActivity/FuBenLeeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLeeActivity/GridLeeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLeeActivity/FuBenLeeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLeeActivity/GridLeeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner87.png","CharacterId":1011004,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":14,"ChallengeCondition":96007},{"Id":15,"Name":"Age of Creators","ChallengeStage":[30160537,30160538,30160539],"StageId":[30100965,30100966,30100967],"LinkStageId":[0,0,0],"TreasureId":[56,57,58,59],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenAylaActivity/FuBenAylaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenAylaActivity/GridAylaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenAylaActivity/FuBenAylaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenAylaActivity/GridAylaActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner93.png","CharacterId":1091003,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":15,"ChallengeCondition":96008},{"Id":16,"Name":"Abyssal Unbounded","ChallengeStage":[30160540,30160541,30160542],"StageId":[30100972,30100973,30100974],"LinkStageId":[0,0,0],"TreasureId":[60,61,62,63],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLuciaActivity/FuBenLuciaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLuciaActivity/GridLuciaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLuciaActivity/FuBenLuciaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLuciaActivity/GridLuciaActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner101.png","CharacterId":1021005,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":16,"ChallengeCondition":96009},{"Id":17,"Name":"Homeward Dreamer","ChallengeStage":[30160543,30160544,30160545],"StageId":[30100978,30100979,30100980],"LinkStageId":[0,0,0],"TreasureId":[64,65,66,67],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHanyingActivity/FuBenHanyingActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHanyingActivity/GridHanyingActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHanyingActivity/FuBenHanyingActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHanyingActivity/GridHanyingActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner106.png","CharacterId":1241002,"SkipIdDraw":7205,"SkipIdSkin":20111,"NewCharType":17,"ChallengeCondition":96010},{"Id":18,"Name":"Uninhibited","ChallengeStage":[30160546,30160547,30160548],"StageId":[30100984,30100985,30100986],"LinkStageId":[0,0,0],"TreasureId":[68,69,70,71],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBen21HaoActivity/FuBen21HaoActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBen21HaoActivity/Grid21HaoActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBen21HaoActivity/FuBen21HaoActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBen21HaoActivity/Grid21HaoActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner112.png","CharacterId":1221003,"SkipIdDraw":7205,"SkipIdSkin":20111,"NewCharType":18,"ChallengeCondition":96011},{"Id":19,"Name":"Darkseeker's Roar","ChallengeStage":[30160549,30160550,30160551],"StageId":[30100991,30100992,30100993],"LinkStageId":[0,0,0],"TreasureId":[72,73,74,75],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoktiActivity/FuBenNoktiActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoktiActivity/GridNoktiActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoktiActivity/FuBenNoktiActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoktiActivity/GridNoktiActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner111.png","CharacterId":1251002,"SkipIdDraw":7205,"SkipIdSkin":89018,"NewCharType":19,"ChallengeCondition":96012},{"Id":20,"Name":"Trial of Righteousness","ChallengeStage":[30160552,30160553,30160554],"StageId":[30100998,30100999,30100000],"LinkStageId":[0,0,0],"TreasureId":[76,77,78,79],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenEchoActivity/FuBenEchoActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenEchoActivity/GridEchoActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenEchoActivity/FuBenEchoActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenEchoActivity/GridEchoActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner117.png","CharacterId":1261003,"SkipIdDraw":7209,"SkipIdSkin":80035,"NewCharType":20,"SkipGet":19053,"ChallengeCondition":96013},{"Id":21,"Name":"Seeker's Voyage","ChallengeStage":[30160555,30160556,30160557],"StageId":[30100004,30100005,30100006],"LinkStageId":[0,0,0],"TreasureId":[80,81,82,83],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLamiaActivity/FuBenLamiaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLamiaActivity/GridLamiaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLamiaActivity/FuBenLamiaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLamiaActivity/GridLamiaActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner123.png","CharacterId":1271003,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":21,"ChallengeCondition":96014},{"Id":22,"Name":"Outlander's Flame","ChallengeStage":[30160558,30160559,30160560],"StageId":[30100010,30100011,30100012],"LinkStageId":[30100007,30100008,30100009],"TreasureId":[84,85,86,87],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenBRSActivity/FuBenBRSActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenBRSActivity/GridBRSActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenBRSActivity/FuBenBRSActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenBRSActivity/GridBRSActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner128.png","CharacterId":1281002,"SkipIdDraw":10047,"SkipIdSkin":20111,"NewCharType":22,"ChallengeCondition":96015},{"Id":23,"Name":"Forsaken Ordeals","ChallengeStage":[30160561,30160562,30160563],"StageId":[30100017,30100018,30100019],"LinkStageId":[30100014,30100015,30100016],"ShowRewardId":1013091,"TreasureId":[88,89,90,91,92,93,94],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner129.png","CharacterId":1081004,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":23,"ChallengeCondition":96016},{"Id":24,"Name":"Sovereign's Purge","ChallengeStage":[30160564,30160565,30160566],"StageId":[30100023,30100024,30100025],"LinkStageId":[30100020,30100021,30100022],"ShowRewardId":1013096,"TreasureId":[95,96,97,98,99,100,101],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner129.png","CharacterId":1521004,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":24,"ChallengeCondition":96017},{"Id":25,"Name":"The Successor's Pursuit","ChallengeStage":[30100028,30100029,30100030],"StageId":[30100034,30100035,30100036],"LinkStageId":[30100031,30100032,30100033],"ShowRewardId":1013101,"TreasureId":[102,103,104,105,106,107,108],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1291002,"SkipIdDraw":7205,"SkipIdSkin":20111,"NewCharType":25,"ChallengeCondition":96018},{"Id":26,"Name":"Boundbreaker's Redemption","ChallengeStage":[30100037,30100038,30100039],"StageId":[30100043,30100044,30100045],"LinkStageId":[30100040,30100041,30100042],"ShowRewardId":1013106,"TreasureId":[109,110,111,112,113,114,115],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1171004,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":26,"ChallengeCondition":96019},{"Id":27,"Name":"Glimpse of Revelation","ChallengeStage":[30100046,30100047,30100048],"StageId":[30100052,30100053,30100054],"LinkStageId":[30100049,30100050,30100051],"ShowRewardId":1013111,"TreasureId":[116,117,118,119,120,121,122],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1301002,"SkipIdDraw":7205,"SkipIdSkin":20111,"NewCharType":27,"ChallengeCondition":96020},{"Id":28,"Name":"Cadence Weaver","ChallengeStage":[30100059,30100060,30100061],"StageId":[30100065,30100066,30100067],"LinkStageId":[30100062,30100063,30100064],"ShowRewardId":1013116,"TreasureId":[123,124,125,126,127,128,129],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1241003,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":28,"ChallengeCondition":96021},{"Id":29,"Name":"Wanderer's Choice","ChallengeStage":[30100076,30100077,30100078],"StageId":[30100072,30100073,30100074],"LinkStageId":[30100069,30100070,30100071],"ShowRewardId":1013121,"TreasureId":[130,131,132,133,134,135,136],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1211003,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":29,"ChallengeCondition":96022},{"Id":30,"Name":"The Watcher's Oath","ChallengeStage":[30100085,30100086,30100087],"StageId":[30100082,30100083,30100084],"LinkStageId":[30100079,30100080,30100081],"ShowRewardId":1013126,"TreasureId":[137,138,139,140,141,142,143],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1021006,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":30,"ChallengeCondition":96023},{"Id":31,"Name":"Soul Ferrier","ChallengeStage":[30100095,30100096,30100097],"StageId":[30100092,30100093,30100094],"LinkStageId":[30100089,30100090,30100091],"ShowRewardId":1013131,"TreasureId":[144,145,146,147,148,149,150],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1311002,"SkipIdDraw":7205,"SkipIdSkin":20111,"NewCharType":31,"ChallengeCondition":96024},{"Id":32,"Name":"Dawnchaser's Crusade","ChallengeStage":[30100107,30100108,30100109],"StageId":[30100104,30100105,30100106],"LinkStageId":[30100110,30100111,30100112],"ShowRewardId":1013136,"TreasureId":[151,152,153,154,155,156,157],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1051005,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":32,"ChallengeCondition":96025},{"Id":33,"Name":"Observer's Gaze","TimeId":905,"ChallengeStage":[30100119,30100120,30100121],"StageId":[30100116,30100117,30100118],"LinkStageId":[0,0,0],"ShowRewardId":1013141,"TreasureId":[158,159,160,161,162,163,164],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3CibeizheActivity/FuBenR3CibeizheActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3CibeizheActivity/GridR3CibeizheActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3CibeizheActivity/FuBenR3CibeizheActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3CibeizheActivity/GridR3CibeizheActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3CibeizheActivity/UiCharacterFileR3CibeizheBg.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3CibeizheActivity/UiCharacterFileR3CibeizheMain.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1321003,"SkipIdDraw":20240,"SkipIdSkin":20241,"NewCharType":33,"ChallengeCondition":96026},{"Id":34,"Name":"Fugitive's Scheme","TimeId":905,"ChallengeStage":[30100125,30100126,30100127],"StageId":[30100122,30100134,30100124],"LinkStageId":[0,0,0],"ShowRewardId":1013146,"TreasureId":[165,166,167,168,169,170,171],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3LilithActivityV301/FuBenR3LilithActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3LilithActivityV301/GridR3LilithActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3LilithActivityV301/FuBenR3LilithActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3LilithActivityV301/GridR3LilithActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3LilithActivityV301/UiCharacterFileR3LilithBgV301.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3LilithActivityV301/UiCharacterFileR3LilithMainV301.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1331003,"SkipIdDraw":20246,"SkipIdSkin":20247,"NewCharType":34,"ChallengeCondition":96027},{"Id":35,"Name":"Songstress' Lone Dance","TimeId":905,"ChallengeStage":[30100131,30100132,30100133],"StageId":[30100128,30100129,30100130],"LinkStageId":[0,0,0],"ShowRewardId":1013151,"TreasureId":[172,173,174,175,176,177,178],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR5SailinnaActivityV302/FuBenR5SailinnaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR5SailinnaActivityV302/GridR5SailinnaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR5SailinnaActivityV302/FuBenR5SailinnaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR5SailinnaActivityV302/GridR5SailinnaActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR5SailinnaActivityV302/UiCharacterFileR5SailinnaBgV302.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR5SailinnaActivityV302/UiCharacterFileR5SailinnaMainV302.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1531005,"SkipIdDraw":20253,"SkipIdSkin":20252,"NewCharType":35,"ChallengeCondition":96028},{"Id":36,"Name":"The Insurgent File","TimeId":905,"ChallengeStage":[30100139,30100140,30100141],"StageId":[30100136,30100137,30100138],"LinkStageId":[0,0,0],"ShowRewardId":1013156,"TreasureId":[179,180,181,182,183,184,185],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR2JietaweiActivityV303/FuBenR2JietaweiActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR2JietaweiActivityV303/GridR2JietaweiActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR2JietaweiActivityV303/FuBenR2JietaweiActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR2JietaweiActivityV303/GridR2JietaweiActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR2JietaweiActivityV303/UiCharacterFileR2JietaweiBgV303.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR2JietaweiActivityV303/UiCharacterFileR2JietaweiMainV303.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner182.png","CharacterId":1341002,"SkipIdDraw":20265,"SkipIdSkin":20264,"NewCharType":36,"ChallengeCondition":96029},{"Id":37,"Name":"Devils Never Die","TimeId":905,"ChallengeStage":[30100148,30100149,30100150],"StageId":[30100142,30100143,30100144],"LinkStageId":[0,0,0],"ShowRewardId":1013166,"TreasureId":[186,187,188,189,190,191,192],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3VergilActivityV305/FuBenR3VergilActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3VergilActivityV305/GridR3VergilActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3VergilActivityV305/FuBenR3VergilActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3VergilActivityV305/GridR3VergilActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3VergilActivityV305/UiCharacterFileR3VergilBgV305.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3VergilActivityV305/UiCharacterFileR3VergilMainV305.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner187.png","CharacterId":1351003,"SkipIdDraw":20275,"NewCharType":37,"CustomUiControlType":1},{"Id":38,"Name":"Devils Never Die","TimeId":905,"ChallengeStage":[30100151,30100152,30100153],"StageId":[30100145,30100146,30100147],"LinkStageId":[0,0,0],"ShowRewardId":1013171,"TreasureId":[193,194,195,196,197,198,199],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3DanteActivityV305/FuBenR3DanteActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3DanteActivityV305/GridR3DanteActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3DanteActivityV305/FuBenR3DanteActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3DanteActivityV305/GridR3DanteActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3DanteActivityV305/UiCharacterFileR3DanteBgV305.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3DanteActivityV305/UiCharacterFileR3DanteMainV305.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner187.png","CharacterId":1361003,"SkipIdDraw":20276,"NewCharType":38,"CustomUiControlType":1},{"Id":39,"Name":"Pilgrim's Remains","TimeId":905,"ChallengeStage":[30100157,30100158,30100159],"StageId":[30100154,30100155,30100156],"LinkStageId":[0,0,0],"ShowRewardId":1013161,"TreasureId":[200,201,202,203,204,205,206],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR4WeilaActivityV304/FuBenR4WeilaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR4WeilaActivityV304/GridR4WeilaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR4WeilaActivityV304/FuBenR4WeilaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR4WeilaActivityV304/GridR4WeilaActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR4WeilaActivityV304/UiCharacterFileR4WeilaBgV304.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR4WeilaActivityV304/UiCharacterFileR4WeilaMainV304.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner182.png","CharacterId":1131004,"SkipIdDraw":20269,"SkipIdSkin":20270,"NewCharType":39,"ChallengeCondition":96030},{"Id":40,"Name":"Ode to Pilgrims","TimeId":905,"ChallengeStage":[30100163,30100164,30100165],"StageId":[30100160,30100161,30100162],"LinkStageId":[0,0,0],"ShowRewardId":1013176,"TreasureId":[207,208,209,210,211,212,213],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4WeilaMainV306/FuBenR4BiankaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4WeilaMainV306/GridR4BiankaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4WeilaMainV306/FuBenR4BiankaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4WeilaMainV306/GridR4BiankaActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4WeilaMainV306/UiCharacterFileR4BiankaBgV306.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4WeilaMainV306/UiCharacterFileR4BiankaMainV306.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner182.png","CharacterId":1041005,"SkipIdDraw":20281,"SkipIdSkin":20282,"NewCharType":40},{"Id":41,"Name":"The Unwavering Dreamer","TimeId":905,"ChallengeStage":[30100169,30100170,30100171],"StageId":[30100167,30100168,30100172],"LinkStageId":[0,0,0],"ShowRewardId":1013181,"TreasureId":[214,215,216,217,218,219,220],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4XieZhouMainV307/FuBenR4xiezouActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4XieZhouMainV307/GridR4xiezouActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4XieZhouMainV307/FuBenR4xiezouActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4XieZhouMainV307/GridR4xiezouActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4XieZhouMainV307/UiCharacterFileR4xiezouBgV307.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4XieZhouMainV307/UiCharacterFileR4XiezouMainV307.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner182.png","CharacterId":1371002,"SkipIdDraw":20294,"SkipIdSkin":20295,"NewCharType":41},{"Id":42,"Name":"Echo in Solitude","TimeId":905,"ChallengeStage":[30100176,30100177,30100178],"StageId":[30100173,30100174,30100175],"LinkStageId":[0,0,0],"ShowRewardId":1013186,"TreasureId":[221,222,223,224,225,226,227],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/FuBenR3WeiluonikaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/GridR3WeiluonikaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/FuBenR3WeiluonikaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/GridR3WeiluonikaActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiCharacterFileR3WeiluonikaBgV308.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiCharacterFileR3WeiluonikaMainV308.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner182.png","CharacterId":1381003,"SkipIdDraw":20300,"SkipIdSkin":20301,"NewCharType":42},{"Id":43,"Name":"All-Loving Compassion","TimeId":905,"ChallengeStage":[30100182,30100183,30100184],"StageId":[30100179,30100180,30100181],"LinkStageId":[0,0,0],"ShowRewardId":1013191,"TreasureId":[228,229,230,231,232,233,234],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LifuActivityV400/FuBenR5LifuActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LifuActivityV400/GridR5LifuActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LifuActivityV400/FuBenR5LifuActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LifuActivityV400/GridR5LifuActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiCharacterFileR5LifuBgV400.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiCharacterFileR5LifuMainV400.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner182.png","CharacterId":1031005,"SkipIdDraw":20305,"SkipIdSkin":20306,"NewCharType":43},{"Id":44,"Name":"Answer Seeker's Pain","TimeId":905,"ChallengeStage":[30100189,30100190,30100191],"StageId":[30100186,30100187,30100188],"LinkStageId":[0,0,0],"ShowRewardId":1013196,"TreasureId":[235,236,237,238,239,240,241],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/FuBenR3BuouxiongActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/GridR3BuouxiongActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/FuBenR3BuouxiongActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/GridR3BuouxiongActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiCharacterFileR3BuouxiongBgV401.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiCharacterFileR3BuouxiongMainV401.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner215.png","CharacterId":1291003,"SkipIdDraw":20312,"SkipIdSkin":20313,"NewCharType":44},{"Id":45,"Name":"Farewell from the Departed","TimeId":905,"ChallengeStage":[30100195,30100196,30100197],"StageId":[30100192,30100193,30100194],"LinkStageId":[0,0,0],"ShowRewardId":1013201,"TreasureId":[242,243,244,245,246,247,248],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LuosaitaV402/FuBenR5LuosaitaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LuosaitaV402/GridR5LuosaitaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LuosaitaV402/FuBenR5LuosaitaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LuosaitaV402/GridR5LuosaitaActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaBgV402.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaMainV402.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner219.png","CharacterId":1141004,"SkipIdDraw":20327,"SkipIdSkin":20328,"NewCharType":45},{"Id":46,"Name":"The Homecoming Seeker","TimeId":905,"ChallengeStage":[30100207,30100208,30100209],"StageId":[30100204,30100205,30100206],"LinkStageId":[0,0,0],"ShowRewardId":1013206,"TreasureId":[249,250,251,252,253,254,255],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/FuBenR3NietiyaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/GridR3NietiyaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/FuBenR3NietiyaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/GridR3NietiyaActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaBgV403.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaMainV403.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner222.png","CharacterId":1391003,"SkipIdDraw":20324,"SkipIdSkin":20325,"NewCharType":46},{"Id":47,"Name":"Sunstrider's Return","TimeId":905,"ChallengeStage":[30100214,30100215,30100216],"StageId":[30100210,30100211,30100212],"LinkStageId":[0,0,0],"ShowRewardId":1013211,"TreasureId":[256,257,258,259,260,261,262],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/GridR4ShenweiActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/GridR4ShenweiActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/UiCharacterFileR4ShenweiBgV404.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/UiCharacterFileR4ShenweiMainV404.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner226.png","CharacterId":1061004,"SkipIdDraw":20335,"SkipIdSkin":20336,"NewCharType":47},{"Id":48,"Name":"Long Live the Crowned","TimeId":905,"ChallengeStage":[30100220,30100221,30100222],"StageId":[30100217,30100218,30100219],"LinkStageId":[0,0,0],"ShowRewardId":1013216,"TreasureId":[263,264,265,266,267,268,269],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/FuBenR7LuxiyaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/FuBenR7LuxiyaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/FuBenR7LuxiyaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/FuBenR7LuxiyaActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaBgV405.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaActivityV405.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner229.png","CharacterId":1021007,"SkipIdDraw":20365,"SkipIdSkin":20366,"NewCharType":48},{"Id":49,"Name":"The Knower's Dilemma","TimeId":905,"ChallengeStage":[30100226,30100227,30100228],"StageId":[30100223,30100224,30100225],"LinkStageId":[0,0,0],"ShowRewardId":1013221,"TreasureId":[270,271,272,273,274,275,276],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/FuBenR3HelentineActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/GridR3HelentineActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/FuBenR3HelentineActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/GridR3HelentineActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineBgV406.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineMainV406.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner233.png","CharacterId":1401003,"SkipIdDraw":20381,"SkipIdSkin":20382,"NewCharType":49}],"TeachingRobots":[{"StageId":30160503,"DescDetail":"Siren calls the Red Tide every 15s, during which its ATK is greatly improved but gains Vulnerable.","ShowFightEventIds":[110274,110267,110271,110270],"RobotId":[9083]},{"StageId":30160502,"DescDetail":"Siren calls the Red Tide every 15s, during which its ATK is greatly improved but gains Vulnerable.","ShowFightEventIds":[110280,110273,110267,110271,110270],"RobotId":[9083]},{"StageId":30160501,"DescDetail":"Siren calls the Red Tide every 15s, during which its ATK is greatly improved but gains Vulnerable\\n180s later, Siren goes Berserk.","ShowFightEventIds":[110280,110266,110273,110268,110267,110271,110270,110277],"RobotId":[9083]},{"StageId":30160500,"DescDetail":"Siren calls the Red Tide every 15s, during which its ATK is greatly improved but gains Vulnerable\\n180s later, Siren goes Berserk.","ShowFightEventIds":[110281,110279,110272,110268,110267,110271,110270,110278],"RobotId":[9083]},{"StageId":30160504,"DescDetail":"Voodoo summons 4 Medic Bots every 15s and enters Invincible state. Destroy all Medic Bots to paralyze Voodoo for 10s, in which its Lightning DMG received increases.","ShowFightEventIds":[760015],"RobotId":[9089]},{"StageId":30160505,"DescDetail":"Voodoo receives a special boost, increasing its tendency to attack while decreasing its DMG received. This boost is lost when it receives DMG over 40000 in one hit. Regenerates after 15s.","ShowFightEventIds":[760015,845057],"RobotId":[9089]},{"StageId":30160507,"DescDetail":"Pterygota Queen becomes weak to random colored orbs every 30s (the weakness lasts 15s). If she takes a high amount of damage during this time, she will be immobilized and vulnerable (the damage threshold increases with each trigger, up to 4 times).","ShowFightEventIds":[780693,780694,780695,780696,780697],"RobotId":[9094]},{"StageId":30160506,"DescDetail":"Gabriel becomes weak to random colored orbs every 30s (the weakness lasts 15s), losing 60% of resistance to the particular color.","ShowFightEventIds":[780693,780694,780695,780698,780699],"RobotId":[9094]},{"StageId":30160508,"DescDetail":"Monsters have a shield equal to 10% of Max HP and deal 10% more damage. The shield will be refreshed every 15s. Break the shield and the monster will lose 30% DMG Reduction. And a new shield will appear 15s later.","ShowFightEventIds":[780003,780313,780263],"RobotId":[9099]},{"StageId":30160509,"DescDetail":"Riot will summon Terrapods after switching forms. Eliminate all Terrapods to bring Riot to the ground in advance and end the Laser Rain.","ShowFightEventIds":[780003,110213],"RobotId":[9099]},{"StageId":30160510,"DescDetail":"Avoid Acid Ant attacks","ShowFightEventIds":[780033],"RobotId":[9104]},{"StageId":30160511,"DescDetail":"Enemies' weak points will be refreshed in a random direction. Break the weak points in the direction to deal massive True DMG to them.","ShowFightEventIds":[780033,746057,110213],"RobotId":[9104]},{"StageId":30160512,"DescDetail":"Enemies will have 4 weak points that disappear in 4.5s and refresh 2s after that. Destroy all weak points to reduce the enemies' DMG Immunity by 20% for 20s. Characters will bleed if they stay on the battlefield for too long.","ShowFightEventIds":[780033,746074,746072],"RobotId":[9104]},{"StageId":30160513,"DescDetail":"Defeat the Treants and the Faries","ShowFightEventIds":[780043],"RobotId":[2215]},{"StageId":30160514,"DescDetail":"Pulao will gain 20% Extra DMG Bonus for every Dragon Force Combo she casts. The effect lasts for 20s and can be stacked up to 10 times.","ShowFightEventIds":[780043],"RobotId":[2215]},{"StageId":30160515,"DescDetail":"Challenge Heaven Breaker, Demon Bane, and God Slayer respectively. (Use Uniframes and Speed Attacks wisely to fast reduce the enemy's Finisher Gauge value and defeat the enemy when the gauge is empty.)","ShowFightEventIds":[780043],"RobotId":[2215]},{"StageId":30160516,"DescDetail":"The enemy gains high Ice, Lightning, and Dark Resistances but loses a significant amount of Fire Resistance. Maybe things will be different if you use Nanami?","ShowFightEventIds":[780693],"RobotId":[2218],"CharacterType":1},{"StageId":30160517,"DescDetail":"After Starfarer casts the Signature Move, triggering \"Oops! Missed it!\" by pressing and holding Basic Attack will grant 20% Extra DMG Bonus, whereas each triggering \"Perfect!\" will grant 40% Extra DMG Bonus. The effect can be stacked up to 200% and lasts 10s. The duration will refresh whenever it is triggered.","ShowFightEventIds":[780693],"RobotId":[2218],"CharacterType":1},{"StageId":30160518,"DescDetail":"Every time when a team member enters the field, gains a set of random Signal Orbs and 50% Basic Attack Fire DMG Bonus for 10s.","ShowFightEventIds":[780693],"RobotId":[2218],"CharacterType":1},{"StageId":30160519,"DescDetail":"Defeat Gear and Wheel of Fortune","ShowFightEventIds":[780023],"RobotId":[2222],"CharacterType":2},{"StageId":30160520,"DescDetail":"Upon eliminating an enemy, Haicma deals 100% more Ice DMG for 20s and restores 30 Energy. The duration will refresh whenever it is triggered.","ShowFightEventIds":[780023],"RobotId":[2222],"CharacterType":2},{"StageId":30160521,"DescDetail":"Upon triggering a Speed Attack Skill, Haicma fully restores Dodge Gauge value and gains a set of Signal Orbs of a random color.","ShowFightEventIds":[780023],"RobotId":[2222],"CharacterType":2},{"StageId":30160522,"DescDetail":"After casting a Yellow Orb skill, gain 1 Blue Orb. After casting a Blue Orb skill, gain 1 Yellow Orb","ShowFightEventIds":[780033],"RobotId":[2229],"CharacterType":1},{"StageId":30160523,"DescDetail":"After casting [Radiant Whirlwind], your next [Radiant Whirlwind] deals 10% increased DMG for 10s (max 10 stacks)","ShowFightEventIds":[780033],"RobotId":[2229],"CharacterType":1},{"StageId":30160524,"DescDetail":"After a 3-Ping, Basic Attack's Extra DMG Bonus increases by 100% for 3s","ShowFightEventIds":[780033],"RobotId":[2229],"CharacterType":1},{"StageId":30160525,"DescDetail":"Defeat Ronin IV","ShowFightEventIds":[780013],"RobotId":[9115],"CharacterType":2},{"StageId":30160526,"DescDetail":"Noan gains 3-Ping Orbs of a random color every time his Gear Level goes up.","ShowFightEventIds":[780013],"RobotId":[9115],"CharacterType":2},{"StageId":30160527,"DescDetail":"Every time a Combo Strike is triggered at Gear Lv.3, Noan will deal 30% (up to 300%) more DMG.","ShowFightEventIds":[780013],"RobotId":[9115],"CharacterType":2},{"StageId":30160528,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780043],"RobotId":[9120],"CharacterType":1},{"StageId":30160529,"DescDetail":"Stigmata gains a set of 3-Ping Orbs when Afterglow Orbs are consumed in Luminous Realm or the Phase II Signature Move is cast.","ShowFightEventIds":[780043],"RobotId":[9120],"CharacterType":1},{"StageId":30160530,"DescDetail":"Upon casting Illuminated Abyss, Stigmata's Extra DMG increases. This effect is permanent and can stack infinitely.","ShowFightEventIds":[780043],"RobotId":[9120],"CharacterType":1},{"StageId":30160531,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[110274],"RobotId":[9132],"CharacterType":1},{"StageId":30160532,"DescDetail":"A successful dodge during Solitary Dancer will grant a set of 3-Ping Orbs.","ShowFightEventIds":[110274],"RobotId":[9132],"CharacterType":1},{"StageId":30160533,"DescDetail":"A successful dodge during Solitary Dancer will grant a set of 3-Ping Orbs.","ShowFightEventIds":[110274,760221],"RobotId":[9132],"CharacterType":1},{"StageId":30160534,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780693],"RobotId":[2241],"CharacterType":1},{"StageId":30160535,"DescDetail":"Enemies have a shield equal to 10% of Max HP and deal 10% more damage. The shield will be refreshed every 15s. Break the shield and the enemy will lose 30% DMG Reduction. And a new shield will appear 15s later.","ShowFightEventIds":[780003,780313,780263],"RobotId":[2241],"CharacterType":1},{"StageId":30160536,"DescDetail":"Lee: Hyperreal's Extra DMG increases when he triggers Collapsing Realm at maximum Sight Points. This effect is permanent and can stack infinitely.","ShowFightEventIds":[780693],"RobotId":[2241],"CharacterType":1},{"StageId":30160537,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780023],"RobotId":[9147],"CharacterType":1},{"StageId":30160538,"DescDetail":"After Kaleido activates Color Rendering, the enemy gains weaknesses in 4 directions. Triggering these weaknesses with Vibrant Brushstroke will make the entire team deal Extra DMG.","ShowFightEventIds":[780023],"RobotId":[9147],"CharacterType":1},{"StageId":30160539,"DescDetail":"When Kaleido activates Color Rendering, if the DMG Bonuses of both Color Mix: Clash of Concepts and Pure Color: Theme Emphasis are present, Finishing Touch and Vibrant Brushstroke will gain bonus buffs (stackable).","ShowFightEventIds":[780023],"RobotId":[9147],"CharacterType":1},{"StageId":30160540,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780013],"RobotId":[9161],"CharacterType":1},{"StageId":30160541,"DescDetail":"Receives a 10% Extra DMG Bonus after Crimson Weave casts Resolute Blow at full Blade Aura","ShowFightEventIds":[780013],"RobotId":[9161],"CharacterType":1},{"StageId":30160542,"DescDetail":"1. When casting Unquenchable Flare with full Aphotic Points, Crimson Weave's Extra DMG Bonus permanently increases by 20%.\\n2. When Crimson Abyss unleashes swordwaves, the Base DMG of Crimson Weave's swordwaves increase by 500%.","ShowFightEventIds":[780013],"RobotId":[9161],"CharacterType":1},{"StageId":30160543,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780043],"RobotId":[127101],"CharacterType":1},{"StageId":30160544,"DescDetail":"1. Triggering Dance of Emerald Flow (Dodge after a 3-Ping) will also grant all members 25% DMG Bonus.\\n2. Kowloong teammates gain 100% Extra DMG Bonus.","ShowFightEventIds":[780043],"RobotId":[127101],"CharacterType":1},{"StageId":30160545,"DescDetail":"1. For every 4 Dancer Points consumed, the entire team gets 200% DMG Bonus for 15s.\\n2. Kowloong teammates gain 100% Extra DMG Bonus.","ShowFightEventIds":[780043],"RobotId":[127101],"CharacterType":1},{"StageId":30160546,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780013],"RobotId":[9172],"CharacterType":1},{"StageId":30160547,"DescDetail":"1. Feral gains two random Signal Orbs of the same color when Forceful Pounce or Dead-on Pounce is triggered.\\n2. Feral gains 10% Extra DMG Bonus when Dead-on Pounce is triggered. This effect can stack infinitely.","ShowFightEventIds":[780013],"RobotId":[9172],"CharacterType":1},{"StageId":30160548,"DescDetail":"1. Feral gains a set of 3-Ping Orbs when Dead-on Pounce is triggered.\\n2. Feral gains 20% Extra DMG Bonus when she casts Signature at maximum Critical Arclight. This effect can stack infinitely.","ShowFightEventIds":[780013],"RobotId":[9172],"CharacterType":1},{"StageId":30160549,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780013],"RobotId":[127420],"CharacterType":1},{"StageId":30160550,"DescDetail":"1. Noctis gains 1 set of 3-Ping Orbs when Arm Block or Perfect Arm Block is triggered.\\n2. Noctis gains 20% ATK Bonus permanently each time when he casts Lightning Smash, Lightning Punch, and Lightning Sweep.","ShowFightEventIds":[780013],"RobotId":[127420],"CharacterType":1},{"StageId":30160551,"DescDetail":"1. Noctis gains 2 Signal Orbs of different colors every second when he charges up Basic Attacks.\\n2. When Noctis casts a Signature at 3 stacks of Engine Points, he will gain 80% ATK Bonus permanently.","ShowFightEventIds":[780013],"RobotId":[127420],"CharacterType":1},{"StageId":30160552,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780043],"RobotId":[127617],"CharacterType":1},{"StageId":30160553,"DescDetail":"1. Echo gains 20% Extra DMG Bonus each time she enters Judgment Zone.\\n2. Echo gains a set of random 3-Ping Orbs each time she casts Swift Archery.","ShowFightEventIds":[780043],"RobotId":[127617],"CharacterType":1},{"StageId":30160554,"DescDetail":"1. Triggering Imprisoning Co-Strike will permanently increase Echo's Extra DMG by 20%.\\n2. Upon entering Judgment Zone, Echo gains 2 sets of 3-Ping Orbs.","ShowFightEventIds":[780043],"RobotId":[127617],"CharacterType":1},{"StageId":30160555,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780033],"RobotId":[2249],"CharacterType":1},{"StageId":30160556,"DescDetail":"1. Pinging a Torrent Orb returns 1 set of 3-Ping Orbs; Pinging a Tidal Orb returns 2 sets of 3-Ping Orbs; Pinging a Riptide Orb returns 3 sets of 3-Ping Orbs.\\n2. Whenever a Torrent Orb, Tidal Orb, or Riptide Orb is pinged, Lamia gains a 20% Extra DMG Bonus.","ShowFightEventIds":[780033],"RobotId":[2249],"CharacterType":1},{"StageId":30160557,"DescDetail":"1. After gaining a Torrent Orb, Tidal Orb, or Riptide Orb, Lamia immediately gains 2 sets of 3-Ping Orbs.\\n2. Whenever Lamia switches forms, she gains a 50% Extra DMG Bonus.","ShowFightEventIds":[780033],"RobotId":[2249],"CharacterType":1},{"StageId":30160558,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780693],"RobotId":[2252],"CharacterType":1},{"StageId":30160559,"DescDetail":"1. Gains 2 random sets of 3-Pings after casting Signature Move.\\n2. Red/Yellow 3-Pings grant BLACK★ROCK SHOOTER 20% Extra DMG Bonus.","ShowFightEventIds":[780693],"RobotId":[2252],"CharacterType":1},{"StageId":30160560,"DescDetail":"1. Gains 2 random sets of 3-Pings after casting Signature Move.\\n2. Red/Yellow 3-Pings grant BLACK★ROCK SHOOTER 20% Extra DMG Bonus.","ShowFightEventIds":[780693],"RobotId":[2252],"CharacterType":1},{"StageId":30160561,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780693],"RobotId":[2254],"CharacterType":1},{"StageId":30160562,"DescDetail":"1. When Watanabe: Epitaph consumes a Blaze Orb, Matrix cooldown decreases by 50%.\\n2. Watanabe: Epitaph permanently gains 30% Extra DMG Bonus upon a successful Parry, and the Shield gained from Parry additionally grants Super Armor.","ShowFightEventIds":[780693],"RobotId":[2254],"CharacterType":1},{"StageId":30160563,"DescDetail":"1. For every Cartridge gained, Watanabe: Epitaph gains a random set of 3-Ping Orbs.\\n2. For every Cartridge consumed, Watanabe: Epitaph permanently gains 30% Extra DMG Bonus.","ShowFightEventIds":[780693],"RobotId":[2254],"CharacterType":1},{"StageId":30160564,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780023],"RobotId":[2257],"CharacterType":1},{"StageId":30160565,"DescDetail":"1. Upon activating Into the Fray, Qu gains 2 random sets of 3-Ping Orbs.\\n2. After casting Enlightened Soul, Qu gains 30% Extra DMG Bonus permanently.","ShowFightEventIds":[780023],"RobotId":[2257],"CharacterType":1},{"StageId":30160566,"DescDetail":"1. For each 3-Ping made during Enthronement, Qu gains the corresponding 3-Ping Orbs after casting Sovereign's Presence.\\n2. Qu gains 2 sets of 3-Ping Orbs when casting Will Bearer, and gains 50% Extra DMG Bonus permanently when casting Mountain Caller.","ShowFightEventIds":[780023],"RobotId":[2257],"CharacterType":1},{"StageId":30100028,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780033],"RobotId":[2260],"CharacterType":1},{"StageId":30100029,"DescDetail":"1. After casting her Phase 1 Signature Move, Teddy gains 30% Extra DMG Bonus permanently.\\n2. After casting her Phase 2 Signature Move, Teddy gains 2 random sets of Signal Orbs back.","ShowFightEventIds":[780033],"RobotId":[2260],"CharacterType":1},{"StageId":30100030,"DescDetail":"1. After casting her Phase 1 or Phase 2 Signature Move, Teddy gains 30% Extra DMG Bonus permanently.\\n2. After casting her Phase 2 Signature Move, Teddy gains 2 random sets of Signal Orbs back.","ShowFightEventIds":[780033],"RobotId":[2260],"CharacterType":1},{"StageId":30100037,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[752117],"RobotId":[2262],"CharacterType":1},{"StageId":30100038,"DescDetail":"1. Luna: Oblivion gains 1 set of Signal Orbs/1 Finality Orb with every Basic Attack.\\n2. A successful Dodge will increase Crescent Points and Eclipse Points to the maximum.","ShowFightEventIds":[752117],"RobotId":[2262],"CharacterType":1},{"StageId":30100039,"DescDetail":"1. When Luna: Oblivion activates Reaping Moon, she gains 1 set of Signal Orbs/1 Finality Orb every second.\\n2. Permanently gains 2% Extra DMG Bonus for every 10 Eclipse Points consumed.","ShowFightEventIds":[752117],"RobotId":[2262],"CharacterType":1},{"StageId":30100046,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780003],"RobotId":[2265],"CharacterType":1},{"StageId":30100047,"DescDetail":"1. Bridget gains 1 Blue Orb and 1 Red Orb with every Basic Attack.\\n2. After Bridget performs her Signature, she gains 30% Extra DMG Bonus and 50% Ignition DMG Bonus permanently.","ShowFightEventIds":[780003],"RobotId":[2265],"CharacterType":1},{"StageId":30100048,"DescDetail":"1. Bridget gains 1 Blue Orb and 1 Red Orb with every Basic Attack.\\n2. After Bridget uses Red Orb to precisely counter, she gains 20% Extra DMG Bonus permanently.\\n3. After Bridget performs her Signature, she gains 50% Ignition DMG Bonus permanently.","ShowFightEventIds":[780003],"RobotId":[2265],"CharacterType":1},{"StageId":30100059,"DescDetail":"Defeat enemies!","ShowFightEventIds":[780043],"RobotId":[2267],"CharacterType":1},{"StageId":30100060,"DescDetail":"1. Hanying: Solacetune gains 3 Signal Orbs for each Basic Attack.\\n2. Hanying: Solacetune gains 120 Sonority, 60 Energy, and a 50% Extra DMG Bonus when casting Moon Chill. This effect can be stacked.","ShowFightEventIds":[780043],"RobotId":[2267],"CharacterType":1},{"StageId":30100061,"DescDetail":"1. Hanying: Solacetune gains 3 Signal Orbs for each Basic Attack.\\n2. Hanying: Solacetune gains 10% Extra DMG every time when casting Jade Bloom. This effect can be stacked.","ShowFightEventIds":[780043],"RobotId":[2267],"CharacterType":1},{"StageId":30100076,"DescDetail":"Defeat enemies!","ShowFightEventIds":[780023],"RobotId":[2271],"CharacterType":1},{"StageId":30100077,"DescDetail":"1. Wanshi: Lucid Dreamer receives 1 Signal Orb for each Basic Attack, and 3-Ping restores additional 80 Focus.\\n2. Wanshi: Lucid Dreamer's Signature increases Extra DMG by 25%. Stackable.","RobotId":[2271],"CharacterType":1},{"StageId":30100078,"DescDetail":"1. Wanshi: Lucid Dreamer receives 1 Signal Orb for each Basic Attack, and 3-Ping restores additional 80 Focus.\\n2. Wanshi: Lucid Dreamer accumulates Glaciation and Congelation 20% faster in Frigid Calibration Mode.\\n3. Wanshi: Lucid Dreamer's Arctic Ice increases his Extra DMG by 1.5%.","RobotId":[2271],"CharacterType":1},{"StageId":30100085,"DescDetail":"Defeat enemies!","ShowFightEventIds":[780003],"RobotId":[2274],"CharacterType":1},{"StageId":30100086,"DescDetail":"1. Lucia: Pyroath gains 3 Signal Orbs for every Basic Attack she performs.\\n2. When Lucia: Pyroath casts Signature - Crowd Slash or Eclipse Daybreak, her DMG is increased by 30% permanently.\\n3. Lucia: Pyroath will fully recover Quench Value every time she casts Signature - Eclipse Daybreak.","ShowFightEventIds":[780003],"RobotId":[2274],"CharacterType":1},{"StageId":30100087,"DescDetail":"1. Lucia: Pyroath recovers 3 Signal Orbs for every Basic Attack she performs. Casting Blue Orb Skill after the 5th Basic Attack hit will fully recover her Electric Charge.\\n2. When Lucia: Pyroath casts Signature - Crowd Slash or Eclipse Daybreak, her Plasma Beam DMG is increased by 50% permanently.\\n3. Lucia: Pyroath will fully recover Quench Value every time she casts Signature - Eclipse Daybreak.\\n4.Lucia: Pyroath gains Super Armor.","ShowFightEventIds":[780914],"RobotId":[2274],"CharacterType":1},{"StageId":30100095,"DescDetail":"Defeat enemies!","ShowFightEventIds":[780013],"RobotId":[2277],"CharacterType":1},{"StageId":30100096,"DescDetail":"1. Upon casting Signature of Yata: Fulgor, immediately gain 90 Heartflow.\\n2. While Yata: Fulgor is casting Night Raid, gain 15 Heartflow per second.\\n3. When casting Signature of Yata: Fulgor while in Epiphany Realm, permanently gain 50% Extra Damage.","ShowFightEventIds":[780013],"RobotId":[2277],"CharacterType":1},{"StageId":30100097,"DescDetail":"1. While Yata: Fulgor is casting Night Raid, gains an additional 50 Glaciation Value and 15 Heartflow per second.\\n2. Upon casting Signature of Yata: Fulgor, immediately gains 90 Heartflow.\\n3. When casting Signature of Yata: Fulgor while Ice Spikes are active, permanently increases Glaciation DMG by 100%.","ShowFightEventIds":[780923],"RobotId":[2277],"CharacterType":1},{"StageId":30100107,"DescDetail":"Defeat enemies!","ShowFightEventIds":[780013],"RobotId":[2278],"CharacterType":1},{"StageId":30100108,"DescDetail":"1. Cast Nanami: Startrail to gain 3 Orbs.\\n2. Nanami: Startrail: Cast Signature Move deals 50% Extra DMG (stackable).","ShowFightEventIds":[780013],"RobotId":[2279],"CharacterType":1},{"StageId":30100109,"DescDetail":"1. Cast Nanami: Startrail to gain 3 Orbs.\\n2. Nanami: Startrail: Press and hold Yellow Orb consumes 5 Starlight Points each time, increasing Ignition DMG by 3% (stackable).","ShowFightEventIds":[780917],"RobotId":[2279],"CharacterType":1},{"StageId":30100119,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[752117],"RobotId":[2281],"CharacterType":1},{"StageId":30100120,"DescDetail":"1. When Ishmael: Parhelion is equipped with a 4-piece exclusive Memory Set, tapping Dodge repeatedly during Forbidden Realm triggers Phantom Annihilation to grant double Collapse Points.\\n2. Parhelion gains an additional 20 Signature Energy when activating Forbidden Realm. Casting Signature - Silent Punishment resets Forbidden Realm's duration.\\n3. Upon triggering Phantom Annihilation, holding dodge to cast Dimensional Collapse grants a 20% Extra DMG Bonus. Stackable.","ShowFightEventIds":[752117],"RobotId":[2282],"CharacterType":1},{"StageId":30100121,"DescDetail":"1. Each time Ishmael: Parhelion consumes Phantom Points, grants a set of Signal Orbs.\\n2. Parhelion's Dimensional Collapse increases Signature - Silent Punishment's extra DMG by 50%. Stackable.\\n3. Parhelion's Signature - Silent Punishment grants 30 Signature Energy.","ShowFightEventIds":[752117],"RobotId":[2282],"CharacterType":1},{"StageId":30100125,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780033],"RobotId":[2285],"CharacterType":1},{"StageId":30100126,"DescDetail":"1. Lilith: Daemonissa gains 1 extra Yellow/Blue Orb for each phase of Basic Attack.\\n2. When Lilith: Daemonissa is in Crazy Gamble, Increase Extra DMG permanently by 7% for each tap on Red Orb. Effect can be stacked.","ShowFightEventIds":[780033],"RobotId":[2286],"CharacterType":1},{"StageId":30100127,"DescDetail":"1. Lilith: Daemonissa gains 1 extra Yellow/Blue Orb for each phase of Basic Attack.\\n2. When Lilith: Daemonissa is in Crazy Gamble, press Basic Attack to increase the Plasma Beam DMG by 2% for each Yellow Orb consumed. Effect can be stacked.","ShowFightEventIds":[780914],"RobotId":[2286],"CharacterType":1},{"StageId":30100131,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780043],"RobotId":[2288],"CharacterType":1},{"StageId":30100132,"DescDetail":"1. Selena: Pianissimo will gain a set of 3-Ping Orbs upon launching a Basic Attack.\\n2. After casting [Basic Attack - Echoing Melody], [Melodic Outburst]'s Extra DMG increases by 50%.\\n3. After successfully blocking an incoming enemy attack with [Basic Attack - Echoing Melody], Selena: Pianissimo gains 100% ATK for 8s.","ShowFightEventIds":[780043],"RobotId":[2289],"CharacterType":1},{"StageId":30100133,"DescDetail":"1. Selena: Pianissimo will gain extra 200 Glaciation Value and a set of 3-Ping Orbs upon launching a Basic Attack.\\n2. After casting [Concerto Orbs], Selena: Pianissimo will deal 10% more Glaciation DMG through [Signature - Majestic Interlude/Signature - Note of Termination].\\n3. After successfully blocking an incoming enemy attack with [Basic Attack - Echoing Melody], Selena: Pianissimo gains 100% ATK for 8s.","ShowFightEventIds":[780923],"RobotId":[2289],"CharacterType":1},{"StageId":30100139,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780033],"RobotId":[172103],"CharacterType":1},{"StageId":30100140,"DescDetail":"1. After Jetavie: Daybreak casts [Kinetic Load], Extra DMG of [Reflection Chain] and [Tectonic Revolt] increases by 50% for 10s. This duration resets every time it is triggered.\\n2. Jetavie: Daybreak gains a set of 3-Ping Orbs with every Basic Attack.\\n3. Successfully dodging an attack by releasing the charge button while Jetavie: Daybreak is in Charge Stance increases ATK by 100% for 12s. This duration resets every time it is triggered.","ShowFightEventIds":[780033],"RobotId":[172106],"CharacterType":1},{"StageId":30100141,"DescDetail":"1. After Jetavie: Daybreak casts [Flaming Gush], Base Ignition DMG of [Tectonic Revolt: Burn] increases by 1200% for 10s. This duration resets every time it is triggered.\\n2. Jetavie: Daybreak's [Kindled Blaze] inflicts an additional 5000 Combustible Charge and returns two sets of 3-Ping Orbs.\\n3. Successfully dodging an attack by releasing the charge button while Jetavie: Daybreak is in Charge Stance increases ATK by 100% for 12s. This duration resets every time it is triggered.","ShowFightEventIds":[780917],"RobotId":[172107],"CharacterType":1},{"StageId":30100148,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780043],"RobotId":[2298],"CharacterType":1},{"StageId":30100149,"DescDetail":"1. Vergil gains 20% CRIT DMG and 20% Extra DMG Bonus after casting Sin Devil Trigger, stacking up to 5 times.\\n2. In regular form, Vergil restores 3 Signal Orbs with each Basic Attack. In SDT Form, he restores 1 extra Signal Orb for each Basic Attack.\\n3. In SDT Form, Vergil gains 100% Extra DMG Bonus (cannot be stacked) that lasts until he takes hit or exits SDT Form.","ShowFightEventIds":[780043],"RobotId":[2298],"CharacterType":1},{"StageId":30100150,"DescDetail":"1. Vergil gains 10% Ultima Slash DMG after casting Sin Devil Trigger, stacking up to 500%.\\n2. In regular form, Vergil restores 3 Signal Orbs with each Basic Attack. In SDT Form, he restores 1 extra Signal Orb for each Basic Attack.\\n3. In SDT Form, Vergil gains 100% Extra DMG Bonus (cannot be stacked) that lasts until he takes hit or exits SDT Form.","ShowFightEventIds":[780920],"RobotId":[2298],"CharacterType":1},{"StageId":30100151,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780003],"RobotId":[2300],"CharacterType":1},{"StageId":30100152,"DescDetail":"1. Dante gains a 20% Fire DMG Bonus after consuming 30 DT/SDT, up to 200%.\\n2. Restores 3 Signal Orbs for each Basic Attack in normal status.","ShowFightEventIds":[780003],"RobotId":[2301],"CharacterType":1},{"StageId":30100153,"DescDetail":"1. Dante gains a 20% Ignition DMG Bonus after consuming 30 DT/SDT, up to 200%.\\n2. Restores 3 Signal Orbs for each Basic Attack in normal status.","ShowFightEventIds":[780917],"RobotId":[2301],"CharacterType":1},{"StageId":30100157,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780003],"RobotId":[2291],"CharacterType":1},{"StageId":30100158,"DescDetail":"1. Casting [Shadowhunt Tremor] will increase the Extra Fire DMG of [Hellfire Crucible], [Razor Whirlwind], [Rending Ravage], and [Scorched in Void] by 10% for 10s.\\n2. A successful counterattack with [Ashen Dance] will increase the character's ATK by 100% for 12s. Duration resets every time it is triggered.\\n3. Basic Attacks grant 1 Signal Orb.","ShowFightEventIds":[780003],"RobotId":[2292],"CharacterType":1},{"StageId":30100159,"DescDetail":"1. Casting [Shadowhunt Tremor] will increase the Extra Darkflow DMG of [Hellfire Crucible], [Razor Whirlwind], [Rending Ravage], and [Scorched in Void] by 1000% for 10s.\\n2. A successful counterattack with [Ashen Dance] will increase the character's ATK by 100% for 12s. Duration resets every time it is triggered.\\n3. [Tempered in Midnight] restores a bonus set of Red Orbs.","ShowFightEventIds":[780926],"RobotId":[2292],"CharacterType":1},{"StageId":30100163,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780033],"RobotId":[2303],"CharacterType":1},{"StageId":30100164,"DescDetail":"1. Casting [Abyssal Expansion] and [Severed Sea - Devouring Sky] increases the damage of [Final Prayer - Shadow Strangle] by 20%, up to 500%.\\n2. Each Basic Attack restores 3 Signal Orbs.","ShowFightEventIds":[780033],"RobotId":[2304],"CharacterType":1},{"StageId":30100165,"DescDetail":"1. Casting [Final Prayer: Ember Extinction] grants 200 Raydiance Value. Bianca's Raydiance Value acquisition efficiency increases by 100% throughout.\\n2. Each time when Bianca enters the Radiant Baptism Form, all DMG increases by 20%, up to 200%.\\n3. Each Basic Attack restores 3 Signal Orbs.","ShowFightEventIds":[780914,780013],"RobotId":[2304],"CharacterType":1},{"StageId":30100169,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780043],"RobotId":[2306],"CharacterType":1},{"StageId":30100170,"DescDetail":"1. Casting [Severing Finale: Rampant Shears] increases Red Orb Extra DMG by 100%, up to 1000%.\\n2. Each Basic Attack restores one set of Signal Orbs.","ShowFightEventIds":[780043],"RobotId":[2307],"CharacterType":1},{"StageId":30100171,"DescDetail":"1. Casting [Severing Finale: Rampant Shears] increases Ultima Slash DMG by 150% for 12s.\\n2. Pressing and holding Dodge to cast [Purgatory Shear] grants an extra 300 Sharp Reserve every time.\\n3. Each Basic Attack restores one set of Signal Orbs.","ShowFightEventIds":[780920],"RobotId":[2307],"CharacterType":1},{"StageId":30100176,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780043],"RobotId":[2309],"CharacterType":1},{"StageId":30100177,"DescDetail":"1. Each time a Yellow Orb skill is cast (Severing Domain, Torrential Blast, Heavy Edge, and Piercing Judgment with Sin Mark), Extra DMG increases by 50%, up to 200%, for 5s. Duration resets every time it is triggered.\\n2. Gains 3 Blue Orbs when performing Basic Attacks during Adjudication.","ShowFightEventIds":[780043],"RobotId":[2310],"CharacterType":1},{"StageId":30100178,"DescDetail":"1. Each time a Yellow Orb skill is cast (Severing Domain, Torrential Blast, Heavy Edge, and Piercing Judgment with Sin Mark), Ignition DMG increases by 50%, up to 200%, for 5s. Duration resets every time it is triggered.\\n2. Gains 3 Blue Orbs when performing Basic Attacks during Adjudication.","ShowFightEventIds":[780917],"RobotId":[2310],"CharacterType":1},{"StageId":30100182,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780013],"RobotId":[2312],"CharacterType":1},{"StageId":30100183,"DescDetail":"1. When casting [Mirrored Renewal] at 12 Delicate Heart stacks, increases Mirrored Renewal's Lightning DMG by 50%, stacking up to 500%.\\n2. During Dream Dive, a successful counterattack with [Jade Shatter] increases ATK by 100% for 8s. Duration resets every time it is triggered.\\n3. Casting [Dream Dive] or [Mirrored Renewal] grants a set of Signal Orbs.","ShowFightEventIds":[780013],"RobotId":[2313],"CharacterType":1},{"StageId":30100184,"DescDetail":"1. When casting [Mirrored Renewal] at 12 Delicate Heart stacks, increases Mirrored Renewal's Darkflow DMG by 50%, stacking up to 500%.\\n2. During Dream Dive, a successful counterattack with [Jade Shatter] increases ATK by 100% for 8s. Duration resets every time it is triggered.\\n3. Casting [Dream Dive] or [Mirrored Renewal] grants a set of Signal Orbs. Each 3-Ping grants 5 Darkflow stacks.","ShowFightEventIds":[780926],"RobotId":[2313],"CharacterType":1},{"StageId":30100189,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780023],"RobotId":[2315],"CharacterType":1},{"StageId":30100190,"DescDetail":"After recording 3 types of Neon Orbs in the Data Domain, [Data Domain: Barrier Rift] Ice DMG increases by 25%, stacking up to 250%.","ShowFightEventIds":[780023],"RobotId":[2316],"CharacterType":1},{"StageId":30100191,"DescDetail":"When Raydiance Effect is activated, Raydiance DMG from casting [Yellow Neon Orb] (Deafening Blast, Pulse Noise Penetration) increases by 300%.","ShowFightEventIds":[780914,780013],"RobotId":[2316,2321],"CharacterType":1},{"StageId":30100195,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780033],"RobotId":[2318],"CharacterType":1},{"StageId":30100196,"DescDetail":"Each Basic Attack (including charged Basic Attacks) increases Extra DMG by 50% (up to 200%) for 5s. Duration resets every time it is triggered.","ShowFightEventIds":[780033],"RobotId":[2319],"CharacterType":1},{"StageId":30100197,"DescDetail":"Each Basic Attack (including charged Basic Attacks) increases Extra DMG by 50% (up to 200%) for 5s. Duration resets every time it is triggered.","ShowFightEventIds":[780920],"RobotId":[2319],"CharacterType":1},{"StageId":30100207,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[752117],"RobotId":[2322],"CharacterType":1},{"StageId":30100208,"DescDetail":"1. After Nirvatia: Dirge casts a [Yellow Orb Skill] (Raven Ritual, Hanging Phantom, Twilight Chaos), her Nihil DMG increases by 50%, up to 200%, for 5s. Duration resets every time it is triggered.\\n2. After Nirvatia: Dirge casts a [Ravenborn Form] skill (Death Stroke, Nether Blade), she gains a set of Signal Orbs.\\n3. After Nirvatia: Dirge casts [Death's Promise], she gains a set of Signal Orbs.","ShowFightEventIds":[752117],"RobotId":[2323],"CharacterType":1},{"StageId":30100209,"DescDetail":"1. After Nirvatia: Dirge casts a [Yellow Orb Skill] (Raven Ritual, Hanging Phantom, Twilight Chaos), her Nihil DMG increases by 50%, up to 200%, for 5s. Duration resets every time it is triggered.\\n2. After Nirvatia: Dirge casts [Death's Promise], she gains two sets of Signal Orbs.","ShowFightEventIds":[752117],"RobotId":[2323],"CharacterType":1},{"StageId":30100214,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780003],"RobotId":[2325],"CharacterType":1},{"StageId":30100215,"DescDetail":"1. Each time Kamui: Aeternion casts [Press and Hold Dodge - Crown Arc] and [Press and Hold Basic Attack - Ignited Radiance] that consume Output, Fire DMG increases by 100% for 10s. Duration resets every time it is triggered.\\n2. Kamui: Aeternion gains 6 Blue Orbs after casting [Signature Move - Molten Heart].","ShowFightEventIds":[780003],"RobotId":[2326],"CharacterType":1},{"StageId":30100216,"DescDetail":"1. Each time Kamui: Aeternion casts [Press and Hold Yellow Orb - Solar Poise] and [Tap Yellow Orb - Fusion Slash] when 90 Output is available, Plasma Beam DMG increases by 50%, up to 500%.\\n2. Kamui: Aeternion gains 6 Blue Orbs after casting [Signature Move - Molten Heart].","ShowFightEventIds":[780914],"RobotId":[2326,172404,2286],"CharacterType":1},{"StageId":30100220,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780023],"RobotId":[2328],"CharacterType":1},{"StageId":30100221,"DescDetail":"1. After Lucia: Inverse Crown casts [3-Ping Yellow - Silent Night] while in Abyssborn Form, her Ice DMG increases by 50%, up to 200%, for 5s. Duration resets every time it is triggered.\\n2. After Lucia: Inverse Crown casts [Signature - Silenced Abysslight], she gains a set of Signal Orbs.","ShowFightEventIds":[780023],"RobotId":[2329],"CharacterType":1},{"StageId":30100222,"DescDetail":"1. After Lucia: Inverse Crown casts [3-Ping Yellow - Silent Night] while in Abyssborn Form, her Ignition DMG increases by 50%, up to 200%, for 5s. Duration resets every time it is triggered.\\n2. After Lucia: Inverse Crown casts [Signature - Silenced Abysslight], she gains a set of Signal Orbs.\\n3. After each [Basic Attack], Lucia: Inverse Crown gains 1 Combustible stack. While Ablaze is inactive, she also gains 1 Ablaze stack.","ShowFightEventIds":[780917],"RobotId":[2329],"CharacterType":1},{"StageId":30100226,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780013],"RobotId":[2331],"CharacterType":1},{"StageId":30100227,"DescDetail":"1. Each time Helentine: Lacrimosa casts the Aberrant Orb skill, gains 1 set of random orbs.\\n2. After Helentine: Lacrimosa casts the Aberrant Orb skill, Lightning DMG increases by 20%, up to a maximum of 200%.","ShowFightEventIds":[780013],"RobotId":[2332],"CharacterType":1},{"StageId":30100228,"DescDetail":"1. Each time Helentine: Lacrimosa casts Phase 2 Signature, gains 3 additional sets of random orbs.\\n2. After Helentine: Lacrimosa casts Signature, Glaciation DMG increases by 50%, up to a maximum of 200%.","ShowFightEventIds":[780921],"RobotId":[2332],"CharacterType":1}],"Stages":[{"StageId":30100103,"Type":17,"Name":"Basic Dodge","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100103,"FirstRewardId":30100103,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Use the Dodge techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4000],"NeedJobType":[1,2,3]},{"StageId":30100203,"Type":17,"Name":"Extreme Dodge","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics2.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":2,"LimitBuffId":1,"FirstRewardShow":30100203,"FirstRewardId":30100203,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Use the Dodge techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4000],"NeedJobType":[1,2,3]},{"StageId":30100303,"Type":17,"Name":"Swap Dodge","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics3.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":3,"LimitBuffId":1,"FirstRewardShow":30100303,"FirstRewardId":30100303,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Use the Dodge techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4001,4002,4000],"NeedJobType":[1,2,3]},{"StageId":30100503,"Type":17,"Name":"QTE Skill","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics4.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100503,"FirstRewardId":30100503,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Understand how 3-ping QTE Skill works."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4000,4100,4101],"NeedJobType":[1,2,3]},{"StageId":30100504,"Type":17,"Name":"Ping Techniques","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics5.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":2,"LimitBuffId":1,"FirstRewardShow":30100504,"FirstRewardId":30100504,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Understand how 3-ping works."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4001],"NeedJobType":[1,2,3]},{"StageId":30100704,"Type":17,"Name":"Construct Type","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics6.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":3,"LimitBuffId":1,"FirstRewardShow":30100704,"FirstRewardId":30100704,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Understand different Construct types."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4003,4004,4002],"NeedJobType":[1,2,3]},{"StageId":30100701,"Type":17,"Name":"Attacker Tutorial","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics4.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"NeedJobType":[1,2,3]},{"StageId":30100702,"Type":17,"Name":"Support Tutorial","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics5.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"NeedJobType":[1,2,3]},{"StageId":30100703,"Type":17,"Name":"Tank Tutorial","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics6.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"NeedJobType":[1,2,3]},{"StageId":30100801,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4000],"NeedJobType":[1,2,3]},{"StageId":30100802,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4001],"NeedJobType":[1,2,3]},{"StageId":30100803,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4002],"NeedJobType":[1,2,3]},{"StageId":30100804,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4005],"NeedJobType":[1,2,3]},{"StageId":30100805,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4006],"NeedJobType":[1,2,3]},{"StageId":30100806,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4007],"NeedJobType":[1,2,3]},{"StageId":30100807,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4008],"NeedJobType":[1,2,3]},{"StageId":30100808,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4009],"NeedJobType":[1,2,3]},{"StageId":30100809,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4003],"NeedJobType":[1,2,3]},{"StageId":30100810,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4004],"NeedJobType":[1,2,3]},{"StageId":30100811,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4010],"NeedJobType":[1,2,3]},{"StageId":30100812,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4011],"NeedJobType":[1,2,3]},{"StageId":30100813,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4012],"NeedJobType":[1,2,3]},{"StageId":30100814,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4013],"NeedJobType":[1,2,3]},{"StageId":30100815,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4014],"NeedJobType":[1,2,3]},{"StageId":30100816,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4015],"NeedJobType":[1,2,3]},{"StageId":30100817,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4017],"NeedJobType":[1,2,3]},{"StageId":30100818,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4016],"NeedJobType":[1,2,3]},{"StageId":30100819,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4018],"NeedJobType":[1,2,3]},{"StageId":30100820,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4019],"NeedJobType":[1,2,3]},{"StageId":30100821,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[8020],"NeedJobType":[1,2,3]},{"StageId":30100822,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4020],"NeedJobType":[1,2,3]},{"StageId":30100823,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9011],"NeedJobType":[1,2,3]},{"StageId":30100824,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9000],"NeedJobType":[1,2,3]},{"StageId":30100825,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1132],"NeedJobType":[1,2,3]},{"StageId":30100826,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1136],"NeedJobType":[1,2,3]},{"StageId":30100827,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1135],"NeedJobType":[1,2,3]},{"StageId":30100830,"Type":36,"Name":"CTL03","Description":"QTE & Character Entrance","Icon":"Assets/Product/Texture/Image/UiNewCharActivity/NewCharActivityTab03.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":3,"LimitBuffId":1,"PreStageId":[30100837],"OnlinePlayerLimit":3,"StarDesc":["Use Luna: Laurel in battle","Have all members survive.","Die no more than once."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1143,1137],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100831]},{"StageId":30100831,"Type":36,"Name":"CTL04","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiNewCharActivity/NewCharActivityTab04.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":4,"LimitBuffId":1,"PreStageId":[30100830],"OnlinePlayerLimit":3,"StarDesc":["Use Luna: Laurel in battle","Have all members survive.","Die no more than once."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1137,2205,2211],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100832,"Type":17,"Name":"T02","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1142],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100833,"Type":17,"Name":"T02","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1155],"NeedJobType":[1,2,3]},{"StageId":30100834,"Type":17,"Name":"T02","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1153],"NeedJobType":[1,2,3]},{"StageId":30100835,"Type":17,"Name":"T02","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1154],"NeedJobType":[1,2,3]},{"StageId":30100836,"Type":36,"Name":"CTL01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiNewCharActivity/NewCharActivityTab01.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Use Luna: Laurel in battle","Have all members survive.","Die no more than once."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1142],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100837]},{"StageId":30100837,"Type":36,"Name":"CTL02","Description":"Core Skill Description","Icon":"Assets/Product/Texture/Image/UiNewCharActivity/NewCharActivityTab02.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":2,"LimitBuffId":1,"PreStageId":[30100836],"OnlinePlayerLimit":3,"StarDesc":["Use Luna: Laurel in battle","Have all members survive.","Die no more than once."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1142],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100830]},{"StageId":30100850,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1166],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100851,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1165],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100856,"Type":17,"Name":"T02","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9082],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100857,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1167],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100858,"Type":36,"Name":"CTW01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiWeilaTutorial/GridWeilaTutorial2-1.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Skill Mechanism of Constructs","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9088],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100859]},{"StageId":30100859,"Type":36,"Name":"CTW02","Description":"Core Skill Description","Icon":"Assets/Product/Texture/Image/UiWeilaTutorial/GridWeilaTutorial2-2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100858],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Core Mechanism of Constructs","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9088],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100860]},{"StageId":30100860,"Type":36,"Name":"CTW03","Description":"S Vera - QTE & Character Entrance","Icon":"Assets/Product/Texture/Image/UiWeilaTutorial/GridWeilaTutorial2-3.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100859],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the QTE and Entrance Mechanism of Constructs","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9091,9088],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100861]},{"StageId":30100861,"Type":36,"Name":"CTW04","Description":"S Vera - Character Rank-up","Icon":"Assets/Product/Texture/Image/UiWeilaTutorial/GridWeilaTutorial2-4.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100860],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Rank-up Mechanism of Constructs","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9090],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100862,"Type":17,"Name":"T02","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9088],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100864,"Type":36,"Name":"T01","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiLuolanTutorial/GridLuolanTutoria1.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Core Mechanism of Constructs.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9093],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100865]},{"StageId":30100865,"Type":36,"Name":"T02","Description":"Dodge Combo","Icon":"Assets/Product/Texture/Image/UiLuolanTutorial/GridLuolanTutoria1.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100864],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's Extreme Dodge mechanism.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9093],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100866]},{"StageId":30100866,"Type":36,"Name":"T03","Description":"Advanced & Combat","Icon":"Assets/Product/Texture/Image/UiLuolanTutorial/GridLuolanTutoria1.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100865],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9095],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100867,"Type":17,"Name":"T01","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9093],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100868,"Type":36,"Name":"T01","Description":"Basic Skill","Icon":"Assets/Product/Texture/Image/UiLifuActivity/UiLifuActivityStage02.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9098],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100869]},{"StageId":30100869,"Type":36,"Name":"T02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiLifuActivity/UiLifuActivityStage02.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100868],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9098],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100870]},{"StageId":30100870,"Type":36,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiLifuActivity/UiLifuActivityStage02.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100869],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4013,9098],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100871]},{"StageId":30100871,"Type":36,"Name":"T04","Description":"Advanced & Combat","Icon":"Assets/Product/Texture/Image/UiLifuActivity/UiLifuActivityStage02.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100870],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9099],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100872,"Type":17,"Name":"T02","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9098],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100873,"Type":36,"Name":"T01","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiSelenaActivity/UiSelenaActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9102],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100874]},{"StageId":30100874,"Type":36,"Name":"T02","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiSelenaActivity/UiSelenaActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100873],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9106,9103],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100875]},{"StageId":30100875,"Type":36,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiSelenaActivity/UiSelenaActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100874],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9103],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100877,"Type":17,"Name":"T01","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9102],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100878,"Type":36,"Name":"T01","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiPulaoActivity/UiPulaoActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2213],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100879]},{"StageId":30100879,"Type":36,"Name":"T02","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiPulaoActivity/UiPulaoActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100878],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1135,2214],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100880]},{"StageId":30100880,"Type":36,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiPulaoActivity/UiPulaoActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100879],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2214],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100881,"Type":17,"Name":"T01","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2213],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100882,"Type":17,"Name":"Finishing Move Tutorial","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics7.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100705,"FirstRewardId":30100705,"OnlinePlayerLimit":3,"StarDesc":["Uniframes can destroy the enemy's defense.","And then use the Finishing Move on the enemy."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9093],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100883,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1142],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100884,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":3,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1143,1137],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100885,"Type":17,"Name":"T04","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":4,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1137,2205,2211],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100886,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":2,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1155],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100887,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":2,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1153],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100888,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":2,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1154],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100889,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":2,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1153,1155],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100890,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":2,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1154,1153],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100891,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":2,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1155,1154],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100892,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9082],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100893,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1129,9082],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100894,"Type":17,"Name":"T04","Description":"Advanced & Actual Combat","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9086],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100895,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9088],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100896,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9091,9088],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100897,"Type":17,"Name":"T04","Description":"Advanced & Actual Combat","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9090],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100898,"Type":17,"Name":"T02","Description":"Dodge Combo","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9093],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100899,"Type":17,"Name":"T03","Description":"Advanced & Actual Combat","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9095],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100900,"Type":17,"Name":"T01","Description":"Basic Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9098],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100901,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4013,9098],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100902,"Type":17,"Name":"T04","Description":"Advanced & Actual Combat","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9099],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100903,"Type":17,"Name":"T02","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9106,9103],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100904,"Type":17,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9103],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100905,"Type":17,"Name":"T02","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1135,2214],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100906,"Type":17,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2214],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100907,"Type":36,"Name":"T01","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiNanamiActivity/UiNanamiActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2216],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100908]},{"StageId":30100908,"Type":36,"Name":"T02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiNanamiActivity/UiNanamiActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100907],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2216],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100909]},{"StageId":30100909,"Type":36,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiNanamiActivity/UiNanamiActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100908],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9098,2217],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100910]},{"StageId":30100910,"Type":36,"Name":"T04","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiNanamiActivity/UiNanamiActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100909],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2217],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100911,"Type":17,"Name":"T01","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2216],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100912]},{"StageId":30100912,"Type":17,"Name":"T02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100911],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2216],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100913]},{"StageId":30100913,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100912],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9098,2217],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100914]},{"StageId":30100914,"Type":17,"Name":"T04","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100913],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2217],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100915,"Type":36,"Name":"T01","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiHachamaActivity/UiHachamaActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2220],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100916]},{"StageId":30100916,"Type":36,"Name":"T02","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiHachamaActivity/UiHachamaActivityBtnTeaching002.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100915],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9086,2221],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100917]},{"StageId":30100917,"Type":36,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiHachamaActivity/UiHachamaActivityBtnTeaching003.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100916],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2221],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100918,"Type":17,"Name":"T01","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2220],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100919]},{"StageId":30100919,"Type":17,"Name":"T02","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100918],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9086,2221],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100920]},{"StageId":30100920,"Type":17,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100919],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2221],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100921,"Type":17,"Name":"Dawn - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2225,9090],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100922,"Type":17,"Name":"Palefire - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2224],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100923,"Type":17,"Name":"Luminance - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2227,1156],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100924,"Type":36,"Name":"Scire - T01","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiSuperKareninaActivity/UiSuperKareninaActivityTutorial001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2229],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100925]},{"StageId":30100925,"Type":36,"Name":"Scire - T02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiSuperKareninaActivity/UiSuperKareninaActivityTutorial002.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100924],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2229],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100926]},{"StageId":30100926,"Type":36,"Name":"Scire - T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiSuperKareninaActivity/UiSuperKareninaActivityTutorial003.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100925],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9103,2230],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100927]},{"StageId":30100927,"Type":36,"Name":"Scire - T04","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiSuperKareninaActivity/UiSuperKareninaActivityTutorial004.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100926],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2230],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100928,"Type":17,"Name":"Scire - T01","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2229],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100929]},{"StageId":30100929,"Type":17,"Name":"Scire - T02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100928],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2229],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100930]},{"StageId":30100930,"Type":17,"Name":"Scire - T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100929],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9103,2230],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100931]},{"StageId":30100931,"Type":17,"Name":"Scire - T04","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100930],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2230],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100068]},{"StageId":30100932,"Type":17,"Name":"Astral - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2232],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100933,"Type":36,"Name":"T01","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiNoanActivity/UiNoanActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9113],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100934]},{"StageId":30100934,"Type":36,"Name":"T02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiNoanActivity/UiNoanActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100933],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9113],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100935]},{"StageId":30100935,"Type":36,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiNoanActivity/UiNoanActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100934],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9114],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100936,"Type":17,"Name":"T01","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9113],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100937]},{"StageId":30100937,"Type":17,"Name":"T02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100936],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9113],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100938]},{"StageId":30100938,"Type":17,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100937],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9114],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100939,"Type":17,"Name":"Rigor - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1156,2235],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100940,"Type":17,"Name":"B1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9118],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100941]},{"StageId":30100941,"Type":17,"Name":"B2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100940],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9118],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100942]},{"StageId":30100942,"Type":17,"Name":"B3","Description":"Signature Move","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100941],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9118],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100943]},{"StageId":30100943,"Type":17,"Name":"B4","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100942],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9119],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100088]},{"StageId":30100944,"Type":36,"Name":"B1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UISuperBiancaActivity/UISuperBiancaActivityLevelTutorial.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9118],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100945]},{"StageId":30100945,"Type":36,"Name":"B2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UISuperBiancaActivity/UISuperBiancaActivityLevelTutorial.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100944],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9118],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100946]},{"StageId":30100946,"Type":36,"Name":"B3","Description":"Signature Move","Icon":"Assets/Product/Texture/Image/UISuperBiancaActivity/UISuperBiancaActivityLevelTutorial.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100945],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9118],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100947]},{"StageId":30100947,"Type":36,"Name":"B4","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UISuperBiancaActivity/UISuperBiancaActivityLevelTutorial.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100946],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9119],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100948,"Type":17,"Name":"N1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":166,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9133],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100949]},{"StageId":30100949,"Type":17,"Name":"N2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":166,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100948],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9131],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100950]},{"StageId":30100950,"Type":17,"Name":"N3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":166,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100949],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9131],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100951,"Type":36,"Name":"EX-01","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiBombinataMain/UiBombinatateaching01.png","BgmId":166,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9133],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100952]},{"StageId":30100952,"Type":36,"Name":"EX-02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiBombinataMain/UiBombinatateaching02.png","BgmId":166,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100951],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9131],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100953]},{"StageId":30100953,"Type":36,"Name":"EX-03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiBombinataMain/UiBombinatateaching03.png","BgmId":166,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100952],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9131],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100954,"Type":17,"Name":"T-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2240],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100955]},{"StageId":30100955,"Type":17,"Name":"T-2","Description":"Advanced Basics","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100954],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2240],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100956]},{"StageId":30100956,"Type":17,"Name":"T-3","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100955],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2241],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100957]},{"StageId":30100957,"Type":17,"Name":"T-4","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100956],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2241],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100958,"Type":36,"Name":"T-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiLeeActivity/UiLeeActivityBtnTeaching001.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2240],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100959]},{"StageId":30100959,"Type":36,"Name":"T-2","Description":"Advanced Basics","Icon":"Assets/Product/Texture/Image/UiLeeActivity/UiLeeActivityBtnTeaching001.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100958],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2240],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100960]},{"StageId":30100960,"Type":36,"Name":"T-3","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiLeeActivity/UiLeeActivityBtnTeaching001.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100959],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2241],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100961]},{"StageId":30100961,"Type":36,"Name":"T-4","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiLeeActivity/UiLeeActivityBtnTeaching001.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100960],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2241],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100962,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":184,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9147],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100963]},{"StageId":30100963,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":184,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100962],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9147],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100964]},{"StageId":30100964,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":184,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100963],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9147],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100965,"Type":36,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiAylaActivity/UiAylaActivityBtnTeaching001.png","BgmId":184,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9147],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100966]},{"StageId":30100966,"Type":36,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiAylaActivity/UiAylaActivityBtnTeaching001.png","BgmId":184,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100965],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9147],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100967]},{"StageId":30100967,"Type":36,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiAylaActivity/UiAylaActivityBtnTeaching001.png","BgmId":184,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100966],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9147],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100968,"Type":17,"Name":"Rozen - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127100,0,1142],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100969,"Type":17,"Name":"B-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":226,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9161],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100970]},{"StageId":30100970,"Type":17,"Name":"B-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":226,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100969],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9161],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100971]},{"StageId":30100971,"Type":17,"Name":"B-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":226,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100970],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9161],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100099]},{"StageId":30100099,"Type":17,"Name":"B-4","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":226,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100971],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9239],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100972,"Type":36,"Name":"B-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiLuciaActivity/UiLuciaActivityBtnTeaching001.png","BgmId":226,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9161],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100973]},{"StageId":30100973,"Type":36,"Name":"B-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiLuciaActivity/UiLuciaActivityBtnTeaching001.png","BgmId":226,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100972],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9161],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100974]},{"StageId":30100974,"Type":36,"Name":"B-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiLuciaActivity/UiLuciaActivityBtnTeaching001.png","BgmId":226,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100973],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9161],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100975,"Type":17,"Name":"H-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":243,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127101],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100976]},{"StageId":30100976,"Type":17,"Name":"H-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":243,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100975],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127101],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100977]},{"StageId":30100977,"Type":17,"Name":"H-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":243,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100976],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127101],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100978,"Type":36,"Name":"H-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiHanyingActivity/UiHanyingActivityBtnTeaching001.png","BgmId":100,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127101],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100979]},{"StageId":30100979,"Type":36,"Name":"H-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiHanyingActivity/UiHanyingActivityBtnTeaching001.png","BgmId":100,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100978],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127101],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100980]},{"StageId":30100980,"Type":36,"Name":"H-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiHanyingActivity/UiHanyingActivityBtnTeaching001.png","BgmId":100,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100979],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127101],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100981,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":245,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9172],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100982]},{"StageId":30100982,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":245,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100981],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9172],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100983]},{"StageId":30100983,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":245,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100982],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9172],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100984,"Type":36,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/Ui21HaoActivity/Ui21HaoActivityBtnTeaching001.png","BgmId":100,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9172],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100985]},{"StageId":30100985,"Type":36,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/Ui21HaoActivity/Ui21HaoActivityBtnTeaching001.png","BgmId":100,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100984],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9172],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100986]},{"StageId":30100986,"Type":36,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/Ui21HaoActivity/Ui21HaoActivityBtnTeaching001.png","BgmId":100,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100985],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9172],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100987,"Type":17,"Name":"Pulse - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9173],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100988,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":258,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127420],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100989]},{"StageId":30100989,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":258,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100988],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127420],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100990]},{"StageId":30100990,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":258,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100989],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127420],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100991,"Type":36,"Name":"A1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UINoktiActivity/UINoktiActivityLevelTutoria.png","BgmId":258,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127420],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100992]},{"StageId":30100992,"Type":36,"Name":"A2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UINoktiActivity/UINoktiActivityLevelTutoria.png","BgmId":258,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100991],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127420],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100993]},{"StageId":30100993,"Type":36,"Name":"A3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UINoktiActivity/UINoktiActivityLevelTutoria.png","BgmId":258,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100992],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127420],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100994,"Type":17,"Name":"Crimson Abyss - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9186],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100995,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":273,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127617],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100996]},{"StageId":30100996,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":273,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100995],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127617],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100997]},{"StageId":30100997,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":273,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100996],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127618],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100135]},{"StageId":30100135,"Type":17,"Name":"A-4","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":273,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100997],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9243],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100998,"Type":36,"Name":"A1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIEchoActivity/UIEchoActivityLevel1Tutorial.png","BgmId":273,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127617],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100999]},{"StageId":30100999,"Type":36,"Name":"A2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIEchoActivity/UIEchoActivityLevel2Tutorial.png","BgmId":273,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100998],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127617],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100000]},{"StageId":30100000,"Type":36,"Name":"A3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIEchoActivity/UIEchoActivityLevel3Tutorial.png","BgmId":273,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100999],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127618],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100001,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":296,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2249],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100002]},{"StageId":30100002,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":296,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100001],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2249],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100003]},{"StageId":30100003,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":296,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100002],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2250],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100004,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiLamiaActivity/UILamiaActivityLevelTutoria.png","BgmId":296,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2249],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100005]},{"StageId":30100005,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiLamiaActivity/UILamiaActivityLevelTutoria.png","BgmId":296,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100004],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2249],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100006]},{"StageId":30100006,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiLamiaActivity/UILamiaActivityLevelTutoria.png","BgmId":296,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100005],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2250],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100007,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":336,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2252],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100008]},{"StageId":30100008,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":336,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100007],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2252],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100009]},{"StageId":30100009,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":336,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100008],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2253],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100010,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIBRSActivity/UIBRSActivityLevel1Tutorial.png","BgmId":335,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2252],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100011]},{"StageId":30100011,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIBRSActivity/UIBRSActivityLevel2Tutorial.png","BgmId":335,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100010],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2252],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100012]},{"StageId":30100012,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIBRSActivity/UIBRSActivityLevel3Tutorial.png","BgmId":335,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100011],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2253],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100013,"Type":17,"Name":"Veritas - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9204],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100017,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":354,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2254],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100018]},{"StageId":30100018,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":354,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100017],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2254],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100019]},{"StageId":30100019,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":354,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100018],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2255],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100014,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":354,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2254],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100015]},{"StageId":30100015,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":354,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100014],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2254],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100016]},{"StageId":30100016,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":354,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100015],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2255],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100166]},{"StageId":30100166,"Type":17,"Name":"A-4","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":354,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100016],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[172200],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100020,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":368,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2257],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100021]},{"StageId":30100021,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":368,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100020],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2257],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100022]},{"StageId":30100022,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":368,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100021],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2258],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100023,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":368,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2257],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100024]},{"StageId":30100024,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":368,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100023],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2257],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100025]},{"StageId":30100025,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":368,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100024],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2258],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100026,"Type":17,"Name":"Garnet - T05","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9212],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100027,"Type":17,"Name":"Empyrea - T05","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9219],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100031,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":379,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2260],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100032]},{"StageId":30100032,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":379,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100031],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2260],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100033]},{"StageId":30100033,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":379,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100032],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2261],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100034,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":379,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2260],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100035]},{"StageId":30100035,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":379,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100034],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2260],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100036]},{"StageId":30100036,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":379,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100035],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2261],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100040,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":391,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2262],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100041]},{"StageId":30100041,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":391,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100040],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2262],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100042]},{"StageId":30100042,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":391,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100041],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2263],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100185]},{"StageId":30100185,"Type":17,"Name":"A-4","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":391,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100042],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9244],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100043,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":391,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2262],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100044]},{"StageId":30100044,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":391,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100043],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2262],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100045]},{"StageId":30100045,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":391,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100044],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2263],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100049,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5003,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2265],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100050]},{"StageId":30100050,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":5003,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100049],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2265],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100051]},{"StageId":30100051,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5003,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100050],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2266],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100052,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":5003,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2265],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100053]},{"StageId":30100053,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":5003,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100052],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2265],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100054]},{"StageId":30100054,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":5003,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100053],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2266],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100055,"Type":36,"Name":"Disruption Effect Tutorial","Description":"Effect Tutorial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2263,2261],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100056,"Type":36,"Name":"Ignition Effect Tutorial","Description":"Effect Tutorial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2266],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100057,"Type":36,"Name":"Plasma Beam Effect Tutorial","Description":"Effect Tutorial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9229],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100058,"Type":36,"Name":"Ultima Slash Effect Tutorial","Description":"Effect Tutorial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127648],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100075,"Type":36,"Name":"Glaciation Effect Tutorial","Description":"Effect Tutorial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127649],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100098,"Type":36,"Name":"Darkflow Effect Tutorial","Description":"Effect Tutorial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127653],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30101098,"Type":36,"Name":"Raydiance Effect Tutorial","Description":"Effect Tutorial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127660],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100062,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5015,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2267],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100063]},{"StageId":30100063,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":5015,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100062],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2267],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100064]},{"StageId":30100064,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5015,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100063],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2268],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100213]},{"StageId":30100065,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":5015,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2267],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100066]},{"StageId":30100066,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":5015,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100065],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2267],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100067]},{"StageId":30100067,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":5015,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100066],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2268],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100068,"Type":17,"Name":"Scire - T05","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100931],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9229],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100069,"Type":17,"Name":"A-1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5022,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2270],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100070]},{"StageId":30100070,"Type":17,"Name":"A-2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":5022,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100069],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2270],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100071]},{"StageId":30100071,"Type":17,"Name":"A-3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5022,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100070],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2270],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100072,"Type":36,"Name":1,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":5022,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2270],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100073]},{"StageId":30100073,"Type":36,"Name":2,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":5022,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100072],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2270],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100074]},{"StageId":30100074,"Type":36,"Name":3,"Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":5022,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100073],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2270],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100079,"Type":17,"Name":"A-1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5040,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2273],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100080]},{"StageId":30100080,"Type":17,"Name":"A-2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":5040,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100079],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2273],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100081]},{"StageId":30100081,"Type":17,"Name":"A-3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5040,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100080],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2273],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100082,"Type":36,"Name":1,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":5040,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2273],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100083]},{"StageId":30100083,"Type":36,"Name":2,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":5040,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100082],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2273],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100084]},{"StageId":30100084,"Type":36,"Name":3,"Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":5040,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100083],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2273],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100088,"Type":17,"Name":"B5","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100943],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9238],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100089,"Type":17,"Name":"A-1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5053,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2277],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100090]},{"StageId":30100090,"Type":17,"Name":"A-2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":5053,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100089],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2277],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100091]},{"StageId":30100091,"Type":17,"Name":"A-3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5053,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100090],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2277],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100092,"Type":36,"Name":1,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":5053,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2277],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100093]},{"StageId":30100093,"Type":36,"Name":2,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":5053,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100092],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2277],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100094]},{"StageId":30100094,"Type":36,"Name":3,"Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":5053,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100093],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2277],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100110,"Type":17,"Name":"A-1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2278],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100111]},{"StageId":30100111,"Type":17,"Name":"A-2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100110],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2278],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100112]},{"StageId":30100112,"Type":17,"Name":"A-3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100111],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2278],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[]},{"StageId":30100104,"Type":36,"Name":1,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2278],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100105]},{"StageId":30100105,"Type":36,"Name":2,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100104],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2278],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100106]},{"StageId":30100106,"Type":36,"Name":3,"Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100105],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2278],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100116,"Type":36,"Name":1,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3CibeizheActivity/UiR3CibeizheActivityTutorial01.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the level with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2281],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100117]},{"StageId":30100117,"Type":36,"Name":2,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3CibeizheActivity/UiR3CibeizheActivityTutorial02.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100116],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the level with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2281],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100118]},{"StageId":30100118,"Type":36,"Name":3,"Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3CibeizheActivity/UiR3CibeizheActivityTutorial03.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100117],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the level with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2284],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100122,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3LilithActivityV301/UiR3LilithActivityTutorial01.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2285],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100134]},{"StageId":30100124,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3LilithActivityV301/UiR3LilithActivityTutorial01.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100134],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2285],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100128,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5SailinnaActivityV302/UiR5SailinnaActivityTutorial01.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2288],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100129]},{"StageId":30100129,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5SailinnaActivityV302/UiR5SailinnaActivityTutorial01.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100128],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2288],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100130]},{"StageId":30100130,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5SailinnaActivityV302/UiR5SailinnaActivityTutorial01.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100129],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2288],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100134,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3LilithActivityV301/UiR3LilithActivityTutorial01.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100122],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2285],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100124]},{"StageId":30100136,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR2JietaweiActivityV303/UiR2JietaweiActivityTutorial01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[172103],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100137]},{"StageId":30100137,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR2JietaweiActivityV303/UiR2JietaweiActivityTutorial01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100136],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[172103],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100138]},{"StageId":30100138,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR2JietaweiActivityV303/UiR2JietaweiActivityTutorial01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100137],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[172103],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100142,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3VergilActivityV305/UiR3VergilActivityTutorial01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2297],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100143]},{"StageId":30100143,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3VergilActivityV305/UiR3VergilActivityTutorial02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100142],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2297],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100144]},{"StageId":30100144,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3VergilActivityV305/UiR3VergilActivityTutorial03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100143],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2297],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100145,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3DanteActivityV305/UiR3DanteActivityTutorial01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2300],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100146]},{"StageId":30100146,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3DanteActivityV305/UiR3DanteActivityTutorial02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100145],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2300],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100147]},{"StageId":30100147,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3DanteActivityV305/UiR3DanteActivityTutorial03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100146],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2300],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100154,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV304/UiR4WeilaActivityTutorial01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2291],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100155]},{"StageId":30100155,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV304/UiR4WeilaActivityTutorial02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100154],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2291],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100156]},{"StageId":30100156,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV304/UiR4WeilaActivityTutorial03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100155],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2291],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100160,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV306/UiR4BiankaActivityJdGk01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2303],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100161]},{"StageId":30100161,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV306/UiR4BiankaActivityJdGk02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100160],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2303],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100162]},{"StageId":30100162,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV306/UiR4BiankaActivityJdGk03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100161],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2303],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100167,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WxiezouActivityV307/UiR4xiezouActivityJdGk01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2306],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100168]},{"StageId":30100168,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WxiezouActivityV307/UiR4xiezouActivityJdGk02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100167],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2306],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100172]},{"StageId":30100172,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WxiezouActivityV307/UiR4xiezouActivityJdGk03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100168],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2306],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100173,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiR3WeiluonikaActivityJdGk01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2309],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100174]},{"StageId":30100174,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiR3WeiluonikaActivityJdGk02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100173],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2309],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100175]},{"StageId":30100175,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiR3WeiluonikaActivityJdGk03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100174],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2309],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[2]},{"StageId":30100179,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiR5LifuActivityJdGk01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2312],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100180]},{"StageId":30100180,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiR5LifuActivityJdGk02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100179],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2312],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100181]},{"StageId":30100181,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiR5LifuActivityJdGk03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100180],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2313],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[6]},{"StageId":30100186,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiR3BuouxiongActivityJdGk01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2315],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100187]},{"StageId":30100187,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiR3BuouxiongActivityJdGk02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100186],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2315],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100188]},{"StageId":30100188,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiR3BuouxiongActivityJdGk03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100187],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2316],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[7]},{"StageId":30100192,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaMainV402Bg29.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2318],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100193]},{"StageId":30100193,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaMainV402Bg29.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100192],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2319],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100194]},{"StageId":30100194,"Type":36,"Name":"A3","Description":"Effect Process","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaMainV402Bg29.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100193],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2319],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[3]},{"StageId":30100204,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaMainV403Bg28.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2322],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100205]},{"StageId":30100205,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaMainV403Bg28.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100204],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2322],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100206]},{"StageId":30100206,"Type":36,"Name":"A3","Description":"Effect Process","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaMainV403Bg28.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100205],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2323],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[1]},{"StageId":30100210,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2325],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100211]},{"StageId":30100211,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100210],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2325],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100212]},{"StageId":30100212,"Type":36,"Name":"A3","Description":"Effect Process","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100211],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[172404,2325],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[4]},{"StageId":30100213,"Type":17,"Name":"A-4","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5015,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100064],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9245],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100217,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaMainV40515.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2328],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100218]},{"StageId":30100218,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaMainV40515.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100217],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2328],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100219]},{"StageId":30100219,"Type":36,"Name":"A3","Description":"Effect Process","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaMainV40515.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100218],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2328],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[2]},{"StageId":30100223,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineActivityTutorial.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2331],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100224]},{"StageId":30100224,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineActivityTutorial.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100223],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2331],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100225]},{"StageId":30100225,"Type":36,"Name":"A3","Description":"Effect Process","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineActivityTutorial.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100224],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2331,172427],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[5]},{"StageId":30160507,"Type":36,"Name":"C01","Description":"Challenge (I)","Icon":"Assets/Product/Texture/Image/UiLuolanTutorial/GridLuolanTutoria2.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160504,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160506]},{"StageId":30160506,"Type":36,"Name":"C02","Description":"Challenge (II)","Icon":"Assets/Product/Texture/Image/UiLuolanTutorial/GridLuolanTutoria2.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160507],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160505,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160508,"Type":36,"Name":"C01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiLifuActivity/UiLifuActivityStage01.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160504,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160509]},{"StageId":30160509,"Type":36,"Name":"C02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiLifuActivity/UiLifuActivityStage01.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30160508],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160505,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160504,"Type":36,"Name":"CCW01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiWeilaTutorial/GridWeilaTutoria1-1.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160504,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160505]},{"StageId":30160505,"Type":36,"Name":"CCW02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiWeilaTutorial/GridWeilaTutoria1-2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30160504],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160505,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160510,"Type":36,"Name":"C01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiSelenaActivity/UiSelenaActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160504,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160511]},{"StageId":30160511,"Type":36,"Name":"C02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiSelenaActivity/UiSelenaActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30160510],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160505,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160512]},{"StageId":30160512,"Type":36,"Name":"C03","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiSelenaActivity/UiSelenaActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30160511],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160504,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160513,"Type":36,"Name":"C01","Description":"Challenge (I)","Icon":"Assets/Product/Texture/Image/UiPulaoActivity/UiPulaoActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160513,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160514]},{"StageId":30160514,"Type":36,"Name":"C02","Description":"Challenge (II)","Icon":"Assets/Product/Texture/Image/UiPulaoActivity/UiPulaoActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160513],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160514,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160515]},{"StageId":30160515,"Type":36,"Name":"C03","Description":"Challenge (III)","Icon":"Assets/Product/Texture/Image/UiPulaoActivity/UiPulaoActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160514],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160515,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160516,"Type":36,"Name":"C01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiNanamiActivity/UiNanamiActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160516,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160517]},{"StageId":30160517,"Type":36,"Name":"C02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiNanamiActivity/UiNanamiActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30160516],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160517,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160518]},{"StageId":30160518,"Type":36,"Name":"C03","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiNanamiActivity/UiNanamiActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30160517],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160518,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160519,"Type":36,"Name":"C01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiHachamaActivity/UiHachamaActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160519,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160520]},{"StageId":30160520,"Type":36,"Name":"C02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiHachamaActivity/UiHachamaActivityBtnChallenge002.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160519],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160520,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160521]},{"StageId":30160521,"Type":36,"Name":"C03","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiHachamaActivity/UiHachamaActivityBtnChallenge003.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160520],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160521,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160522,"Type":36,"Name":"C01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiSuperKareninaActivity/UiSuperKareninaActivityChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160519,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160523]},{"StageId":30160523,"Type":36,"Name":"C02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiSuperKareninaActivity/UiSuperKareninaActivityChallenge002.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160522],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160520,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160524]},{"StageId":30160524,"Type":36,"Name":"C03","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiSuperKareninaActivity/UiSuperKareninaActivityChallenge003.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160523],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160521,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160525,"Type":36,"Name":"C01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiNoanActivity/UiNoanActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160525,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160526]},{"StageId":30160526,"Type":36,"Name":"C02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiNoanActivity/UiNoanActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160525],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160526,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160527]},{"StageId":30160527,"Type":36,"Name":"C03","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiNoanActivity/UiNoanActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160526],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160527,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160528,"Type":36,"Name":"C1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UISuperBiancaActivity/UISuperBiancaActivityLevelChallenge.png","BgmId":155,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160529]},{"StageId":30160529,"Type":36,"Name":"C2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UISuperBiancaActivity/UISuperBiancaActivityLevelChallenge.png","BgmId":155,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160528],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160530]},{"StageId":30160530,"Type":36,"Name":"C3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UISuperBiancaActivity/UISuperBiancaActivityLevelChallenge.png","BgmId":155,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160529],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160531,"Type":36,"Name":"EX-01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiBombinataMain/UiBombinaChallenge02.png","BgmId":166,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160532]},{"StageId":30160532,"Type":36,"Name":"EX-02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiBombinataMain/UiBombinaChallenge03.png","BgmId":166,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160531],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160533]},{"StageId":30160533,"Type":36,"Name":"EX-03","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiBombinataMain/UiBombinaChallenge01.png","BgmId":166,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160532],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160534,"Type":36,"Name":"LIM-1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiLeeActivity/UiLeeActivityBtnChallenge001.png","BgmId":172,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160535]},{"StageId":30160535,"Type":36,"Name":"LIM-2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiLeeActivity/UiLeeActivityBtnChallenge001.png","BgmId":172,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160534],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160536]},{"StageId":30160536,"Type":36,"Name":"LIM-3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiLeeActivity/UiLeeActivityBtnChallenge001.png","BgmId":172,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160535],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160537,"Type":36,"Name":"C1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiAylaActivity/UiAylaActivityBtnChallenge001.png","BgmId":184,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160538]},{"StageId":30160538,"Type":36,"Name":"C2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiAylaActivity/UiAylaActivityBtnChallenge001.png","BgmId":184,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160537],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160539]},{"StageId":30160539,"Type":36,"Name":"C3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiAylaActivity/UiAylaActivityBtnChallenge001.png","BgmId":184,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160538],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160540,"Type":36,"Name":"C-1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiLuciaActivity/UiLuciaActivityBtnChallenge001.png","BgmId":34,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160541]},{"StageId":30160541,"Type":36,"Name":"C-2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiLuciaActivity/UiLuciaActivityBtnChallenge001.png","BgmId":34,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160540],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160542]},{"StageId":30160542,"Type":36,"Name":"C-3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiLuciaActivity/UiLuciaActivityBtnChallenge001.png","BgmId":35,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160541],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160543,"Type":36,"Name":"Y-1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiHanyingActivity/UiHanyingActivityBtnChallenge001.png","BgmId":49,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160544]},{"StageId":30160544,"Type":36,"Name":"Y-2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiHanyingActivity/UiHanyingActivityBtnChallenge001.png","BgmId":49,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160543],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160545]},{"StageId":30160545,"Type":36,"Name":"Y-3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiHanyingActivity/UiHanyingActivityBtnChallenge001.png","BgmId":99,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160544],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160546,"Type":36,"Name":"C-1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/Ui21HaoActivity/Ui21HaoActivityBtnChallenge001.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160547]},{"StageId":30160547,"Type":36,"Name":"C-2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/Ui21HaoActivity/Ui21HaoActivityBtnChallenge001.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160546],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160548]},{"StageId":30160548,"Type":36,"Name":"C-3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/Ui21HaoActivity/Ui21HaoActivityBtnChallenge001.png","BgmId":246,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160547],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160549,"Type":36,"Name":"C1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UINoktiActivity/UINoktiActivityLevelChallenge.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160550]},{"StageId":30160550,"Type":36,"Name":"C2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UINoktiActivity/UINoktiActivityLevelChallenge.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160549],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160551]},{"StageId":30160551,"Type":36,"Name":"C3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UINoktiActivity/UINoktiActivityLevelChallenge.png","BgmId":246,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160550],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160552,"Type":36,"Name":"C1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UIEchoActivity/UIEchoActivityLevel1Challenge.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160553]},{"StageId":30160553,"Type":36,"Name":"C2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UIEchoActivity/UIEchoActivityLevel2Challenge.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160552],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160554]},{"StageId":30160554,"Type":36,"Name":"C3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UIEchoActivity/UIEchoActivityLevel3Challenge.png","BgmId":246,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160553],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160555,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiLamiaActivity/UILamiaActivityLevelChallenge.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160556]},{"StageId":30160556,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiLamiaActivity/UILamiaActivityLevelChallenge.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160555],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160557]},{"StageId":30160557,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiLamiaActivity/UILamiaActivityLevelChallenge.png","BgmId":246,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160556],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160558,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIBRSActivity/UIBRSActivityLevel1Challenge.png","BgmId":335,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160559]},{"StageId":30160559,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIBRSActivity/UIBRSActivityLevel2Challenge.png","BgmId":335,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160558],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160560]},{"StageId":30160560,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIBRSActivity/UIBRSActivityLevel3Challenge.png","BgmId":335,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160559],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160561,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":354,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160562]},{"StageId":30160562,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":354,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160561],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160563]},{"StageId":30160563,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":354,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160562],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160564,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":368,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160565]},{"StageId":30160565,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":368,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160564],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160566]},{"StageId":30160566,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":368,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160565],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100028,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":379,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100029]},{"StageId":30100029,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":379,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100028],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100030]},{"StageId":30100030,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":379,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100029],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100037,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":391,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100038]},{"StageId":30100038,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":391,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100037],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100039]},{"StageId":30100039,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":391,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100038],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100046,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":5003,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100047]},{"StageId":30100047,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":5003,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100046],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100048]},{"StageId":30100048,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":5003,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100047],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100059,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":5015,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100060]},{"StageId":30100060,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":5015,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100059],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100061]},{"StageId":30100061,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":5015,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100060],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100076,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":5015,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100077]},{"StageId":30100077,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":5015,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100076],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100078]},{"StageId":30100078,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":5015,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100077],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100085,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":5041,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100086]},{"StageId":30100086,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":5041,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100085],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100087]},{"StageId":30100087,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":5041,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100086],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100095,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":5054,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100096]},{"StageId":30100096,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":5054,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100095],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100097]},{"StageId":30100097,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":5054,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100096],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100107,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":5054,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100108]},{"StageId":30100108,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":5054,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100107],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100109]},{"StageId":30100109,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":5054,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100108],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100119,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3CibeizheActivity/UiR3CibeizheActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100120]},{"StageId":30100120,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3CibeizheActivity/UiR3CibeizheActivityChallenge02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100119],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100121]},{"StageId":30100121,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3CibeizheActivity/UiR3CibeizheActivityChallenge03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100120],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100125,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3LilithActivityV301/UiR3LilithActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100126]},{"StageId":30100126,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3LilithActivityV301/UiR3LilithActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100125],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100127]},{"StageId":30100127,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3LilithActivityV301/UiR3LilithActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100126],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100131,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5SailinnaActivityV302/UiR5SailinnaActivityTutorial02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100132]},{"StageId":30100132,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5SailinnaActivityV302/UiR5SailinnaActivityTutorial02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100131],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100133]},{"StageId":30100133,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5SailinnaActivityV302/UiR5SailinnaActivityTutorial02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100132],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100139,"Type":36,"Name":"A1","Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR2JietaweiActivityV303/UiR2JietaweiActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100140]},{"StageId":30100140,"Type":36,"Name":"A2","Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR2JietaweiActivityV303/UiR2JietaweiActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100139],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100141]},{"StageId":30100141,"Type":36,"Name":"A3","Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR2JietaweiActivityV303/UiR2JietaweiActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100140],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100148,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3VergilActivityV305/UiR3VergilActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100149]},{"StageId":30100149,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3VergilActivityV305/UiR3VergilActivityChallenge02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100148],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100150]},{"StageId":30100150,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3VergilActivityV305/UiR3VergilActivityChallenge03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100149],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100151,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3DanteActivityV305/UiR3DanteActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100152]},{"StageId":30100152,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3DanteActivityV305/UiR3DanteActivityChallenge02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100151],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100153]},{"StageId":30100153,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3DanteActivityV305/UiR3DanteActivityChallenge03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100152],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100157,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV304/UiR4WeilaActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100158]},{"StageId":30100158,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV304/UiR4WeilaActivityChallenge02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100157],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100159]},{"StageId":30100159,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV304/UiR4WeilaActivityChallenge03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100158],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100163,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV306/UiR4BiankaActivityTzGk01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100164]},{"StageId":30100164,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV306/UiR4BiankaActivityTzGk02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100163],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100165]},{"StageId":30100165,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV306/UiR4BiankaActivityTzGk03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100164],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100169,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WxiezouActivityV307/UiR4xiezouActivityTzGk01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100170]},{"StageId":30100170,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WxiezouActivityV307/UiR4xiezouActivityTzGk02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100169],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100171]},{"StageId":30100171,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WxiezouActivityV307/UiR4xiezouActivityTzGk03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100170],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100176,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiR3WeiluonikaActivityTzGk01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100177]},{"StageId":30100177,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiR3WeiluonikaActivityTzGk02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100176],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100178]},{"StageId":30100178,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiR3WeiluonikaActivityTzGk03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100177],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[2]},{"StageId":30100182,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiR5LifuActivityTzGk01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100183]},{"StageId":30100183,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiR5LifuActivityTzGk02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100182],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100184]},{"StageId":30100184,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiR5LifuActivityTzGk03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100183],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[6]},{"StageId":30100189,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiR3BuouxiongActivityTzGk01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100190]},{"StageId":30100190,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiR3BuouxiongActivityTzGk02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100189],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100191]},{"StageId":30100191,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiR3BuouxiongActivityTzGk03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100190],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[7]},{"StageId":30100195,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaMainV402Bg28.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[9999],"NextStageId":[30100196]},{"StageId":30100196,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaMainV402Bg28.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100195],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[9999],"NextStageId":[30100197]},{"StageId":30100197,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaMainV402Bg28.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100196],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[3]},{"StageId":30100207,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaMainV403Bg29.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100208]},{"StageId":30100208,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaMainV403Bg29.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100207],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100209]},{"StageId":30100209,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaMainV403Bg29.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100208],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[1]},{"StageId":30100214,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[9999],"NextStageId":[30100215]},{"StageId":30100215,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100214],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[9999],"NextStageId":[30100216]},{"StageId":30100216,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100215],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[4]},{"StageId":30100220,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaMainV40516.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100221]},{"StageId":30100221,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaMainV40516.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100220],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100222]},{"StageId":30100222,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaMainV40516.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100221],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[2]},{"StageId":30100226,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineActivityChallenge.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[9999],"NextStageId":[30100227]},{"StageId":30100227,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineActivityChallenge.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100226],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[9999],"NextStageId":[30100228]},{"StageId":30100228,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineActivityChallenge.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100227],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[5]}],"StageLevelControls":[{"Id":8563,"StageId":30100830,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":8564,"StageId":30100831,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":9485,"StageId":30100830,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":9486,"StageId":30100831,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":9487,"StageId":30100832,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":9488,"StageId":30100833,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":9489,"StageId":30100834,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":9490,"StageId":30100835,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":9491,"StageId":30100836,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":9492,"StageId":30100837,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":9801,"StageId":30100850,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":9802,"StageId":30100851,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":9919,"StageId":30100856,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":10511,"StageId":30100858,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":10512,"StageId":30100859,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":10513,"StageId":30100860,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":10514,"StageId":30100861,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":10515,"StageId":30160504,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[550,375,250]},{"Id":10516,"StageId":30160505,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[720,375,250]},{"Id":10678,"StageId":30100864,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":10679,"StageId":30100865,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":10680,"StageId":30100866,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":10681,"StageId":30160507,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[990,375,250]},{"Id":10682,"StageId":30160506,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[680,375,250]},{"Id":11048,"StageId":30100868,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11049,"StageId":30100869,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11050,"StageId":30100870,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11051,"StageId":30100871,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[120,120,120]},{"Id":11052,"StageId":30100872,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":11054,"StageId":30160508,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[400,400,250]},{"Id":11055,"StageId":30160509,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1107,1107,250]},{"Id":11094,"StageId":30100873,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11095,"StageId":30100874,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11096,"StageId":30100875,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[120,120,120]},{"Id":11097,"StageId":30160510,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[120,120,120]},{"Id":11098,"StageId":30160511,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[550,550,550]},{"Id":11099,"StageId":30160512,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[750,750,750]},{"Id":11417,"StageId":30100882,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100705,"FirstRewardId":30100705,"MonsterLevel":[516,271,211]},{"Id":11444,"StageId":30100878,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11445,"StageId":30100879,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11446,"StageId":30100880,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[170,170,170]},{"Id":11466,"StageId":30160513,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[120,120,120]},{"Id":11467,"StageId":30160514,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[900,900,900]},{"Id":11468,"StageId":30160515,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1000,1000,1000]},{"Id":11472,"StageId":30100885,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":11473,"StageId":30100894,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":11474,"StageId":30100897,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":11475,"StageId":30100899,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":11476,"StageId":30100902,"MaxLevel":120,"RecommendationLevel":52,"MonsterLevel":[120,120,120]},{"Id":11477,"StageId":30100904,"MaxLevel":120,"RecommendationLevel":52,"MonsterLevel":[120,120,120]},{"Id":11478,"StageId":30100906,"MaxLevel":120,"RecommendationLevel":52,"MonsterLevel":[170,170,170]},{"Id":11674,"StageId":30160516,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[120,120,120]},{"Id":11675,"StageId":30160517,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[900,900,900]},{"Id":11676,"StageId":30160518,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1000,1000,1000]},{"Id":11704,"StageId":30100907,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11705,"StageId":30100908,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11706,"StageId":30100909,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11707,"StageId":30100910,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11708,"StageId":30100914,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":11913,"StageId":30100917,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":11914,"StageId":30160519,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[120,120,120]},{"Id":11915,"StageId":30160520,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,300,300]},{"Id":11916,"StageId":30160521,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[900,900,900]},{"Id":11917,"StageId":30100920,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":12010,"StageId":30100927,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":12012,"StageId":30160522,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12013,"StageId":30160523,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[600,600,600]},{"Id":12014,"StageId":30160524,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[450,450,450]},{"Id":12015,"StageId":30100931,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":12232,"StageId":30100935,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,300,300]},{"Id":12233,"StageId":30160525,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12234,"StageId":30160526,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[800,800,800]},{"Id":12235,"StageId":30160527,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12380,"StageId":30100947,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,300,300]},{"Id":12381,"StageId":30160528,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,300,300]},{"Id":12382,"StageId":30160529,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[600,600,600]},{"Id":12383,"StageId":30160530,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[400,400,400]},{"Id":12457,"StageId":30100950,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12458,"StageId":30100953,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12465,"StageId":30160531,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[345,345,345]},{"Id":12466,"StageId":30160532,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[465,465,465]},{"Id":12467,"StageId":30160533,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1110,1110,1110]},{"Id":12468,"StageId":30100943,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,300,300]},{"Id":12469,"StageId":30100938,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,300,300]},{"Id":12557,"StageId":30100957,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12558,"StageId":30100961,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12559,"StageId":30160534,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[345,345,345]},{"Id":12560,"StageId":30160535,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[465,465,465]},{"Id":12561,"StageId":30160536,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12840,"StageId":30100964,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12841,"StageId":30100967,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12858,"StageId":30160537,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[500,500,500]},{"Id":12859,"StageId":30160538,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[705,705,705]},{"Id":12860,"StageId":30160539,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1065,1065,1065]},{"Id":13011,"StageId":30100971,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":13012,"StageId":30100974,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":13061,"StageId":30160540,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[295,295,295]},{"Id":13062,"StageId":30160541,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1245,1245,1245]},{"Id":13063,"StageId":30160542,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1335,1335,1335]},{"Id":13187,"StageId":30100977,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":13193,"StageId":30100980,"MaxLevel":120,"RecommendationLevel":1,"MonsterLevel":[839,839,839]},{"Id":13194,"StageId":30160543,"MaxLevel":120,"RecommendationLevel":1,"MonsterLevel":[164,164,164]},{"Id":13195,"StageId":30160544,"MaxLevel":120,"RecommendationLevel":1,"MonsterLevel":[224,224,224]},{"Id":13196,"StageId":30160545,"MaxLevel":120,"RecommendationLevel":1,"MonsterLevel":[224,224,224]},{"Id":13324,"StageId":30100986,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[550,550,550]},{"Id":13325,"StageId":30160546,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,300,300]},{"Id":13326,"StageId":30160547,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[520,520,520]},{"Id":13327,"StageId":30160548,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1215,1215,1215]},{"Id":13333,"StageId":30100983,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[550,550,550]},{"Id":13334,"StageId":30100986,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[550,550,550]},{"Id":13485,"StageId":30100993,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[305,305,305]},{"Id":13486,"StageId":30160549,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[188,188,188]},{"Id":13487,"StageId":30160550,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[887,887,887]},{"Id":13488,"StageId":30160551,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[399,399,399]},{"Id":13553,"StageId":30100000,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[229,229,229]},{"Id":13554,"StageId":30160552,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[97,97,97]},{"Id":13555,"StageId":30160553,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[661,661,661]},{"Id":13556,"StageId":30160554,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[168,168,168]},{"Id":13693,"StageId":30100006,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[314,314,314]},{"Id":13694,"StageId":30160555,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[97,97,97]},{"Id":13695,"StageId":30160556,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[661,661,661]},{"Id":13696,"StageId":30160557,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[265,265,265]},{"Id":13810,"StageId":30100012,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[150,150,150]},{"Id":13811,"StageId":30160558,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[190,190,190]},{"Id":13812,"StageId":30160559,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[341,341,341]},{"Id":13813,"StageId":30160560,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[957,957,957]},{"Id":13852,"StageId":30100019,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[120,120,120]},{"Id":13853,"StageId":30160561,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[93,93,93]},{"Id":13854,"StageId":30160562,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[3077,3077,3077]},{"Id":13855,"StageId":30160563,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[937,937,937]},{"Id":14045,"StageId":30100045,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[244,244,244]},{"Id":14046,"StageId":30100037,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[94,94,94]},{"Id":14047,"StageId":30100038,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[179,179,179]},{"Id":14048,"StageId":30100039,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[270,270,270]},{"Id":14147,"StageId":30100064,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[259,259,259]},{"Id":14148,"StageId":30100059,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[74,74,74]},{"Id":14149,"StageId":30100060,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1574,1574,1574]},{"Id":14150,"StageId":30100061,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[175,175,175]},{"Id":14277,"StageId":30100085,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[84,84,84]},{"Id":14278,"StageId":30100086,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[90,90,90]},{"Id":14279,"StageId":30100087,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[287,287,287]}],"Robots":[{"Id":1129,"CharacterId":1021004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":13,"SkillLevel":15,"EnhanceSkillLevel":1,"RemoveSkillId":[102427],"FashionId":6210401,"WeaponId":2982001,"WeaponLevel":1,"WaferId":[3016015,3026015,3036015,3046014,3056014,3066015],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1132,"CharacterId":1141003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[114328,114329,114330],"FashionId":6000501,"WeaponId":2116001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016017,3026017,3036017,3046017,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1135,"CharacterId":1521003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6000701,"WeaponId":2134001,"WeaponLevel":30,"WeaponBeakThrough":1,"WaferId":[3016018,3026018,3036018,3046018,3056018,3066018],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1136,"CharacterId":1161002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6000603,"WeaponId":2144001,"WeaponLevel":30,"WeaponBeakThrough":1,"WaferId":[3016033,3026033,3036040,3046040,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1137,"CharacterId":1171003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6000801,"WeaponId":2176001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016019,3026019,3036019,3046019,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1142,"CharacterId":1171003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[117327,117324,117325,117326],"FashionId":6000801,"WeaponId":2174001,"WeaponLevel":30,"WeaponBeakThrough":2,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1143,"CharacterId":1061003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[106324,106325,106326,106327],"FashionId":6610305,"WeaponId":2066002,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016004,3026004,3036013,3046013,3056013,3066013],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"ShowAbility":5512,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1153,"CharacterId":1181003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[118327,118324,118325,118326],"FashionId":6000901,"WeaponId":2125001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1154,"CharacterId":1191003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[119324,119325,119326,119329],"FashionId":6001001,"WeaponId":2165001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1155,"CharacterId":1201003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[120327,120324,120325,120326],"FashionId":6001101,"WeaponId":2155001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1156,"CharacterId":1021003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6210301,"WeaponId":2026004,"WeaponLevel":25,"WaferId":[3016004,3026004,3036014,3046014,3056014,3066014],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1165,"CharacterId":1211002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[121224,121225,121226,121227],"FashionId":6001201,"WeaponId":2184001,"WeaponLevel":30,"WeaponBeakThrough":2,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1166,"CharacterId":1531003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[153324,153325,153326,153327],"FashionId":6001301,"WeaponId":2194001,"WeaponLevel":30,"WeaponBeakThrough":2,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1167,"CharacterId":1221002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[122224,122225,122226,122227],"FashionId":6001502,"WeaponId":2216001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016014,3026014,3036014,3046014,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2205,"CharacterId":1061003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[106324,106325,106326],"FashionId":6610305,"WeaponId":2066002,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016004,3026004,3036013,3046013,3056013,3066013],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"ShowAbility":5512,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2211,"CharacterId":1131002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[113224,113225,113226],"FashionId":6000304,"WeaponId":2026006,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016004,3026004,3036013,3046013,3056013,3066013],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"ShowAbility":5482,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2213,"CharacterId":1551003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[155327,155326,155325,155324],"FashionId":6002001,"WeaponId":2265001,"WeaponLevel":45,"WeaponBeakThrough":4},{"Id":2214,"CharacterId":1551003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[155327],"FashionId":6002003,"WeaponId":2266001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016026,3026026,3036026,3046026,3056026,3066026],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2215,"CharacterId":1551003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[155326,155325,155324],"FashionId":6002003,"WeaponId":2266001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016026,3026026,3036026,3046026,3056026,3066026],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2216,"CharacterId":1051004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[105426,105425,105426,105427],"FashionId":6002101,"WeaponId":2275001,"WeaponLevel":45,"WeaponBeakThrough":4},{"Id":2217,"CharacterId":1051004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6002103,"WeaponId":2276001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016027,3026027,3036027,3046027,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2218,"CharacterId":1051004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[105426,105425,105426],"FashionId":6002103,"WeaponId":2276001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016027,3026027,3036027,3046027,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2220,"CharacterId":1561003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[156327,156326,156325,156324],"FashionId":6002201,"WeaponId":2095001,"WeaponLevel":45,"WeaponBeakThrough":4},{"Id":2221,"CharacterId":1561003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6002203,"WeaponId":2096003,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016028,3026028,3036028,3046028,3056028,3066028],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2222,"CharacterId":1561003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[156326,156325,156324],"FashionId":6002203,"WeaponId":2096003,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016028,3026028,3036028,3046028,3056028,3066028],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2224,"CharacterId":1011002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6110101,"WeaponId":2016001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3015003,3025003,3035003,3045003,3055003,3065003],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2225,"CharacterId":1021002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":13,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6210201,"WeaponId":2026001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016001,3026001,3036001,3046001,3056001,3066001],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2227,"CharacterId":1031003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6310301,"WeaponId":2036003,"WeaponLevel":45,"WeaponBeakThrough":4},{"Id":2229,"CharacterId":1071004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[107424,107425,107426,107428,107429,107430],"FashionId":6002303,"WeaponId":2286001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016029,3026029,3036029,3046029,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2230,"CharacterId":1071004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[107428,107429,107430],"FashionId":6002303,"WeaponId":2286001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016029,3026029,3036029,3046029,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2232,"CharacterId":1081003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6810301,"WeaponId":2086002,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016013,3026013,3036013,3046013,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2235,"CharacterId":1141003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6000501,"WeaponId":2116001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016017,3026017,3036017,3046017,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2240,"CharacterId":1011004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[101424,101425,101426,101427],"FashionId":6002701,"WeaponId":2325001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016032,3026032,3036032,3046032,3056027,3066027],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2241,"CharacterId":1011004,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[101425,101426],"FashionId":6002703,"WeaponId":2326001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016032,3026032,3036032,3046032,3056027,3066027],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2249,"CharacterId":1271003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[127326,127325,127324],"FashionId":6003403,"WeaponId":2386001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016037,3026037,3036037,3046037,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2250,"CharacterId":1271003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6003403,"WeaponId":2386001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016037,3026037,3036037,3046037,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2252,"CharacterId":1281002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[128226,128225,128224],"FashionId":6003501,"WeaponId":2396001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016002,3026002,3036002,3046002,3056012,3066012],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2253,"CharacterId":1281002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6003501,"WeaponId":2396001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016002,3026002,3036002,3046002,3056012,3066012],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2254,"CharacterId":1081004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[108426,108425,108424,108428,108429,108430],"FashionId":6003601,"WeaponId":2406001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016038,3026038,3036038,3046038,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2255,"CharacterId":1081004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[108428,108429,108430],"FashionId":6003601,"WeaponId":2406001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016038,3026038,3036038,3046038,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2257,"CharacterId":1521004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[152426,152425,152424],"FashionId":6003701,"WeaponId":2416001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016040,3026040,3036040,3046040,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2258,"CharacterId":1521004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6003701,"WeaponId":2416001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016040,3026040,3036040,3046040,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2260,"CharacterId":1291002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[129226,129225,129224],"FashionId":6003801,"WeaponId":2426001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016004,3026004,3036013,3046013,3056013,3066013],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2261,"CharacterId":1291002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6003801,"WeaponId":2426001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016004,3026004,3036013,3046013,3056013,3066013],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2262,"CharacterId":1171004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[117426,117425,117424,117428,117429,117430],"FashionId":6003901,"WeaponId":2436001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016041,3026041,3036041,3046041,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2263,"CharacterId":1171004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[117428,117429,117430],"FashionId":6003901,"WeaponId":2436001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016041,3026041,3036041,3046041,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2265,"CharacterId":1301002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[130226,130225,130224],"FashionId":6004001,"WeaponId":2446001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016002,3026002,3036002,3046002,3056005,3066005],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2266,"CharacterId":1301002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6004001,"WeaponId":2446001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016002,3026002,3036002,3046002,3056005,3066005],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2267,"CharacterId":1241003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[124326,124325,124324,124328,124329,124330],"FashionId":6004101,"WeaponId":2456001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016042,3026042,3036042,3046042,3056008,3066008],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2268,"CharacterId":1241003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[124328,124329,124330],"FashionId":6004101,"WeaponId":2456001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016042,3026042,3036042,3046042,3056008,3066008],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2270,"CharacterId":1211003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[121326,121325,121324],"FashionId":6004201,"WeaponId":2466001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016043,3026043,3036043,3046043,3056040,3066040],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2271,"CharacterId":1211003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[121326,121325],"FashionId":6004201,"WeaponId":2466001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016043,3026043,3036043,3046043,3056040,3066040],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2273,"CharacterId":1021006,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[102626,102625,102624],"FashionId":6004301,"WeaponId":2476001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016044,3026044,3036044,3046044,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2274,"CharacterId":1021006,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[102626,102625],"FashionId":6004301,"WeaponId":2476001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016044,3026044,3036044,3046044,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2277,"CharacterId":1311002,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[131226,131225],"FashionId":6004402,"WeaponId":2486001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016003,3026003,3036003,3046003,3056034,3056034],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2278,"CharacterId":1051005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[105526,105525,105524],"FashionId":6004501,"WeaponId":2496001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016046,3026046,3036046,3046046,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2279,"CharacterId":1051005,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[105526,105525],"FashionId":6004501,"WeaponId":2496001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016046,3026046,3036046,3046046,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2281,"CharacterId":1321003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[132326,132325,132324],"FashionId":6004601,"WeaponId":2506001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016047,3026047,3036047,3046047,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2282,"CharacterId":1321003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[132326,132325],"FashionId":6004601,"WeaponId":2506001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016047,3026047,3036047,3046047,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2284,"CharacterId":1321003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6004601,"WeaponId":2506001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016047,3026047,3036047,3046047,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2285,"CharacterId":1331003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[133326,133325,133324],"FashionId":6004701,"WeaponId":2516001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016048,3026048,3036048,3046048,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2286,"CharacterId":1331003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[133326,133325],"FashionId":6004701,"WeaponId":2516001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016048,3026048,3036048,3046048,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2288,"CharacterId":1531005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[153526,153525,153524],"FashionId":6004801,"WeaponId":2526001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016049,3026049,3036049,3046049,3056014,3066014],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2289,"CharacterId":1531005,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[153526,153525],"FashionId":6004801,"WeaponId":2526001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016049,3026049,3036049,3046049,3056014,3066014],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2291,"CharacterId":1131004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[113426,113425,113424],"FashionId":6005001,"WeaponId":2546001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016051,3026051,3036051,3046051,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2292,"CharacterId":1131004,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[113426,113425],"FashionId":6005001,"WeaponId":2546001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016051,3026051,3036051,3046051,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2297,"CharacterId":1351003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[135326,135325,135324],"FashionId":6005101,"WeaponId":2556001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016014,3026014,3036014,3046014,3056008,3066008],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2298,"CharacterId":1351003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[135326,135325],"FashionId":6005101,"WeaponId":2556001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016014,3026014,3036014,3046014,3056008,3066008],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2300,"CharacterId":1361003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[136326,136325,136324],"FashionId":6005201,"WeaponId":2566001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016002,3026002,3036002,3046002,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2301,"CharacterId":1361003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[136326,136325],"FashionId":6005201,"WeaponId":2566001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016002,3026002,3036002,3046002,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2303,"CharacterId":1041005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104526,104525,104524],"FashionId":6005301,"WeaponId":2576001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016052,3026052,3036052,3046052,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2304,"CharacterId":1041005,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104526,104525],"FashionId":6005301,"WeaponId":2576001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016052,3026052,3036052,3046052,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2306,"CharacterId":1371002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[137226,137225,137224],"FashionId":6005401,"WeaponId":2586001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016014,3026014,3036014,3046014,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2307,"CharacterId":1371002,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[137226,137225],"FashionId":6005401,"WeaponId":2586001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016014,3026014,3036014,3046014,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2309,"CharacterId":1381003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[138326,138325,138324],"FashionId":6005501,"WeaponId":2596001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016053,3026053,3036053,3046053,3056010,3066010],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2310,"CharacterId":1381003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[138326,138325],"FashionId":6005501,"WeaponId":2596001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016053,3026053,3036053,3046053,3056010,3066010],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2312,"CharacterId":1031005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[103526,103525,103524],"FashionId":6005601,"WeaponId":2606001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016054,3026054,3036054,3046054,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2313,"CharacterId":1031005,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[103526,103525],"FashionId":6005601,"WeaponId":2606001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016054,3026054,3036054,3046054,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2315,"CharacterId":1291003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[129326,129325,129324],"FashionId":6005701,"WeaponId":2616001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016056,3026056,3036056,3046056,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2316,"CharacterId":1291003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[129326,129325],"FashionId":6005701,"WeaponId":2616001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016056,3026056,3036056,3046056,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2318,"CharacterId":1141004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[114426,114425,114424],"FashionId":6005801,"WeaponId":2626001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016057,3026057,3036057,3046057,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2319,"CharacterId":1141004,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[114426,114425],"FashionId":6005801,"WeaponId":2626001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016057,3026057,3036057,3046057,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2321,"CharacterId":1041005,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104526,104525],"FashionId":6005301,"WeaponId":2576001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016052,3026052,3036052,3046052,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0],"SwitchSkillGroupId":1045210},{"Id":2322,"CharacterId":1391003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[139326,139325,139324],"FashionId":6005901,"WeaponId":2636001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016059,3026059,3036059,3046059,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2323,"CharacterId":1391003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[139326,139325],"FashionId":6005901,"WeaponId":2636001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016059,3026059,3036059,3046059,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2325,"CharacterId":1061004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[106426,106425,106424],"FashionId":6006001,"WeaponId":2646001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016060,3026060,3036060,3046060,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2326,"CharacterId":1061004,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[106426,106425],"FashionId":6006001,"WeaponId":2646001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016060,3026060,3036060,3046060,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2328,"CharacterId":1021007,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[102726,102725,102724],"FashionId":6006101,"WeaponId":2656001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016061,3026061,3036061,3046061,3056015,3056015],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2329,"CharacterId":1021007,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[102726,102725],"FashionId":6006101,"WeaponId":2656001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016061,3026061,3036061,3046061,3056015,3056015],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2331,"CharacterId":1401003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[140324,140325,140326],"FashionId":6006201,"WeaponId":2666001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016063,3026063,3036063,3046063,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2332,"CharacterId":1401003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[140325,140326],"FashionId":6006201,"WeaponId":2666001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016063,3026063,3036063,3046063,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4000,"CharacterId":1021001,"CharacterLevel":25,"CharacterQuality":1,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[102127],"FashionId":6210101,"WeaponId":2023001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4001,"CharacterId":1031001,"CharacterLevel":25,"CharacterQuality":1,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[103127],"FashionId":6310101,"WeaponId":2033001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4002,"CharacterId":1051001,"CharacterLevel":25,"CharacterQuality":1,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[105127],"FashionId":6510101,"WeaponId":2053001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4003,"CharacterId":1021002,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[102227,102228,102229,102230],"FashionId":6210201,"WeaponId":2023001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4004,"CharacterId":1031002,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[103227],"FashionId":6310201,"WeaponId":2033001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4005,"CharacterId":1011002,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[101227,101228,101229,101230],"FashionId":6110101,"WeaponId":2013001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4006,"CharacterId":1071002,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[107227],"FashionId":6710101,"WeaponId":2073001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4007,"CharacterId":1041002,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[104227],"FashionId":6410101,"WeaponId":2043001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4008,"CharacterId":1081002,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[108227],"FashionId":6810101,"WeaponId":2083001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4009,"CharacterId":1061002,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[106227],"FashionId":6610101,"WeaponId":2063001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4010,"CharacterId":1061003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[106327],"FashionId":6610301,"WeaponId":2063001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4011,"CharacterId":1031003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[103327],"FashionId":6310301,"WeaponId":2033001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4012,"CharacterId":1011003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[101327],"FashionId":6110301,"WeaponId":2013001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4013,"CharacterId":1071003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[107327],"FashionId":6710301,"WeaponId":2073001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4014,"CharacterId":1051003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[105327,105328,105329,105330],"FashionId":6510301,"WeaponId":2053001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4015,"CharacterId":1021003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[102327],"FashionId":6210301,"WeaponId":2023001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4016,"CharacterId":1081003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[108327,108328,108329,108330],"FashionId":6810301,"WeaponId":2083001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4017,"CharacterId":1091002,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[109227],"FashionId":6910101,"WeaponId":2093001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4018,"CharacterId":1041003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[104327,104328,104329,104330],"FashionId":6410301,"WeaponId":2043001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4019,"CharacterId":1111002,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[111227],"FashionId":6000101,"WeaponId":2013001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4020,"CharacterId":1021004,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[102427],"FashionId":6210401,"WeaponId":2023001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4100,"CharacterId":1031001,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[103127],"FashionId":6310101,"WeaponId":2034001,"WeaponLevel":20,"WaferId":[3016010,3026011,3035006,3046010,3056011,3065006],"WaferLevel":[25,25,25,25,25,25],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4101,"CharacterId":1051001,"CharacterLevel":60,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[105127],"FashionId":6510101,"WeaponId":2055001,"WeaponLevel":30,"WeaponBeakThrough":1,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[20,20,20,20,20,20],"WaferBreakThrough":[1,1,1,1,1,1],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":8020,"CharacterId":1121002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":13,"SkillLevel":15,"EnhanceSkillLevel":1,"RemoveSkillId":[112222],"FashionId":6000201,"WeaponId":2096002,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016006,3026006,3036006,3046006,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9000,"CharacterId":1131002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[113328,113329,113330],"FashionId":6000301,"WeaponId":2980201,"WeaponLevel":1,"WaferId":[3016013,3026013,3036013,3046013,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9011,"CharacterId":1511003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[115225],"FashionId":6000403,"WeaponId":2106001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016016,3026016,3036016,3046016,3056016,3066016],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9082,"CharacterId":1121003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[112324,112325,112326,112327],"FashionId":6001401,"WeaponId":2205001,"WeaponLevel":15,"WaferId":[3016015,3026015,3036015,3046015,3056004,3056004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9086,"CharacterId":1121003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[112327],"FashionId":6001402,"WeaponId":2206001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016015,3026015,3036015,3046015,3056004,3056004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9088,"CharacterId":1131003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[113324,113325,113326,113327,113228,113229,113230],"FashionId":6001602,"WeaponId":2236001,"WeaponLevel":15,"WaferId":[3016022,3026022,3036022,3046022,3056004,3056004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9089,"CharacterId":1131003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[113324,113325,113326,113327,113228,113229,113230],"FashionId":6001602,"WeaponId":2236001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016022,3026022,3036022,3046022,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9090,"CharacterId":1131003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[113327,113228,113229,113230],"FashionId":6001602,"WeaponId":2236001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016022,3026022,3036022,3046022,3056004,3056004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9091,"CharacterId":1041003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104324,104325,104326,104327,104328,104329,104330],"FashionId":6410302,"WeaponId":2046002,"WeaponLevel":15,"WaferId":[3016003,3026003,3036003,3046003,3056003,3066003],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9093,"CharacterId":1541003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[154327,154326,154325,154324],"FashionId":6001702,"WeaponId":2226001,"WeaponLevel":15,"WaferId":[3016023,3026023,3036023,3046023,3056023,3066023],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9094,"CharacterId":1541003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[154327,154326,154325,154324,154328,154329,154330,154331,154332],"FashionId":6001702,"WeaponId":2226001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016023,3026023,3036023,3046023,3056023,3066023],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9095,"CharacterId":1541003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[154327,154328,154329,154330,154331,154332],"FashionId":6001702,"WeaponId":2225001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016023,3026023,3036023,3046023,3056023,3066023],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9098,"CharacterId":1031004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[103427,103426,103425,103424,103429,103430,103431],"FashionId":6001802,"WeaponId":2246001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016024,3026024,3036024,3046024,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9099,"CharacterId":1031004,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[103427,103426,103425,103429,103430,103431],"FashionId":6001802,"WeaponId":2246001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016024,3026024,3036024,3046024,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9102,"CharacterId":1531004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[153424,153425,153426,153427],"FashionId":6001901,"WeaponId":2254001,"WeaponLevel":1,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9103,"CharacterId":1531004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[153427],"FashionId":6001901,"WeaponId":2256001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016025,3026025,3036025,3046025,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9104,"CharacterId":1531004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[153424,153425,153426,153427],"FashionId":6001901,"WeaponId":2256001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016025,3026025,3036025,3046025,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9106,"CharacterId":1061003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[106327,106325,106326],"FashionId":6610301,"WeaponId":2066002,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016007,3026007,3036007,3046007,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9113,"CharacterId":1571003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[157324,157325,157326,157327,157330,157331,157332],"FashionId":6002401,"WeaponId":2295001,"WeaponLevel":1},{"Id":9114,"CharacterId":1571003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[157330,157331,157332],"FashionId":6002401,"WeaponId":2296001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016030,3026030,3036030,3046030,3056030,3066030],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9115,"CharacterId":1571003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[157324,157325,157326,157330,157331,157332],"FashionId":6002403,"WeaponId":2296001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016030,3026030,3036030,3046030,3056030,3066030],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9118,"CharacterId":1041004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104427,104424,104425,104426,104428,104429,104430],"FashionId":6002502,"WeaponId":2305001,"WeaponLevel":1},{"Id":9119,"CharacterId":1041004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104428,104429,104430],"FashionId":6002503,"WeaponId":2306001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016031,3026031,3036031,3046031,3056017,3066017],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9120,"CharacterId":1041004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104424,104425,104426,104428,104429,104430],"FashionId":6002503,"WeaponId":2306001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016031,3026031,3036031,3046031,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9131,"CharacterId":1231002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[123224,123225,123226,123227],"FashionId":6002602,"WeaponId":2316001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016015,3026015,3036015,3046015,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9132,"CharacterId":1231002,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[123225,123226,123227],"FashionId":6002602,"WeaponId":2316001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016015,3026015,3036015,3046015,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9133,"CharacterId":1231002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[123224,123225,123226,123227],"FashionId":6002602,"WeaponId":2315001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016015,3026015,3036015,3046015,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9147,"CharacterId":1091003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[109324,109325,109326],"FashionId":6002802,"WeaponId":2336001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016033,3026033,3036033,3046033,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9161,"CharacterId":1021005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[102526,102525,102524,102528,102529,102530,102531],"FashionId":6002902,"WeaponId":2346001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016034,3026034,3036034,3046034,3056001,3066001],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9172,"CharacterId":1221003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[122326,122325,122324],"FashionId":6003102,"WeaponId":2366001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016035,3026035,3036035,3046035,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9173,"CharacterId":1051003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6510301,"WeaponId":2056002,"WeaponLevel":45,"WeaponBeakThrough":4},{"Id":9186,"CharacterId":1021003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6210302,"WeaponId":2026004,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016014,3026014,3036014,3046014,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9204,"CharacterId":1041003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6410302,"WeaponId":2046002,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016003,3026003,3036003,3046003,3056001,3066001],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9212,"CharacterId":1131003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6001601,"WeaponId":2236001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016022,3026022,3036022,3046022,3056022,3066022],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9219,"CharacterId":1031004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[103424,103425,103426],"FashionId":6001801,"WeaponId":2246001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016024,3026024,3036024,3046024,3056004,3056004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9229,"CharacterId":1071004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[107424,107425,107426],"FashionId":6002301,"WeaponId":2286001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016029,3026029,3036029,3046029,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9238,"CharacterId":1041004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[104424,104425,104426],"FashionId":6002501,"WeaponId":2306001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016031,3026031,3036031,3046031,3056017,3066017],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9239,"CharacterId":1021005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[102524,102525,102526],"FashionId":6002901,"WeaponId":2346001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016034,3026034,3036034,3046034,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9243,"CharacterId":1261003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[126324,126325,126326],"FashionId":6003301,"WeaponId":2046003,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016036,3026046,3036046,3046046,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9244,"CharacterId":1171004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[117426,117425,117424],"FashionId":6003901,"WeaponId":2436001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016041,3026041,3036041,3046041,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9245,"CharacterId":1241003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[124324,124325,124326],"FashionId":6004101,"WeaponId":2456001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016042,3026042,3036042,3046042,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127100,"CharacterId":1131002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6000302,"WeaponId":2026006,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016007,3026007,3036007,3046007,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127101,"CharacterId":1241002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[124226,124225,124224],"FashionId":6003001,"WeaponId":2356001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016007,3026007,3036007,3046007,3056010,3066010],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127420,"CharacterId":1251002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[125226,125225,125224],"FashionId":6003201,"WeaponId":2376001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016034,3026034,3036034,3046034,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127617,"CharacterId":1261003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[126326,126325,126324,126328,126329,126330],"FashionId":6003301,"WeaponId":2046003,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016036,3026036,3036036,3046036,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127618,"CharacterId":1261003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[126328,126329,126330],"FashionId":6003301,"WeaponId":2046003,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016036,3026036,3036036,3046036,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127648,"CharacterId":1241003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[124326,124325,124324,124328,124329,124330],"FashionId":6004101,"WeaponId":2456001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016042,3026042,3036042,3046042,3056008,3066008],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127649,"CharacterId":1211003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[121326,121325,121324],"FashionId":6004201,"WeaponId":2466001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016043,3026043,3036043,3046043,3056040,3066040],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127653,"CharacterId":1021005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[102526,102525,102524],"FashionId":6002901,"WeaponId":2346001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016034,3026034,3036034,3046034,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127660,"CharacterId":1041005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104526,104525,104524],"FashionId":6005301,"WeaponId":2576001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016052,3026052,3036052,3046052,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":172103,"CharacterId":1341002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[132224,132225,132226],"FashionId":6004901,"WeaponId":2536001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016013,3026013,3036013,3046013,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":172106,"CharacterId":1341002,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[132225,132226],"FashionId":6004901,"WeaponId":2536001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016013,3026013,3036013,3046013,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":172107,"CharacterId":1341002,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[132225,132226],"FashionId":6004901,"WeaponId":2536001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016002,3026002,3036002,3046002,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":172200,"CharacterId":1081004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[108426,108425,108424],"FashionId":6003601,"WeaponId":2406001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016038,3026038,3036038,3046038,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":172404,"CharacterId":1021006,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[102626,102625,102624],"FashionId":6004301,"WeaponId":2476001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016044,3026044,3036044,3046044,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":172427,"CharacterId":1531005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[153526,153525,153524],"FashionId":6004801,"WeaponId":2526001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016049,3026049,3036049,3046049,3056014,3066014],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]}]} +{"ClientVersion":"4.6.0","GeneratedDate":"2026-07-17","SourceRevision":"bb3c34765c9d9c1c542079d536a17e82b27f3245","SourcePaths":{"Stage":"en/bytes/share/fuben/Stage.json","StageLevelControl":"en/bytes/share/fuben/StageLevelControl.json","Robot":"en/bytes/share/robot/Robot.json","PracticeChapter":"en/bytes/share/fuben/practice/PracticeChapter.json","PracticeGroup":"en/bytes/share/fuben/practice/PracticeGroup.json","PracticeActivity":"en/bytes/share/fuben/practice/PracticeActivity.json","TeachingActivity":"en/bytes/share/fuben/teaching/TeachingActivity.json","TeachingRobot":"en/bytes/share/fuben/teaching/TeachingRobot.json","EnhanceSkill":"en/bytes/share/character/enhanceskill/EnhanceSkill.json","EnhanceSkillGroup":"en/bytes/share/character/enhanceskill/EnhanceSkillGroup.json"},"SourceHashes":{"Stage":"2d71b6040d3fee4803c7ae3c67990a099d40eeba","StageLevelControl":"8beb6e894385ede2ef0458ed3e037add437a4ef1","Robot":"00586b82e0d6ddb9ba7af04d6110c40aed10faea","PracticeChapter":"db863fca549831069e3ae50ac82738aba9df94b3","PracticeGroup":"ec4dc2c9a6d1a1456e6c7e1dd87a557ba789e85c","PracticeActivity":"429b120ab987d8533f374efe4db8dbbc7bb51e2f","TeachingActivity":"59e86c0502a983445c740db4e40b281206a51f17","TeachingRobot":"5d67e9e8c46cea782280aa000e48a6c01f75afad","EnhanceSkill":"be3f508423fc0dffd28670011151615a866e4474","EnhanceSkillGroup":"d3357c23f67ac857a144faf8e7067b464a5251b8"},"ExpectedCounts":{"PracticeChapters":8,"PracticeGroups":88,"PracticeActivities":250,"TeachingActivities":49,"TeachingRobots":142,"StudyStages":467,"StageLevelControls":141,"Robots":170,"EnhanceSkills":82,"EnhanceSkillGroups":92},"PracticeGroups":[{"GroupId":1021001,"StageIds":[30100801],"LinkStageIds":[0]},{"GroupId":1031001,"StageIds":[30100802],"LinkStageIds":[0]},{"GroupId":1051001,"StageIds":[30100803],"LinkStageIds":[0]},{"GroupId":1011002,"StageIds":[30100804,30100922],"LinkStageIds":[0,0]},{"GroupId":1071002,"StageIds":[30100805],"LinkStageIds":[0]},{"GroupId":1041002,"StageIds":[30100806],"LinkStageIds":[0]},{"GroupId":1081002,"StageIds":[30100807],"LinkStageIds":[0]},{"GroupId":1061002,"StageIds":[30100808],"LinkStageIds":[0]},{"GroupId":1021002,"StageIds":[30100809,30100921],"LinkStageIds":[0,0]},{"GroupId":1031002,"StageIds":[30100810],"LinkStageIds":[0]},{"GroupId":1061003,"StageIds":[30100811],"LinkStageIds":[0]},{"GroupId":1031003,"StageIds":[30100812,30100923],"LinkStageIds":[0,0]},{"GroupId":1011003,"StageIds":[30100813],"LinkStageIds":[0]},{"GroupId":1071003,"StageIds":[30100814],"LinkStageIds":[0]},{"GroupId":1051003,"StageIds":[30100815,30100987],"LinkStageIds":[0,0]},{"GroupId":1021003,"StageIds":[30100816,30100994],"LinkStageIds":[0,0]},{"GroupId":1091002,"StageIds":[30100817],"LinkStageIds":[0]},{"GroupId":1081003,"StageIds":[30100818,30100932],"LinkStageIds":[0,0]},{"GroupId":1041003,"StageIds":[30100819,30100013],"LinkStageIds":[0,0]},{"GroupId":1111002,"StageIds":[30100820],"LinkStageIds":[0]},{"GroupId":1121002,"StageIds":[30100821],"LinkStageIds":[0]},{"GroupId":1021004,"StageIds":[30100822],"LinkStageIds":[0]},{"GroupId":1511003,"StageIds":[30100823],"LinkStageIds":[0]},{"GroupId":1131002,"StageIds":[30100824,30100968],"LinkStageIds":[0,0]},{"GroupId":1141003,"StageIds":[30100825,30100939],"LinkStageIds":[0,0]},{"GroupId":1161002,"StageIds":[30100826],"LinkStageIds":[0]},{"GroupId":1521003,"StageIds":[30100827],"LinkStageIds":[0]},{"GroupId":1171003,"StageIds":[30100883,30100832,30100884,30100885],"LinkStageIds":[0,0,0,0]},{"GroupId":1531003,"StageIds":[30100850],"LinkStageIds":[0]},{"GroupId":1211002,"StageIds":[30100851],"LinkStageIds":[0]},{"GroupId":1121003,"StageIds":[30100892,30100856,30100893,30100894],"LinkStageIds":[0,0,0,0]},{"GroupId":1221002,"StageIds":[30100857],"LinkStageIds":[0]},{"GroupId":1131003,"StageIds":[30100895,30100862,30100896,30100897,30100026],"LinkStageIds":[0,0,0,0,0]},{"GroupId":1541003,"StageIds":[30100867,30100898,30100899],"LinkStageIds":[0,0,0]},{"GroupId":1031004,"StageIds":[30100900,30100872,30100901,30100902,30100027],"LinkStageIds":[0,0,0,0,0]},{"GroupId":1531004,"StageIds":[30100877,30100903,30100904],"LinkStageIds":[0,0,0]},{"GroupId":1551003,"StageIds":[30100881,30100905,30100906],"LinkStageIds":[0,0,0]},{"GroupId":1201003,"StageIds":[30100886,30100833,30100889],"LinkStageIds":[0,0,0]},{"GroupId":1181003,"StageIds":[30100887,30100834,30100890],"LinkStageIds":[0,0,0]},{"GroupId":1191003,"StageIds":[30100888,30100835,30100891],"LinkStageIds":[0,0,0]},{"GroupId":1051004,"StageIds":[30100911,30100912,30100913,30100914],"LinkStageIds":[0,0,0,0]},{"GroupId":1561003,"StageIds":[30100918,30100919,30100920],"LinkStageIds":[0,0,0]},{"GroupId":1071004,"StageIds":[30100928,30100929,30100930,30100931,30100068],"LinkStageIds":[0,0,0,0]},{"GroupId":1571003,"StageIds":[30100936,30100937,30100938],"LinkStageIds":[0,0,0]},{"GroupId":1041004,"StageIds":[30100940,30100941,30100942,30100943,30100088],"LinkStageIds":[0,0,0,0]},{"GroupId":1231002,"StageIds":[30100948,30100949,30100950],"LinkStageIds":[0,0,0]},{"GroupId":1011004,"StageIds":[30100954,30100955,30100956,30100957],"LinkStageIds":[0,0,0,0]},{"GroupId":1091003,"StageIds":[30100962,30100963,30100964],"LinkStageIds":[0,0,0]},{"GroupId":1021005,"StageIds":[30100969,30100970,30100971,30100099],"LinkStageIds":[0,0,0]},{"GroupId":1241002,"StageIds":[30100975,30100976,30100977],"LinkStageIds":[0,0,0]},{"GroupId":1221003,"StageIds":[30100981,30100982,30100983],"LinkStageIds":[0,0,0]},{"GroupId":1251002,"StageIds":[30100988,30100989,30100990],"LinkStageIds":[0,0,0]},{"GroupId":1261003,"StageIds":[30100995,30100996,30100997,30100135],"LinkStageIds":[0,0,0]},{"GroupId":1271003,"StageIds":[30100001,30100002,30100003],"LinkStageIds":[0,0,0]},{"GroupId":1281002,"StageIds":[30100007,30100008,30100009],"LinkStageIds":[30100010,30100011,30100012]},{"GroupId":1081004,"StageIds":[30100014,30100015,30100016,30100166],"LinkStageIds":[30100017,30100018,30100019,0]},{"GroupId":1521004,"StageIds":[30100020,30100021,30100022],"LinkStageIds":[30100023,30100024,30100025]},{"GroupId":1291002,"StageIds":[30100031,30100032,30100033],"LinkStageIds":[30100034,30100035,30100036]},{"GroupId":1171004,"StageIds":[30100040,30100041,30100042,30100185],"LinkStageIds":[30100043,30100044,30100045,0]},{"GroupId":1301002,"StageIds":[30100049,30100050,30100051],"LinkStageIds":[30100052,30100053,30100054]},{"GroupId":5001001,"StageIds":[30100055],"LinkStageIds":[0,0,0]},{"GroupId":5001002,"StageIds":[30100056],"LinkStageIds":[0,0,0]},{"GroupId":5001003,"StageIds":[30100058],"LinkStageIds":[0,0,0]},{"GroupId":5001004,"StageIds":[30100057],"LinkStageIds":[0,0,0]},{"GroupId":5001005,"StageIds":[30100075],"LinkStageIds":[0,0,0]},{"GroupId":5001006,"StageIds":[30100098],"LinkStageIds":[0,0,0]},{"GroupId":5001007,"StageIds":[30101098],"LinkStageIds":[0,0,0]},{"GroupId":1241003,"StageIds":[30100062,30100063,30100064,30100213],"LinkStageIds":[30100065,30100066,30100067,0]},{"GroupId":1211003,"StageIds":[30100069,30100070,30100071],"LinkStageIds":[30100072,30100073,30100074]},{"GroupId":1021006,"StageIds":[30100079,30100080,30100081],"LinkStageIds":[30100082,30100083,30100084]},{"GroupId":1311002,"StageIds":[30100089,30100090,30100091],"LinkStageIds":[30100092,30100093,30100094]},{"GroupId":1051005,"StageIds":[30100110,30100111,30100112],"LinkStageIds":[30100104,30100105,30100106]},{"GroupId":1321003,"SkipId":20236},{"GroupId":1331003,"SkipId":20243},{"GroupId":1531005,"SkipId":20250},{"GroupId":1341002,"SkipId":20263},{"GroupId":1351003,"SkipId":20277},{"GroupId":1361003,"SkipId":20278},{"GroupId":1131004,"SkipId":20268},{"GroupId":1041005,"SkipId":20280},{"GroupId":1371002,"SkipId":20296},{"GroupId":1381003,"SkipId":20302},{"GroupId":1031005,"SkipId":20309},{"GroupId":1291003,"SkipId":20314},{"GroupId":1141004,"SkipId":20323},{"GroupId":1391003,"SkipId":20326},{"GroupId":1061004,"SkipId":20337},{"GroupId":1021007,"SkipId":20367}],"PracticeChapters":[{"Id":1,"Name":"Basic Battle","ChallengeType":1,"StageId":[30100103,30100203,30100303,30100503,30100504,30100704,30100882]},{"Id":2,"Name":"Advanced Battle","ChallengeType":2,"StageId":[30100701,30100702,30100703]},{"Id":3,"Name":"Member Battle","ChallengeType":2,"IsOpen":1},{"Id":4,"Name":"S-Rank Omniframe","ChallengeType":2,"IsOpen":1,"Groups":[1061003,1031003,1011003,1071003,1051003,1021003,1041003,1021004,1141003,1171003,1121003,1131003,1031004,1531004,1051004,1071004,1041004,1011004,1091003,1021005,1221003,1261003,1271003,1081004,1521004,1171004,1241003,1211003,1021006,1051005,1321003,1331003,1531005,1131004,1041005,1381003,1031005,1291003,1141004,1391003,1061004,1021007]},{"Id":5,"Name":"A/B-Rank Omniframe","ChallengeType":2,"IsOpen":1,"Groups":[1021001,1031001,1051001,1011002,1071002,1041002,1081002,1061002,1021002,1031002,1091002,1081003,1111002,1121002,1131002,1161002,1211002,1221002,1231002,1241002,1251002,1291002,1301002,1311002,1341002,1371002]},{"Id":6,"Name":"Uniframe","ChallengeType":2,"IsOpen":1,"Groups":[1511003,1521003,1531003,1541003,1551003,1561003,1571003]},{"Id":7,"Name":"Collab Frame","ChallengeType":2,"IsOpen":1,"Groups":[1201003,1181003,1191003,1281002,1351003,1361003]},{"Id":8,"Name":"Effect Tutorial","ChallengeType":2,"IsOpen":1,"Groups":[5001001,5001002,5001003,5001004,5001005,5001006,5001007]}],"PracticeActivities":[{"StageId":30100103},{"StageId":30100203},{"StageId":30100303},{"StageId":30100503},{"StageId":30100504},{"StageId":30100704},{"StageId":30100882},{"StageId":30100701},{"StageId":30100702},{"StageId":30100703},{"StageId":30100801},{"StageId":30100802},{"StageId":30100803},{"StageId":30100804},{"StageId":30100805},{"StageId":30100806},{"StageId":30100807},{"StageId":30100808},{"StageId":30100809},{"StageId":30100810},{"StageId":30100811},{"StageId":30100812},{"StageId":30100813},{"StageId":30100814},{"StageId":30100815},{"StageId":30100816},{"StageId":30100817},{"StageId":30100818},{"StageId":30100819},{"StageId":30100820},{"StageId":30100821},{"StageId":30100822},{"StageId":30100823},{"StageId":30100824},{"StageId":30100825},{"StageId":30100826},{"StageId":30100827},{"StageId":30100832},{"StageId":30100850},{"StageId":30100851},{"StageId":30100856},{"StageId":30100857},{"StageId":30100862},{"StageId":30100867},{"StageId":30100872},{"StageId":30100877},{"StageId":30100881},{"StageId":30100833},{"StageId":30100834},{"StageId":30100835},{"StageId":30100883},{"StageId":30100884},{"StageId":30100885},{"StageId":30100886},{"StageId":30100887},{"StageId":30100888},{"StageId":30100889},{"StageId":30100890},{"StageId":30100891},{"StageId":30100892},{"StageId":30100893},{"StageId":30100894},{"StageId":30100895},{"StageId":30100896},{"StageId":30100897},{"StageId":30100898},{"StageId":30100899},{"StageId":30100900},{"StageId":30100901},{"StageId":30100902},{"StageId":30100903},{"StageId":30100904},{"StageId":30100905},{"StageId":30100906},{"StageId":30100911},{"StageId":30100912},{"StageId":30100913},{"StageId":30100914},{"StageId":30100918},{"StageId":30100919},{"StageId":30100920},{"StageId":30100921},{"StageId":30100922},{"StageId":30100923},{"StageId":30100928},{"StageId":30100929},{"StageId":30100930},{"StageId":30100931},{"StageId":30100932},{"StageId":30100936},{"StageId":30100937},{"StageId":30100938},{"StageId":30100939},{"StageId":30100940},{"StageId":30100941},{"StageId":30100942},{"StageId":30100943},{"StageId":30100948},{"StageId":30100949},{"StageId":30100950},{"StageId":30100954},{"StageId":30100955},{"StageId":30100956},{"StageId":30100957},{"StageId":30100962},{"StageId":30100963},{"StageId":30100964},{"StageId":30100968},{"StageId":30100969},{"StageId":30100970},{"StageId":30100971},{"StageId":30100975},{"StageId":30100976},{"StageId":30100977},{"StageId":30100981},{"StageId":30100982},{"StageId":30100983},{"StageId":30100987},{"StageId":30100988},{"StageId":30100989},{"StageId":30100990},{"StageId":30100994},{"StageId":30100995},{"StageId":30100996},{"StageId":30100997},{"StageId":30100135},{"StageId":30100001},{"StageId":30100002},{"StageId":30100003},{"StageId":30100007},{"StageId":30100008},{"StageId":30100009},{"StageId":30100013},{"StageId":30100014},{"StageId":30100015},{"StageId":30100016},{"StageId":30100020},{"StageId":30100021},{"StageId":30100022},{"StageId":30100026},{"StageId":30100027},{"StageId":30100031},{"StageId":30100032},{"StageId":30100033},{"StageId":30100034},{"StageId":30100035},{"StageId":30100036},{"StageId":30100040},{"StageId":30100041},{"StageId":30100042},{"StageId":30100043},{"StageId":30100044},{"StageId":30100045},{"StageId":30100049},{"StageId":30100050},{"StageId":30100051},{"StageId":30100052},{"StageId":30100053},{"StageId":30100054},{"StageId":30100055},{"StageId":30100056},{"StageId":30100057},{"StageId":30100058},{"StageId":30100062},{"StageId":30100063},{"StageId":30100064},{"StageId":30100065},{"StageId":30100066},{"StageId":30100067},{"StageId":30100068},{"StageId":30100069},{"StageId":30100070},{"StageId":30100071},{"StageId":30100072},{"StageId":30100073},{"StageId":30100074},{"StageId":30100075},{"StageId":30100079},{"StageId":30100080},{"StageId":30100081},{"StageId":30100082},{"StageId":30100083},{"StageId":30100084},{"StageId":30100088},{"StageId":30100089},{"StageId":30100090},{"StageId":30100091},{"StageId":30100092},{"StageId":30100093},{"StageId":30100094},{"StageId":30100098},{"StageId":30100099},{"StageId":30100110},{"StageId":30100111},{"StageId":30100112},{"StageId":30100104},{"StageId":30100105},{"StageId":30100106},{"StageId":30100116},{"StageId":30100117},{"StageId":30100118},{"StageId":30100122},{"StageId":30100134},{"StageId":30100124},{"StageId":30100128},{"StageId":30100129},{"StageId":30100130},{"StageId":30100136},{"StageId":30100137},{"StageId":30100138},{"StageId":30100142},{"StageId":30100143},{"StageId":30100144},{"StageId":30100145},{"StageId":30100146},{"StageId":30100147},{"StageId":30100154},{"StageId":30100155},{"StageId":30100156},{"StageId":30101098},{"StageId":30100160},{"StageId":30100161},{"StageId":30100162},{"StageId":30100166},{"StageId":30100167},{"StageId":30100168},{"StageId":30100172},{"StageId":30100173},{"StageId":30100174},{"StageId":30100175},{"StageId":30100179},{"StageId":30100180},{"StageId":30100181},{"StageId":30100185},{"StageId":30100186},{"StageId":30100187},{"StageId":30100188},{"StageId":30100192},{"StageId":30100193},{"StageId":30100194},{"StageId":30100204},{"StageId":30100205},{"StageId":30100206},{"StageId":30100210},{"StageId":30100211},{"StageId":30100212},{"StageId":30100213},{"StageId":30100217},{"StageId":30100218},{"StageId":30100219}],"TeachingActivities":[{"Id":1,"Name":"Refraction","StageId":[30100836,30100837,30100830,30100831],"LinkStageId":[0,0,0,0],"TreasureId":[1,2,3],"TotalStars":12,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNewCharActivity/FuBenNewCharActivity.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/GridStage/GridStageNewCharActivity.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner22.png","CharacterId":1171003,"SkipIdDraw":20010,"NewCharType":1},{"Id":2,"Name":"Trailblazer Beacon","TreasureId":[4,5,6,7],"TotalStars":12,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FunbenKoroTutorial/FunbenKoroTutorial01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/GridStage/GridFunbenKoroTutorial01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FunbenKoroTutorial/FunbenKoroTutorial02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/GridStage/GridFunbenKoroTutorial02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner34.png","CharacterId":1121003,"SkipIdDraw":20010,"SkipIdChar":7403,"NewCharType":2},{"Id":3,"Name":"Warrior's Triumph","ChallengeStage":[30160504,30160505],"StageId":[30100858,30100859,30100860,30100861],"LinkStageId":[0,0,0,0],"TreasureId":[8,9,10,11],"TotalStars":6,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FunbenWeiLaTutorial/FunbenWeilaTutorial01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/GridStage/GridFunbenWeilaTutorial01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FunbenWeiLaTutorial/FunbenWeilaTutorial02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/GridStage/GridFunbenWeilaTutorial02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner42.png","CharacterId":1131003,"SkipIdDraw":20010,"SkipIdChar":7403,"SkipIdSkin":80023,"NewCharType":3,"MovieId":10020},{"Id":4,"Name":"Play of a Loner","ChallengeStage":[30160507,30160506],"StageId":[30100864,30100865,30100866],"LinkStageId":[0,0,0],"TreasureId":[12,13,14,15],"TotalStars":6,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FunbenLuolanTutorial/FunbenLuolanTutorial01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/GridStage/GridFunbenLuolanTutorial01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FunbenLuolanTutorial/FunbenLuolanTutorial02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/GridStage/GridFunbenLuolanTutorial02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner46.png","CharacterId":1541003,"SkipIdDraw":20023,"SkipIdChar":7403,"SkipIdSkin":80023,"NewCharType":4},{"Id":5,"Name":"Glimmering Life","ChallengeStage":[30160508,30160509],"StageId":[30100868,30100869,30100870,30100871],"LinkStageId":[0,0,0,0],"TreasureId":[16,17,18,19],"TotalStars":6,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLifuActivity/FuBenLifuActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLifuActivity/GridLifuActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLifuActivity/FuBenLifuActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLifuActivity/GridLifuActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner50.png","CharacterId":1031004,"SkipIdDraw":7209,"SkipIdChar":7403,"SkipIdSkin":80023,"NewCharType":5},{"Id":6,"Name":"Accompanist's Song","ChallengeStage":[30160510,30160511,30160512],"StageId":[30100873,30100874,30100875],"LinkStageId":[0,0,0],"TreasureId":[20,21,22,23],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSelenaActivity/FuBenSelenaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSelenaActivity/GridSelenaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSelenaActivity/FuBenSelenaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSelenaActivity/GridSelenaActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner54.png","CharacterId":1531004,"SkipIdDraw":7209,"SkipIdChar":82020,"SkipIdSkin":80023,"NewCharType":6},{"Id":7,"Name":"Roamer Records","ChallengeStage":[30160513,30160514,30160515],"StageId":[30100878,30100879,30100880],"LinkStageId":[0,0,0],"TreasureId":[24,25,26,27],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenPulaoActivity/FuBenPulaoActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenPulaoActivity/GridPulaoActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenPulaoActivity/FuBenPulaoActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenPulaoActivity/GridPulaoActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner56.png","CharacterId":1551003,"SkipIdDraw":7210,"SkipIdSkin":20111,"NewCharType":7,"ChallengeCondition":96000},{"Id":8,"Name":"Robo-Heart","ChallengeStage":[30160516,30160517,30160518],"StageId":[30100907,30100908,30100909,30100910],"LinkStageId":[0,0,0,0],"TreasureId":[28,29,30,31],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNanamiActivity/FuBenNanamiActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNanamiActivity/GridNanamiActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNanamiActivity/FuBenNanamiActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNanamiActivity/GridNanamiActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner66.png","CharacterId":1051004,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":8,"ChallengeCondition":96001},{"Id":9,"Name":"Godseeker's Psalm","ChallengeStage":[30160519,30160520,30160521],"StageId":[30100915,30100916,30100917],"LinkStageId":[0,0,0],"TreasureId":[32,33,34,35],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHachamaActivity/FuBenHachamaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHachamaActivity/GridHachamaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHachamaActivity/FuBenHachamaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHachamaActivity/GridHachamaActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner71.png","CharacterId":1561003,"SkipIdDraw":7210,"SkipIdSkin":20111,"NewCharType":9,"ChallengeCondition":96002},{"Id":10,"Name":"Nuclear Darkness","ChallengeStage":[30160522,30160523,30160524],"StageId":[30100924,30100925,30100926,30100927],"LinkStageId":[0,0,0,0],"TreasureId":[36,37,38,39],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperKareninaActivity/FuBenSuperKareninaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperKareninaActivity/GridSuperKareninaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperKareninaActivity/FuBenSuperKareninaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperKareninaActivity/GridSuperKareninaActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner71.png","CharacterId":1071004,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":10,"ChallengeCondition":96003},{"Id":11,"Name":"A Sinner's Confession","ChallengeStage":[30160525,30160526,30160527],"StageId":[30100933,30100934,30100935],"LinkStageId":[0,0,0],"TreasureId":[40,41,42,43],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoanActivity/FuBenNoanActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoanActivity/GridNoanActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoanActivity/FuBenNoanActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoanActivity/GridNoanActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner79.png","CharacterId":1571003,"SkipIdDraw":7210,"SkipIdSkin":20111,"NewCharType":11,"ChallengeCondition":96004},{"Id":12,"Name":"Reborn Resolve","ChallengeStage":[30160528,30160529,30160530],"StageId":[30100944,30100945,30100946,30100947],"LinkStageId":[0,0,0,0],"TreasureId":[44,45,46,47],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/FuBenSuperBiancaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/GridSuperBiancaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/FuBenSuperBiancaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/GridSuperBiancaActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner84.png","CharacterId":1041004,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":12,"ChallengeCondition":96005},{"Id":13,"Name":"Dialogues with an Existentialist","ChallengeStage":[30160531,30160532,30160533],"StageId":[30100951,30100952,30100953],"LinkStageId":[0,0,0],"TreasureId":[48,49,50,51],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/FuBenBombinataActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/GridBombinataActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/FuBenBombinataActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenSuperBiancaActivity/GridBombinataActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner85.png","CharacterId":1231002,"SkipIdDraw":7205,"SkipIdSkin":20111,"NewCharType":13,"ChallengeCondition":96006},{"Id":14,"Name":"However Improbable","ChallengeStage":[30160534,30160535,30160536],"StageId":[30100958,30100959,30100960,30100961],"LinkStageId":[0,0,0,0],"TreasureId":[52,53,54,55],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLeeActivity/FuBenLeeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLeeActivity/GridLeeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLeeActivity/FuBenLeeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLeeActivity/GridLeeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner87.png","CharacterId":1011004,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":14,"ChallengeCondition":96007},{"Id":15,"Name":"Age of Creators","ChallengeStage":[30160537,30160538,30160539],"StageId":[30100965,30100966,30100967],"LinkStageId":[0,0,0],"TreasureId":[56,57,58,59],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenAylaActivity/FuBenAylaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenAylaActivity/GridAylaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenAylaActivity/FuBenAylaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenAylaActivity/GridAylaActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner93.png","CharacterId":1091003,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":15,"ChallengeCondition":96008},{"Id":16,"Name":"Abyssal Unbounded","ChallengeStage":[30160540,30160541,30160542],"StageId":[30100972,30100973,30100974],"LinkStageId":[0,0,0],"TreasureId":[60,61,62,63],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLuciaActivity/FuBenLuciaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLuciaActivity/GridLuciaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLuciaActivity/FuBenLuciaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLuciaActivity/GridLuciaActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner101.png","CharacterId":1021005,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":16,"ChallengeCondition":96009},{"Id":17,"Name":"Homeward Dreamer","ChallengeStage":[30160543,30160544,30160545],"StageId":[30100978,30100979,30100980],"LinkStageId":[0,0,0],"TreasureId":[64,65,66,67],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHanyingActivity/FuBenHanyingActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHanyingActivity/GridHanyingActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHanyingActivity/FuBenHanyingActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenHanyingActivity/GridHanyingActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner106.png","CharacterId":1241002,"SkipIdDraw":7205,"SkipIdSkin":20111,"NewCharType":17,"ChallengeCondition":96010},{"Id":18,"Name":"Uninhibited","ChallengeStage":[30160546,30160547,30160548],"StageId":[30100984,30100985,30100986],"LinkStageId":[0,0,0],"TreasureId":[68,69,70,71],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBen21HaoActivity/FuBen21HaoActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBen21HaoActivity/Grid21HaoActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBen21HaoActivity/FuBen21HaoActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBen21HaoActivity/Grid21HaoActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner112.png","CharacterId":1221003,"SkipIdDraw":7205,"SkipIdSkin":20111,"NewCharType":18,"ChallengeCondition":96011},{"Id":19,"Name":"Darkseeker's Roar","ChallengeStage":[30160549,30160550,30160551],"StageId":[30100991,30100992,30100993],"LinkStageId":[0,0,0],"TreasureId":[72,73,74,75],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoktiActivity/FuBenNoktiActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoktiActivity/GridNoktiActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoktiActivity/FuBenNoktiActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenNoktiActivity/GridNoktiActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner111.png","CharacterId":1251002,"SkipIdDraw":7205,"SkipIdSkin":89018,"NewCharType":19,"ChallengeCondition":96012},{"Id":20,"Name":"Trial of Righteousness","ChallengeStage":[30160552,30160553,30160554],"StageId":[30100998,30100999,30100000],"LinkStageId":[0,0,0],"TreasureId":[76,77,78,79],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenEchoActivity/FuBenEchoActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenEchoActivity/GridEchoActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenEchoActivity/FuBenEchoActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenEchoActivity/GridEchoActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner117.png","CharacterId":1261003,"SkipIdDraw":7209,"SkipIdSkin":80035,"NewCharType":20,"SkipGet":19053,"ChallengeCondition":96013},{"Id":21,"Name":"Seeker's Voyage","ChallengeStage":[30160555,30160556,30160557],"StageId":[30100004,30100005,30100006],"LinkStageId":[0,0,0],"TreasureId":[80,81,82,83],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLamiaActivity/FuBenLamiaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLamiaActivity/GridLamiaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLamiaActivity/FuBenLamiaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FuBenLamiaActivity/GridLamiaActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner123.png","CharacterId":1271003,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":21,"ChallengeCondition":96014},{"Id":22,"Name":"Outlander's Flame","ChallengeStage":[30160558,30160559,30160560],"StageId":[30100010,30100011,30100012],"LinkStageId":[30100007,30100008,30100009],"TreasureId":[84,85,86,87],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenBRSActivity/FuBenBRSActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenBRSActivity/GridBRSActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenBRSActivity/FuBenBRSActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenBRSActivity/GridBRSActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner128.png","CharacterId":1281002,"SkipIdDraw":10047,"SkipIdSkin":20111,"NewCharType":22,"ChallengeCondition":96015},{"Id":23,"Name":"Forsaken Ordeals","ChallengeStage":[30160561,30160562,30160563],"StageId":[30100017,30100018,30100019],"LinkStageId":[30100014,30100015,30100016],"ShowRewardId":1013091,"TreasureId":[88,89,90,91,92,93,94],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner129.png","CharacterId":1081004,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":23,"ChallengeCondition":96016},{"Id":24,"Name":"Sovereign's Purge","ChallengeStage":[30160564,30160565,30160566],"StageId":[30100023,30100024,30100025],"LinkStageId":[30100020,30100021,30100022],"ShowRewardId":1013096,"TreasureId":[95,96,97,98,99,100,101],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner129.png","CharacterId":1521004,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":24,"ChallengeCondition":96017},{"Id":25,"Name":"The Successor's Pursuit","ChallengeStage":[30100028,30100029,30100030],"StageId":[30100034,30100035,30100036],"LinkStageId":[30100031,30100032,30100033],"ShowRewardId":1013101,"TreasureId":[102,103,104,105,106,107,108],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1291002,"SkipIdDraw":7205,"SkipIdSkin":20111,"NewCharType":25,"ChallengeCondition":96018},{"Id":26,"Name":"Boundbreaker's Redemption","ChallengeStage":[30100037,30100038,30100039],"StageId":[30100043,30100044,30100045],"LinkStageId":[30100040,30100041,30100042],"ShowRewardId":1013106,"TreasureId":[109,110,111,112,113,114,115],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1171004,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":26,"ChallengeCondition":96019},{"Id":27,"Name":"Glimpse of Revelation","ChallengeStage":[30100046,30100047,30100048],"StageId":[30100052,30100053,30100054],"LinkStageId":[30100049,30100050,30100051],"ShowRewardId":1013111,"TreasureId":[116,117,118,119,120,121,122],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1301002,"SkipIdDraw":7205,"SkipIdSkin":20111,"NewCharType":27,"ChallengeCondition":96020},{"Id":28,"Name":"Cadence Weaver","ChallengeStage":[30100059,30100060,30100061],"StageId":[30100065,30100066,30100067],"LinkStageId":[30100062,30100063,30100064],"ShowRewardId":1013116,"TreasureId":[123,124,125,126,127,128,129],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1241003,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":28,"ChallengeCondition":96021},{"Id":29,"Name":"Wanderer's Choice","ChallengeStage":[30100076,30100077,30100078],"StageId":[30100072,30100073,30100074],"LinkStageId":[30100069,30100070,30100071],"ShowRewardId":1013121,"TreasureId":[130,131,132,133,134,135,136],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1211003,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":29,"ChallengeCondition":96022},{"Id":30,"Name":"The Watcher's Oath","ChallengeStage":[30100085,30100086,30100087],"StageId":[30100082,30100083,30100084],"LinkStageId":[30100079,30100080,30100081],"ShowRewardId":1013126,"TreasureId":[137,138,139,140,141,142,143],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1021006,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":30,"ChallengeCondition":96023},{"Id":31,"Name":"Soul Ferrier","ChallengeStage":[30100095,30100096,30100097],"StageId":[30100092,30100093,30100094],"LinkStageId":[30100089,30100090,30100091],"ShowRewardId":1013131,"TreasureId":[144,145,146,147,148,149,150],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1311002,"SkipIdDraw":7205,"SkipIdSkin":20111,"NewCharType":31,"ChallengeCondition":96024},{"Id":32,"Name":"Dawnchaser's Crusade","ChallengeStage":[30100107,30100108,30100109],"StageId":[30100104,30100105,30100106],"LinkStageId":[30100110,30100111,30100112],"ShowRewardId":1013136,"TreasureId":[151,152,153,154,155,156,157],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/FuBenWatanabeActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/FubenWatanabeActivity/GridWatanabeActivityStage02.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1051005,"SkipIdDraw":7209,"SkipIdSkin":20111,"NewCharType":32,"ChallengeCondition":96025},{"Id":33,"Name":"Observer's Gaze","TimeId":905,"ChallengeStage":[30100119,30100120,30100121],"StageId":[30100116,30100117,30100118],"LinkStageId":[0,0,0],"ShowRewardId":1013141,"TreasureId":[158,159,160,161,162,163,164],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3CibeizheActivity/FuBenR3CibeizheActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3CibeizheActivity/GridR3CibeizheActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3CibeizheActivity/FuBenR3CibeizheActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3CibeizheActivity/GridR3CibeizheActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3CibeizheActivity/UiCharacterFileR3CibeizheBg.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3CibeizheActivity/UiCharacterFileR3CibeizheMain.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1321003,"SkipIdDraw":20240,"SkipIdSkin":20241,"NewCharType":33,"ChallengeCondition":96026},{"Id":34,"Name":"Fugitive's Scheme","TimeId":905,"ChallengeStage":[30100125,30100126,30100127],"StageId":[30100122,30100134,30100124],"LinkStageId":[0,0,0],"ShowRewardId":1013146,"TreasureId":[165,166,167,168,169,170,171],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3LilithActivityV301/FuBenR3LilithActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3LilithActivityV301/GridR3LilithActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3LilithActivityV301/FuBenR3LilithActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3LilithActivityV301/GridR3LilithActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3LilithActivityV301/UiCharacterFileR3LilithBgV301.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3LilithActivityV301/UiCharacterFileR3LilithMainV301.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1331003,"SkipIdDraw":20246,"SkipIdSkin":20247,"NewCharType":34,"ChallengeCondition":96027},{"Id":35,"Name":"Songstress' Lone Dance","TimeId":905,"ChallengeStage":[30100131,30100132,30100133],"StageId":[30100128,30100129,30100130],"LinkStageId":[0,0,0],"ShowRewardId":1013151,"TreasureId":[172,173,174,175,176,177,178],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR5SailinnaActivityV302/FuBenR5SailinnaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR5SailinnaActivityV302/GridR5SailinnaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR5SailinnaActivityV302/FuBenR5SailinnaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR5SailinnaActivityV302/GridR5SailinnaActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR5SailinnaActivityV302/UiCharacterFileR5SailinnaBgV302.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR5SailinnaActivityV302/UiCharacterFileR5SailinnaMainV302.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner135.png","CharacterId":1531005,"SkipIdDraw":20253,"SkipIdSkin":20252,"NewCharType":35,"ChallengeCondition":96028},{"Id":36,"Name":"The Insurgent File","TimeId":905,"ChallengeStage":[30100139,30100140,30100141],"StageId":[30100136,30100137,30100138],"LinkStageId":[0,0,0],"ShowRewardId":1013156,"TreasureId":[179,180,181,182,183,184,185],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR2JietaweiActivityV303/FuBenR2JietaweiActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR2JietaweiActivityV303/GridR2JietaweiActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR2JietaweiActivityV303/FuBenR2JietaweiActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR2JietaweiActivityV303/GridR2JietaweiActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR2JietaweiActivityV303/UiCharacterFileR2JietaweiBgV303.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR2JietaweiActivityV303/UiCharacterFileR2JietaweiMainV303.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner182.png","CharacterId":1341002,"SkipIdDraw":20265,"SkipIdSkin":20264,"NewCharType":36,"ChallengeCondition":96029},{"Id":37,"Name":"Devils Never Die","TimeId":905,"ChallengeStage":[30100148,30100149,30100150],"StageId":[30100142,30100143,30100144],"LinkStageId":[0,0,0],"ShowRewardId":1013166,"TreasureId":[186,187,188,189,190,191,192],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3VergilActivityV305/FuBenR3VergilActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3VergilActivityV305/GridR3VergilActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3VergilActivityV305/FuBenR3VergilActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3VergilActivityV305/GridR3VergilActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3VergilActivityV305/UiCharacterFileR3VergilBgV305.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3VergilActivityV305/UiCharacterFileR3VergilMainV305.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner187.png","CharacterId":1351003,"SkipIdDraw":20275,"NewCharType":37,"CustomUiControlType":1},{"Id":38,"Name":"Devils Never Die","TimeId":905,"ChallengeStage":[30100151,30100152,30100153],"StageId":[30100145,30100146,30100147],"LinkStageId":[0,0,0],"ShowRewardId":1013171,"TreasureId":[193,194,195,196,197,198,199],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3DanteActivityV305/FuBenR3DanteActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3DanteActivityV305/GridR3DanteActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3DanteActivityV305/FuBenR3DanteActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3DanteActivityV305/GridR3DanteActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3DanteActivityV305/UiCharacterFileR3DanteBgV305.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR3DanteActivityV305/UiCharacterFileR3DanteMainV305.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner187.png","CharacterId":1361003,"SkipIdDraw":20276,"NewCharType":38,"CustomUiControlType":1},{"Id":39,"Name":"Pilgrim's Remains","TimeId":905,"ChallengeStage":[30100157,30100158,30100159],"StageId":[30100154,30100155,30100156],"LinkStageId":[0,0,0],"ShowRewardId":1013161,"TreasureId":[200,201,202,203,204,205,206],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR4WeilaActivityV304/FuBenR4WeilaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR4WeilaActivityV304/GridR4WeilaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR4WeilaActivityV304/FuBenR4WeilaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR4WeilaActivityV304/GridR4WeilaActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR4WeilaActivityV304/UiCharacterFileR4WeilaBgV304.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/FubenR4WeilaActivityV304/UiCharacterFileR4WeilaMainV304.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner182.png","CharacterId":1131004,"SkipIdDraw":20269,"SkipIdSkin":20270,"NewCharType":39,"ChallengeCondition":96030},{"Id":40,"Name":"Ode to Pilgrims","TimeId":905,"ChallengeStage":[30100163,30100164,30100165],"StageId":[30100160,30100161,30100162],"LinkStageId":[0,0,0],"ShowRewardId":1013176,"TreasureId":[207,208,209,210,211,212,213],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4WeilaMainV306/FuBenR4BiankaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4WeilaMainV306/GridR4BiankaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4WeilaMainV306/FuBenR4BiankaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4WeilaMainV306/GridR4BiankaActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4WeilaMainV306/UiCharacterFileR4BiankaBgV306.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4WeilaMainV306/UiCharacterFileR4BiankaMainV306.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner182.png","CharacterId":1041005,"SkipIdDraw":20281,"SkipIdSkin":20282,"NewCharType":40},{"Id":41,"Name":"The Unwavering Dreamer","TimeId":905,"ChallengeStage":[30100169,30100170,30100171],"StageId":[30100167,30100168,30100172],"LinkStageId":[0,0,0],"ShowRewardId":1013181,"TreasureId":[214,215,216,217,218,219,220],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4XieZhouMainV307/FuBenR4xiezouActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4XieZhouMainV307/GridR4xiezouActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4XieZhouMainV307/FuBenR4xiezouActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4XieZhouMainV307/GridR4xiezouActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4XieZhouMainV307/UiCharacterFileR4xiezouBgV307.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4XieZhouMainV307/UiCharacterFileR4XiezouMainV307.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner182.png","CharacterId":1371002,"SkipIdDraw":20294,"SkipIdSkin":20295,"NewCharType":41},{"Id":42,"Name":"Echo in Solitude","TimeId":905,"ChallengeStage":[30100176,30100177,30100178],"StageId":[30100173,30100174,30100175],"LinkStageId":[0,0,0],"ShowRewardId":1013186,"TreasureId":[221,222,223,224,225,226,227],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/FuBenR3WeiluonikaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/GridR3WeiluonikaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/FuBenR3WeiluonikaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/GridR3WeiluonikaActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiCharacterFileR3WeiluonikaBgV308.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiCharacterFileR3WeiluonikaMainV308.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner182.png","CharacterId":1381003,"SkipIdDraw":20300,"SkipIdSkin":20301,"NewCharType":42},{"Id":43,"Name":"All-Loving Compassion","TimeId":905,"ChallengeStage":[30100182,30100183,30100184],"StageId":[30100179,30100180,30100181],"LinkStageId":[0,0,0],"ShowRewardId":1013191,"TreasureId":[228,229,230,231,232,233,234],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LifuActivityV400/FuBenR5LifuActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LifuActivityV400/GridR5LifuActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LifuActivityV400/FuBenR5LifuActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LifuActivityV400/GridR5LifuActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiCharacterFileR5LifuBgV400.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiCharacterFileR5LifuMainV400.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner182.png","CharacterId":1031005,"SkipIdDraw":20305,"SkipIdSkin":20306,"NewCharType":43},{"Id":44,"Name":"Answer Seeker's Pain","TimeId":905,"ChallengeStage":[30100189,30100190,30100191],"StageId":[30100186,30100187,30100188],"LinkStageId":[0,0,0],"ShowRewardId":1013196,"TreasureId":[235,236,237,238,239,240,241],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/FuBenR3BuouxiongActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/GridR3BuouxiongActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/FuBenR3BuouxiongActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/GridR3BuouxiongActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiCharacterFileR3BuouxiongBgV401.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiCharacterFileR3BuouxiongMainV401.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner215.png","CharacterId":1291003,"SkipIdDraw":20312,"SkipIdSkin":20313,"NewCharType":44},{"Id":45,"Name":"Farewell from the Departed","TimeId":905,"ChallengeStage":[30100195,30100196,30100197],"StageId":[30100192,30100193,30100194],"LinkStageId":[0,0,0],"ShowRewardId":1013201,"TreasureId":[242,243,244,245,246,247,248],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LuosaitaV402/FuBenR5LuosaitaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LuosaitaV402/GridR5LuosaitaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LuosaitaV402/FuBenR5LuosaitaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LuosaitaV402/GridR5LuosaitaActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaBgV402.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaMainV402.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner219.png","CharacterId":1141004,"SkipIdDraw":20327,"SkipIdSkin":20328,"NewCharType":45},{"Id":46,"Name":"The Homecoming Seeker","TimeId":905,"ChallengeStage":[30100207,30100208,30100209],"StageId":[30100204,30100205,30100206],"LinkStageId":[0,0,0],"ShowRewardId":1013206,"TreasureId":[249,250,251,252,253,254,255],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/FuBenR3NietiyaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/GridR3NietiyaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/FuBenR3NietiyaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/GridR3NietiyaActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaBgV403.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaMainV403.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner222.png","CharacterId":1391003,"SkipIdDraw":20324,"SkipIdSkin":20325,"NewCharType":46},{"Id":47,"Name":"Sunstrider's Return","TimeId":905,"ChallengeStage":[30100214,30100215,30100216],"StageId":[30100210,30100211,30100212],"LinkStageId":[0,0,0],"ShowRewardId":1013211,"TreasureId":[256,257,258,259,260,261,262],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/GridR4ShenweiActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/GridR4ShenweiActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/UiCharacterFileR4ShenweiBgV404.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/UiCharacterFileR4ShenweiMainV404.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner226.png","CharacterId":1061004,"SkipIdDraw":20335,"SkipIdSkin":20336,"NewCharType":47},{"Id":48,"Name":"Long Live the Crowned","TimeId":905,"ChallengeStage":[30100220,30100221,30100222],"StageId":[30100217,30100218,30100219],"LinkStageId":[0,0,0],"ShowRewardId":1013216,"TreasureId":[263,264,265,266,267,268,269],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/FuBenR7LuxiyaActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/FuBenR7LuxiyaActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/FuBenR7LuxiyaActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/FuBenR7LuxiyaActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaBgV405.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaActivityV405.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner229.png","CharacterId":1021007,"SkipIdDraw":20365,"SkipIdSkin":20366,"NewCharType":48},{"Id":49,"Name":"The Knower's Dilemma","TimeId":905,"ChallengeStage":[30100226,30100227,30100228],"StageId":[30100223,30100224,30100225],"LinkStageId":[0,0,0],"ShowRewardId":1013221,"TreasureId":[270,271,272,273,274,275,276],"TotalStars":9,"FubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/FuBenR3HelentineActivity01.prefab","GridFubenPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/GridR3HelentineActivityStage01.prefab","FubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/FuBenR3HelentineActivity02.prefab","GridFubenChallengePrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/GridR3HelentineActivityStage02.prefab","MainFullBgPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineBgV406.prefab","MainPanelPrefab":"Assets/Product/Ui/ComponentPrefab/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineMainV406.prefab","BannerBg":"Assets/Product/Texture/Image/UiFubenActivityBanner/FubenActivityBanner233.png","CharacterId":1401003,"SkipIdDraw":20381,"SkipIdSkin":20382,"NewCharType":49}],"TeachingRobots":[{"StageId":30160503,"DescDetail":"Siren calls the Red Tide every 15s, during which its ATK is greatly improved but gains Vulnerable.","ShowFightEventIds":[110274,110267,110271,110270],"RobotId":[9083]},{"StageId":30160502,"DescDetail":"Siren calls the Red Tide every 15s, during which its ATK is greatly improved but gains Vulnerable.","ShowFightEventIds":[110280,110273,110267,110271,110270],"RobotId":[9083]},{"StageId":30160501,"DescDetail":"Siren calls the Red Tide every 15s, during which its ATK is greatly improved but gains Vulnerable\\n180s later, Siren goes Berserk.","ShowFightEventIds":[110280,110266,110273,110268,110267,110271,110270,110277],"RobotId":[9083]},{"StageId":30160500,"DescDetail":"Siren calls the Red Tide every 15s, during which its ATK is greatly improved but gains Vulnerable\\n180s later, Siren goes Berserk.","ShowFightEventIds":[110281,110279,110272,110268,110267,110271,110270,110278],"RobotId":[9083]},{"StageId":30160504,"DescDetail":"Voodoo summons 4 Medic Bots every 15s and enters Invincible state. Destroy all Medic Bots to paralyze Voodoo for 10s, in which its Lightning DMG received increases.","ShowFightEventIds":[760015],"RobotId":[9089]},{"StageId":30160505,"DescDetail":"Voodoo receives a special boost, increasing its tendency to attack while decreasing its DMG received. This boost is lost when it receives DMG over 40000 in one hit. Regenerates after 15s.","ShowFightEventIds":[760015,845057],"RobotId":[9089]},{"StageId":30160507,"DescDetail":"Pterygota Queen becomes weak to random colored orbs every 30s (the weakness lasts 15s). If she takes a high amount of damage during this time, she will be immobilized and vulnerable (the damage threshold increases with each trigger, up to 4 times).","ShowFightEventIds":[780693,780694,780695,780696,780697],"RobotId":[9094]},{"StageId":30160506,"DescDetail":"Gabriel becomes weak to random colored orbs every 30s (the weakness lasts 15s), losing 60% of resistance to the particular color.","ShowFightEventIds":[780693,780694,780695,780698,780699],"RobotId":[9094]},{"StageId":30160508,"DescDetail":"Monsters have a shield equal to 10% of Max HP and deal 10% more damage. The shield will be refreshed every 15s. Break the shield and the monster will lose 30% DMG Reduction. And a new shield will appear 15s later.","ShowFightEventIds":[780003,780313,780263],"RobotId":[9099]},{"StageId":30160509,"DescDetail":"Riot will summon Terrapods after switching forms. Eliminate all Terrapods to bring Riot to the ground in advance and end the Laser Rain.","ShowFightEventIds":[780003,110213],"RobotId":[9099]},{"StageId":30160510,"DescDetail":"Avoid Acid Ant attacks","ShowFightEventIds":[780033],"RobotId":[9104]},{"StageId":30160511,"DescDetail":"Enemies' weak points will be refreshed in a random direction. Break the weak points in the direction to deal massive True DMG to them.","ShowFightEventIds":[780033,746057,110213],"RobotId":[9104]},{"StageId":30160512,"DescDetail":"Enemies will have 4 weak points that disappear in 4.5s and refresh 2s after that. Destroy all weak points to reduce the enemies' DMG Immunity by 20% for 20s. Characters will bleed if they stay on the battlefield for too long.","ShowFightEventIds":[780033,746074,746072],"RobotId":[9104]},{"StageId":30160513,"DescDetail":"Defeat the Treants and the Faries","ShowFightEventIds":[780043],"RobotId":[2215]},{"StageId":30160514,"DescDetail":"Pulao will gain 20% Extra DMG Bonus for every Dragon Force Combo she casts. The effect lasts for 20s and can be stacked up to 10 times.","ShowFightEventIds":[780043],"RobotId":[2215]},{"StageId":30160515,"DescDetail":"Challenge Heaven Breaker, Demon Bane, and God Slayer respectively. (Use Uniframes and Speed Attacks wisely to fast reduce the enemy's Finisher Gauge value and defeat the enemy when the gauge is empty.)","ShowFightEventIds":[780043],"RobotId":[2215]},{"StageId":30160516,"DescDetail":"The enemy gains high Ice, Lightning, and Dark Resistances but loses a significant amount of Fire Resistance. Maybe things will be different if you use Nanami?","ShowFightEventIds":[780693],"RobotId":[2218],"CharacterType":1},{"StageId":30160517,"DescDetail":"After Starfarer casts the Signature Move, triggering \"Oops! Missed it!\" by pressing and holding Basic Attack will grant 20% Extra DMG Bonus, whereas each triggering \"Perfect!\" will grant 40% Extra DMG Bonus. The effect can be stacked up to 200% and lasts 10s. The duration will refresh whenever it is triggered.","ShowFightEventIds":[780693],"RobotId":[2218],"CharacterType":1},{"StageId":30160518,"DescDetail":"Every time when a team member enters the field, gains a set of random Signal Orbs and 50% Basic Attack Fire DMG Bonus for 10s.","ShowFightEventIds":[780693],"RobotId":[2218],"CharacterType":1},{"StageId":30160519,"DescDetail":"Defeat Gear and Wheel of Fortune","ShowFightEventIds":[780023],"RobotId":[2222],"CharacterType":2},{"StageId":30160520,"DescDetail":"Upon eliminating an enemy, Haicma deals 100% more Ice DMG for 20s and restores 30 Energy. The duration will refresh whenever it is triggered.","ShowFightEventIds":[780023],"RobotId":[2222],"CharacterType":2},{"StageId":30160521,"DescDetail":"Upon triggering a Speed Attack Skill, Haicma fully restores Dodge Gauge value and gains a set of Signal Orbs of a random color.","ShowFightEventIds":[780023],"RobotId":[2222],"CharacterType":2},{"StageId":30160522,"DescDetail":"After casting a Yellow Orb skill, gain 1 Blue Orb. After casting a Blue Orb skill, gain 1 Yellow Orb","ShowFightEventIds":[780033],"RobotId":[2229],"CharacterType":1},{"StageId":30160523,"DescDetail":"After casting [Radiant Whirlwind], your next [Radiant Whirlwind] deals 10% increased DMG for 10s (max 10 stacks)","ShowFightEventIds":[780033],"RobotId":[2229],"CharacterType":1},{"StageId":30160524,"DescDetail":"After a 3-Ping, Basic Attack's Extra DMG Bonus increases by 100% for 3s","ShowFightEventIds":[780033],"RobotId":[2229],"CharacterType":1},{"StageId":30160525,"DescDetail":"Defeat Ronin IV","ShowFightEventIds":[780013],"RobotId":[9115],"CharacterType":2},{"StageId":30160526,"DescDetail":"Noan gains 3-Ping Orbs of a random color every time his Gear Level goes up.","ShowFightEventIds":[780013],"RobotId":[9115],"CharacterType":2},{"StageId":30160527,"DescDetail":"Every time a Combo Strike is triggered at Gear Lv.3, Noan will deal 30% (up to 300%) more DMG.","ShowFightEventIds":[780013],"RobotId":[9115],"CharacterType":2},{"StageId":30160528,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780043],"RobotId":[9120],"CharacterType":1},{"StageId":30160529,"DescDetail":"Stigmata gains a set of 3-Ping Orbs when Afterglow Orbs are consumed in Luminous Realm or the Phase II Signature Move is cast.","ShowFightEventIds":[780043],"RobotId":[9120],"CharacterType":1},{"StageId":30160530,"DescDetail":"Upon casting Illuminated Abyss, Stigmata's Extra DMG increases. This effect is permanent and can stack infinitely.","ShowFightEventIds":[780043],"RobotId":[9120],"CharacterType":1},{"StageId":30160531,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[110274],"RobotId":[9132],"CharacterType":1},{"StageId":30160532,"DescDetail":"A successful dodge during Solitary Dancer will grant a set of 3-Ping Orbs.","ShowFightEventIds":[110274],"RobotId":[9132],"CharacterType":1},{"StageId":30160533,"DescDetail":"A successful dodge during Solitary Dancer will grant a set of 3-Ping Orbs.","ShowFightEventIds":[110274,760221],"RobotId":[9132],"CharacterType":1},{"StageId":30160534,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780693],"RobotId":[2241],"CharacterType":1},{"StageId":30160535,"DescDetail":"Enemies have a shield equal to 10% of Max HP and deal 10% more damage. The shield will be refreshed every 15s. Break the shield and the enemy will lose 30% DMG Reduction. And a new shield will appear 15s later.","ShowFightEventIds":[780003,780313,780263],"RobotId":[2241],"CharacterType":1},{"StageId":30160536,"DescDetail":"Lee: Hyperreal's Extra DMG increases when he triggers Collapsing Realm at maximum Sight Points. This effect is permanent and can stack infinitely.","ShowFightEventIds":[780693],"RobotId":[2241],"CharacterType":1},{"StageId":30160537,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780023],"RobotId":[9147],"CharacterType":1},{"StageId":30160538,"DescDetail":"After Kaleido activates Color Rendering, the enemy gains weaknesses in 4 directions. Triggering these weaknesses with Vibrant Brushstroke will make the entire team deal Extra DMG.","ShowFightEventIds":[780023],"RobotId":[9147],"CharacterType":1},{"StageId":30160539,"DescDetail":"When Kaleido activates Color Rendering, if the DMG Bonuses of both Color Mix: Clash of Concepts and Pure Color: Theme Emphasis are present, Finishing Touch and Vibrant Brushstroke will gain bonus buffs (stackable).","ShowFightEventIds":[780023],"RobotId":[9147],"CharacterType":1},{"StageId":30160540,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780013],"RobotId":[9161],"CharacterType":1},{"StageId":30160541,"DescDetail":"Receives a 10% Extra DMG Bonus after Crimson Weave casts Resolute Blow at full Blade Aura","ShowFightEventIds":[780013],"RobotId":[9161],"CharacterType":1},{"StageId":30160542,"DescDetail":"1. When casting Unquenchable Flare with full Aphotic Points, Crimson Weave's Extra DMG Bonus permanently increases by 20%.\\n2. When Crimson Abyss unleashes swordwaves, the Base DMG of Crimson Weave's swordwaves increase by 500%.","ShowFightEventIds":[780013],"RobotId":[9161],"CharacterType":1},{"StageId":30160543,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780043],"RobotId":[127101],"CharacterType":1},{"StageId":30160544,"DescDetail":"1. Triggering Dance of Emerald Flow (Dodge after a 3-Ping) will also grant all members 25% DMG Bonus.\\n2. Kowloong teammates gain 100% Extra DMG Bonus.","ShowFightEventIds":[780043],"RobotId":[127101],"CharacterType":1},{"StageId":30160545,"DescDetail":"1. For every 4 Dancer Points consumed, the entire team gets 200% DMG Bonus for 15s.\\n2. Kowloong teammates gain 100% Extra DMG Bonus.","ShowFightEventIds":[780043],"RobotId":[127101],"CharacterType":1},{"StageId":30160546,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780013],"RobotId":[9172],"CharacterType":1},{"StageId":30160547,"DescDetail":"1. Feral gains two random Signal Orbs of the same color when Forceful Pounce or Dead-on Pounce is triggered.\\n2. Feral gains 10% Extra DMG Bonus when Dead-on Pounce is triggered. This effect can stack infinitely.","ShowFightEventIds":[780013],"RobotId":[9172],"CharacterType":1},{"StageId":30160548,"DescDetail":"1. Feral gains a set of 3-Ping Orbs when Dead-on Pounce is triggered.\\n2. Feral gains 20% Extra DMG Bonus when she casts Signature at maximum Critical Arclight. This effect can stack infinitely.","ShowFightEventIds":[780013],"RobotId":[9172],"CharacterType":1},{"StageId":30160549,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780013],"RobotId":[127420],"CharacterType":1},{"StageId":30160550,"DescDetail":"1. Noctis gains 1 set of 3-Ping Orbs when Arm Block or Perfect Arm Block is triggered.\\n2. Noctis gains 20% ATK Bonus permanently each time when he casts Lightning Smash, Lightning Punch, and Lightning Sweep.","ShowFightEventIds":[780013],"RobotId":[127420],"CharacterType":1},{"StageId":30160551,"DescDetail":"1. Noctis gains 2 Signal Orbs of different colors every second when he charges up Basic Attacks.\\n2. When Noctis casts a Signature at 3 stacks of Engine Points, he will gain 80% ATK Bonus permanently.","ShowFightEventIds":[780013],"RobotId":[127420],"CharacterType":1},{"StageId":30160552,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780043],"RobotId":[127617],"CharacterType":1},{"StageId":30160553,"DescDetail":"1. Echo gains 20% Extra DMG Bonus each time she enters Judgment Zone.\\n2. Echo gains a set of random 3-Ping Orbs each time she casts Swift Archery.","ShowFightEventIds":[780043],"RobotId":[127617],"CharacterType":1},{"StageId":30160554,"DescDetail":"1. Triggering Imprisoning Co-Strike will permanently increase Echo's Extra DMG by 20%.\\n2. Upon entering Judgment Zone, Echo gains 2 sets of 3-Ping Orbs.","ShowFightEventIds":[780043],"RobotId":[127617],"CharacterType":1},{"StageId":30160555,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780033],"RobotId":[2249],"CharacterType":1},{"StageId":30160556,"DescDetail":"1. Pinging a Torrent Orb returns 1 set of 3-Ping Orbs; Pinging a Tidal Orb returns 2 sets of 3-Ping Orbs; Pinging a Riptide Orb returns 3 sets of 3-Ping Orbs.\\n2. Whenever a Torrent Orb, Tidal Orb, or Riptide Orb is pinged, Lamia gains a 20% Extra DMG Bonus.","ShowFightEventIds":[780033],"RobotId":[2249],"CharacterType":1},{"StageId":30160557,"DescDetail":"1. After gaining a Torrent Orb, Tidal Orb, or Riptide Orb, Lamia immediately gains 2 sets of 3-Ping Orbs.\\n2. Whenever Lamia switches forms, she gains a 50% Extra DMG Bonus.","ShowFightEventIds":[780033],"RobotId":[2249],"CharacterType":1},{"StageId":30160558,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780693],"RobotId":[2252],"CharacterType":1},{"StageId":30160559,"DescDetail":"1. Gains 2 random sets of 3-Pings after casting Signature Move.\\n2. Red/Yellow 3-Pings grant BLACK★ROCK SHOOTER 20% Extra DMG Bonus.","ShowFightEventIds":[780693],"RobotId":[2252],"CharacterType":1},{"StageId":30160560,"DescDetail":"1. Gains 2 random sets of 3-Pings after casting Signature Move.\\n2. Red/Yellow 3-Pings grant BLACK★ROCK SHOOTER 20% Extra DMG Bonus.","ShowFightEventIds":[780693],"RobotId":[2252],"CharacterType":1},{"StageId":30160561,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780693],"RobotId":[2254],"CharacterType":1},{"StageId":30160562,"DescDetail":"1. When Watanabe: Epitaph consumes a Blaze Orb, Matrix cooldown decreases by 50%.\\n2. Watanabe: Epitaph permanently gains 30% Extra DMG Bonus upon a successful Parry, and the Shield gained from Parry additionally grants Super Armor.","ShowFightEventIds":[780693],"RobotId":[2254],"CharacterType":1},{"StageId":30160563,"DescDetail":"1. For every Cartridge gained, Watanabe: Epitaph gains a random set of 3-Ping Orbs.\\n2. For every Cartridge consumed, Watanabe: Epitaph permanently gains 30% Extra DMG Bonus.","ShowFightEventIds":[780693],"RobotId":[2254],"CharacterType":1},{"StageId":30160564,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780023],"RobotId":[2257],"CharacterType":1},{"StageId":30160565,"DescDetail":"1. Upon activating Into the Fray, Qu gains 2 random sets of 3-Ping Orbs.\\n2. After casting Enlightened Soul, Qu gains 30% Extra DMG Bonus permanently.","ShowFightEventIds":[780023],"RobotId":[2257],"CharacterType":1},{"StageId":30160566,"DescDetail":"1. For each 3-Ping made during Enthronement, Qu gains the corresponding 3-Ping Orbs after casting Sovereign's Presence.\\n2. Qu gains 2 sets of 3-Ping Orbs when casting Will Bearer, and gains 50% Extra DMG Bonus permanently when casting Mountain Caller.","ShowFightEventIds":[780023],"RobotId":[2257],"CharacterType":1},{"StageId":30100028,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780033],"RobotId":[2260],"CharacterType":1},{"StageId":30100029,"DescDetail":"1. After casting her Phase 1 Signature Move, Teddy gains 30% Extra DMG Bonus permanently.\\n2. After casting her Phase 2 Signature Move, Teddy gains 2 random sets of Signal Orbs back.","ShowFightEventIds":[780033],"RobotId":[2260],"CharacterType":1},{"StageId":30100030,"DescDetail":"1. After casting her Phase 1 or Phase 2 Signature Move, Teddy gains 30% Extra DMG Bonus permanently.\\n2. After casting her Phase 2 Signature Move, Teddy gains 2 random sets of Signal Orbs back.","ShowFightEventIds":[780033],"RobotId":[2260],"CharacterType":1},{"StageId":30100037,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[752117],"RobotId":[2262],"CharacterType":1},{"StageId":30100038,"DescDetail":"1. Luna: Oblivion gains 1 set of Signal Orbs/1 Finality Orb with every Basic Attack.\\n2. A successful Dodge will increase Crescent Points and Eclipse Points to the maximum.","ShowFightEventIds":[752117],"RobotId":[2262],"CharacterType":1},{"StageId":30100039,"DescDetail":"1. When Luna: Oblivion activates Reaping Moon, she gains 1 set of Signal Orbs/1 Finality Orb every second.\\n2. Permanently gains 2% Extra DMG Bonus for every 10 Eclipse Points consumed.","ShowFightEventIds":[752117],"RobotId":[2262],"CharacterType":1},{"StageId":30100046,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780003],"RobotId":[2265],"CharacterType":1},{"StageId":30100047,"DescDetail":"1. Bridget gains 1 Blue Orb and 1 Red Orb with every Basic Attack.\\n2. After Bridget performs her Signature, she gains 30% Extra DMG Bonus and 50% Ignition DMG Bonus permanently.","ShowFightEventIds":[780003],"RobotId":[2265],"CharacterType":1},{"StageId":30100048,"DescDetail":"1. Bridget gains 1 Blue Orb and 1 Red Orb with every Basic Attack.\\n2. After Bridget uses Red Orb to precisely counter, she gains 20% Extra DMG Bonus permanently.\\n3. After Bridget performs her Signature, she gains 50% Ignition DMG Bonus permanently.","ShowFightEventIds":[780003],"RobotId":[2265],"CharacterType":1},{"StageId":30100059,"DescDetail":"Defeat enemies!","ShowFightEventIds":[780043],"RobotId":[2267],"CharacterType":1},{"StageId":30100060,"DescDetail":"1. Hanying: Solacetune gains 3 Signal Orbs for each Basic Attack.\\n2. Hanying: Solacetune gains 120 Sonority, 60 Energy, and a 50% Extra DMG Bonus when casting Moon Chill. This effect can be stacked.","ShowFightEventIds":[780043],"RobotId":[2267],"CharacterType":1},{"StageId":30100061,"DescDetail":"1. Hanying: Solacetune gains 3 Signal Orbs for each Basic Attack.\\n2. Hanying: Solacetune gains 10% Extra DMG every time when casting Jade Bloom. This effect can be stacked.","ShowFightEventIds":[780043],"RobotId":[2267],"CharacterType":1},{"StageId":30100076,"DescDetail":"Defeat enemies!","ShowFightEventIds":[780023],"RobotId":[2271],"CharacterType":1},{"StageId":30100077,"DescDetail":"1. Wanshi: Lucid Dreamer receives 1 Signal Orb for each Basic Attack, and 3-Ping restores additional 80 Focus.\\n2. Wanshi: Lucid Dreamer's Signature increases Extra DMG by 25%. Stackable.","RobotId":[2271],"CharacterType":1},{"StageId":30100078,"DescDetail":"1. Wanshi: Lucid Dreamer receives 1 Signal Orb for each Basic Attack, and 3-Ping restores additional 80 Focus.\\n2. Wanshi: Lucid Dreamer accumulates Glaciation and Congelation 20% faster in Frigid Calibration Mode.\\n3. Wanshi: Lucid Dreamer's Arctic Ice increases his Extra DMG by 1.5%.","RobotId":[2271],"CharacterType":1},{"StageId":30100085,"DescDetail":"Defeat enemies!","ShowFightEventIds":[780003],"RobotId":[2274],"CharacterType":1},{"StageId":30100086,"DescDetail":"1. Lucia: Pyroath gains 3 Signal Orbs for every Basic Attack she performs.\\n2. When Lucia: Pyroath casts Signature - Crowd Slash or Eclipse Daybreak, her DMG is increased by 30% permanently.\\n3. Lucia: Pyroath will fully recover Quench Value every time she casts Signature - Eclipse Daybreak.","ShowFightEventIds":[780003],"RobotId":[2274],"CharacterType":1},{"StageId":30100087,"DescDetail":"1. Lucia: Pyroath recovers 3 Signal Orbs for every Basic Attack she performs. Casting Blue Orb Skill after the 5th Basic Attack hit will fully recover her Electric Charge.\\n2. When Lucia: Pyroath casts Signature - Crowd Slash or Eclipse Daybreak, her Plasma Beam DMG is increased by 50% permanently.\\n3. Lucia: Pyroath will fully recover Quench Value every time she casts Signature - Eclipse Daybreak.\\n4.Lucia: Pyroath gains Super Armor.","ShowFightEventIds":[780914],"RobotId":[2274],"CharacterType":1},{"StageId":30100095,"DescDetail":"Defeat enemies!","ShowFightEventIds":[780013],"RobotId":[2277],"CharacterType":1},{"StageId":30100096,"DescDetail":"1. Upon casting Signature of Yata: Fulgor, immediately gain 90 Heartflow.\\n2. While Yata: Fulgor is casting Night Raid, gain 15 Heartflow per second.\\n3. When casting Signature of Yata: Fulgor while in Epiphany Realm, permanently gain 50% Extra Damage.","ShowFightEventIds":[780013],"RobotId":[2277],"CharacterType":1},{"StageId":30100097,"DescDetail":"1. While Yata: Fulgor is casting Night Raid, gains an additional 50 Glaciation Value and 15 Heartflow per second.\\n2. Upon casting Signature of Yata: Fulgor, immediately gains 90 Heartflow.\\n3. When casting Signature of Yata: Fulgor while Ice Spikes are active, permanently increases Glaciation DMG by 100%.","ShowFightEventIds":[780923],"RobotId":[2277],"CharacterType":1},{"StageId":30100107,"DescDetail":"Defeat enemies!","ShowFightEventIds":[780013],"RobotId":[2278],"CharacterType":1},{"StageId":30100108,"DescDetail":"1. Cast Nanami: Startrail to gain 3 Orbs.\\n2. Nanami: Startrail: Cast Signature Move deals 50% Extra DMG (stackable).","ShowFightEventIds":[780013],"RobotId":[2279],"CharacterType":1},{"StageId":30100109,"DescDetail":"1. Cast Nanami: Startrail to gain 3 Orbs.\\n2. Nanami: Startrail: Press and hold Yellow Orb consumes 5 Starlight Points each time, increasing Ignition DMG by 3% (stackable).","ShowFightEventIds":[780917],"RobotId":[2279],"CharacterType":1},{"StageId":30100119,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[752117],"RobotId":[2281],"CharacterType":1},{"StageId":30100120,"DescDetail":"1. When Ishmael: Parhelion is equipped with a 4-piece exclusive Memory Set, tapping Dodge repeatedly during Forbidden Realm triggers Phantom Annihilation to grant double Collapse Points.\\n2. Parhelion gains an additional 20 Signature Energy when activating Forbidden Realm. Casting Signature - Silent Punishment resets Forbidden Realm's duration.\\n3. Upon triggering Phantom Annihilation, holding dodge to cast Dimensional Collapse grants a 20% Extra DMG Bonus. Stackable.","ShowFightEventIds":[752117],"RobotId":[2282],"CharacterType":1},{"StageId":30100121,"DescDetail":"1. Each time Ishmael: Parhelion consumes Phantom Points, grants a set of Signal Orbs.\\n2. Parhelion's Dimensional Collapse increases Signature - Silent Punishment's extra DMG by 50%. Stackable.\\n3. Parhelion's Signature - Silent Punishment grants 30 Signature Energy.","ShowFightEventIds":[752117],"RobotId":[2282],"CharacterType":1},{"StageId":30100125,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780033],"RobotId":[2285],"CharacterType":1},{"StageId":30100126,"DescDetail":"1. Lilith: Daemonissa gains 1 extra Yellow/Blue Orb for each phase of Basic Attack.\\n2. When Lilith: Daemonissa is in Crazy Gamble, Increase Extra DMG permanently by 7% for each tap on Red Orb. Effect can be stacked.","ShowFightEventIds":[780033],"RobotId":[2286],"CharacterType":1},{"StageId":30100127,"DescDetail":"1. Lilith: Daemonissa gains 1 extra Yellow/Blue Orb for each phase of Basic Attack.\\n2. When Lilith: Daemonissa is in Crazy Gamble, press Basic Attack to increase the Plasma Beam DMG by 2% for each Yellow Orb consumed. Effect can be stacked.","ShowFightEventIds":[780914],"RobotId":[2286],"CharacterType":1},{"StageId":30100131,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780043],"RobotId":[2288],"CharacterType":1},{"StageId":30100132,"DescDetail":"1. Selena: Pianissimo will gain a set of 3-Ping Orbs upon launching a Basic Attack.\\n2. After casting [Basic Attack - Echoing Melody], [Melodic Outburst]'s Extra DMG increases by 50%.\\n3. After successfully blocking an incoming enemy attack with [Basic Attack - Echoing Melody], Selena: Pianissimo gains 100% ATK for 8s.","ShowFightEventIds":[780043],"RobotId":[2289],"CharacterType":1},{"StageId":30100133,"DescDetail":"1. Selena: Pianissimo will gain extra 200 Glaciation Value and a set of 3-Ping Orbs upon launching a Basic Attack.\\n2. After casting [Concerto Orbs], Selena: Pianissimo will deal 10% more Glaciation DMG through [Signature - Majestic Interlude/Signature - Note of Termination].\\n3. After successfully blocking an incoming enemy attack with [Basic Attack - Echoing Melody], Selena: Pianissimo gains 100% ATK for 8s.","ShowFightEventIds":[780923],"RobotId":[2289],"CharacterType":1},{"StageId":30100139,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780033],"RobotId":[172103],"CharacterType":1},{"StageId":30100140,"DescDetail":"1. After Jetavie: Daybreak casts [Kinetic Load], Extra DMG of [Reflection Chain] and [Tectonic Revolt] increases by 50% for 10s. This duration resets every time it is triggered.\\n2. Jetavie: Daybreak gains a set of 3-Ping Orbs with every Basic Attack.\\n3. Successfully dodging an attack by releasing the charge button while Jetavie: Daybreak is in Charge Stance increases ATK by 100% for 12s. This duration resets every time it is triggered.","ShowFightEventIds":[780033],"RobotId":[172106],"CharacterType":1},{"StageId":30100141,"DescDetail":"1. After Jetavie: Daybreak casts [Flaming Gush], Base Ignition DMG of [Tectonic Revolt: Burn] increases by 1200% for 10s. This duration resets every time it is triggered.\\n2. Jetavie: Daybreak's [Kindled Blaze] inflicts an additional 5000 Combustible Charge and returns two sets of 3-Ping Orbs.\\n3. Successfully dodging an attack by releasing the charge button while Jetavie: Daybreak is in Charge Stance increases ATK by 100% for 12s. This duration resets every time it is triggered.","ShowFightEventIds":[780917],"RobotId":[172107],"CharacterType":1},{"StageId":30100148,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780043],"RobotId":[2298],"CharacterType":1},{"StageId":30100149,"DescDetail":"1. Vergil gains 20% CRIT DMG and 20% Extra DMG Bonus after casting Sin Devil Trigger, stacking up to 5 times.\\n2. In regular form, Vergil restores 3 Signal Orbs with each Basic Attack. In SDT Form, he restores 1 extra Signal Orb for each Basic Attack.\\n3. In SDT Form, Vergil gains 100% Extra DMG Bonus (cannot be stacked) that lasts until he takes hit or exits SDT Form.","ShowFightEventIds":[780043],"RobotId":[2298],"CharacterType":1},{"StageId":30100150,"DescDetail":"1. Vergil gains 10% Ultima Slash DMG after casting Sin Devil Trigger, stacking up to 500%.\\n2. In regular form, Vergil restores 3 Signal Orbs with each Basic Attack. In SDT Form, he restores 1 extra Signal Orb for each Basic Attack.\\n3. In SDT Form, Vergil gains 100% Extra DMG Bonus (cannot be stacked) that lasts until he takes hit or exits SDT Form.","ShowFightEventIds":[780920],"RobotId":[2298],"CharacterType":1},{"StageId":30100151,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780003],"RobotId":[2300],"CharacterType":1},{"StageId":30100152,"DescDetail":"1. Dante gains a 20% Fire DMG Bonus after consuming 30 DT/SDT, up to 200%.\\n2. Restores 3 Signal Orbs for each Basic Attack in normal status.","ShowFightEventIds":[780003],"RobotId":[2301],"CharacterType":1},{"StageId":30100153,"DescDetail":"1. Dante gains a 20% Ignition DMG Bonus after consuming 30 DT/SDT, up to 200%.\\n2. Restores 3 Signal Orbs for each Basic Attack in normal status.","ShowFightEventIds":[780917],"RobotId":[2301],"CharacterType":1},{"StageId":30100157,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780003],"RobotId":[2291],"CharacterType":1},{"StageId":30100158,"DescDetail":"1. Casting [Shadowhunt Tremor] will increase the Extra Fire DMG of [Hellfire Crucible], [Razor Whirlwind], [Rending Ravage], and [Scorched in Void] by 10% for 10s.\\n2. A successful counterattack with [Ashen Dance] will increase the character's ATK by 100% for 12s. Duration resets every time it is triggered.\\n3. Basic Attacks grant 1 Signal Orb.","ShowFightEventIds":[780003],"RobotId":[2292],"CharacterType":1},{"StageId":30100159,"DescDetail":"1. Casting [Shadowhunt Tremor] will increase the Extra Darkflow DMG of [Hellfire Crucible], [Razor Whirlwind], [Rending Ravage], and [Scorched in Void] by 1000% for 10s.\\n2. A successful counterattack with [Ashen Dance] will increase the character's ATK by 100% for 12s. Duration resets every time it is triggered.\\n3. [Tempered in Midnight] restores a bonus set of Red Orbs.","ShowFightEventIds":[780926],"RobotId":[2292],"CharacterType":1},{"StageId":30100163,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780033],"RobotId":[2303],"CharacterType":1},{"StageId":30100164,"DescDetail":"1. Casting [Abyssal Expansion] and [Severed Sea - Devouring Sky] increases the damage of [Final Prayer - Shadow Strangle] by 20%, up to 500%.\\n2. Each Basic Attack restores 3 Signal Orbs.","ShowFightEventIds":[780033],"RobotId":[2304],"CharacterType":1},{"StageId":30100165,"DescDetail":"1. Casting [Final Prayer: Ember Extinction] grants 200 Raydiance Value. Bianca's Raydiance Value acquisition efficiency increases by 100% throughout.\\n2. Each time when Bianca enters the Radiant Baptism Form, all DMG increases by 20%, up to 200%.\\n3. Each Basic Attack restores 3 Signal Orbs.","ShowFightEventIds":[780914,780013],"RobotId":[2304],"CharacterType":1},{"StageId":30100169,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780043],"RobotId":[2306],"CharacterType":1},{"StageId":30100170,"DescDetail":"1. Casting [Severing Finale: Rampant Shears] increases Red Orb Extra DMG by 100%, up to 1000%.\\n2. Each Basic Attack restores one set of Signal Orbs.","ShowFightEventIds":[780043],"RobotId":[2307],"CharacterType":1},{"StageId":30100171,"DescDetail":"1. Casting [Severing Finale: Rampant Shears] increases Ultima Slash DMG by 150% for 12s.\\n2. Pressing and holding Dodge to cast [Purgatory Shear] grants an extra 300 Sharp Reserve every time.\\n3. Each Basic Attack restores one set of Signal Orbs.","ShowFightEventIds":[780920],"RobotId":[2307],"CharacterType":1},{"StageId":30100176,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780043],"RobotId":[2309],"CharacterType":1},{"StageId":30100177,"DescDetail":"1. Each time a Yellow Orb skill is cast (Severing Domain, Torrential Blast, Heavy Edge, and Piercing Judgment with Sin Mark), Extra DMG increases by 50%, up to 200%, for 5s. Duration resets every time it is triggered.\\n2. Gains 3 Blue Orbs when performing Basic Attacks during Adjudication.","ShowFightEventIds":[780043],"RobotId":[2310],"CharacterType":1},{"StageId":30100178,"DescDetail":"1. Each time a Yellow Orb skill is cast (Severing Domain, Torrential Blast, Heavy Edge, and Piercing Judgment with Sin Mark), Ignition DMG increases by 50%, up to 200%, for 5s. Duration resets every time it is triggered.\\n2. Gains 3 Blue Orbs when performing Basic Attacks during Adjudication.","ShowFightEventIds":[780917],"RobotId":[2310],"CharacterType":1},{"StageId":30100182,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780013],"RobotId":[2312],"CharacterType":1},{"StageId":30100183,"DescDetail":"1. When casting [Mirrored Renewal] at 12 Delicate Heart stacks, increases Mirrored Renewal's Lightning DMG by 50%, stacking up to 500%.\\n2. During Dream Dive, a successful counterattack with [Jade Shatter] increases ATK by 100% for 8s. Duration resets every time it is triggered.\\n3. Casting [Dream Dive] or [Mirrored Renewal] grants a set of Signal Orbs.","ShowFightEventIds":[780013],"RobotId":[2313],"CharacterType":1},{"StageId":30100184,"DescDetail":"1. When casting [Mirrored Renewal] at 12 Delicate Heart stacks, increases Mirrored Renewal's Darkflow DMG by 50%, stacking up to 500%.\\n2. During Dream Dive, a successful counterattack with [Jade Shatter] increases ATK by 100% for 8s. Duration resets every time it is triggered.\\n3. Casting [Dream Dive] or [Mirrored Renewal] grants a set of Signal Orbs. Each 3-Ping grants 5 Darkflow stacks.","ShowFightEventIds":[780926],"RobotId":[2313],"CharacterType":1},{"StageId":30100189,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780023],"RobotId":[2315],"CharacterType":1},{"StageId":30100190,"DescDetail":"After recording 3 types of Neon Orbs in the Data Domain, [Data Domain: Barrier Rift] Ice DMG increases by 25%, stacking up to 250%.","ShowFightEventIds":[780023],"RobotId":[2316],"CharacterType":1},{"StageId":30100191,"DescDetail":"When Raydiance Effect is activated, Raydiance DMG from casting [Yellow Neon Orb] (Deafening Blast, Pulse Noise Penetration) increases by 300%.","ShowFightEventIds":[780914,780013],"RobotId":[2316,2321],"CharacterType":1},{"StageId":30100195,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780033],"RobotId":[2318],"CharacterType":1},{"StageId":30100196,"DescDetail":"Each Basic Attack (including charged Basic Attacks) increases Extra DMG by 50% (up to 200%) for 5s. Duration resets every time it is triggered.","ShowFightEventIds":[780033],"RobotId":[2319],"CharacterType":1},{"StageId":30100197,"DescDetail":"Each Basic Attack (including charged Basic Attacks) increases Extra DMG by 50% (up to 200%) for 5s. Duration resets every time it is triggered.","ShowFightEventIds":[780920],"RobotId":[2319],"CharacterType":1},{"StageId":30100207,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[752117],"RobotId":[2322],"CharacterType":1},{"StageId":30100208,"DescDetail":"1. After Nirvatia: Dirge casts a [Yellow Orb Skill] (Raven Ritual, Hanging Phantom, Twilight Chaos), her Nihil DMG increases by 50%, up to 200%, for 5s. Duration resets every time it is triggered.\\n2. After Nirvatia: Dirge casts a [Ravenborn Form] skill (Death Stroke, Nether Blade), she gains a set of Signal Orbs.\\n3. After Nirvatia: Dirge casts [Death's Promise], she gains a set of Signal Orbs.","ShowFightEventIds":[752117],"RobotId":[2323],"CharacterType":1},{"StageId":30100209,"DescDetail":"1. After Nirvatia: Dirge casts a [Yellow Orb Skill] (Raven Ritual, Hanging Phantom, Twilight Chaos), her Nihil DMG increases by 50%, up to 200%, for 5s. Duration resets every time it is triggered.\\n2. After Nirvatia: Dirge casts [Death's Promise], she gains two sets of Signal Orbs.","ShowFightEventIds":[752117],"RobotId":[2323],"CharacterType":1},{"StageId":30100214,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780003],"RobotId":[2325],"CharacterType":1},{"StageId":30100215,"DescDetail":"1. Each time Kamui: Aeternion casts [Press and Hold Dodge - Crown Arc] and [Press and Hold Basic Attack - Ignited Radiance] that consume Output, Fire DMG increases by 100% for 10s. Duration resets every time it is triggered.\\n2. Kamui: Aeternion gains 6 Blue Orbs after casting [Signature Move - Molten Heart].","ShowFightEventIds":[780003],"RobotId":[2326],"CharacterType":1},{"StageId":30100216,"DescDetail":"1. Each time Kamui: Aeternion casts [Press and Hold Yellow Orb - Solar Poise] and [Tap Yellow Orb - Fusion Slash] when 90 Output is available, Plasma Beam DMG increases by 50%, up to 500%.\\n2. Kamui: Aeternion gains 6 Blue Orbs after casting [Signature Move - Molten Heart].","ShowFightEventIds":[780914],"RobotId":[2326,172404,2286],"CharacterType":1},{"StageId":30100220,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780023],"RobotId":[2328],"CharacterType":1},{"StageId":30100221,"DescDetail":"1. After Lucia: Inverse Crown casts [3-Ping Yellow - Silent Night] while in Abyssborn Form, her Ice DMG increases by 50%, up to 200%, for 5s. Duration resets every time it is triggered.\\n2. After Lucia: Inverse Crown casts [Signature - Silenced Abysslight], she gains a set of Signal Orbs.","ShowFightEventIds":[780023],"RobotId":[2329],"CharacterType":1},{"StageId":30100222,"DescDetail":"1. After Lucia: Inverse Crown casts [3-Ping Yellow - Silent Night] while in Abyssborn Form, her Ignition DMG increases by 50%, up to 200%, for 5s. Duration resets every time it is triggered.\\n2. After Lucia: Inverse Crown casts [Signature - Silenced Abysslight], she gains a set of Signal Orbs.\\n3. After each [Basic Attack], Lucia: Inverse Crown gains 1 Combustible stack. While Ablaze is inactive, she also gains 1 Ablaze stack.","ShowFightEventIds":[780917],"RobotId":[2329],"CharacterType":1},{"StageId":30100226,"DescDetail":"Defeat the enemy!","ShowFightEventIds":[780013],"RobotId":[2331],"CharacterType":1},{"StageId":30100227,"DescDetail":"1. Each time Helentine: Lacrimosa casts the Aberrant Orb skill, gains 1 set of random orbs.\\n2. After Helentine: Lacrimosa casts the Aberrant Orb skill, Lightning DMG increases by 20%, up to a maximum of 200%.","ShowFightEventIds":[780013],"RobotId":[2332],"CharacterType":1},{"StageId":30100228,"DescDetail":"1. Each time Helentine: Lacrimosa casts Phase 2 Signature, gains 3 additional sets of random orbs.\\n2. After Helentine: Lacrimosa casts Signature, Glaciation DMG increases by 50%, up to a maximum of 200%.","ShowFightEventIds":[780921],"RobotId":[2332],"CharacterType":1}],"Stages":[{"StageId":30100103,"Type":17,"Name":"Basic Dodge","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100103,"FirstRewardId":30100103,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Use the Dodge techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4000],"NeedJobType":[1,2,3]},{"StageId":30100203,"Type":17,"Name":"Extreme Dodge","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics2.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":2,"LimitBuffId":1,"FirstRewardShow":30100203,"FirstRewardId":30100203,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Use the Dodge techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4000],"NeedJobType":[1,2,3]},{"StageId":30100303,"Type":17,"Name":"Swap Dodge","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics3.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":3,"LimitBuffId":1,"FirstRewardShow":30100303,"FirstRewardId":30100303,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Use the Dodge techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4001,4002,4000],"NeedJobType":[1,2,3]},{"StageId":30100503,"Type":17,"Name":"QTE Skill","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics4.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100503,"FirstRewardId":30100503,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Understand how 3-ping QTE Skill works."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4000,4100,4101],"NeedJobType":[1,2,3]},{"StageId":30100504,"Type":17,"Name":"Ping Techniques","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics5.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":2,"LimitBuffId":1,"FirstRewardShow":30100504,"FirstRewardId":30100504,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Understand how 3-ping works."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4001],"NeedJobType":[1,2,3]},{"StageId":30100704,"Type":17,"Name":"Construct Type","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics6.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":3,"LimitBuffId":1,"FirstRewardShow":30100704,"FirstRewardId":30100704,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Understand different Construct types."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4003,4004,4002],"NeedJobType":[1,2,3]},{"StageId":30100701,"Type":17,"Name":"Attacker Tutorial","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics4.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"NeedJobType":[1,2,3]},{"StageId":30100702,"Type":17,"Name":"Support Tutorial","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics5.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"NeedJobType":[1,2,3]},{"StageId":30100703,"Type":17,"Name":"Tank Tutorial","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics6.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"NeedJobType":[1,2,3]},{"StageId":30100801,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4000],"NeedJobType":[1,2,3]},{"StageId":30100802,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4001],"NeedJobType":[1,2,3]},{"StageId":30100803,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4002],"NeedJobType":[1,2,3]},{"StageId":30100804,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4005],"NeedJobType":[1,2,3]},{"StageId":30100805,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4006],"NeedJobType":[1,2,3]},{"StageId":30100806,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4007],"NeedJobType":[1,2,3]},{"StageId":30100807,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4008],"NeedJobType":[1,2,3]},{"StageId":30100808,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4009],"NeedJobType":[1,2,3]},{"StageId":30100809,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4003],"NeedJobType":[1,2,3]},{"StageId":30100810,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4004],"NeedJobType":[1,2,3]},{"StageId":30100811,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4010],"NeedJobType":[1,2,3]},{"StageId":30100812,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4011],"NeedJobType":[1,2,3]},{"StageId":30100813,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4012],"NeedJobType":[1,2,3]},{"StageId":30100814,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4013],"NeedJobType":[1,2,3]},{"StageId":30100815,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4014],"NeedJobType":[1,2,3]},{"StageId":30100816,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4015],"NeedJobType":[1,2,3]},{"StageId":30100817,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4017],"NeedJobType":[1,2,3]},{"StageId":30100818,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4016],"NeedJobType":[1,2,3]},{"StageId":30100819,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4018],"NeedJobType":[1,2,3]},{"StageId":30100820,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4019],"NeedJobType":[1,2,3]},{"StageId":30100821,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[8020],"NeedJobType":[1,2,3]},{"StageId":30100822,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4020],"NeedJobType":[1,2,3]},{"StageId":30100823,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9011],"NeedJobType":[1,2,3]},{"StageId":30100824,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9000],"NeedJobType":[1,2,3]},{"StageId":30100825,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1132],"NeedJobType":[1,2,3]},{"StageId":30100826,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1136],"NeedJobType":[1,2,3]},{"StageId":30100827,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"NormalEventId":[2],"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1135],"NeedJobType":[1,2,3]},{"StageId":30100830,"Type":36,"Name":"CTL03","Description":"QTE & Character Entrance","Icon":"Assets/Product/Texture/Image/UiNewCharActivity/NewCharActivityTab03.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":3,"LimitBuffId":1,"PreStageId":[30100837],"OnlinePlayerLimit":3,"StarDesc":["Use Luna: Laurel in battle","Have all members survive.","Die no more than once."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1143,1137],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100831]},{"StageId":30100831,"Type":36,"Name":"CTL04","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiNewCharActivity/NewCharActivityTab04.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":4,"LimitBuffId":1,"PreStageId":[30100830],"OnlinePlayerLimit":3,"StarDesc":["Use Luna: Laurel in battle","Have all members survive.","Die no more than once."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1137,2205,2211],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100832,"Type":17,"Name":"T02","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1142],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100833,"Type":17,"Name":"T02","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1155],"NeedJobType":[1,2,3]},{"StageId":30100834,"Type":17,"Name":"T02","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1153],"NeedJobType":[1,2,3]},{"StageId":30100835,"Type":17,"Name":"T02","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1154],"NeedJobType":[1,2,3]},{"StageId":30100836,"Type":36,"Name":"CTL01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiNewCharActivity/NewCharActivityTab01.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Use Luna: Laurel in battle","Have all members survive.","Die no more than once."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1142],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100837]},{"StageId":30100837,"Type":36,"Name":"CTL02","Description":"Core Skill Description","Icon":"Assets/Product/Texture/Image/UiNewCharActivity/NewCharActivityTab02.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":2,"LimitBuffId":1,"PreStageId":[30100836],"OnlinePlayerLimit":3,"StarDesc":["Use Luna: Laurel in battle","Have all members survive.","Die no more than once."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1142],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100830]},{"StageId":30100850,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1166],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100851,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1165],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100856,"Type":17,"Name":"T02","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9082],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100857,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1167],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100858,"Type":36,"Name":"CTW01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiWeilaTutorial/GridWeilaTutorial2-1.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Skill Mechanism of Constructs","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9088],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100859]},{"StageId":30100859,"Type":36,"Name":"CTW02","Description":"Core Skill Description","Icon":"Assets/Product/Texture/Image/UiWeilaTutorial/GridWeilaTutorial2-2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100858],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Core Mechanism of Constructs","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9088],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100860]},{"StageId":30100860,"Type":36,"Name":"CTW03","Description":"S Vera - QTE & Character Entrance","Icon":"Assets/Product/Texture/Image/UiWeilaTutorial/GridWeilaTutorial2-3.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100859],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the QTE and Entrance Mechanism of Constructs","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9091,9088],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100861]},{"StageId":30100861,"Type":36,"Name":"CTW04","Description":"S Vera - Character Rank-up","Icon":"Assets/Product/Texture/Image/UiWeilaTutorial/GridWeilaTutorial2-4.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100860],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Rank-up Mechanism of Constructs","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9090],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100862,"Type":17,"Name":"T02","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9088],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100864,"Type":36,"Name":"T01","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiLuolanTutorial/GridLuolanTutoria1.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Core Mechanism of Constructs.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9093],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100865]},{"StageId":30100865,"Type":36,"Name":"T02","Description":"Dodge Combo","Icon":"Assets/Product/Texture/Image/UiLuolanTutorial/GridLuolanTutoria1.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100864],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's Extreme Dodge mechanism.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9093],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100866]},{"StageId":30100866,"Type":36,"Name":"T03","Description":"Advanced & Combat","Icon":"Assets/Product/Texture/Image/UiLuolanTutorial/GridLuolanTutoria1.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100865],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9095],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100867,"Type":17,"Name":"T01","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9093],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100868,"Type":36,"Name":"T01","Description":"Basic Skill","Icon":"Assets/Product/Texture/Image/UiLifuActivity/UiLifuActivityStage02.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9098],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100869]},{"StageId":30100869,"Type":36,"Name":"T02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiLifuActivity/UiLifuActivityStage02.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100868],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9098],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100870]},{"StageId":30100870,"Type":36,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiLifuActivity/UiLifuActivityStage02.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100869],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4013,9098],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100871]},{"StageId":30100871,"Type":36,"Name":"T04","Description":"Advanced & Combat","Icon":"Assets/Product/Texture/Image/UiLifuActivity/UiLifuActivityStage02.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100870],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9099],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100872,"Type":17,"Name":"T02","Description":"Core Passive","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9098],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100873,"Type":36,"Name":"T01","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiSelenaActivity/UiSelenaActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9102],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100874]},{"StageId":30100874,"Type":36,"Name":"T02","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiSelenaActivity/UiSelenaActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100873],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9106,9103],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100875]},{"StageId":30100875,"Type":36,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiSelenaActivity/UiSelenaActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30100874],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9103],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100877,"Type":17,"Name":"T01","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9102],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100878,"Type":36,"Name":"T01","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiPulaoActivity/UiPulaoActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2213],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100879]},{"StageId":30100879,"Type":36,"Name":"T02","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiPulaoActivity/UiPulaoActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100878],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1135,2214],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100880]},{"StageId":30100880,"Type":36,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiPulaoActivity/UiPulaoActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100879],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Follow the guide to complete the tutorial."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2214],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100881,"Type":17,"Name":"T01","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2213],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100882,"Type":17,"Name":"Finishing Move Tutorial","Description":"Tutorial Stage","Icon":"Assets/Product/Texture/Image/UiFubenPractice/Basics7.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100705,"FirstRewardId":30100705,"OnlinePlayerLimit":3,"StarDesc":["Uniframes can destroy the enemy's defense.","And then use the Finishing Move on the enemy."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9093],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100883,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1142],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100884,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":3,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1143,1137],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100885,"Type":17,"Name":"T04","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":4,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1137,2205,2211],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100886,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":2,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1155],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100887,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":2,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1153],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100888,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":2,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1154],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100889,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":2,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1153,1155],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100890,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":2,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1154,1153],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100891,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":2,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":2,"FunctionRightBtn":1,"RobotId":[1155,1154],"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100892,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9082],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100893,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1129,9082],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100894,"Type":17,"Name":"T04","Description":"Advanced & Actual Combat","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9086],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100895,"Type":17,"Name":"T01","Description":"Basic Skill Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9088],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100896,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9091,9088],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100897,"Type":17,"Name":"T04","Description":"Advanced & Actual Combat","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9090],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100898,"Type":17,"Name":"T02","Description":"Dodge Combo","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9093],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100899,"Type":17,"Name":"T03","Description":"Advanced & Actual Combat","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9095],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100900,"Type":17,"Name":"T01","Description":"Basic Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9098],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100901,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[4013,9098],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100902,"Type":17,"Name":"T04","Description":"Advanced & Actual Combat","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9099],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100903,"Type":17,"Name":"T02","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9106,9103],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100904,"Type":17,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9103],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100905,"Type":17,"Name":"T02","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1135,2214],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100906,"Type":17,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2214],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100907,"Type":36,"Name":"T01","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiNanamiActivity/UiNanamiActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2216],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100908]},{"StageId":30100908,"Type":36,"Name":"T02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiNanamiActivity/UiNanamiActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100907],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2216],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100909]},{"StageId":30100909,"Type":36,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiNanamiActivity/UiNanamiActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100908],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9098,2217],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100910]},{"StageId":30100910,"Type":36,"Name":"T04","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiNanamiActivity/UiNanamiActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100909],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2217],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100911,"Type":17,"Name":"T01","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2216],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100912]},{"StageId":30100912,"Type":17,"Name":"T02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100911],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2216],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100913]},{"StageId":30100913,"Type":17,"Name":"T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100912],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9098,2217],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100914]},{"StageId":30100914,"Type":17,"Name":"T04","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100913],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2217],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100915,"Type":36,"Name":"T01","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiHachamaActivity/UiHachamaActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2220],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100916]},{"StageId":30100916,"Type":36,"Name":"T02","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiHachamaActivity/UiHachamaActivityBtnTeaching002.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100915],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9086,2221],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100917]},{"StageId":30100917,"Type":36,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiHachamaActivity/UiHachamaActivityBtnTeaching003.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100916],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2221],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100918,"Type":17,"Name":"T01","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2220],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100919]},{"StageId":30100919,"Type":17,"Name":"T02","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100918],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9086,2221],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100920]},{"StageId":30100920,"Type":17,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100919],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2221],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100921,"Type":17,"Name":"Dawn - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2225,9090],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100922,"Type":17,"Name":"Palefire - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2224],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100923,"Type":17,"Name":"Luminance - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2227,1156],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100924,"Type":36,"Name":"Scire - T01","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiSuperKareninaActivity/UiSuperKareninaActivityTutorial001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2229],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100925]},{"StageId":30100925,"Type":36,"Name":"Scire - T02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiSuperKareninaActivity/UiSuperKareninaActivityTutorial002.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100924],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2229],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100926]},{"StageId":30100926,"Type":36,"Name":"Scire - T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiSuperKareninaActivity/UiSuperKareninaActivityTutorial003.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100925],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9103,2230],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100927]},{"StageId":30100927,"Type":36,"Name":"Scire - T04","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiSuperKareninaActivity/UiSuperKareninaActivityTutorial004.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100926],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2230],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100928,"Type":17,"Name":"Scire - T01","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2229],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100929]},{"StageId":30100929,"Type":17,"Name":"Scire - T02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100928],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2229],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100930]},{"StageId":30100930,"Type":17,"Name":"Scire - T03","Description":"Character Switch","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100929],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9103,2230],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100931]},{"StageId":30100931,"Type":17,"Name":"Scire - T04","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100930],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2230],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100068]},{"StageId":30100932,"Type":17,"Name":"Astral - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2232],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100933,"Type":36,"Name":"T01","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiNoanActivity/UiNoanActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9113],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100934]},{"StageId":30100934,"Type":36,"Name":"T02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiNoanActivity/UiNoanActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100933],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9113],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100935]},{"StageId":30100935,"Type":36,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiNoanActivity/UiNoanActivityBtnTeaching001.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100934],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9114],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100936,"Type":17,"Name":"T01","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9113],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100937]},{"StageId":30100937,"Type":17,"Name":"T02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100936],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9113],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100938]},{"StageId":30100938,"Type":17,"Name":"T03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100937],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9114],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100939,"Type":17,"Name":"Rigor - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[1156,2235],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100940,"Type":17,"Name":"B1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9118],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100941]},{"StageId":30100941,"Type":17,"Name":"B2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100940],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9118],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100942]},{"StageId":30100942,"Type":17,"Name":"B3","Description":"Signature Move","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100941],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9118],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100943]},{"StageId":30100943,"Type":17,"Name":"B4","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100942],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9119],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100088]},{"StageId":30100944,"Type":36,"Name":"B1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UISuperBiancaActivity/UISuperBiancaActivityLevelTutorial.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9118],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100945]},{"StageId":30100945,"Type":36,"Name":"B2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UISuperBiancaActivity/UISuperBiancaActivityLevelTutorial.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100944],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9118],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100946]},{"StageId":30100946,"Type":36,"Name":"B3","Description":"Signature Move","Icon":"Assets/Product/Texture/Image/UISuperBiancaActivity/UISuperBiancaActivityLevelTutorial.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100945],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9118],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100947]},{"StageId":30100947,"Type":36,"Name":"B4","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UISuperBiancaActivity/UISuperBiancaActivityLevelTutorial.png","BgmId":155,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100946],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9119],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100948,"Type":17,"Name":"N1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":166,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9133],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100949]},{"StageId":30100949,"Type":17,"Name":"N2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":166,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100948],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9131],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100950]},{"StageId":30100950,"Type":17,"Name":"N3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":166,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100949],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9131],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100951,"Type":36,"Name":"EX-01","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiBombinataMain/UiBombinatateaching01.png","BgmId":166,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9133],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100952]},{"StageId":30100952,"Type":36,"Name":"EX-02","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiBombinataMain/UiBombinatateaching02.png","BgmId":166,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100951],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9131],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100953]},{"StageId":30100953,"Type":36,"Name":"EX-03","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiBombinataMain/UiBombinatateaching03.png","BgmId":166,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100952],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9131],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100954,"Type":17,"Name":"T-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2240],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100955]},{"StageId":30100955,"Type":17,"Name":"T-2","Description":"Advanced Basics","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100954],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2240],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100956]},{"StageId":30100956,"Type":17,"Name":"T-3","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100955],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2241],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100957]},{"StageId":30100957,"Type":17,"Name":"T-4","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100956],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2241],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100958,"Type":36,"Name":"T-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiLeeActivity/UiLeeActivityBtnTeaching001.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2240],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100959]},{"StageId":30100959,"Type":36,"Name":"T-2","Description":"Advanced Basics","Icon":"Assets/Product/Texture/Image/UiLeeActivity/UiLeeActivityBtnTeaching001.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100958],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2240],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100960]},{"StageId":30100960,"Type":36,"Name":"T-3","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiLeeActivity/UiLeeActivityBtnTeaching001.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100959],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2241],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100961]},{"StageId":30100961,"Type":36,"Name":"T-4","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiLeeActivity/UiLeeActivityBtnTeaching001.png","BgmId":172,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100960],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2241],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100962,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":184,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9147],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100963]},{"StageId":30100963,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":184,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100962],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9147],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100964]},{"StageId":30100964,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":184,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100963],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9147],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100965,"Type":36,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiAylaActivity/UiAylaActivityBtnTeaching001.png","BgmId":184,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9147],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100966]},{"StageId":30100966,"Type":36,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiAylaActivity/UiAylaActivityBtnTeaching001.png","BgmId":184,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100965],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9147],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100967]},{"StageId":30100967,"Type":36,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiAylaActivity/UiAylaActivityBtnTeaching001.png","BgmId":184,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100966],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9147],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100968,"Type":17,"Name":"Rozen - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127100,0,1142],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100969,"Type":17,"Name":"B-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":226,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9161],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100970]},{"StageId":30100970,"Type":17,"Name":"B-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":226,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100969],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9161],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100971]},{"StageId":30100971,"Type":17,"Name":"B-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":226,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100970],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9161],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100099]},{"StageId":30100099,"Type":17,"Name":"B-4","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":226,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100971],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9239],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100972,"Type":36,"Name":"B-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiLuciaActivity/UiLuciaActivityBtnTeaching001.png","BgmId":226,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9161],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100973]},{"StageId":30100973,"Type":36,"Name":"B-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiLuciaActivity/UiLuciaActivityBtnTeaching001.png","BgmId":226,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100972],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9161],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100974]},{"StageId":30100974,"Type":36,"Name":"B-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiLuciaActivity/UiLuciaActivityBtnTeaching001.png","BgmId":226,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100973],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9161],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100975,"Type":17,"Name":"H-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":243,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127101],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100976]},{"StageId":30100976,"Type":17,"Name":"H-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":243,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100975],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127101],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100977]},{"StageId":30100977,"Type":17,"Name":"H-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":243,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100976],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127101],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100978,"Type":36,"Name":"H-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiHanyingActivity/UiHanyingActivityBtnTeaching001.png","BgmId":100,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127101],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100979]},{"StageId":30100979,"Type":36,"Name":"H-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiHanyingActivity/UiHanyingActivityBtnTeaching001.png","BgmId":100,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100978],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127101],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100980]},{"StageId":30100980,"Type":36,"Name":"H-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiHanyingActivity/UiHanyingActivityBtnTeaching001.png","BgmId":100,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100979],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127101],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100981,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":245,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9172],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100982]},{"StageId":30100982,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":245,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100981],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9172],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100983]},{"StageId":30100983,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":245,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100982],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9172],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100984,"Type":36,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/Ui21HaoActivity/Ui21HaoActivityBtnTeaching001.png","BgmId":100,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9172],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100985]},{"StageId":30100985,"Type":36,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/Ui21HaoActivity/Ui21HaoActivityBtnTeaching001.png","BgmId":100,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100984],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9172],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100986]},{"StageId":30100986,"Type":36,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/Ui21HaoActivity/Ui21HaoActivityBtnTeaching001.png","BgmId":100,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100985],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9172],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100987,"Type":17,"Name":"Pulse - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9173],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100988,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":258,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127420],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100989]},{"StageId":30100989,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":258,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100988],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127420],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100990]},{"StageId":30100990,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":258,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100989],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127420],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100991,"Type":36,"Name":"A1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UINoktiActivity/UINoktiActivityLevelTutoria.png","BgmId":258,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127420],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100992]},{"StageId":30100992,"Type":36,"Name":"A2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UINoktiActivity/UINoktiActivityLevelTutoria.png","BgmId":258,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100991],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127420],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100993]},{"StageId":30100993,"Type":36,"Name":"A3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UINoktiActivity/UINoktiActivityLevelTutoria.png","BgmId":258,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100992],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127420],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100994,"Type":17,"Name":"Crimson Abyss - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9186],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100995,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":273,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127617],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100996]},{"StageId":30100996,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":273,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100995],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127617],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100997]},{"StageId":30100997,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":273,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100996],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127618],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100135]},{"StageId":30100135,"Type":17,"Name":"A-4","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":273,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100997],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9243],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100998,"Type":36,"Name":"A1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIEchoActivity/UIEchoActivityLevel1Tutorial.png","BgmId":273,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127617],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100999]},{"StageId":30100999,"Type":36,"Name":"A2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIEchoActivity/UIEchoActivityLevel2Tutorial.png","BgmId":273,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100998],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127617],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100000]},{"StageId":30100000,"Type":36,"Name":"A3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIEchoActivity/UIEchoActivityLevel3Tutorial.png","BgmId":273,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100999],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127618],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100001,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":296,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2249],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100002]},{"StageId":30100002,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":296,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100001],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2249],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100003]},{"StageId":30100003,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":296,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100002],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2250],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100004,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiLamiaActivity/UILamiaActivityLevelTutoria.png","BgmId":296,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2249],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100005]},{"StageId":30100005,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiLamiaActivity/UILamiaActivityLevelTutoria.png","BgmId":296,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100004],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2249],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100006]},{"StageId":30100006,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiLamiaActivity/UILamiaActivityLevelTutoria.png","BgmId":296,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100005],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2250],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100007,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":336,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2252],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100008]},{"StageId":30100008,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":336,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100007],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2252],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100009]},{"StageId":30100009,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":336,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100008],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2253],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100010,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIBRSActivity/UIBRSActivityLevel1Tutorial.png","BgmId":335,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2252],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100011]},{"StageId":30100011,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIBRSActivity/UIBRSActivityLevel2Tutorial.png","BgmId":335,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100010],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2252],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100012]},{"StageId":30100012,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIBRSActivity/UIBRSActivityLevel3Tutorial.png","BgmId":335,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100011],"FirstRewardShow":12051,"FirstRewardId":12051,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2253],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100013,"Type":17,"Name":"Veritas - T02","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9204],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100017,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":354,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2254],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100018]},{"StageId":30100018,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":354,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100017],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2254],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100019]},{"StageId":30100019,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":354,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100018],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2255],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100014,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":354,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2254],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100015]},{"StageId":30100015,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":354,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100014],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2254],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100016]},{"StageId":30100016,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":354,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100015],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2255],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100166]},{"StageId":30100166,"Type":17,"Name":"A-4","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":354,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100016],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[172200],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100020,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":368,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2257],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100021]},{"StageId":30100021,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":368,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100020],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2257],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100022]},{"StageId":30100022,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":368,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100021],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2258],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100023,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":368,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2257],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100024]},{"StageId":30100024,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":368,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100023],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2257],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100025]},{"StageId":30100025,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":368,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100024],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2258],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100026,"Type":17,"Name":"Garnet - T05","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9212],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100027,"Type":17,"Name":"Empyrea - T05","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9219],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100031,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":379,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2260],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100032]},{"StageId":30100032,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":379,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100031],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2260],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100033]},{"StageId":30100033,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":379,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100032],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2261],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100034,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":379,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2260],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100035]},{"StageId":30100035,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":379,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100034],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2260],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100036]},{"StageId":30100036,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":379,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100035],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2261],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100040,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":391,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2262],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100041]},{"StageId":30100041,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":391,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100040],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2262],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100042]},{"StageId":30100042,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":391,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100041],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2263],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100185]},{"StageId":30100185,"Type":17,"Name":"A-4","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":391,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100042],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9244],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100043,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":391,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2262],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100044]},{"StageId":30100044,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":391,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100043],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2262],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100045]},{"StageId":30100045,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":391,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100044],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2263],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100049,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5003,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2265],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100050]},{"StageId":30100050,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":5003,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100049],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2265],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100051]},{"StageId":30100051,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5003,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100050],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2266],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100052,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":5003,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2265],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100053]},{"StageId":30100053,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":5003,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100052],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2265],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100054]},{"StageId":30100054,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":5003,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100053],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2266],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100055,"Type":36,"Name":"Disruption Effect Tutorial","Description":"Effect Tutorial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2263,2261],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100056,"Type":36,"Name":"Ignition Effect Tutorial","Description":"Effect Tutorial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2266],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100057,"Type":36,"Name":"Plasma Beam Effect Tutorial","Description":"Effect Tutorial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9229],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100058,"Type":36,"Name":"Ultima Slash Effect Tutorial","Description":"Effect Tutorial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127648],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100075,"Type":36,"Name":"Glaciation Effect Tutorial","Description":"Effect Tutorial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127649],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100098,"Type":36,"Name":"Darkflow Effect Tutorial","Description":"Effect Tutorial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127653],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30101098,"Type":36,"Name":"Raydiance Effect Tutorial","Description":"Effect Tutorial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[127660],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100062,"Type":17,"Name":"A-1","Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5015,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2267],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100063]},{"StageId":30100063,"Type":17,"Name":"A-2","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":5015,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100062],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2267],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100064]},{"StageId":30100064,"Type":17,"Name":"A-3","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5015,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100063],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2268],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100213]},{"StageId":30100065,"Type":36,"Name":1,"Description":"Basic Description","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":5015,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2267],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100066]},{"StageId":30100066,"Type":36,"Name":2,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":5015,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100065],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2267],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100067]},{"StageId":30100067,"Type":36,"Name":3,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":5015,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100066],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2268],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100068,"Type":17,"Name":"Scire - T05","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100931],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9229],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100069,"Type":17,"Name":"A-1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5022,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2270],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100070]},{"StageId":30100070,"Type":17,"Name":"A-2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":5022,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100069],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2270],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100071]},{"StageId":30100071,"Type":17,"Name":"A-3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5022,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100070],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2270],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100072,"Type":36,"Name":1,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":5022,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2270],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100073]},{"StageId":30100073,"Type":36,"Name":2,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":5022,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100072],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2270],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100074]},{"StageId":30100074,"Type":36,"Name":3,"Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":5022,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100073],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips","Learn the Construct's combat techniques.","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2270],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100079,"Type":17,"Name":"A-1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5040,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2273],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100080]},{"StageId":30100080,"Type":17,"Name":"A-2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":5040,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100079],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2273],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100081]},{"StageId":30100081,"Type":17,"Name":"A-3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5040,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100080],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2273],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100082,"Type":36,"Name":1,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":5040,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2273],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100083]},{"StageId":30100083,"Type":36,"Name":2,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":5040,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100082],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2273],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100084]},{"StageId":30100084,"Type":36,"Name":3,"Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":5040,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100083],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2273],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100088,"Type":17,"Name":"B5","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":101,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100943],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9238],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100089,"Type":17,"Name":"A-1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5053,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2277],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100090]},{"StageId":30100090,"Type":17,"Name":"A-2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":5053,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100089],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2277],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100091]},{"StageId":30100091,"Type":17,"Name":"A-3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5053,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100090],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2277],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100092,"Type":36,"Name":1,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":5053,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2277],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100093]},{"StageId":30100093,"Type":36,"Name":2,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":5053,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100092],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2277],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100094]},{"StageId":30100094,"Type":36,"Name":3,"Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":5053,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100093],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2277],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100110,"Type":17,"Name":"A-1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2278],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100111]},{"StageId":30100111,"Type":17,"Name":"A-2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia1.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100110],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2278],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100112]},{"StageId":30100112,"Type":17,"Name":"A-3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100111],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2278],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[]},{"StageId":30100104,"Type":36,"Name":1,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Tutorial.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2278],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100105]},{"StageId":30100105,"Type":36,"Name":2,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Tutorial.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100104],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2278],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100106]},{"StageId":30100106,"Type":36,"Name":3,"Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Tutorial.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100105],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2278],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100116,"Type":36,"Name":1,"Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3CibeizheActivity/UiR3CibeizheActivityTutorial01.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the level with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2281],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100117]},{"StageId":30100117,"Type":36,"Name":2,"Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3CibeizheActivity/UiR3CibeizheActivityTutorial02.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100116],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the level with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2281],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100118]},{"StageId":30100118,"Type":36,"Name":3,"Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3CibeizheActivity/UiR3CibeizheActivityTutorial03.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100117],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Clear the level with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2284],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100122,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3LilithActivityV301/UiR3LilithActivityTutorial01.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2285],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100134]},{"StageId":30100124,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3LilithActivityV301/UiR3LilithActivityTutorial01.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100134],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2285],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100128,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5SailinnaActivityV302/UiR5SailinnaActivityTutorial01.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2288],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100129]},{"StageId":30100129,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5SailinnaActivityV302/UiR5SailinnaActivityTutorial01.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100128],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2288],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100130]},{"StageId":30100130,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5SailinnaActivityV302/UiR5SailinnaActivityTutorial01.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100129],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2288],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100134,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3LilithActivityV301/UiR3LilithActivityTutorial01.png","BgmId":5071,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100122],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2285],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100124]},{"StageId":30100136,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR2JietaweiActivityV303/UiR2JietaweiActivityTutorial01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[172103],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100137]},{"StageId":30100137,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR2JietaweiActivityV303/UiR2JietaweiActivityTutorial01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100136],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[172103],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100138]},{"StageId":30100138,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR2JietaweiActivityV303/UiR2JietaweiActivityTutorial01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100137],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[172103],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100142,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3VergilActivityV305/UiR3VergilActivityTutorial01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2297],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100143]},{"StageId":30100143,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3VergilActivityV305/UiR3VergilActivityTutorial02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100142],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2297],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100144]},{"StageId":30100144,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3VergilActivityV305/UiR3VergilActivityTutorial03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100143],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2297],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100145,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3DanteActivityV305/UiR3DanteActivityTutorial01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2300],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100146]},{"StageId":30100146,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3DanteActivityV305/UiR3DanteActivityTutorial02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100145],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2300],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100147]},{"StageId":30100147,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3DanteActivityV305/UiR3DanteActivityTutorial03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100146],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2300],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100154,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV304/UiR4WeilaActivityTutorial01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2291],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100155]},{"StageId":30100155,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV304/UiR4WeilaActivityTutorial02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100154],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2291],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100156]},{"StageId":30100156,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV304/UiR4WeilaActivityTutorial03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100155],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2291],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100160,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV306/UiR4BiankaActivityJdGk01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2303],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100161]},{"StageId":30100161,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV306/UiR4BiankaActivityJdGk02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100160],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2303],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100162]},{"StageId":30100162,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV306/UiR4BiankaActivityJdGk03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100161],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2303],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100167,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WxiezouActivityV307/UiR4xiezouActivityJdGk01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2306],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100168]},{"StageId":30100168,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WxiezouActivityV307/UiR4xiezouActivityJdGk02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100167],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2306],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100172]},{"StageId":30100172,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WxiezouActivityV307/UiR4xiezouActivityJdGk03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100168],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2306],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100173,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiR3WeiluonikaActivityJdGk01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2309],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100174]},{"StageId":30100174,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiR3WeiluonikaActivityJdGk02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100173],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2309],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100175]},{"StageId":30100175,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiR3WeiluonikaActivityJdGk03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100174],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2309],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[2]},{"StageId":30100179,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiR5LifuActivityJdGk01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2312],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100180]},{"StageId":30100180,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiR5LifuActivityJdGk02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100179],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2312],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100181]},{"StageId":30100181,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiR5LifuActivityJdGk03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100180],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2313],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[6]},{"StageId":30100186,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiR3BuouxiongActivityJdGk01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2315],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100187]},{"StageId":30100187,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiR3BuouxiongActivityJdGk02.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100186],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2315],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100188]},{"StageId":30100188,"Type":36,"Name":"A3","Description":"Effect Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiR3BuouxiongActivityJdGk03.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100187],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2316],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[7]},{"StageId":30100192,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaMainV402Bg29.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2318],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100193]},{"StageId":30100193,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaMainV402Bg29.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100192],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2319],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100194]},{"StageId":30100194,"Type":36,"Name":"A3","Description":"Effect Process","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaMainV402Bg29.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100193],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2319],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[3]},{"StageId":30100204,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaMainV403Bg28.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2322],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100205]},{"StageId":30100205,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaMainV403Bg28.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100204],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2322],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100206]},{"StageId":30100206,"Type":36,"Name":"A3","Description":"Effect Process","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaMainV403Bg28.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100205],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2323],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[1]},{"StageId":30100210,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2325],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100211]},{"StageId":30100211,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100210],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2325],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100212]},{"StageId":30100212,"Type":36,"Name":"A3","Description":"Effect Process","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity01.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100211],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[172404,2325],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[4]},{"StageId":30100213,"Type":17,"Name":"A-4","Description":"Leap Trial","Icon":"Assets/Product/Texture/Image/UiFubenPracticeCharacter/UiFubenPracticeCharacterGuanqia2.png","BgmId":5015,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100064],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[9245],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3]},{"StageId":30100217,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaMainV40515.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2328],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100218]},{"StageId":30100218,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaMainV40515.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100217],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2328],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100219]},{"StageId":30100219,"Type":36,"Name":"A3","Description":"Effect Process","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaMainV40515.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100218],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2328],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[2]},{"StageId":30100223,"Type":36,"Name":"A1","Description":"Core Skill","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineActivityTutorial.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2331],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100224]},{"StageId":30100224,"Type":36,"Name":"A2","Description":"Combat Practice","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineActivityTutorial.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100223],"FirstRewardShow":30100801,"FirstRewardId":30100801,"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2331],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"NextStageId":[30100225]},{"StageId":30100225,"Type":36,"Name":"A3","Description":"Effect Process","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineActivityTutorial.png","BgmId":5063,"LoadingType":10101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100224],"OnlinePlayerLimit":3,"StarDesc":["Pay attention to the tutorial tips.","Learn the Construct's combat techniques.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"RobotId":[2331,172427],"RebootId":3,"StageGridStyle":"Rectangle","NeedJobType":[1,2,3],"GeneralSkillIds":[5]},{"StageId":30160507,"Type":36,"Name":"C01","Description":"Challenge (I)","Icon":"Assets/Product/Texture/Image/UiLuolanTutorial/GridLuolanTutoria2.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160504,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160506]},{"StageId":30160506,"Type":36,"Name":"C02","Description":"Challenge (II)","Icon":"Assets/Product/Texture/Image/UiLuolanTutorial/GridLuolanTutoria2.png","BgmId":101,"LoadingType":20017,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160507],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160505,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160508,"Type":36,"Name":"C01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiLifuActivity/UiLifuActivityStage01.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160504,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160509]},{"StageId":30160509,"Type":36,"Name":"C02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiLifuActivity/UiLifuActivityStage01.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30160508],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160505,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160504,"Type":36,"Name":"CCW01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiWeilaTutorial/GridWeilaTutoria1-1.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160504,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160505]},{"StageId":30160505,"Type":36,"Name":"CCW02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiWeilaTutorial/GridWeilaTutoria1-2.png","BgmId":101,"LoadingType":20014,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30160504],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160505,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160510,"Type":36,"Name":"C01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiSelenaActivity/UiSelenaActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160504,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160511]},{"StageId":30160511,"Type":36,"Name":"C02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiSelenaActivity/UiSelenaActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30160510],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160505,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160512]},{"StageId":30160512,"Type":36,"Name":"C03","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiSelenaActivity/UiSelenaActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30160511],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160504,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160513,"Type":36,"Name":"C01","Description":"Challenge (I)","Icon":"Assets/Product/Texture/Image/UiPulaoActivity/UiPulaoActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160513,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160514]},{"StageId":30160514,"Type":36,"Name":"C02","Description":"Challenge (II)","Icon":"Assets/Product/Texture/Image/UiPulaoActivity/UiPulaoActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160513],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160514,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160515]},{"StageId":30160515,"Type":36,"Name":"C03","Description":"Challenge (III)","Icon":"Assets/Product/Texture/Image/UiPulaoActivity/UiPulaoActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160514],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160515,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160516,"Type":36,"Name":"C01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiNanamiActivity/UiNanamiActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160516,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160517]},{"StageId":30160517,"Type":36,"Name":"C02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiNanamiActivity/UiNanamiActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30160516],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160517,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160518]},{"StageId":30160518,"Type":36,"Name":"C03","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiNanamiActivity/UiNanamiActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":1,"PreStageId":[30160517],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160518,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160519,"Type":36,"Name":"C01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiHachamaActivity/UiHachamaActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160519,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160520]},{"StageId":30160520,"Type":36,"Name":"C02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiHachamaActivity/UiHachamaActivityBtnChallenge002.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160519],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160520,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160521]},{"StageId":30160521,"Type":36,"Name":"C03","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiHachamaActivity/UiHachamaActivityBtnChallenge003.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160520],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160521,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160522,"Type":36,"Name":"C01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiSuperKareninaActivity/UiSuperKareninaActivityChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160519,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160523]},{"StageId":30160523,"Type":36,"Name":"C02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiSuperKareninaActivity/UiSuperKareninaActivityChallenge002.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160522],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160520,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160524]},{"StageId":30160524,"Type":36,"Name":"C03","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiSuperKareninaActivity/UiSuperKareninaActivityChallenge003.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160523],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160521,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160525,"Type":36,"Name":"C01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiNoanActivity/UiNoanActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160525,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160526]},{"StageId":30160526,"Type":36,"Name":"C02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiNoanActivity/UiNoanActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160525],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160526,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160527]},{"StageId":30160527,"Type":36,"Name":"C03","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiNoanActivity/UiNoanActivityBtnChallenge001.png","BgmId":101,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160526],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160527,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160528,"Type":36,"Name":"C1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UISuperBiancaActivity/UISuperBiancaActivityLevelChallenge.png","BgmId":155,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160529]},{"StageId":30160529,"Type":36,"Name":"C2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UISuperBiancaActivity/UISuperBiancaActivityLevelChallenge.png","BgmId":155,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160528],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160530]},{"StageId":30160530,"Type":36,"Name":"C3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UISuperBiancaActivity/UISuperBiancaActivityLevelChallenge.png","BgmId":155,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160529],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160531,"Type":36,"Name":"EX-01","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiBombinataMain/UiBombinaChallenge02.png","BgmId":166,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160532]},{"StageId":30160532,"Type":36,"Name":"EX-02","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiBombinataMain/UiBombinaChallenge03.png","BgmId":166,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160531],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160533]},{"StageId":30160533,"Type":36,"Name":"EX-03","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiBombinataMain/UiBombinaChallenge01.png","BgmId":166,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160532],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160534,"Type":36,"Name":"LIM-1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiLeeActivity/UiLeeActivityBtnChallenge001.png","BgmId":172,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160535]},{"StageId":30160535,"Type":36,"Name":"LIM-2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiLeeActivity/UiLeeActivityBtnChallenge001.png","BgmId":172,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160534],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160536]},{"StageId":30160536,"Type":36,"Name":"LIM-3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiLeeActivity/UiLeeActivityBtnChallenge001.png","BgmId":172,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160535],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160537,"Type":36,"Name":"C1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiAylaActivity/UiAylaActivityBtnChallenge001.png","BgmId":184,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160538]},{"StageId":30160538,"Type":36,"Name":"C2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiAylaActivity/UiAylaActivityBtnChallenge001.png","BgmId":184,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160537],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160539]},{"StageId":30160539,"Type":36,"Name":"C3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiAylaActivity/UiAylaActivityBtnChallenge001.png","BgmId":184,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160538],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160540,"Type":36,"Name":"C-1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiLuciaActivity/UiLuciaActivityBtnChallenge001.png","BgmId":34,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160541]},{"StageId":30160541,"Type":36,"Name":"C-2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiLuciaActivity/UiLuciaActivityBtnChallenge001.png","BgmId":34,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160540],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160542]},{"StageId":30160542,"Type":36,"Name":"C-3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiLuciaActivity/UiLuciaActivityBtnChallenge001.png","BgmId":35,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160541],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160543,"Type":36,"Name":"Y-1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UiHanyingActivity/UiHanyingActivityBtnChallenge001.png","BgmId":49,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160544]},{"StageId":30160544,"Type":36,"Name":"Y-2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UiHanyingActivity/UiHanyingActivityBtnChallenge001.png","BgmId":49,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160543],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160545]},{"StageId":30160545,"Type":36,"Name":"Y-3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UiHanyingActivity/UiHanyingActivityBtnChallenge001.png","BgmId":99,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160544],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160546,"Type":36,"Name":"C-1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/Ui21HaoActivity/Ui21HaoActivityBtnChallenge001.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160547]},{"StageId":30160547,"Type":36,"Name":"C-2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/Ui21HaoActivity/Ui21HaoActivityBtnChallenge001.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160546],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160548]},{"StageId":30160548,"Type":36,"Name":"C-3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/Ui21HaoActivity/Ui21HaoActivityBtnChallenge001.png","BgmId":246,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160547],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160549,"Type":36,"Name":"C1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UINoktiActivity/UINoktiActivityLevelChallenge.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160550]},{"StageId":30160550,"Type":36,"Name":"C2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UINoktiActivity/UINoktiActivityLevelChallenge.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160549],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160551]},{"StageId":30160551,"Type":36,"Name":"C3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UINoktiActivity/UINoktiActivityLevelChallenge.png","BgmId":246,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160550],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160552,"Type":36,"Name":"C1","Description":"Character Challenge (I)","Icon":"Assets/Product/Texture/Image/UIEchoActivity/UIEchoActivityLevel1Challenge.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160553]},{"StageId":30160553,"Type":36,"Name":"C2","Description":"Character Challenge (II)","Icon":"Assets/Product/Texture/Image/UIEchoActivity/UIEchoActivityLevel2Challenge.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160552],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160554]},{"StageId":30160554,"Type":36,"Name":"C3","Description":"Character Challenge (III)","Icon":"Assets/Product/Texture/Image/UIEchoActivity/UIEchoActivityLevel3Challenge.png","BgmId":246,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160553],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160555,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiLamiaActivity/UILamiaActivityLevelChallenge.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160556]},{"StageId":30160556,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiLamiaActivity/UILamiaActivityLevelChallenge.png","BgmId":245,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160555],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160557]},{"StageId":30160557,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiLamiaActivity/UILamiaActivityLevelChallenge.png","BgmId":246,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160556],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160558,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIBRSActivity/UIBRSActivityLevel1Challenge.png","BgmId":335,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160559]},{"StageId":30160559,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIBRSActivity/UIBRSActivityLevel2Challenge.png","BgmId":335,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160558],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160560]},{"StageId":30160560,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIBRSActivity/UIBRSActivityLevel3Challenge.png","BgmId":335,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160559],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160561,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":354,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160562]},{"StageId":30160562,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":354,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160561],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160563]},{"StageId":30160563,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":354,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160562],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30160564,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":368,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160565]},{"StageId":30160565,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":368,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160564],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30160566]},{"StageId":30160566,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":368,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30160565],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100028,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":379,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160528,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100029]},{"StageId":30100029,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":379,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100028],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160529,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100030]},{"StageId":30100030,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":379,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100029],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160530,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100037,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":391,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100038]},{"StageId":30100038,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":391,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100037],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100039]},{"StageId":30100039,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":391,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100038],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100046,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":5003,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100047]},{"StageId":30100047,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":5003,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100046],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100048]},{"StageId":30100048,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":5003,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100047],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100059,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":5015,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100060]},{"StageId":30100060,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":5015,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100059],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100061]},{"StageId":30100061,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":5015,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100060],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100076,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":5015,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100077]},{"StageId":30100077,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":5015,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100076],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100078]},{"StageId":30100078,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":5015,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100077],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive"],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100085,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":5041,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100086]},{"StageId":30100086,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":5041,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100085],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100087]},{"StageId":30100087,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":5041,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100086],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100095,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":5054,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100096]},{"StageId":30100096,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":5054,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100095],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100097]},{"StageId":30100097,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":5054,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100096],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100107,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel1Challenge.png","BgmId":5054,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100108]},{"StageId":30100108,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel2Challenge.png","BgmId":5054,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100107],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100109]},{"StageId":30100109,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UIWatanabeActivity/UIWatanabeActivityLevel3Challenge.png","BgmId":5054,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100108],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully","Clear within 180s","Clear the stage with all members alive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100119,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3CibeizheActivity/UiR3CibeizheActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100120]},{"StageId":30100120,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3CibeizheActivity/UiR3CibeizheActivityChallenge02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100119],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100121]},{"StageId":30100121,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3CibeizheActivity/UiR3CibeizheActivityChallenge03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100120],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100125,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3LilithActivityV301/UiR3LilithActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100126]},{"StageId":30100126,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3LilithActivityV301/UiR3LilithActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100125],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100127]},{"StageId":30100127,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3LilithActivityV301/UiR3LilithActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100126],"OnlinePlayerLimit":3,"StarDesc":["Clear the stage successfully.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100131,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5SailinnaActivityV302/UiR5SailinnaActivityTutorial02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100132]},{"StageId":30100132,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5SailinnaActivityV302/UiR5SailinnaActivityTutorial02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100131],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100133]},{"StageId":30100133,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5SailinnaActivityV302/UiR5SailinnaActivityTutorial02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100132],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100139,"Type":36,"Name":"A1","Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR2JietaweiActivityV303/UiR2JietaweiActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100140]},{"StageId":30100140,"Type":36,"Name":"A2","Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR2JietaweiActivityV303/UiR2JietaweiActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100139],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100141]},{"StageId":30100141,"Type":36,"Name":"A3","Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR2JietaweiActivityV303/UiR2JietaweiActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100140],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100148,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3VergilActivityV305/UiR3VergilActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100149]},{"StageId":30100149,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3VergilActivityV305/UiR3VergilActivityChallenge02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100148],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100150]},{"StageId":30100150,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3VergilActivityV305/UiR3VergilActivityChallenge03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100149],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100151,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3DanteActivityV305/UiR3DanteActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100152]},{"StageId":30100152,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3DanteActivityV305/UiR3DanteActivityChallenge02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100151],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100153]},{"StageId":30100153,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3DanteActivityV305/UiR3DanteActivityChallenge03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100152],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100157,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV304/UiR4WeilaActivityChallenge01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100158]},{"StageId":30100158,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV304/UiR4WeilaActivityChallenge02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100157],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100159]},{"StageId":30100159,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV304/UiR4WeilaActivityChallenge03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100158],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100163,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV306/UiR4BiankaActivityTzGk01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100164]},{"StageId":30100164,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV306/UiR4BiankaActivityTzGk02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100163],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100165]},{"StageId":30100165,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WeilaActivityV306/UiR4BiankaActivityTzGk03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100164],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100169,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WxiezouActivityV307/UiR4xiezouActivityTzGk01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100170]},{"StageId":30100170,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WxiezouActivityV307/UiR4xiezouActivityTzGk02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100169],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100171]},{"StageId":30100171,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4WxiezouActivityV307/UiR4xiezouActivityTzGk03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100170],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true},{"StageId":30100176,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiR3WeiluonikaActivityTzGk01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100177]},{"StageId":30100177,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiR3WeiluonikaActivityTzGk02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100176],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100178]},{"StageId":30100178,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3WeiluonikaActivityV308/UiR3WeiluonikaActivityTzGk03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100177],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear the stage.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[2]},{"StageId":30100182,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiR5LifuActivityTzGk01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100183]},{"StageId":30100183,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiR5LifuActivityTzGk02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100182],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100184]},{"StageId":30100184,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LifuActivityV400/UiR5LifuActivityTzGk03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100183],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[6]},{"StageId":30100189,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiR3BuouxiongActivityTzGk01.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100190]},{"StageId":30100190,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiR3BuouxiongActivityTzGk02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100189],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100191]},{"StageId":30100191,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3BuouxiongActivityV401/UiR3BuouxiongActivityTzGk03.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100190],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages","Clear within 180s","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[7]},{"StageId":30100195,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaMainV402Bg28.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[9999],"NextStageId":[30100196]},{"StageId":30100196,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaMainV402Bg28.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100195],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[9999],"NextStageId":[30100197]},{"StageId":30100197,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR5LuosaitaV402/UiCharacterFileR5LuosaitaMainV402Bg28.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100196],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[3]},{"StageId":30100207,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaMainV403Bg29.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100208]},{"StageId":30100208,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaMainV403Bg29.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100207],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100209]},{"StageId":30100209,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3NietiyaActivityV403/UiCharacterFileR3NietiyaMainV403Bg29.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100208],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[1]},{"StageId":30100214,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[9999],"NextStageId":[30100215]},{"StageId":30100215,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100214],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[9999],"NextStageId":[30100216]},{"StageId":30100216,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR4ShenweiMainV404/FuBenR4ShenweiActivity02.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100215],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[4]},{"StageId":30100220,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaMainV40516.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100221]},{"StageId":30100221,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaMainV40516.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100220],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"NextStageId":[30100222]},{"StageId":30100222,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR7LuxiyaActivityV405/UiCharacterFileR7LuxiyaMainV40516.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100221],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[2]},{"StageId":30100226,"Type":36,"Name":1,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineActivityChallenge.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160537,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[9999],"NextStageId":[30100227]},{"StageId":30100227,"Type":36,"Name":2,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineActivityChallenge.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100226],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160538,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[9999],"NextStageId":[30100228]},{"StageId":30100228,"Type":36,"Name":3,"Description":"Character Challenge","Icon":"Assets/Product/Texture/Image/UiCharacterFile/UiCharacterFileR3HelentineActivityV406/UiCharacterFileR3HelentineActivityChallenge.png","BgmId":5071,"NormalEventIdOnPassed":1,"OrderId":1,"LimitBuffId":2,"PreStageId":[30100227],"OnlinePlayerLimit":3,"StarDesc":["Successfully clear stages.","Clear within 180s.","Have all members survive."],"HaveFirstPass":true,"FunctionLeftBtn":4,"FunctionRightBtn":1,"StageGridStyle":"Rectangle","FightControlId":30160539,"NeedJobType":[1,2,3],"Restartable":true,"GeneralSkillIds":[5]}],"StageLevelControls":[{"Id":8563,"StageId":30100830,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":8564,"StageId":30100831,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":9485,"StageId":30100830,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":9486,"StageId":30100831,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":9487,"StageId":30100832,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":9488,"StageId":30100833,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":9489,"StageId":30100834,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":9490,"StageId":30100835,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":9491,"StageId":30100836,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":9492,"StageId":30100837,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":9801,"StageId":30100850,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":9802,"StageId":30100851,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":9919,"StageId":30100856,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":10511,"StageId":30100858,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":10512,"StageId":30100859,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":10513,"StageId":30100860,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":10514,"StageId":30100861,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":10515,"StageId":30160504,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[550,375,250]},{"Id":10516,"StageId":30160505,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[720,375,250]},{"Id":10678,"StageId":30100864,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":10679,"StageId":30100865,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":10680,"StageId":30100866,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":10681,"StageId":30160507,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[990,375,250]},{"Id":10682,"StageId":30160506,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[680,375,250]},{"Id":11048,"StageId":30100868,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11049,"StageId":30100869,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11050,"StageId":30100870,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11051,"StageId":30100871,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[120,120,120]},{"Id":11052,"StageId":30100872,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":30100801,"FirstRewardId":30100801,"MonsterLevel":[300,225,150]},{"Id":11054,"StageId":30160508,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[400,400,250]},{"Id":11055,"StageId":30160509,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1107,1107,250]},{"Id":11094,"StageId":30100873,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11095,"StageId":30100874,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11096,"StageId":30100875,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[120,120,120]},{"Id":11097,"StageId":30160510,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[120,120,120]},{"Id":11098,"StageId":30160511,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[550,550,550]},{"Id":11099,"StageId":30160512,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[750,750,750]},{"Id":11417,"StageId":30100882,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":30100705,"FirstRewardId":30100705,"MonsterLevel":[516,271,211]},{"Id":11444,"StageId":30100878,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11445,"StageId":30100879,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11446,"StageId":30100880,"MaxLevel":120,"RecommendationLevel":52,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[170,170,170]},{"Id":11466,"StageId":30160513,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[120,120,120]},{"Id":11467,"StageId":30160514,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[900,900,900]},{"Id":11468,"StageId":30160515,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1000,1000,1000]},{"Id":11472,"StageId":30100885,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":11473,"StageId":30100894,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":11474,"StageId":30100897,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":11475,"StageId":30100899,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":11476,"StageId":30100902,"MaxLevel":120,"RecommendationLevel":52,"MonsterLevel":[120,120,120]},{"Id":11477,"StageId":30100904,"MaxLevel":120,"RecommendationLevel":52,"MonsterLevel":[120,120,120]},{"Id":11478,"StageId":30100906,"MaxLevel":120,"RecommendationLevel":52,"MonsterLevel":[170,170,170]},{"Id":11674,"StageId":30160516,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[120,120,120]},{"Id":11675,"StageId":30160517,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[900,900,900]},{"Id":11676,"StageId":30160518,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1000,1000,1000]},{"Id":11704,"StageId":30100907,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11705,"StageId":30100908,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11706,"StageId":30100909,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11707,"StageId":30100910,"MaxLevel":120,"RecommendationLevel":80,"FirstRewardShow":12051,"FirstRewardId":12051,"MonsterLevel":[300,225,150]},{"Id":11708,"StageId":30100914,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":11913,"StageId":30100917,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":11914,"StageId":30160519,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[120,120,120]},{"Id":11915,"StageId":30160520,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,300,300]},{"Id":11916,"StageId":30160521,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[900,900,900]},{"Id":11917,"StageId":30100920,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":12010,"StageId":30100927,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":12012,"StageId":30160522,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12013,"StageId":30160523,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[600,600,600]},{"Id":12014,"StageId":30160524,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[450,450,450]},{"Id":12015,"StageId":30100931,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,225,150]},{"Id":12232,"StageId":30100935,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,300,300]},{"Id":12233,"StageId":30160525,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12234,"StageId":30160526,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[800,800,800]},{"Id":12235,"StageId":30160527,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12380,"StageId":30100947,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,300,300]},{"Id":12381,"StageId":30160528,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,300,300]},{"Id":12382,"StageId":30160529,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[600,600,600]},{"Id":12383,"StageId":30160530,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[400,400,400]},{"Id":12457,"StageId":30100950,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12458,"StageId":30100953,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12465,"StageId":30160531,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[345,345,345]},{"Id":12466,"StageId":30160532,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[465,465,465]},{"Id":12467,"StageId":30160533,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1110,1110,1110]},{"Id":12468,"StageId":30100943,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,300,300]},{"Id":12469,"StageId":30100938,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,300,300]},{"Id":12557,"StageId":30100957,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12558,"StageId":30100961,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12559,"StageId":30160534,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[345,345,345]},{"Id":12560,"StageId":30160535,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[465,465,465]},{"Id":12561,"StageId":30160536,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12840,"StageId":30100964,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12841,"StageId":30100967,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":12858,"StageId":30160537,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[500,500,500]},{"Id":12859,"StageId":30160538,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[705,705,705]},{"Id":12860,"StageId":30160539,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1065,1065,1065]},{"Id":13011,"StageId":30100971,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":13012,"StageId":30100974,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":13061,"StageId":30160540,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[295,295,295]},{"Id":13062,"StageId":30160541,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1245,1245,1245]},{"Id":13063,"StageId":30160542,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1335,1335,1335]},{"Id":13187,"StageId":30100977,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[200,200,200]},{"Id":13193,"StageId":30100980,"MaxLevel":120,"RecommendationLevel":1,"MonsterLevel":[839,839,839]},{"Id":13194,"StageId":30160543,"MaxLevel":120,"RecommendationLevel":1,"MonsterLevel":[164,164,164]},{"Id":13195,"StageId":30160544,"MaxLevel":120,"RecommendationLevel":1,"MonsterLevel":[224,224,224]},{"Id":13196,"StageId":30160545,"MaxLevel":120,"RecommendationLevel":1,"MonsterLevel":[224,224,224]},{"Id":13324,"StageId":30100986,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[550,550,550]},{"Id":13325,"StageId":30160546,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[300,300,300]},{"Id":13326,"StageId":30160547,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[520,520,520]},{"Id":13327,"StageId":30160548,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1215,1215,1215]},{"Id":13333,"StageId":30100983,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[550,550,550]},{"Id":13334,"StageId":30100986,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[550,550,550]},{"Id":13485,"StageId":30100993,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[305,305,305]},{"Id":13486,"StageId":30160549,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[188,188,188]},{"Id":13487,"StageId":30160550,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[887,887,887]},{"Id":13488,"StageId":30160551,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[399,399,399]},{"Id":13553,"StageId":30100000,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[229,229,229]},{"Id":13554,"StageId":30160552,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[97,97,97]},{"Id":13555,"StageId":30160553,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[661,661,661]},{"Id":13556,"StageId":30160554,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[168,168,168]},{"Id":13693,"StageId":30100006,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[314,314,314]},{"Id":13694,"StageId":30160555,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[97,97,97]},{"Id":13695,"StageId":30160556,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[661,661,661]},{"Id":13696,"StageId":30160557,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[265,265,265]},{"Id":13810,"StageId":30100012,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[150,150,150]},{"Id":13811,"StageId":30160558,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[190,190,190]},{"Id":13812,"StageId":30160559,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[341,341,341]},{"Id":13813,"StageId":30160560,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[957,957,957]},{"Id":13852,"StageId":30100019,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[120,120,120]},{"Id":13853,"StageId":30160561,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[93,93,93]},{"Id":13854,"StageId":30160562,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[3077,3077,3077]},{"Id":13855,"StageId":30160563,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[937,937,937]},{"Id":14045,"StageId":30100045,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[244,244,244]},{"Id":14046,"StageId":30100037,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[94,94,94]},{"Id":14047,"StageId":30100038,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[179,179,179]},{"Id":14048,"StageId":30100039,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[270,270,270]},{"Id":14147,"StageId":30100064,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[259,259,259]},{"Id":14148,"StageId":30100059,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[74,74,74]},{"Id":14149,"StageId":30100060,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[1574,1574,1574]},{"Id":14150,"StageId":30100061,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[175,175,175]},{"Id":14277,"StageId":30100085,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[84,84,84]},{"Id":14278,"StageId":30100086,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[90,90,90]},{"Id":14279,"StageId":30100087,"MaxLevel":120,"RecommendationLevel":80,"MonsterLevel":[287,287,287]}],"Robots":[{"Id":1129,"CharacterId":1021004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":13,"SkillLevel":15,"EnhanceSkillLevel":1,"RemoveSkillId":[102427],"FashionId":6210401,"WeaponId":2982001,"WeaponLevel":1,"WaferId":[3016015,3026015,3036015,3046014,3056014,3066015],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1132,"CharacterId":1141003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[114328,114329,114330],"FashionId":6000501,"WeaponId":2116001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016017,3026017,3036017,3046017,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1135,"CharacterId":1521003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6000701,"WeaponId":2134001,"WeaponLevel":30,"WeaponBeakThrough":1,"WaferId":[3016018,3026018,3036018,3046018,3056018,3066018],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1136,"CharacterId":1161002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6000603,"WeaponId":2144001,"WeaponLevel":30,"WeaponBeakThrough":1,"WaferId":[3016033,3026033,3036040,3046040,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1137,"CharacterId":1171003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6000801,"WeaponId":2176001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016019,3026019,3036019,3046019,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1142,"CharacterId":1171003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[117327,117324,117325,117326],"FashionId":6000801,"WeaponId":2174001,"WeaponLevel":30,"WeaponBeakThrough":2,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1143,"CharacterId":1061003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[106324,106325,106326,106327],"FashionId":6610305,"WeaponId":2066002,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016004,3026004,3036013,3046013,3056013,3066013],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"ShowAbility":5512,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1153,"CharacterId":1181003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[118327,118324,118325,118326],"FashionId":6000901,"WeaponId":2125001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1154,"CharacterId":1191003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[119324,119325,119326,119329],"FashionId":6001001,"WeaponId":2165001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1155,"CharacterId":1201003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[120327,120324,120325,120326],"FashionId":6001101,"WeaponId":2155001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1156,"CharacterId":1021003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6210301,"WeaponId":2026004,"WeaponLevel":25,"WaferId":[3016004,3026004,3036014,3046014,3056014,3066014],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1165,"CharacterId":1211002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[121224,121225,121226,121227],"FashionId":6001201,"WeaponId":2184001,"WeaponLevel":30,"WeaponBeakThrough":2,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1166,"CharacterId":1531003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[153324,153325,153326,153327],"FashionId":6001301,"WeaponId":2194001,"WeaponLevel":30,"WeaponBeakThrough":2,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":1167,"CharacterId":1221002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[122224,122225,122226,122227],"FashionId":6001502,"WeaponId":2216001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016014,3026014,3036014,3046014,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2205,"CharacterId":1061003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[106324,106325,106326],"FashionId":6610305,"WeaponId":2066002,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016004,3026004,3036013,3046013,3056013,3066013],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"ShowAbility":5512,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2211,"CharacterId":1131002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[113224,113225,113226],"FashionId":6000304,"WeaponId":2026006,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016004,3026004,3036013,3046013,3056013,3066013],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"ShowAbility":5482,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2213,"CharacterId":1551003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[155327,155326,155325,155324],"FashionId":6002001,"WeaponId":2265001,"WeaponLevel":45,"WeaponBeakThrough":4},{"Id":2214,"CharacterId":1551003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[155327],"FashionId":6002003,"WeaponId":2266001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016026,3026026,3036026,3046026,3056026,3066026],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2215,"CharacterId":1551003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[155326,155325,155324],"FashionId":6002003,"WeaponId":2266001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016026,3026026,3036026,3046026,3056026,3066026],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2216,"CharacterId":1051004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[105426,105425,105426,105427],"FashionId":6002101,"WeaponId":2275001,"WeaponLevel":45,"WeaponBeakThrough":4},{"Id":2217,"CharacterId":1051004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6002103,"WeaponId":2276001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016027,3026027,3036027,3046027,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2218,"CharacterId":1051004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[105426,105425,105426],"FashionId":6002103,"WeaponId":2276001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016027,3026027,3036027,3046027,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2220,"CharacterId":1561003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[156327,156326,156325,156324],"FashionId":6002201,"WeaponId":2095001,"WeaponLevel":45,"WeaponBeakThrough":4},{"Id":2221,"CharacterId":1561003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6002203,"WeaponId":2096003,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016028,3026028,3036028,3046028,3056028,3066028],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2222,"CharacterId":1561003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[156326,156325,156324],"FashionId":6002203,"WeaponId":2096003,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016028,3026028,3036028,3046028,3056028,3066028],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2224,"CharacterId":1011002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6110101,"WeaponId":2016001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3015003,3025003,3035003,3045003,3055003,3065003],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2225,"CharacterId":1021002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":13,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6210201,"WeaponId":2026001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016001,3026001,3036001,3046001,3056001,3066001],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2227,"CharacterId":1031003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6310301,"WeaponId":2036003,"WeaponLevel":45,"WeaponBeakThrough":4},{"Id":2229,"CharacterId":1071004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[107424,107425,107426,107428,107429,107430],"FashionId":6002303,"WeaponId":2286001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016029,3026029,3036029,3046029,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2230,"CharacterId":1071004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[107428,107429,107430],"FashionId":6002303,"WeaponId":2286001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016029,3026029,3036029,3046029,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2232,"CharacterId":1081003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6810301,"WeaponId":2086002,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016013,3026013,3036013,3046013,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2235,"CharacterId":1141003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6000501,"WeaponId":2116001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016017,3026017,3036017,3046017,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2240,"CharacterId":1011004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[101424,101425,101426,101427],"FashionId":6002701,"WeaponId":2325001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016032,3026032,3036032,3046032,3056027,3066027],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2241,"CharacterId":1011004,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[101425,101426],"FashionId":6002703,"WeaponId":2326001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016032,3026032,3036032,3046032,3056027,3066027],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2249,"CharacterId":1271003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[127326,127325,127324],"FashionId":6003403,"WeaponId":2386001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016037,3026037,3036037,3046037,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2250,"CharacterId":1271003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6003403,"WeaponId":2386001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016037,3026037,3036037,3046037,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2252,"CharacterId":1281002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[128226,128225,128224],"FashionId":6003501,"WeaponId":2396001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016002,3026002,3036002,3046002,3056012,3066012],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2253,"CharacterId":1281002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6003501,"WeaponId":2396001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016002,3026002,3036002,3046002,3056012,3066012],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2254,"CharacterId":1081004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[108426,108425,108424,108428,108429,108430],"FashionId":6003601,"WeaponId":2406001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016038,3026038,3036038,3046038,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2255,"CharacterId":1081004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[108428,108429,108430],"FashionId":6003601,"WeaponId":2406001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016038,3026038,3036038,3046038,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2257,"CharacterId":1521004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[152426,152425,152424],"FashionId":6003701,"WeaponId":2416001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016040,3026040,3036040,3046040,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2258,"CharacterId":1521004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6003701,"WeaponId":2416001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016040,3026040,3036040,3046040,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2260,"CharacterId":1291002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[129226,129225,129224],"FashionId":6003801,"WeaponId":2426001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016004,3026004,3036013,3046013,3056013,3066013],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2261,"CharacterId":1291002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6003801,"WeaponId":2426001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016004,3026004,3036013,3046013,3056013,3066013],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2262,"CharacterId":1171004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[117426,117425,117424,117428,117429,117430],"FashionId":6003901,"WeaponId":2436001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016041,3026041,3036041,3046041,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2263,"CharacterId":1171004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[117428,117429,117430],"FashionId":6003901,"WeaponId":2436001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016041,3026041,3036041,3046041,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2265,"CharacterId":1301002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[130226,130225,130224],"FashionId":6004001,"WeaponId":2446001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016002,3026002,3036002,3046002,3056005,3066005],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2266,"CharacterId":1301002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6004001,"WeaponId":2446001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016002,3026002,3036002,3046002,3056005,3066005],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2267,"CharacterId":1241003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[124326,124325,124324,124328,124329,124330],"FashionId":6004101,"WeaponId":2456001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016042,3026042,3036042,3046042,3056008,3066008],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2268,"CharacterId":1241003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[124328,124329,124330],"FashionId":6004101,"WeaponId":2456001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016042,3026042,3036042,3046042,3056008,3066008],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2270,"CharacterId":1211003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[121326,121325,121324],"FashionId":6004201,"WeaponId":2466001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016043,3026043,3036043,3046043,3056040,3066040],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2271,"CharacterId":1211003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[121326,121325],"FashionId":6004201,"WeaponId":2466001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016043,3026043,3036043,3046043,3056040,3066040],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2273,"CharacterId":1021006,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[102626,102625,102624],"FashionId":6004301,"WeaponId":2476001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016044,3026044,3036044,3046044,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2274,"CharacterId":1021006,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[102626,102625],"FashionId":6004301,"WeaponId":2476001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016044,3026044,3036044,3046044,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2277,"CharacterId":1311002,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[131226,131225],"FashionId":6004402,"WeaponId":2486001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016003,3026003,3036003,3046003,3056034,3056034],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2278,"CharacterId":1051005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[105526,105525,105524],"FashionId":6004501,"WeaponId":2496001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016046,3026046,3036046,3046046,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2279,"CharacterId":1051005,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[105526,105525],"FashionId":6004501,"WeaponId":2496001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016046,3026046,3036046,3046046,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2281,"CharacterId":1321003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[132326,132325,132324],"FashionId":6004601,"WeaponId":2506001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016047,3026047,3036047,3046047,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2282,"CharacterId":1321003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[132326,132325],"FashionId":6004601,"WeaponId":2506001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016047,3026047,3036047,3046047,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2284,"CharacterId":1321003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"FashionId":6004601,"WeaponId":2506001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016047,3026047,3036047,3046047,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2285,"CharacterId":1331003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[133326,133325,133324],"FashionId":6004701,"WeaponId":2516001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016048,3026048,3036048,3046048,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2286,"CharacterId":1331003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[133326,133325],"FashionId":6004701,"WeaponId":2516001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016048,3026048,3036048,3046048,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2288,"CharacterId":1531005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[153526,153525,153524],"FashionId":6004801,"WeaponId":2526001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016049,3026049,3036049,3046049,3056014,3066014],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2289,"CharacterId":1531005,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[153526,153525],"FashionId":6004801,"WeaponId":2526001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016049,3026049,3036049,3046049,3056014,3066014],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2291,"CharacterId":1131004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[113426,113425,113424],"FashionId":6005001,"WeaponId":2546001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016051,3026051,3036051,3046051,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2292,"CharacterId":1131004,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[113426,113425],"FashionId":6005001,"WeaponId":2546001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016051,3026051,3036051,3046051,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2297,"CharacterId":1351003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[135326,135325,135324],"FashionId":6005101,"WeaponId":2556001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016014,3026014,3036014,3046014,3056008,3066008],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2298,"CharacterId":1351003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[135326,135325],"FashionId":6005101,"WeaponId":2556001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016014,3026014,3036014,3046014,3056008,3066008],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2300,"CharacterId":1361003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[136326,136325,136324],"FashionId":6005201,"WeaponId":2566001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016002,3026002,3036002,3046002,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2301,"CharacterId":1361003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[136326,136325],"FashionId":6005201,"WeaponId":2566001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016002,3026002,3036002,3046002,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2303,"CharacterId":1041005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104526,104525,104524],"FashionId":6005301,"WeaponId":2576001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016052,3026052,3036052,3046052,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2304,"CharacterId":1041005,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104526,104525],"FashionId":6005301,"WeaponId":2576001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016052,3026052,3036052,3046052,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2306,"CharacterId":1371002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[137226,137225,137224],"FashionId":6005401,"WeaponId":2586001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016014,3026014,3036014,3046014,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2307,"CharacterId":1371002,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[137226,137225],"FashionId":6005401,"WeaponId":2586001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016014,3026014,3036014,3046014,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2309,"CharacterId":1381003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[138326,138325,138324],"FashionId":6005501,"WeaponId":2596001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016053,3026053,3036053,3046053,3056010,3066010],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2310,"CharacterId":1381003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[138326,138325],"FashionId":6005501,"WeaponId":2596001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016053,3026053,3036053,3046053,3056010,3066010],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2312,"CharacterId":1031005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[103526,103525,103524],"FashionId":6005601,"WeaponId":2606001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016054,3026054,3036054,3046054,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2313,"CharacterId":1031005,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[103526,103525],"FashionId":6005601,"WeaponId":2606001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016054,3026054,3036054,3046054,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2315,"CharacterId":1291003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[129326,129325,129324],"FashionId":6005701,"WeaponId":2616001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016056,3026056,3036056,3046056,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2316,"CharacterId":1291003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[129326,129325],"FashionId":6005701,"WeaponId":2616001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016056,3026056,3036056,3046056,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2318,"CharacterId":1141004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[114426,114425,114424],"FashionId":6005801,"WeaponId":2626001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016057,3026057,3036057,3046057,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2319,"CharacterId":1141004,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[114426,114425],"FashionId":6005801,"WeaponId":2626001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016057,3026057,3036057,3046057,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2321,"CharacterId":1041005,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104526,104525],"FashionId":6005301,"WeaponId":2576001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016052,3026052,3036052,3046052,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0],"SwitchSkillGroupId":1045210},{"Id":2322,"CharacterId":1391003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[139326,139325,139324],"FashionId":6005901,"WeaponId":2636001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016059,3026059,3036059,3046059,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2323,"CharacterId":1391003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[139326,139325],"FashionId":6005901,"WeaponId":2636001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016059,3026059,3036059,3046059,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2325,"CharacterId":1061004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[106426,106425,106424],"FashionId":6006001,"WeaponId":2646001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016060,3026060,3036060,3046060,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2326,"CharacterId":1061004,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[106426,106425],"FashionId":6006001,"WeaponId":2646001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016060,3026060,3036060,3046060,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2328,"CharacterId":1021007,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[102726,102725,102724],"FashionId":6006101,"WeaponId":2656001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016061,3026061,3036061,3046061,3056015,3056015],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2329,"CharacterId":1021007,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[102726,102725],"FashionId":6006101,"WeaponId":2656001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016061,3026061,3036061,3046061,3056015,3056015],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2331,"CharacterId":1401003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[140324,140325,140326],"FashionId":6006201,"WeaponId":2666001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016063,3026063,3036063,3046063,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":2332,"CharacterId":1401003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[140325,140326],"FashionId":6006201,"WeaponId":2666001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016063,3026063,3036063,3046063,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4000,"CharacterId":1021001,"CharacterLevel":25,"CharacterQuality":1,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[102127],"FashionId":6210101,"WeaponId":2023001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4001,"CharacterId":1031001,"CharacterLevel":25,"CharacterQuality":1,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[103127],"FashionId":6310101,"WeaponId":2033001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4002,"CharacterId":1051001,"CharacterLevel":25,"CharacterQuality":1,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[105127],"FashionId":6510101,"WeaponId":2053001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4003,"CharacterId":1021002,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[102227,102228,102229,102230],"FashionId":6210201,"WeaponId":2023001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4004,"CharacterId":1031002,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[103227],"FashionId":6310201,"WeaponId":2033001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4005,"CharacterId":1011002,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[101227,101228,101229,101230],"FashionId":6110101,"WeaponId":2013001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4006,"CharacterId":1071002,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[107227],"FashionId":6710101,"WeaponId":2073001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4007,"CharacterId":1041002,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[104227],"FashionId":6410101,"WeaponId":2043001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4008,"CharacterId":1081002,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[108227],"FashionId":6810101,"WeaponId":2083001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4009,"CharacterId":1061002,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[106227],"FashionId":6610101,"WeaponId":2063001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4010,"CharacterId":1061003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[106327],"FashionId":6610301,"WeaponId":2063001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4011,"CharacterId":1031003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[103327],"FashionId":6310301,"WeaponId":2033001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4012,"CharacterId":1011003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[101327],"FashionId":6110301,"WeaponId":2013001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4013,"CharacterId":1071003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[107327],"FashionId":6710301,"WeaponId":2073001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4014,"CharacterId":1051003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[105327,105328,105329,105330],"FashionId":6510301,"WeaponId":2053001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4015,"CharacterId":1021003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[102327],"FashionId":6210301,"WeaponId":2023001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4016,"CharacterId":1081003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[108327,108328,108329,108330],"FashionId":6810301,"WeaponId":2083001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4017,"CharacterId":1091002,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[109227],"FashionId":6910101,"WeaponId":2093001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4018,"CharacterId":1041003,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[104327,104328,104329,104330],"FashionId":6410301,"WeaponId":2043001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4019,"CharacterId":1111002,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[111227],"FashionId":6000101,"WeaponId":2013001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4020,"CharacterId":1021004,"CharacterLevel":25,"CharacterQuality":3,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[102427],"FashionId":6210401,"WeaponId":2023001,"WeaponLevel":15,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[15,15,15,15,15,15],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4100,"CharacterId":1031001,"CharacterLevel":25,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[103127],"FashionId":6310101,"WeaponId":2034001,"WeaponLevel":20,"WaferId":[3016010,3026011,3035006,3046010,3056011,3065006],"WaferLevel":[25,25,25,25,25,25],"WaferBreakThrough":[0,0,0,0,0,0],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":4101,"CharacterId":1051001,"CharacterLevel":60,"CharacterQuality":2,"CharacterGrade":2,"SkillLevel":1,"EnhanceSkillLevel":1,"RemoveSkillId":[105127],"FashionId":6510101,"WeaponId":2055001,"WeaponLevel":30,"WeaponBeakThrough":1,"WaferId":[3013001,3023001,3033001,3043001,3053001,3063001],"WaferLevel":[20,20,20,20,20,20],"WaferBreakThrough":[1,1,1,1,1,1],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":8020,"CharacterId":1121002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":13,"SkillLevel":15,"EnhanceSkillLevel":1,"RemoveSkillId":[112222],"FashionId":6000201,"WeaponId":2096002,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016006,3026006,3036006,3046006,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9000,"CharacterId":1131002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[113328,113329,113330],"FashionId":6000301,"WeaponId":2980201,"WeaponLevel":1,"WaferId":[3016013,3026013,3036013,3046013,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9011,"CharacterId":1511003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[115225],"FashionId":6000403,"WeaponId":2106001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016016,3026016,3036016,3046016,3056016,3066016],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9082,"CharacterId":1121003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[112324,112325,112326,112327],"FashionId":6001401,"WeaponId":2205001,"WeaponLevel":15,"WaferId":[3016015,3026015,3036015,3046015,3056004,3056004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9086,"CharacterId":1121003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[112327],"FashionId":6001402,"WeaponId":2206001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016015,3026015,3036015,3046015,3056004,3056004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9088,"CharacterId":1131003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[113324,113325,113326,113327,113228,113229,113230],"FashionId":6001602,"WeaponId":2236001,"WeaponLevel":15,"WaferId":[3016022,3026022,3036022,3046022,3056004,3056004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9089,"CharacterId":1131003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[113324,113325,113326,113327,113228,113229,113230],"FashionId":6001602,"WeaponId":2236001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016022,3026022,3036022,3046022,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9090,"CharacterId":1131003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[113327,113228,113229,113230],"FashionId":6001602,"WeaponId":2236001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016022,3026022,3036022,3046022,3056004,3056004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9091,"CharacterId":1041003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104324,104325,104326,104327,104328,104329,104330],"FashionId":6410302,"WeaponId":2046002,"WeaponLevel":15,"WaferId":[3016003,3026003,3036003,3046003,3056003,3066003],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9093,"CharacterId":1541003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[154327,154326,154325,154324],"FashionId":6001702,"WeaponId":2226001,"WeaponLevel":15,"WaferId":[3016023,3026023,3036023,3046023,3056023,3066023],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9094,"CharacterId":1541003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[154327,154326,154325,154324,154328,154329,154330,154331,154332],"FashionId":6001702,"WeaponId":2226001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016023,3026023,3036023,3046023,3056023,3066023],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9095,"CharacterId":1541003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[154327,154328,154329,154330,154331,154332],"FashionId":6001702,"WeaponId":2225001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016023,3026023,3036023,3046023,3056023,3066023],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9098,"CharacterId":1031004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[103427,103426,103425,103424,103429,103430,103431],"FashionId":6001802,"WeaponId":2246001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016024,3026024,3036024,3046024,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9099,"CharacterId":1031004,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[103427,103426,103425,103429,103430,103431],"FashionId":6001802,"WeaponId":2246001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016024,3026024,3036024,3046024,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9102,"CharacterId":1531004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[153424,153425,153426,153427],"FashionId":6001901,"WeaponId":2254001,"WeaponLevel":1,"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9103,"CharacterId":1531004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[153427],"FashionId":6001901,"WeaponId":2256001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016025,3026025,3036025,3046025,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9104,"CharacterId":1531004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[153424,153425,153426,153427],"FashionId":6001901,"WeaponId":2256001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016025,3026025,3036025,3046025,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9106,"CharacterId":1061003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[106327,106325,106326],"FashionId":6610301,"WeaponId":2066002,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016007,3026007,3036007,3046007,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9113,"CharacterId":1571003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[157324,157325,157326,157327,157330,157331,157332],"FashionId":6002401,"WeaponId":2295001,"WeaponLevel":1},{"Id":9114,"CharacterId":1571003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[157330,157331,157332],"FashionId":6002401,"WeaponId":2296001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016030,3026030,3036030,3046030,3056030,3066030],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9115,"CharacterId":1571003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[157324,157325,157326,157330,157331,157332],"FashionId":6002403,"WeaponId":2296001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016030,3026030,3036030,3046030,3056030,3066030],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9118,"CharacterId":1041004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104427,104424,104425,104426,104428,104429,104430],"FashionId":6002502,"WeaponId":2305001,"WeaponLevel":1},{"Id":9119,"CharacterId":1041004,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104428,104429,104430],"FashionId":6002503,"WeaponId":2306001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016031,3026031,3036031,3046031,3056017,3066017],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9120,"CharacterId":1041004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104424,104425,104426,104428,104429,104430],"FashionId":6002503,"WeaponId":2306001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016031,3026031,3036031,3046031,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9131,"CharacterId":1231002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[123224,123225,123226,123227],"FashionId":6002602,"WeaponId":2316001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016015,3026015,3036015,3046015,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9132,"CharacterId":1231002,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[123225,123226,123227],"FashionId":6002602,"WeaponId":2316001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016015,3026015,3036015,3046015,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9133,"CharacterId":1231002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[123224,123225,123226,123227],"FashionId":6002602,"WeaponId":2315001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016015,3026015,3036015,3046015,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9147,"CharacterId":1091003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[109324,109325,109326],"FashionId":6002802,"WeaponId":2336001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016033,3026033,3036033,3046033,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9161,"CharacterId":1021005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[102526,102525,102524,102528,102529,102530,102531],"FashionId":6002902,"WeaponId":2346001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016034,3026034,3036034,3046034,3056001,3066001],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9172,"CharacterId":1221003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[122326,122325,122324],"FashionId":6003102,"WeaponId":2366001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016035,3026035,3036035,3046035,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9173,"CharacterId":1051003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6510301,"WeaponId":2056002,"WeaponLevel":45,"WeaponBeakThrough":4},{"Id":9186,"CharacterId":1021003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6210302,"WeaponId":2026004,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016014,3026014,3036014,3046014,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9204,"CharacterId":1041003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6410302,"WeaponId":2046002,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016003,3026003,3036003,3046003,3056001,3066001],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9212,"CharacterId":1131003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6001601,"WeaponId":2236001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016022,3026022,3036022,3046022,3056022,3066022],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9219,"CharacterId":1031004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[103424,103425,103426],"FashionId":6001801,"WeaponId":2246001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016024,3026024,3036024,3046024,3056004,3056004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9229,"CharacterId":1071004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[107424,107425,107426],"FashionId":6002301,"WeaponId":2286001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016029,3026029,3036029,3046029,3056009,3066009],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9238,"CharacterId":1041004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[104424,104425,104426],"FashionId":6002501,"WeaponId":2306001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016031,3026031,3036031,3046031,3056017,3066017],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9239,"CharacterId":1021005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[102524,102525,102526],"FashionId":6002901,"WeaponId":2346001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016034,3026034,3036034,3046034,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9243,"CharacterId":1261003,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[126324,126325,126326],"FashionId":6003301,"WeaponId":2046003,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016036,3026046,3036046,3046046,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9244,"CharacterId":1171004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[117426,117425,117424],"FashionId":6003901,"WeaponId":2436001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016041,3026041,3036041,3046041,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":9245,"CharacterId":1241003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[124324,124325,124326],"FashionId":6004101,"WeaponId":2456001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016042,3026042,3036042,3046042,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127100,"CharacterId":1131002,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"FashionId":6000302,"WeaponId":2026006,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016007,3026007,3036007,3046007,3056011,3066011],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127101,"CharacterId":1241002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[124226,124225,124224],"FashionId":6003001,"WeaponId":2356001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016007,3026007,3036007,3046007,3056010,3066010],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127420,"CharacterId":1251002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[125226,125225,125224],"FashionId":6003201,"WeaponId":2376001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016034,3026034,3036034,3046034,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127617,"CharacterId":1261003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[126326,126325,126324,126328,126329,126330],"FashionId":6003301,"WeaponId":2046003,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016036,3026036,3036036,3046036,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127618,"CharacterId":1261003,"CharacterLevel":80,"CharacterQuality":6,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[126328,126329,126330],"FashionId":6003301,"WeaponId":2046003,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016036,3026036,3036036,3046036,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127648,"CharacterId":1241003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[124326,124325,124324,124328,124329,124330],"FashionId":6004101,"WeaponId":2456001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016042,3026042,3036042,3046042,3056008,3066008],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127649,"CharacterId":1211003,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[121326,121325,121324],"FashionId":6004201,"WeaponId":2466001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016043,3026043,3036043,3046043,3056040,3066040],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127653,"CharacterId":1021005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[102526,102525,102524],"FashionId":6002901,"WeaponId":2346001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016034,3026034,3036034,3046034,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":127660,"CharacterId":1041005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[104526,104525,104524],"FashionId":6005301,"WeaponId":2576001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016052,3026052,3036052,3046052,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":172103,"CharacterId":1341002,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[132224,132225,132226],"FashionId":6004901,"WeaponId":2536001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016013,3026013,3036013,3046013,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":172106,"CharacterId":1341002,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[132225,132226],"FashionId":6004901,"WeaponId":2536001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016013,3026013,3036013,3046013,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":172107,"CharacterId":1341002,"CharacterLevel":80,"CharacterQuality":4,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[132225,132226],"FashionId":6004901,"WeaponId":2536001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016002,3026002,3036002,3046002,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":172200,"CharacterId":1081004,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":18,"RemoveSkillId":[108426,108425,108424],"FashionId":6003601,"WeaponId":2406001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016038,3026038,3036038,3046038,3056004,3066004],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":172404,"CharacterId":1021006,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[102626,102625,102624],"FashionId":6004301,"WeaponId":2476001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016044,3026044,3036044,3046044,3056006,3066006],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]},{"Id":172427,"CharacterId":1531005,"CharacterLevel":80,"CharacterQuality":3,"CharacterGrade":14,"SkillLevel":18,"EnhanceSkillLevel":1,"RemoveSkillId":[153526,153525,153524],"FashionId":6004801,"WeaponId":2526001,"WeaponLevel":45,"WeaponBeakThrough":4,"WaferId":[3016049,3026049,3036049,3046049,3056014,3066014],"WaferLevel":[45,45,45,45,45,45],"WaferBreakThrough":[4,4,4,4,4,4],"WaferAwakeCount":[0,0,0,0,0,0]}],"EnhanceSkills":[{"CharacterId":1011002,"SkillGroupId":[1012280,1012290,1012300],"Pos":[1,2,3]},{"CharacterId":1021001},{"CharacterId":1031001},{"CharacterId":1041002},{"CharacterId":1051001},{"CharacterId":1061002},{"CharacterId":1071002},{"CharacterId":1081002},{"CharacterId":1021002,"SkillGroupId":[1022280,1022290,1022300],"Pos":[1,2,3]},{"CharacterId":1031002},{"CharacterId":1011003},{"CharacterId":1031003,"SkillGroupId":[1032280,1032290,1032300],"Pos":[1,2,3]},{"CharacterId":1061003},{"CharacterId":1071003},{"CharacterId":1051003,"SkillGroupId":[1053280,1053290,1053300],"Pos":[1,2,3]},{"CharacterId":1021003,"SkillGroupId":[1023280,1023290,1023300],"Pos":[1,2,3]},{"CharacterId":1081003,"SkillGroupId":[1083280,1083290,1083300],"Pos":[1,2,3]},{"CharacterId":1091002},{"CharacterId":1041003,"SkillGroupId":[1043280,1043290,1043300],"Pos":[1,2,3]},{"CharacterId":1111002},{"CharacterId":1121002},{"CharacterId":1021004},{"CharacterId":1131002,"SkillGroupId":[1133280,1133290,1133300],"Pos":[1,2,3]},{"CharacterId":1511003,"SkillGroupId":[1513280,1513290,1513300,1513320,1513310],"Pos":[1,2,3,4,5]},{"CharacterId":1141003,"SkillGroupId":[1143280,1143290,1143300],"Pos":[1,2,3]},{"CharacterId":1521003,"SkillGroupId":[1523280,1523290,1523300,1523320,1523310],"Pos":[1,2,3,4,5]},{"CharacterId":1161002},{"CharacterId":1171003},{"CharacterId":1181003},{"CharacterId":1191003},{"CharacterId":1201003},{"CharacterId":1211002},{"CharacterId":1531003,"SkillGroupId":[1533280,1533290,1533300,1533320,1533310],"Pos":[1,2,3,4,5]},{"CharacterId":1121003},{"CharacterId":1221002},{"CharacterId":1131003,"SkillGroupId":[1132280,1132290,1132300],"Pos":[1,2,3]},{"CharacterId":1541003,"SkillGroupId":[1543280,1543290,1543300,1543320,1543310],"Pos":[1,2,3,4,5]},{"CharacterId":1031004,"SkillGroupId":[1034290,1034300,1034310],"Pos":[1,2,3]},{"CharacterId":1531004},{"CharacterId":1551003,"SkillGroupId":[1553280,1553290,1553300,1553320,1553310],"Pos":[1,2,3,4,5]},{"CharacterId":1051004},{"CharacterId":1561003,"SkillGroupId":[1563280,1563290,1563300,1563320,1563310],"Pos":[1,2,3,4,5]},{"CharacterId":1071004,"SkillGroupId":[1074280,1074290,1074300],"Pos":[1,2,3]},{"CharacterId":1571003,"SkillGroupId":[1573280,1573290,1573300,1573320,1573310],"Pos":[1,2,3,4,5]},{"CharacterId":1041004,"SkillGroupId":[1044280,1044290,1044300],"Pos":[1,2,3]},{"CharacterId":1231002},{"CharacterId":1011004},{"CharacterId":1091003},{"CharacterId":1021005,"SkillGroupId":[1025280,1025290,1025300],"Pos":[1,2,3]},{"CharacterId":1241002},{"CharacterId":1221003},{"CharacterId":1251002},{"CharacterId":1261003,"SkillGroupId":[1263280,1263290,1263300],"Pos":[1,2,3]},{"CharacterId":1271003},{"CharacterId":1281002},{"CharacterId":1081004,"SkillGroupId":[1084280,1084290,1084300],"Pos":[1,2,3]},{"CharacterId":1521004},{"CharacterId":1291002},{"CharacterId":1171004,"SkillGroupId":[1174280,1174290,1174300],"Pos":[1,2,3]},{"CharacterId":1301002},{"CharacterId":1241003,"SkillGroupId":[1243280,1243290,1243300],"Pos":[1,2,3]},{"CharacterId":1211003},{"CharacterId":1021006},{"CharacterId":1311002},{"CharacterId":1051005,"SkillGroupId":[1055280,1055290,1055300],"Pos":[1,2,3]},{"CharacterId":1321003},{"CharacterId":1331003},{"CharacterId":1531005},{"CharacterId":1341002},{"CharacterId":1131004},{"CharacterId":1351003},{"CharacterId":1361003},{"CharacterId":1041005},{"CharacterId":1371002},{"CharacterId":1381003},{"CharacterId":1031005},{"CharacterId":1291003},{"CharacterId":1141004},{"CharacterId":1391003},{"CharacterId":1061004},{"CharacterId":1021007},{"CharacterId":1401003}],"EnhanceSkillGroups":[{"Id":1012280,"SkillId":[101228]},{"Id":1012290,"SkillId":[101229]},{"Id":1012300,"SkillId":[101230]},{"Id":1022280,"SkillId":[102228]},{"Id":1022290,"SkillId":[102229]},{"Id":1022300,"SkillId":[102230]},{"Id":1032280,"SkillId":[103228]},{"Id":1032290,"SkillId":[103229]},{"Id":1032300,"SkillId":[103230]},{"Id":1053280,"SkillId":[105328]},{"Id":1053290,"SkillId":[105329]},{"Id":1053300,"SkillId":[105330]},{"Id":1083280,"SkillId":[108328]},{"Id":1083290,"SkillId":[108329]},{"Id":1083300,"SkillId":[108330]},{"Id":1143280,"SkillId":[114328]},{"Id":1143290,"SkillId":[114329]},{"Id":1143300,"SkillId":[114330]},{"Id":1133280,"SkillId":[113328]},{"Id":1133290,"SkillId":[113329]},{"Id":1133300,"SkillId":[113330]},{"Id":1513280,"SkillId":[151328]},{"Id":1513290,"SkillId":[151329]},{"Id":1513300,"SkillId":[151330]},{"Id":1513310,"SkillId":[151331]},{"Id":1513320,"SkillId":[151332]},{"Id":1553280,"SkillId":[155328]},{"Id":1553290,"SkillId":[155329]},{"Id":1553300,"SkillId":[155330]},{"Id":1553310,"SkillId":[155331]},{"Id":1553320,"SkillId":[155332]},{"Id":1543280,"SkillId":[154328]},{"Id":1543290,"SkillId":[154329]},{"Id":1543300,"SkillId":[154330]},{"Id":1543310,"SkillId":[154331]},{"Id":1543320,"SkillId":[154332]},{"Id":1563280,"SkillId":[156328]},{"Id":1563290,"SkillId":[156329]},{"Id":1563300,"SkillId":[156330]},{"Id":1563310,"SkillId":[156331]},{"Id":1563320,"SkillId":[156332]},{"Id":1573280,"SkillId":[157328]},{"Id":1573290,"SkillId":[157329]},{"Id":1573300,"SkillId":[157330]},{"Id":1573310,"SkillId":[157331]},{"Id":1573320,"SkillId":[157332]},{"Id":1523280,"SkillId":[152328]},{"Id":1523290,"SkillId":[152329]},{"Id":1523300,"SkillId":[152330]},{"Id":1523310,"SkillId":[152331]},{"Id":1523320,"SkillId":[152332]},{"Id":1533280,"SkillId":[153328]},{"Id":1533290,"SkillId":[153329]},{"Id":1533300,"SkillId":[153330]},{"Id":1533310,"SkillId":[153331]},{"Id":1533320,"SkillId":[153332]},{"Id":1023280,"SkillId":[102328]},{"Id":1023290,"SkillId":[102329]},{"Id":1023300,"SkillId":[102330]},{"Id":1043280,"SkillId":[104328]},{"Id":1043290,"SkillId":[104329]},{"Id":1043300,"SkillId":[104330]},{"Id":1132280,"SkillId":[113228]},{"Id":1132290,"SkillId":[113229]},{"Id":1132300,"SkillId":[113230]},{"Id":1034290,"SkillId":[103429]},{"Id":1034300,"SkillId":[103430]},{"Id":1034310,"SkillId":[103431]},{"Id":1074280,"SkillId":[107428]},{"Id":1074290,"SkillId":[107429]},{"Id":1074300,"SkillId":[107430]},{"Id":1044280,"SkillId":[104428]},{"Id":1044290,"SkillId":[104429]},{"Id":1044300,"SkillId":[104430]},{"Id":1025280,"SkillId":[102531,102528]},{"Id":1025290,"SkillId":[102529]},{"Id":1025300,"SkillId":[102530]},{"Id":1263280,"SkillId":[126328]},{"Id":1263290,"SkillId":[126329]},{"Id":1263300,"SkillId":[126330]},{"Id":1084280,"SkillId":[108428]},{"Id":1084290,"SkillId":[108429]},{"Id":1084300,"SkillId":[108430]},{"Id":1174280,"SkillId":[117428]},{"Id":1174290,"SkillId":[117429]},{"Id":1174300,"SkillId":[117430]},{"Id":1243280,"SkillId":[124328]},{"Id":1243290,"SkillId":[124329]},{"Id":1243300,"SkillId":[124330]},{"Id":1055280,"SkillId":[105528]},{"Id":1055290,"SkillId":[105529]},{"Id":1055300,"SkillId":[105530]}]} diff --git a/Scripts/generate_study_compatibility.py b/Scripts/generate_study_compatibility.py index 107d5501..881ecf81 100755 --- a/Scripts/generate_study_compatibility.py +++ b/Scripts/generate_study_compatibility.py @@ -26,6 +26,8 @@ "PracticeActivity": "en/bytes/share/fuben/practice/PracticeActivity.json", "TeachingActivity": "en/bytes/share/fuben/teaching/TeachingActivity.json", "TeachingRobot": "en/bytes/share/fuben/teaching/TeachingRobot.json", + "EnhanceSkill": "en/bytes/share/character/enhanceskill/EnhanceSkill.json", + "EnhanceSkillGroup": "en/bytes/share/character/enhanceskill/EnhanceSkillGroup.json", } def require_clean_sources(source: Path) -> None: @@ -152,6 +154,24 @@ def build_catalog(tables: dict[str, list[dict[str, Any]]], hashes: dict[str, str if any(not isinstance(robot.get("CharacterId"), int) or robot["CharacterId"] <= 0 for robot in robots): raise ValueError("selected Robot row is missing a positive CharacterId") + # The client resolves a premade frame's enhance skills from the same client version as the + # Robot row, so freeze that version's enhance inputs alongside the selected robots. The + # projection is closed: every selected character has its authored row and every referenced + # group is present. + character_ids = {robot["CharacterId"] for robot in robots} + all_enhance_skills = unique_by(tables["EnhanceSkill"], "CharacterId", "EnhanceSkill") + if character_ids - all_enhance_skills.keys(): + raise ValueError( + f"selected Robots reference missing EnhanceSkill rows: {sorted(character_ids - all_enhance_skills.keys())}") + enhance_skills = [row for row in tables["EnhanceSkill"] if row["CharacterId"] in character_ids] + enhance_group_ids = {group_id for row in enhance_skills for group_id in positive_ids(row.get("SkillGroupId"))} + all_enhance_groups = unique_by(tables["EnhanceSkillGroup"], "Id", "EnhanceSkillGroup") + if enhance_group_ids - all_enhance_groups.keys(): + raise ValueError( + f"selected EnhanceSkill rows reference missing EnhanceSkillGroup rows: " + f"{sorted(enhance_group_ids - all_enhance_groups.keys())}") + enhance_skill_groups = [row for row in tables["EnhanceSkillGroup"] if row["Id"] in enhance_group_ids] + counts = { "PracticeChapters": len(tables["PracticeChapter"]), "PracticeGroups": len(tables["PracticeGroup"]), @@ -161,6 +181,8 @@ def build_catalog(tables: dict[str, list[dict[str, Any]]], hashes: dict[str, str "StudyStages": len(stages), "StageLevelControls": len(controls), "Robots": len(robots), + "EnhanceSkills": len(enhance_skills), + "EnhanceSkillGroups": len(enhance_skill_groups), } return { "ClientVersion": CLIENT_VERSION, @@ -177,6 +199,8 @@ def build_catalog(tables: dict[str, list[dict[str, Any]]], hashes: dict[str, str "Stages": stages, "StageLevelControls": controls, "Robots": robots, + "EnhanceSkills": enhance_skills, + "EnhanceSkillGroups": enhance_skill_groups, }