|
@@ -18,7 +18,7 @@ namespace GFGEditor
|
|
|
public static void startScan()
|
|
|
{
|
|
|
ItemCfg[] dataArray = ItemCfgArray.Instance.dataArray;
|
|
|
- GetApproachCall[] actions = new GetApproachCall[] { GetClothingShopApproach, GetLeaguePrayApproach, GetLeagueAnswerApproach, CheckStoreApproach, GetClothingSyntheticApproach, GetSuitGuideApproach, GetSuitSyntheticApproach, GetClothingDecomposeApproach, CheckClothingFosterApproach, CheckDailyTaskApproach, CheckWeeklyTaskApproach, GetZhaiXingApproach, GetStoryLevelApproach };
|
|
|
+ GetApproachCall[] actions = new GetApproachCall[] { GetClothingShopApproach, GetLeaguePrayApproach, GetLeagueAnswerApproach, CheckStoreApproach, GetClothingSyntheticApproach, GetSuitGuideApproach, GetSuitSyntheticApproach, GetClothingDecomposeApproach, CheckClothingFosterApproach, CheckDailyTaskApproach, CheckWeeklyTaskApproach, GetZhaiXingApproach, GetStoryLevelApproach, GetArenaApproach };
|
|
|
Dictionary<SuitCfg, List<int>> suitDic = new Dictionary<SuitCfg, List<int>>();
|
|
|
Dictionary<ItemCfg, List<int>> syntheticSuitDic = new Dictionary<ItemCfg, List<int>>();
|
|
|
Dictionary<SuitCfg, Dictionary<string, string>> suitTagsDic = new Dictionary<SuitCfg, Dictionary<string, string>>();
|
|
@@ -283,7 +283,7 @@ namespace GFGEditor
|
|
|
{
|
|
|
if (cfg.itemId == itemId)
|
|
|
{
|
|
|
- return "FU_ZHUANG_DIAN=" + ConstStoreId.CLOTHING_STORE_ID; ;
|
|
|
+ return "FU_ZHUANG_DIAN=" + ConstStoreId.CLOTHING_STORE_ID;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -366,6 +366,21 @@ namespace GFGEditor
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
+ /// 尝试获取飞花令产出途径
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="itemId"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ private static string GetArenaApproach(int itemId)
|
|
|
+ {
|
|
|
+ if (itemId == ConstItemID.ARENA_CUR_COST)
|
|
|
+ {
|
|
|
+ return "ARENA";
|
|
|
+ }
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
/// 尝试获取剧情关卡产出途径
|
|
|
/// </summary>
|
|
|
/// <param name="itemId"></param>
|