From 619b6671e86c7bf8c5ee2a7223bf885e7a966656 Mon Sep 17 00:00:00 2001 From: Kana Date: Thu, 17 Nov 2022 21:33:00 -0800 Subject: [PATCH] =?UTF-8?q?1.5=E7=89=88=E6=9C=ACKCPS=E5=8F=91=E5=B8=83?= =?UTF-8?q?=E6=97=B6=E7=9A=84=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...71\344\270\212\350\243\205\345\244\207.py" | 5 +- ...57\347\232\204\350\243\205\345\244\207.py" | 28 +- ...47\350\241\214\345\215\225\345\205\203.py" | 7 + ...47\255\226\347\225\245 [221113].conf.json" | 1977 ++++++++++++++--- ...2\220 1-3 \346\262\271 [220716].conf.json" | 1679 ++++++++++++++ 5 files changed, 3415 insertions(+), 281 deletions(-) rename "\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/\350\214\203\344\276\213\351\205\215\347\275\256/\346\231\256\351\200\232\351\205\215\347\275\256/\345\270\270\350\247\204\346\265\267\345\237\237\346\210\230\346\226\227\347\255\226\347\225\245 [220116].conf.json" => "\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/\350\214\203\344\276\213\351\205\215\347\275\256/\346\231\256\351\200\232\351\205\215\347\275\256/\345\270\270\350\247\204\346\265\267\345\237\237\346\210\230\346\226\227\347\255\226\347\225\245 [221113].conf.json" (67%) create mode 100644 "\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/\350\214\203\344\276\213\351\205\215\347\275\256/\346\231\256\351\200\232\351\205\215\347\275\256/\350\265\204\346\272\220 1-3 \346\262\271 [220716].conf.json" diff --git "a/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/Python\350\204\232\346\234\254/\347\213\254\347\253\213/\345\215\270\344\270\213\346\211\200\346\234\211\350\210\271\344\270\212\350\243\205\345\244\207.py" "b/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/Python\350\204\232\346\234\254/\347\213\254\347\253\213/\345\215\270\344\270\213\346\211\200\346\234\211\350\210\271\344\270\212\350\243\205\345\244\207.py" index a772955..5d04210 100644 --- "a/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/Python\350\204\232\346\234\254/\347\213\254\347\253\213/\345\215\270\344\270\213\346\211\200\346\234\211\350\210\271\344\270\212\350\243\205\345\244\207.py" +++ "b/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/Python\350\204\232\346\234\254/\347\213\254\347\253\213/\345\215\270\344\270\213\346\211\200\346\234\211\350\210\271\344\270\212\350\243\205\345\244\207.py" @@ -19,6 +19,8 @@ 总之这个python脚本本身是没问题的,所以就发出来了。 更新记录: + 20221113 - 1.1 + 适配新API 20210614 - 1.0 初始版本。 """ @@ -45,7 +47,8 @@ shipObjs = ShipUtility.All(shipsState) sortedShipObjs = ShipUtility.SortByLevel(shipObjs) # 优化:按等级顺序执行 -sortedShipObjs.Reverse() # 从低等级到高等级 +sortedShipObjs = list(sortedShipObjs) # 转成list +sortedShipObjs.reverse() # 从低等级到高等级 for shipObj in sortedShipObjs: #if not ShipUtility.ShipLocked(shipObj): # 跳过没有上锁的船 # continue diff --git "a/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/Python\350\204\232\346\234\254/\347\213\254\347\253\213/\346\216\222\346\237\245\345\257\274\350\207\264\346\215\242\350\243\205\345\244\207\351\224\231\350\257\257\347\232\204\350\243\205\345\244\207.py" "b/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/Python\350\204\232\346\234\254/\347\213\254\347\253\213/\346\216\222\346\237\245\345\257\274\350\207\264\346\215\242\350\243\205\345\244\207\351\224\231\350\257\257\347\232\204\350\243\205\345\244\207.py" index 44e0329..e3c9170 100644 --- "a/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/Python\350\204\232\346\234\254/\347\213\254\347\253\213/\346\216\222\346\237\245\345\257\274\350\207\264\346\215\242\350\243\205\345\244\207\351\224\231\350\257\257\347\232\204\350\243\205\345\244\207.py" +++ "b/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/Python\350\204\232\346\234\254/\347\213\254\347\253\213/\346\216\222\346\237\245\345\257\274\350\207\264\346\215\242\350\243\205\345\244\207\351\224\231\350\257\257\347\232\204\350\243\205\345\244\207.py" @@ -1,8 +1,26 @@ # -*- coding:utf-8 -*- - -# 装备或者舰船外部数据出错或者没更新的话会导致换装备出错 -# 使用本脚本可以列出每页都有什么装备,对照一下实际游戏画面中显示的装备,找到从哪一项开始对不上,就可以知道多了或少了或排序错了哪些装备了 -# 使用前需要设置出问题的 【舰船ID】 以及 【装备槽】 + +""" +功能: + 装备或者舰船外部数据出错或者没更新的话会导致换装备出错 + 使用本脚本可以列出每页都有什么装备,对照一下实际游戏画面中显示的装备,找到从哪一项开始对不上,就可以知道多了或少了或排序错了哪些装备了 + 使用前需要设置出问题的 【舰船ID】 以及 【装备槽】 + +使用方法: + 附加在需要的执行单元上(如基础编成舰队) + 在填写函数的地方填写需要的函数名(见范例配置中的示例) + +更新记录: + 20221118 - 1.3 + 修改1.5.0.0中变更了的函数名 + 20221118 - 1.2 + 修改1.4.2.0中变更了的函数名 + 20191122 - 1.1 + 修复了没计入陆航的bug + 20190807 - 1.0 + 初始版本 +""" + from KancollePlayerSimulatorKaiCore import * @@ -42,7 +60,7 @@ equipedEquipmentIds = ShipUtility.AllEquipments(shipObj) # 找到放在基地航空队中的装备 -landbasedEquipmentIds = [LandBasedAirCorpsUtility.SquadronPlaneEquipmentId(s) for c in LandBasedAirCorpsUtility.AllCorps() for s in LandBasedAirCorpsUtility.AllSquadrons(c) ] +landbasedEquipmentIds = [LandBasedAirCorpsUtility.SquadronAirplaneEquipmentId(s) for c in LandBasedAirCorpsUtility.AllCorps() for s in LandBasedAirCorpsUtility.AllSquadrons(c) ] # 找到这艘船这个装备槽所有能使用的装备 availableEquipmentObjs = [equipmentObj for equipmentObj in equipmentObjs if \ diff --git "a/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/Python\350\204\232\346\234\254/\347\213\254\347\253\213/\346\240\271\346\215\256poi\346\210\230\346\226\227\350\256\260\345\275\225\346\236\204\351\200\240\346\211\247\350\241\214\345\215\225\345\205\203.py" "b/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/Python\350\204\232\346\234\254/\347\213\254\347\253\213/\346\240\271\346\215\256poi\346\210\230\346\226\227\350\256\260\345\275\225\346\236\204\351\200\240\346\211\247\350\241\214\345\215\225\345\205\203.py" index 26053c2..d932717 100644 --- "a/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/Python\350\204\232\346\234\254/\347\213\254\347\253\213/\346\240\271\346\215\256poi\346\210\230\346\226\227\350\256\260\345\275\225\346\236\204\351\200\240\346\211\247\350\241\214\345\215\225\345\205\203.py" +++ "b/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/Python\350\204\232\346\234\254/\347\213\254\347\253\213/\346\240\271\346\215\256poi\346\210\230\346\226\227\350\256\260\345\275\225\346\236\204\351\200\240\346\211\247\350\241\214\345\215\225\345\205\203.py" @@ -14,6 +14,8 @@ 使用“关于”中的“在新线程执行脚本”功能运行本脚本 更新记录: + 20221118 - 1.2 + 适配新的执行单元创建流程。 20200128 - 1.1 适配1.3.3.0修改后的类结构。 20200124 - 1.0 @@ -136,5 +138,10 @@ def main(): escortRefit = createBasicRefitEquipmentWorkflow(battleData["fleet"]["escort"], 2) Dispatcher.Invoke(lambda :group.Add(escortRefit)) + # 注册执行单元 + memo.InitializeServices(Program.CurrentHost.Services) + mainFleet.InitializeServices(Program.CurrentHost.Services) + mainRefit.InitializeServices(Program.CurrentHost.Services) + if __name__ == "__main__": main() \ No newline at end of file diff --git "a/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/\350\214\203\344\276\213\351\205\215\347\275\256/\346\231\256\351\200\232\351\205\215\347\275\256/\345\270\270\350\247\204\346\265\267\345\237\237\346\210\230\346\226\227\347\255\226\347\225\245 [220116].conf.json" "b/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/\350\214\203\344\276\213\351\205\215\347\275\256/\346\231\256\351\200\232\351\205\215\347\275\256/\345\270\270\350\247\204\346\265\267\345\237\237\346\210\230\346\226\227\347\255\226\347\225\245 [221113].conf.json" similarity index 67% rename from "\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/\350\214\203\344\276\213\351\205\215\347\275\256/\346\231\256\351\200\232\351\205\215\347\275\256/\345\270\270\350\247\204\346\265\267\345\237\237\346\210\230\346\226\227\347\255\226\347\225\245 [220116].conf.json" rename to "\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/\350\214\203\344\276\213\351\205\215\347\275\256/\346\231\256\351\200\232\351\205\215\347\275\256/\345\270\270\350\247\204\346\265\267\345\237\237\346\210\230\346\226\227\347\255\226\347\225\245 [221113].conf.json" index 320e00b..14e2875 100644 --- "a/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/\350\214\203\344\276\213\351\205\215\347\275\256/\346\231\256\351\200\232\351\205\215\347\275\256/\345\270\270\350\247\204\346\265\267\345\237\237\346\210\230\346\226\227\347\255\226\347\225\245 [220116].conf.json" +++ "b/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/\350\214\203\344\276\213\351\205\215\347\275\256/\346\231\256\351\200\232\351\205\215\347\275\256/\345\270\270\350\247\204\346\265\267\345\237\237\346\210\230\346\226\227\347\255\226\347\225\245 [221113].conf.json" @@ -2,17 +2,17 @@ Name: "常规海域战斗策略", List: [ { - Type: "KancollePlayerSimulatorKai.MemoWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", + Type: "KancollePlayerSimulatorKai.MemoWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", Guid: "7a327bb2-2932-4524-b38c-1e289c5ee08c", Name: "使用说明", EnableOnLoad: false, - Memo: "【简介】\r\n该配置提供了部分常规海域的部分路线的战斗策略。\r\n\r\n【使用方法】\r\n选中本配置中的执行单元后点击下方“复制”按钮。\r\n选中其他配置,然后点击”粘贴“按钮。\r\n按需修改粘贴后的执行单元。\r\n将粘贴后的执行单元关联到配置中的”关联出击“执行单元。\r\n\r\n【注意事项】\r\n该配置无法单独使用。\r\n该配置仅关注“战斗策略”的阵型、夜战、进击设定,其他部分使用前用户仍需按照海域和路线设定。\r\n\r\n【编写原则】\r\n我做任务时用到了哪个海域的哪个路线才会添加那个路线。\r\n”条件类型“使用”地图点“。\r\n默认使用”单纵阵“。\r\n不使用”警戒阵“。\r\n空袭战斗点使用”轮形阵“,舰队舰船数量不足以使用”轮形阵“的状况需用户自行修改。\r\n敌方同时存在水面和潜艇的战斗点使用”复纵阵“,喜欢使用”梯形阵“的用户需自行修改。\r\n道中战斗默认不入夜。\r\n夜战点使用“梯形阵”。\r\nBOSS点默认进入夜战,敌方只有潜艇时则不入夜。\r\n强制进击不会导致沉船时会强制进击。\r\n\r\n【常用陆航投放点数据】\r\n使用时按顺序复制数据到陆航设置中。\r\n\r\n【更新历史】\r\n[220116]\r\n初始版本", + Memo: "【简介】\r\n该配置提供了部分常规海域的部分路线的战斗策略。\r\n\r\n【使用方法】\r\n选中本配置中的执行单元后点击下方“复制”按钮。\r\n选中其他配置,然后点击”粘贴“按钮。\r\n按需修改粘贴后的执行单元。\r\n将粘贴后的执行单元关联到配置中的”关联出击“执行单元。\r\n\r\n【注意事项】\r\n该配置无法单独使用。\r\n该配置仅关注“战斗策略”的阵型、夜战、进击设定,其他部分使用前用户仍需按照海域和路线设定。\r\n\r\n【编写原则】\r\n我做任务时用到了哪个海域的哪个路线才会添加那个路线。\r\n”条件类型“使用”地图点“。\r\n默认使用”单纵阵“。\r\n不使用”警戒阵“。\r\n空袭战斗点使用”轮形阵“,舰队舰船数量不足以使用”轮形阵“的状况需用户自行修改。\r\n敌方同时存在水面和潜艇的战斗点使用”复纵阵“,喜欢使用”梯形阵“的用户需自行修改。\r\n道中战斗默认不入夜。\r\n夜战点使用“梯形阵”。\r\nBOSS点默认进入夜战,敌方只有潜艇时则不入夜。\r\n强制进击不会导致沉船时会强制进击。\r\n\r\n【常用陆航投放点数据】\r\n使用时按顺序复制数据到陆航设置中。\r\n\r\n【更新记录】\r\n[221113]\r\n增加1-4、3-1、3-3、3-5、4-1、4-2、4-3、4-4、6-2、6-3\r\n更新1-5、2-5、3-5、5-3、5-4、5-5、6-2、6-4、6-5、7-4\r\n[220331]\r\n增加2-1、2-4\r\n[220116]\r\n初始版本", EnableScript: true, Script: null, TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", Guid: "84a957e4-c4c1-4919-a712-d5872bd3bcbb", Name: "1-1 1A(B|C)", EnableOnLoad: false, @@ -112,7 +112,7 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", Guid: "176edfc5-4215-4a99-ab76-b4704b6f1852", Name: "1-2 1(AD?E|BC)", EnableOnLoad: false, @@ -212,7 +212,7 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", Guid: "4bd19e1e-f450-43d9-8026-518c7dca6e69", Name: "1-3 1(ADBE|C)FJ", EnableOnLoad: false, @@ -312,9 +312,109 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "7e85d605-184b-4356-974a-d56c41e4c7b1", + Name: "1-4 1(AD|BCF)EHL", + EnableOnLoad: false, + Fleet: 1, + Sea: 1, + Area: 4, + ResetDifficulty: false, + Difficulty: 0, + MapHpInRangeFlag: false, + MapHpInRangeValueGauge: 0, + MapHpInRangeValueMin: 0, + MapHpInRangeValueMax: 9999, + EscortShipNoHeavilyDamaged: true, + FlagShipFullySupplied: true, + EscortShipFullySupplied: true, + FlagShipMoraleLargerOrEqualThanFlag: true, + FlagShipMoraleLargerOrEqualThanValue: 33, + EscortShipMoraleLargerOrEqualThanFlag: true, + EscortShipMoraleLargerOrEqualThanValue: 33, + NormalSupportExpedition: false, + NormalSupportExpeditionFleet: 3, + NormalSupportExpeditionTemporaryResupply: true, + NormalSupportExpeditionCheckFullySupplied: true, + NormalSupportExpeditionCheckMorale: true, + BossSupportExpedition: false, + BossSupportExpeditionFleet: 4, + BossSupportExpeditionTemporaryResupply: true, + BossSupportExpeditionCheckFullySupplied: true, + BossSupportExpeditionCheckMorale: true, + LandBasedAirCorps1Action: 1, + LandBasedAirCorps1Resupply: 15, + LandBasedAirCorps1Point1: null, + LandBasedAirCorps1Point2: null, + LandBasedAirCorps1CheckAnyProficiencyNotFull: false, + LandBasedAirCorps1CheckFatigue: true, + LandBasedAirCorps2Action: 1, + LandBasedAirCorps2Resupply: 15, + LandBasedAirCorps2Point1: null, + LandBasedAirCorps2Point2: null, + LandBasedAirCorps2CheckAnyProficiencyNotFull: false, + LandBasedAirCorps2CheckFatigue: true, + LandBasedAirCorps3Action: 2, + LandBasedAirCorps3Resupply: 15, + LandBasedAirCorps3Point1: null, + LandBasedAirCorps3Point2: null, + LandBasedAirCorps3CheckAnyProficiencyNotFull: false, + LandBasedAirCorps3CheckFatigue: true, + DefaultStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + DefaultBossBattleStrategyFlag: true, + DefaultBossBattleStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 2, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + Strategies: [], + EnableScriptSortieChecker: false, + SoriteCheckerFunctionName: "OnCheck", + SortieTaskPriority: -32768, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", Guid: "c3073d37-31c5-44ef-a205-1acc97acbe24", - Name: "1-5 1ADFJ", + Name: "1-5 1ADFGJ", EnableOnLoad: false, Fleet: 1, Sea: 1, @@ -521,9 +621,9 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", Guid: "581734f8-0e48-4b94-8b95-78e414a95fcc", - Name: "1-6 1AEG(FB|KMJD)N", + Name: "1-6 1(CHKMJD|AEG(FB|KMJD))N", EnableOnLoad: false, Fleet: 1, Sea: 1, @@ -613,6 +713,33 @@ EnterNightTimeBattleCallbackFunctionName: "OnNight" }, Strategies: [ + { + Condition: { + Type: 1, + Value: 2 + }, + Strategy: { + Memo: "C", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 5, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + } + }, { Condition: { Type: 1, @@ -730,7 +857,107 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "a45ce541-95d9-4b1a-a9dc-b1b686b55897", + Name: "2-1 1CEDH", + EnableOnLoad: false, + Fleet: 1, + Sea: 2, + Area: 1, + ResetDifficulty: false, + Difficulty: 0, + MapHpInRangeFlag: false, + MapHpInRangeValueGauge: 0, + MapHpInRangeValueMin: 0, + MapHpInRangeValueMax: 9999, + EscortShipNoHeavilyDamaged: true, + FlagShipFullySupplied: true, + EscortShipFullySupplied: true, + FlagShipMoraleLargerOrEqualThanFlag: true, + FlagShipMoraleLargerOrEqualThanValue: 33, + EscortShipMoraleLargerOrEqualThanFlag: true, + EscortShipMoraleLargerOrEqualThanValue: 33, + NormalSupportExpedition: false, + NormalSupportExpeditionFleet: 3, + NormalSupportExpeditionTemporaryResupply: true, + NormalSupportExpeditionCheckFullySupplied: true, + NormalSupportExpeditionCheckMorale: true, + BossSupportExpedition: false, + BossSupportExpeditionFleet: 4, + BossSupportExpeditionTemporaryResupply: true, + BossSupportExpeditionCheckFullySupplied: true, + BossSupportExpeditionCheckMorale: true, + LandBasedAirCorps1Action: 1, + LandBasedAirCorps1Resupply: 15, + LandBasedAirCorps1Point1: null, + LandBasedAirCorps1Point2: null, + LandBasedAirCorps1CheckAnyProficiencyNotFull: false, + LandBasedAirCorps1CheckFatigue: true, + LandBasedAirCorps2Action: 1, + LandBasedAirCorps2Resupply: 15, + LandBasedAirCorps2Point1: null, + LandBasedAirCorps2Point2: null, + LandBasedAirCorps2CheckAnyProficiencyNotFull: false, + LandBasedAirCorps2CheckFatigue: true, + LandBasedAirCorps3Action: 2, + LandBasedAirCorps3Resupply: 15, + LandBasedAirCorps3Point1: null, + LandBasedAirCorps3Point2: null, + LandBasedAirCorps3CheckAnyProficiencyNotFull: false, + LandBasedAirCorps3CheckFatigue: true, + DefaultStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + DefaultBossBattleStrategyFlag: true, + DefaultBossBattleStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 2, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + Strategies: [], + EnableScriptSortieChecker: false, + SoriteCheckerFunctionName: "OnCheck", + SortieTaskPriority: -32768, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", Guid: "e11ae920-e546-4fca-9b02-6faa7bb1a60f", Name: "2-2 1CE(FH)?K", EnableOnLoad: false, @@ -830,7 +1057,7 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", Guid: "41a2d933-1af3-4420-aebb-c2c759de321e", Name: "2-3 1ADGKN", EnableOnLoad: false, @@ -930,13 +1157,13 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", - Guid: "bc458fe1-234e-4b2e-ad44-6098462ee290", - Name: "2-5 1(BF|C)EIO", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "5d21cab2-2afa-4578-84d0-f36bf52fa488", + Name: "2-4 1BCGHIKLP", EnableOnLoad: false, Fleet: 1, Sea: 2, - Area: 5, + Area: 4, ResetDifficulty: false, Difficulty: 0, MapHpInRangeFlag: false, @@ -1030,13 +1257,13 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", - Guid: "2c3530f8-3b30-4548-89f8-8d189422da14", - Name: "3-2 1C(E|GH?)FL", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "bc458fe1-234e-4b2e-ad44-6098462ee290", + Name: "2-5 1(BF|C)(EI|J)O", EnableOnLoad: false, Fleet: 1, - Sea: 3, - Area: 2, + Sea: 2, + Area: 5, ResetDifficulty: false, Difficulty: 0, MapHpInRangeFlag: false, @@ -1130,13 +1357,13 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", - Guid: "34dbf42e-c39b-4c13-b627-aef73caac0fe", - Name: "3-4 1ACFJP", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "59e6c312-ba97-4adf-a8f1-f33dad7356c8", + Name: "3-1 1CFG", EnableOnLoad: false, Fleet: 1, Sea: 3, - Area: 4, + Area: 1, ResetDifficulty: false, Difficulty: 0, MapHpInRangeFlag: false, @@ -1230,13 +1457,13 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", - Guid: "3f8bc0c3-4d02-45cb-b597-901136827af1", - Name: "4-5 1(A|C)DHT", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "2c3530f8-3b30-4548-89f8-8d189422da14", + Name: "3-2 1C(E|GH?)FL", EnableOnLoad: false, Fleet: 1, - Sea: 4, - Area: 5, + Sea: 3, + Area: 2, ResetDifficulty: false, Difficulty: 0, MapHpInRangeFlag: false, @@ -1321,19 +1548,930 @@ EnableScriptEnterNightTimeBattleCallback: false, EnterNightTimeBattleCallbackFunctionName: "OnNight" }, - Strategies: [ - { - Condition: { - Type: 1, - Value: 1 - }, - Strategy: { - Memo: "A", - DefaultWayPoint: { - Name: "A->D", - Memo: "", - Left: 0.7282913957214211, - Top: 0.4600885873150504, + Strategies: [], + EnableScriptSortieChecker: false, + SoriteCheckerFunctionName: "OnCheck", + SortieTaskPriority: -32768, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "20fc1be6-595f-43e1-9919-da1397d72af1", + Name: "3-3 1ACGM", + EnableOnLoad: false, + Fleet: 1, + Sea: 3, + Area: 3, + ResetDifficulty: false, + Difficulty: 0, + MapHpInRangeFlag: false, + MapHpInRangeValueGauge: 0, + MapHpInRangeValueMin: 0, + MapHpInRangeValueMax: 9999, + EscortShipNoHeavilyDamaged: true, + FlagShipFullySupplied: true, + EscortShipFullySupplied: true, + FlagShipMoraleLargerOrEqualThanFlag: true, + FlagShipMoraleLargerOrEqualThanValue: 33, + EscortShipMoraleLargerOrEqualThanFlag: true, + EscortShipMoraleLargerOrEqualThanValue: 33, + NormalSupportExpedition: false, + NormalSupportExpeditionFleet: 3, + NormalSupportExpeditionTemporaryResupply: true, + NormalSupportExpeditionCheckFullySupplied: true, + NormalSupportExpeditionCheckMorale: true, + BossSupportExpedition: false, + BossSupportExpeditionFleet: 4, + BossSupportExpeditionTemporaryResupply: true, + BossSupportExpeditionCheckFullySupplied: true, + BossSupportExpeditionCheckMorale: true, + LandBasedAirCorps1Action: 1, + LandBasedAirCorps1Resupply: 15, + LandBasedAirCorps1Point1: null, + LandBasedAirCorps1Point2: null, + LandBasedAirCorps1CheckAnyProficiencyNotFull: false, + LandBasedAirCorps1CheckFatigue: true, + LandBasedAirCorps2Action: 1, + LandBasedAirCorps2Resupply: 15, + LandBasedAirCorps2Point1: null, + LandBasedAirCorps2Point2: null, + LandBasedAirCorps2CheckAnyProficiencyNotFull: false, + LandBasedAirCorps2CheckFatigue: true, + LandBasedAirCorps3Action: 2, + LandBasedAirCorps3Resupply: 15, + LandBasedAirCorps3Point1: null, + LandBasedAirCorps3Point2: null, + LandBasedAirCorps3CheckAnyProficiencyNotFull: false, + LandBasedAirCorps3CheckFatigue: true, + DefaultStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + DefaultBossBattleStrategyFlag: true, + DefaultBossBattleStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 2, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + Strategies: [], + EnableScriptSortieChecker: false, + SoriteCheckerFunctionName: "OnCheck", + SortieTaskPriority: -32768, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "34dbf42e-c39b-4c13-b627-aef73caac0fe", + Name: "3-4 1ACFJP", + EnableOnLoad: false, + Fleet: 1, + Sea: 3, + Area: 4, + ResetDifficulty: false, + Difficulty: 0, + MapHpInRangeFlag: false, + MapHpInRangeValueGauge: 0, + MapHpInRangeValueMin: 0, + MapHpInRangeValueMax: 9999, + EscortShipNoHeavilyDamaged: true, + FlagShipFullySupplied: true, + EscortShipFullySupplied: true, + FlagShipMoraleLargerOrEqualThanFlag: true, + FlagShipMoraleLargerOrEqualThanValue: 33, + EscortShipMoraleLargerOrEqualThanFlag: true, + EscortShipMoraleLargerOrEqualThanValue: 33, + NormalSupportExpedition: false, + NormalSupportExpeditionFleet: 3, + NormalSupportExpeditionTemporaryResupply: true, + NormalSupportExpeditionCheckFullySupplied: true, + NormalSupportExpeditionCheckMorale: true, + BossSupportExpedition: false, + BossSupportExpeditionFleet: 4, + BossSupportExpeditionTemporaryResupply: true, + BossSupportExpeditionCheckFullySupplied: true, + BossSupportExpeditionCheckMorale: true, + LandBasedAirCorps1Action: 1, + LandBasedAirCorps1Resupply: 15, + LandBasedAirCorps1Point1: null, + LandBasedAirCorps1Point2: null, + LandBasedAirCorps1CheckAnyProficiencyNotFull: false, + LandBasedAirCorps1CheckFatigue: true, + LandBasedAirCorps2Action: 1, + LandBasedAirCorps2Resupply: 15, + LandBasedAirCorps2Point1: null, + LandBasedAirCorps2Point2: null, + LandBasedAirCorps2CheckAnyProficiencyNotFull: false, + LandBasedAirCorps2CheckFatigue: true, + LandBasedAirCorps3Action: 2, + LandBasedAirCorps3Resupply: 15, + LandBasedAirCorps3Point1: null, + LandBasedAirCorps3Point2: null, + LandBasedAirCorps3CheckAnyProficiencyNotFull: false, + LandBasedAirCorps3CheckFatigue: true, + DefaultStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + DefaultBossBattleStrategyFlag: true, + DefaultBossBattleStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 2, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + Strategies: [], + EnableScriptSortieChecker: false, + SoriteCheckerFunctionName: "OnCheck", + SortieTaskPriority: -32768, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "872cf253-e436-4bec-b3a8-0e876373baee", + Name: "3-5 1(BDH|FG)K", + EnableOnLoad: false, + Fleet: 1, + Sea: 3, + Area: 5, + ResetDifficulty: false, + Difficulty: 0, + MapHpInRangeFlag: false, + MapHpInRangeValueGauge: 0, + MapHpInRangeValueMin: 0, + MapHpInRangeValueMax: 9999, + EscortShipNoHeavilyDamaged: true, + FlagShipFullySupplied: true, + EscortShipFullySupplied: true, + FlagShipMoraleLargerOrEqualThanFlag: true, + FlagShipMoraleLargerOrEqualThanValue: 33, + EscortShipMoraleLargerOrEqualThanFlag: true, + EscortShipMoraleLargerOrEqualThanValue: 33, + NormalSupportExpedition: false, + NormalSupportExpeditionFleet: 3, + NormalSupportExpeditionTemporaryResupply: true, + NormalSupportExpeditionCheckFullySupplied: true, + NormalSupportExpeditionCheckMorale: true, + BossSupportExpedition: false, + BossSupportExpeditionFleet: 4, + BossSupportExpeditionTemporaryResupply: true, + BossSupportExpeditionCheckFullySupplied: true, + BossSupportExpeditionCheckMorale: true, + LandBasedAirCorps1Action: 1, + LandBasedAirCorps1Resupply: 15, + LandBasedAirCorps1Point1: null, + LandBasedAirCorps1Point2: null, + LandBasedAirCorps1CheckAnyProficiencyNotFull: false, + LandBasedAirCorps1CheckFatigue: true, + LandBasedAirCorps2Action: 1, + LandBasedAirCorps2Resupply: 15, + LandBasedAirCorps2Point1: null, + LandBasedAirCorps2Point2: null, + LandBasedAirCorps2CheckAnyProficiencyNotFull: false, + LandBasedAirCorps2CheckFatigue: true, + LandBasedAirCorps3Action: 2, + LandBasedAirCorps3Resupply: 15, + LandBasedAirCorps3Point1: null, + LandBasedAirCorps3Point2: null, + LandBasedAirCorps3CheckAnyProficiencyNotFull: false, + LandBasedAirCorps3CheckFatigue: true, + DefaultStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + DefaultBossBattleStrategyFlag: true, + DefaultBossBattleStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 2, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + Strategies: [], + EnableScriptSortieChecker: false, + SoriteCheckerFunctionName: "OnCheck", + SortieTaskPriority: -32768, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "ce34d8bb-b9d9-4119-a851-d75e9080e14a", + Name: "4-1 1ABDHJ", + EnableOnLoad: false, + Fleet: 1, + Sea: 4, + Area: 1, + ResetDifficulty: false, + Difficulty: 0, + MapHpInRangeFlag: false, + MapHpInRangeValueGauge: 0, + MapHpInRangeValueMin: 0, + MapHpInRangeValueMax: 9999, + EscortShipNoHeavilyDamaged: true, + FlagShipFullySupplied: true, + EscortShipFullySupplied: true, + FlagShipMoraleLargerOrEqualThanFlag: true, + FlagShipMoraleLargerOrEqualThanValue: 33, + EscortShipMoraleLargerOrEqualThanFlag: true, + EscortShipMoraleLargerOrEqualThanValue: 33, + NormalSupportExpedition: false, + NormalSupportExpeditionFleet: 3, + NormalSupportExpeditionTemporaryResupply: true, + NormalSupportExpeditionCheckFullySupplied: true, + NormalSupportExpeditionCheckMorale: true, + BossSupportExpedition: false, + BossSupportExpeditionFleet: 4, + BossSupportExpeditionTemporaryResupply: true, + BossSupportExpeditionCheckFullySupplied: true, + BossSupportExpeditionCheckMorale: true, + LandBasedAirCorps1Action: 1, + LandBasedAirCorps1Resupply: 15, + LandBasedAirCorps1Point1: null, + LandBasedAirCorps1Point2: null, + LandBasedAirCorps1CheckAnyProficiencyNotFull: false, + LandBasedAirCorps1CheckFatigue: true, + LandBasedAirCorps2Action: 1, + LandBasedAirCorps2Resupply: 15, + LandBasedAirCorps2Point1: null, + LandBasedAirCorps2Point2: null, + LandBasedAirCorps2CheckAnyProficiencyNotFull: false, + LandBasedAirCorps2CheckFatigue: true, + LandBasedAirCorps3Action: 2, + LandBasedAirCorps3Resupply: 15, + LandBasedAirCorps3Point1: null, + LandBasedAirCorps3Point2: null, + LandBasedAirCorps3CheckAnyProficiencyNotFull: false, + LandBasedAirCorps3CheckFatigue: true, + DefaultStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + DefaultBossBattleStrategyFlag: true, + DefaultBossBattleStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 2, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + Strategies: [ + { + Condition: { + Type: 1, + Value: 4 + }, + Strategy: { + Memo: "D", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 2, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + } + } + ], + EnableScriptSortieChecker: false, + SoriteCheckerFunctionName: "OnCheck", + SortieTaskPriority: -32768, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "84d160b4-4115-418d-9c20-f52b433cbaca", + Name: "4-2 1(A|BD)CL", + EnableOnLoad: false, + Fleet: 1, + Sea: 4, + Area: 2, + ResetDifficulty: false, + Difficulty: 0, + MapHpInRangeFlag: false, + MapHpInRangeValueGauge: 0, + MapHpInRangeValueMin: 0, + MapHpInRangeValueMax: 9999, + EscortShipNoHeavilyDamaged: true, + FlagShipFullySupplied: true, + EscortShipFullySupplied: true, + FlagShipMoraleLargerOrEqualThanFlag: true, + FlagShipMoraleLargerOrEqualThanValue: 33, + EscortShipMoraleLargerOrEqualThanFlag: true, + EscortShipMoraleLargerOrEqualThanValue: 33, + NormalSupportExpedition: false, + NormalSupportExpeditionFleet: 3, + NormalSupportExpeditionTemporaryResupply: true, + NormalSupportExpeditionCheckFullySupplied: true, + NormalSupportExpeditionCheckMorale: true, + BossSupportExpedition: false, + BossSupportExpeditionFleet: 4, + BossSupportExpeditionTemporaryResupply: true, + BossSupportExpeditionCheckFullySupplied: true, + BossSupportExpeditionCheckMorale: true, + LandBasedAirCorps1Action: 1, + LandBasedAirCorps1Resupply: 15, + LandBasedAirCorps1Point1: null, + LandBasedAirCorps1Point2: null, + LandBasedAirCorps1CheckAnyProficiencyNotFull: false, + LandBasedAirCorps1CheckFatigue: true, + LandBasedAirCorps2Action: 1, + LandBasedAirCorps2Resupply: 15, + LandBasedAirCorps2Point1: null, + LandBasedAirCorps2Point2: null, + LandBasedAirCorps2CheckAnyProficiencyNotFull: false, + LandBasedAirCorps2CheckFatigue: true, + LandBasedAirCorps3Action: 2, + LandBasedAirCorps3Resupply: 15, + LandBasedAirCorps3Point1: null, + LandBasedAirCorps3Point2: null, + LandBasedAirCorps3CheckAnyProficiencyNotFull: false, + LandBasedAirCorps3CheckFatigue: true, + DefaultStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + DefaultBossBattleStrategyFlag: true, + DefaultBossBattleStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 2, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + Strategies: [ + { + Condition: { + Type: 1, + Value: 2 + }, + Strategy: { + Memo: "B", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 2, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + } + } + ], + EnableScriptSortieChecker: false, + SoriteCheckerFunctionName: "OnCheck", + SortieTaskPriority: -32768, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "7341eb56-31a4-4f54-8032-1bf0e45ac177", + Name: "4-3 1DHN", + EnableOnLoad: false, + Fleet: 1, + Sea: 4, + Area: 3, + ResetDifficulty: false, + Difficulty: 0, + MapHpInRangeFlag: false, + MapHpInRangeValueGauge: 0, + MapHpInRangeValueMin: 0, + MapHpInRangeValueMax: 9999, + EscortShipNoHeavilyDamaged: true, + FlagShipFullySupplied: true, + EscortShipFullySupplied: true, + FlagShipMoraleLargerOrEqualThanFlag: true, + FlagShipMoraleLargerOrEqualThanValue: 33, + EscortShipMoraleLargerOrEqualThanFlag: true, + EscortShipMoraleLargerOrEqualThanValue: 33, + NormalSupportExpedition: false, + NormalSupportExpeditionFleet: 3, + NormalSupportExpeditionTemporaryResupply: true, + NormalSupportExpeditionCheckFullySupplied: true, + NormalSupportExpeditionCheckMorale: true, + BossSupportExpedition: false, + BossSupportExpeditionFleet: 4, + BossSupportExpeditionTemporaryResupply: true, + BossSupportExpeditionCheckFullySupplied: true, + BossSupportExpeditionCheckMorale: true, + LandBasedAirCorps1Action: 1, + LandBasedAirCorps1Resupply: 15, + LandBasedAirCorps1Point1: null, + LandBasedAirCorps1Point2: null, + LandBasedAirCorps1CheckAnyProficiencyNotFull: false, + LandBasedAirCorps1CheckFatigue: true, + LandBasedAirCorps2Action: 1, + LandBasedAirCorps2Resupply: 15, + LandBasedAirCorps2Point1: null, + LandBasedAirCorps2Point2: null, + LandBasedAirCorps2CheckAnyProficiencyNotFull: false, + LandBasedAirCorps2CheckFatigue: true, + LandBasedAirCorps3Action: 2, + LandBasedAirCorps3Resupply: 15, + LandBasedAirCorps3Point1: null, + LandBasedAirCorps3Point2: null, + LandBasedAirCorps3CheckAnyProficiencyNotFull: false, + LandBasedAirCorps3CheckFatigue: true, + DefaultStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + DefaultBossBattleStrategyFlag: true, + DefaultBossBattleStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 2, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + Strategies: [], + EnableScriptSortieChecker: false, + SoriteCheckerFunctionName: "OnCheck", + SortieTaskPriority: -32768, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "4fc93d2e-83a3-41e6-bf5e-d3c6ac14e5da", + Name: "4-4 AEIK", + EnableOnLoad: false, + Fleet: 1, + Sea: 4, + Area: 4, + ResetDifficulty: false, + Difficulty: 0, + MapHpInRangeFlag: false, + MapHpInRangeValueGauge: 0, + MapHpInRangeValueMin: 0, + MapHpInRangeValueMax: 9999, + EscortShipNoHeavilyDamaged: true, + FlagShipFullySupplied: true, + EscortShipFullySupplied: true, + FlagShipMoraleLargerOrEqualThanFlag: true, + FlagShipMoraleLargerOrEqualThanValue: 33, + EscortShipMoraleLargerOrEqualThanFlag: true, + EscortShipMoraleLargerOrEqualThanValue: 33, + NormalSupportExpedition: false, + NormalSupportExpeditionFleet: 3, + NormalSupportExpeditionTemporaryResupply: true, + NormalSupportExpeditionCheckFullySupplied: true, + NormalSupportExpeditionCheckMorale: true, + BossSupportExpedition: false, + BossSupportExpeditionFleet: 4, + BossSupportExpeditionTemporaryResupply: true, + BossSupportExpeditionCheckFullySupplied: true, + BossSupportExpeditionCheckMorale: true, + LandBasedAirCorps1Action: 1, + LandBasedAirCorps1Resupply: 15, + LandBasedAirCorps1Point1: null, + LandBasedAirCorps1Point2: null, + LandBasedAirCorps1CheckAnyProficiencyNotFull: false, + LandBasedAirCorps1CheckFatigue: true, + LandBasedAirCorps2Action: 1, + LandBasedAirCorps2Resupply: 15, + LandBasedAirCorps2Point1: null, + LandBasedAirCorps2Point2: null, + LandBasedAirCorps2CheckAnyProficiencyNotFull: false, + LandBasedAirCorps2CheckFatigue: true, + LandBasedAirCorps3Action: 2, + LandBasedAirCorps3Resupply: 15, + LandBasedAirCorps3Point1: null, + LandBasedAirCorps3Point2: null, + LandBasedAirCorps3CheckAnyProficiencyNotFull: false, + LandBasedAirCorps3CheckFatigue: true, + DefaultStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + DefaultBossBattleStrategyFlag: true, + DefaultBossBattleStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 2, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + Strategies: [ + { + Condition: { + Type: 1, + Value: 5 + }, + Strategy: { + Memo: "E(A->E)", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 5, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + } + }, + { + Condition: { + Type: 1, + Value: 11 + }, + Strategy: { + Memo: "K(BOSS)", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 2, + FallbackFormation: 1, + DefaultMidnight: 2, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + } + } + ], + EnableScriptSortieChecker: false, + SoriteCheckerFunctionName: "OnCheck", + SortieTaskPriority: -32768, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "3f8bc0c3-4d02-45cb-b597-901136827af1", + Name: "4-5 1(A|C)DHT", + EnableOnLoad: false, + Fleet: 1, + Sea: 4, + Area: 5, + ResetDifficulty: false, + Difficulty: 0, + MapHpInRangeFlag: false, + MapHpInRangeValueGauge: 0, + MapHpInRangeValueMin: 0, + MapHpInRangeValueMax: 9999, + EscortShipNoHeavilyDamaged: true, + FlagShipFullySupplied: true, + EscortShipFullySupplied: true, + FlagShipMoraleLargerOrEqualThanFlag: true, + FlagShipMoraleLargerOrEqualThanValue: 33, + EscortShipMoraleLargerOrEqualThanFlag: true, + EscortShipMoraleLargerOrEqualThanValue: 33, + NormalSupportExpedition: false, + NormalSupportExpeditionFleet: 3, + NormalSupportExpeditionTemporaryResupply: true, + NormalSupportExpeditionCheckFullySupplied: true, + NormalSupportExpeditionCheckMorale: true, + BossSupportExpedition: false, + BossSupportExpeditionFleet: 4, + BossSupportExpeditionTemporaryResupply: true, + BossSupportExpeditionCheckFullySupplied: true, + BossSupportExpeditionCheckMorale: true, + LandBasedAirCorps1Action: 1, + LandBasedAirCorps1Resupply: 15, + LandBasedAirCorps1Point1: null, + LandBasedAirCorps1Point2: null, + LandBasedAirCorps1CheckAnyProficiencyNotFull: false, + LandBasedAirCorps1CheckFatigue: true, + LandBasedAirCorps2Action: 1, + LandBasedAirCorps2Resupply: 15, + LandBasedAirCorps2Point1: null, + LandBasedAirCorps2Point2: null, + LandBasedAirCorps2CheckAnyProficiencyNotFull: false, + LandBasedAirCorps2CheckFatigue: true, + LandBasedAirCorps3Action: 2, + LandBasedAirCorps3Resupply: 15, + LandBasedAirCorps3Point1: null, + LandBasedAirCorps3Point2: null, + LandBasedAirCorps3CheckAnyProficiencyNotFull: false, + LandBasedAirCorps3CheckFatigue: true, + DefaultStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + DefaultBossBattleStrategyFlag: true, + DefaultBossBattleStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 2, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + Strategies: [ + { + Condition: { + Type: 1, + Value: 1 + }, + Strategy: { + Memo: "A", + DefaultWayPoint: { + Name: "A->D", + Memo: "", + Left: 0.7282913957214211, + Top: 0.4600885873150504, Width: 0.01756667609084925, Height: 0.027769924292400924 }, @@ -1363,74 +2501,302 @@ }, Strategy: { Memo: "C", - DefaultWayPoint: { - Name: "C->D", - Memo: "", - Left: 0.7282913957214211, - Top: 0.4590833411868187, - Width: 0.01756667609084925, - Height: 0.028775170420632646 - }, - DefaultBattleRations: 0, - DefaultMaritimeResupply: 0, - DefaultEmergencyAnchorageRepair: 0, - DefaultFormation: 0, - FallbackFormation: 1, - DefaultMidnight: 0, - DefalutFlagShipDamageControl: 0, - DefaultEscortRetreat: 0, - DefaultAdvance: 0, - RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, - EscortShipsHeavilyDamagedStrategy: 1, - RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, - RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, - EnableScriptEnterDayTimeBattleCallback: false, - EnterDayTimeBattleCallbackFunctionName: "OnDay", - EnableScriptEnterNightTimeBattleCallback: false, - EnterNightTimeBattleCallbackFunctionName: "OnNight" - } - }, - { - Condition: { - Type: 1, - Value: 4 - }, - Strategy: { - Memo: "D(A->D)", - DefaultWayPoint: null, - DefaultBattleRations: 0, - DefaultMaritimeResupply: 0, - DefaultEmergencyAnchorageRepair: 0, - DefaultFormation: 5, - FallbackFormation: 1, - DefaultMidnight: 1, - DefalutFlagShipDamageControl: 0, - DefaultEscortRetreat: 0, - DefaultAdvance: 1, - RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, - EscortShipsHeavilyDamagedStrategy: 1, - RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, - RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, - EnableScriptEnterDayTimeBattleCallback: false, - EnterDayTimeBattleCallbackFunctionName: "OnDay", - EnableScriptEnterNightTimeBattleCallback: false, - EnterNightTimeBattleCallbackFunctionName: "OnNight" - } - }, - { - Condition: { - Type: 1, - Value: 21 - }, - Strategy: { - Memo: "D(C->D)", + DefaultWayPoint: { + Name: "C->D", + Memo: "", + Left: 0.7282913957214211, + Top: 0.4590833411868187, + Width: 0.01756667609084925, + Height: 0.028775170420632646 + }, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 0, + FallbackFormation: 1, + DefaultMidnight: 0, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + } + }, + { + Condition: { + Type: 1, + Value: 4 + }, + Strategy: { + Memo: "D(A->D)", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 5, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + } + }, + { + Condition: { + Type: 1, + Value: 21 + }, + Strategy: { + Memo: "D(C->D)", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 5, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + } + } + ], + EnableScriptSortieChecker: false, + SoriteCheckerFunctionName: "OnCheck", + SortieTaskPriority: -32768, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "79b99e05-17de-4a07-8ce9-6c4824571bbb", + Name: "5-1 1BCFJ", + EnableOnLoad: false, + Fleet: 1, + Sea: 5, + Area: 1, + ResetDifficulty: false, + Difficulty: 0, + MapHpInRangeFlag: false, + MapHpInRangeValueGauge: 0, + MapHpInRangeValueMin: 0, + MapHpInRangeValueMax: 9999, + EscortShipNoHeavilyDamaged: true, + FlagShipFullySupplied: true, + EscortShipFullySupplied: true, + FlagShipMoraleLargerOrEqualThanFlag: true, + FlagShipMoraleLargerOrEqualThanValue: 33, + EscortShipMoraleLargerOrEqualThanFlag: true, + EscortShipMoraleLargerOrEqualThanValue: 33, + NormalSupportExpedition: false, + NormalSupportExpeditionFleet: 3, + NormalSupportExpeditionTemporaryResupply: true, + NormalSupportExpeditionCheckFullySupplied: true, + NormalSupportExpeditionCheckMorale: true, + BossSupportExpedition: false, + BossSupportExpeditionFleet: 4, + BossSupportExpeditionTemporaryResupply: true, + BossSupportExpeditionCheckFullySupplied: true, + BossSupportExpeditionCheckMorale: true, + LandBasedAirCorps1Action: 1, + LandBasedAirCorps1Resupply: 15, + LandBasedAirCorps1Point1: null, + LandBasedAirCorps1Point2: null, + LandBasedAirCorps1CheckAnyProficiencyNotFull: false, + LandBasedAirCorps1CheckFatigue: true, + LandBasedAirCorps2Action: 1, + LandBasedAirCorps2Resupply: 15, + LandBasedAirCorps2Point1: null, + LandBasedAirCorps2Point2: null, + LandBasedAirCorps2CheckAnyProficiencyNotFull: false, + LandBasedAirCorps2CheckFatigue: true, + LandBasedAirCorps3Action: 2, + LandBasedAirCorps3Resupply: 15, + LandBasedAirCorps3Point1: null, + LandBasedAirCorps3Point2: null, + LandBasedAirCorps3CheckAnyProficiencyNotFull: false, + LandBasedAirCorps3CheckFatigue: true, + DefaultStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + DefaultBossBattleStrategyFlag: true, + DefaultBossBattleStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 2, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + Strategies: [], + EnableScriptSortieChecker: false, + SoriteCheckerFunctionName: "OnCheck", + SortieTaskPriority: -32768, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "412eb8b7-55e1-403a-8cda-d15dbbccccae", + Name: "5-2 1BCDFO", + EnableOnLoad: false, + Fleet: 1, + Sea: 5, + Area: 2, + ResetDifficulty: false, + Difficulty: 0, + MapHpInRangeFlag: false, + MapHpInRangeValueGauge: 0, + MapHpInRangeValueMin: 0, + MapHpInRangeValueMax: 9999, + EscortShipNoHeavilyDamaged: true, + FlagShipFullySupplied: true, + EscortShipFullySupplied: true, + FlagShipMoraleLargerOrEqualThanFlag: true, + FlagShipMoraleLargerOrEqualThanValue: 33, + EscortShipMoraleLargerOrEqualThanFlag: true, + EscortShipMoraleLargerOrEqualThanValue: 33, + NormalSupportExpedition: false, + NormalSupportExpeditionFleet: 3, + NormalSupportExpeditionTemporaryResupply: true, + NormalSupportExpeditionCheckFullySupplied: true, + NormalSupportExpeditionCheckMorale: true, + BossSupportExpedition: false, + BossSupportExpeditionFleet: 4, + BossSupportExpeditionTemporaryResupply: true, + BossSupportExpeditionCheckFullySupplied: true, + BossSupportExpeditionCheckMorale: true, + LandBasedAirCorps1Action: 1, + LandBasedAirCorps1Resupply: 15, + LandBasedAirCorps1Point1: null, + LandBasedAirCorps1Point2: null, + LandBasedAirCorps1CheckAnyProficiencyNotFull: false, + LandBasedAirCorps1CheckFatigue: true, + LandBasedAirCorps2Action: 1, + LandBasedAirCorps2Resupply: 15, + LandBasedAirCorps2Point1: null, + LandBasedAirCorps2Point2: null, + LandBasedAirCorps2CheckAnyProficiencyNotFull: false, + LandBasedAirCorps2CheckFatigue: true, + LandBasedAirCorps3Action: 2, + LandBasedAirCorps3Resupply: 15, + LandBasedAirCorps3Point1: null, + LandBasedAirCorps3Point2: null, + LandBasedAirCorps3CheckAnyProficiencyNotFull: false, + LandBasedAirCorps3CheckFatigue: true, + DefaultStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + DefaultBossBattleStrategyFlag: true, + DefaultBossBattleStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 2, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + Strategies: [ + { + Condition: { + Type: 1, + Value: 3 + }, + Strategy: { + Memo: "C", DefaultWayPoint: null, DefaultBattleRations: 0, DefaultMaritimeResupply: 0, DefaultEmergencyAnchorageRepair: 0, - DefaultFormation: 5, + DefaultFormation: 3, FallbackFormation: 1, - DefaultMidnight: 1, + DefaultMidnight: 0, DefalutFlagShipDamageControl: 0, DefaultEscortRetreat: 0, DefaultAdvance: 1, @@ -1453,13 +2819,13 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", - Guid: "79b99e05-17de-4a07-8ce9-6c4824571bbb", - Name: "5-1 1BCFJ", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "e17c8dce-7d44-48e1-bef6-ff07fc60612b", + Name: "5-3 1DGIOKH?EQ", EnableOnLoad: false, Fleet: 1, Sea: 5, - Area: 1, + Area: 3, ResetDifficulty: false, Difficulty: 0, MapHpInRangeFlag: false, @@ -1544,7 +2910,96 @@ EnableScriptEnterNightTimeBattleCallback: false, EnterNightTimeBattleCallbackFunctionName: "OnNight" }, - Strategies: [], + Strategies: [ + { + Condition: { + Type: 1, + Value: 9 + }, + Strategy: { + Memo: "I", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 4, + FallbackFormation: 1, + DefaultMidnight: 0, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + } + }, + { + Condition: { + Type: 1, + Value: 15 + }, + Strategy: { + Memo: "O", + DefaultWayPoint: { + Name: "O->K", + Memo: "", + Left: 0.6354066534728112, + Top: 0.5847391072157824, + Width: 0.01756667609084917, + Height: 0.029277793484748543 + }, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 0, + FallbackFormation: 1, + DefaultMidnight: 0, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + } + }, + { + Condition: { + Type: 1, + Value: 11 + }, + Strategy: { + Memo: "K", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 4, + FallbackFormation: 1, + DefaultMidnight: 0, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + } + } + ], EnableScriptSortieChecker: false, SoriteCheckerFunctionName: "OnCheck", SortieTaskPriority: -32768, @@ -1553,13 +3008,13 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", - Guid: "412eb8b7-55e1-403a-8cda-d15dbbccccae", - Name: "5-2 1BCDFO", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "743b0169-09a4-40ae-b048-713f7f3717e6", + Name: "5-4 1(AD|B)EHJMP", EnableOnLoad: false, Fleet: 1, Sea: 5, - Area: 2, + Area: 4, ResetDifficulty: false, Difficulty: 0, MapHpInRangeFlag: false, @@ -1648,15 +3103,42 @@ { Condition: { Type: 1, - Value: 3 + Value: 8 + }, + Strategy: { + Memo: "H", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 4, + FallbackFormation: 1, + DefaultMidnight: 0, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + } + }, + { + Condition: { + Type: 1, + Value: 10 }, Strategy: { - Memo: "C", + Memo: "J", DefaultWayPoint: null, DefaultBattleRations: 0, DefaultMaritimeResupply: 0, DefaultEmergencyAnchorageRepair: 0, - DefaultFormation: 3, + DefaultFormation: 4, FallbackFormation: 1, DefaultMidnight: 0, DefalutFlagShipDamageControl: 0, @@ -1681,13 +3163,13 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", - Guid: "e17c8dce-7d44-48e1-bef6-ff07fc60612b", - Name: "5-3 1DGIOKEQ", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "9f1f252d-5864-41d1-aac8-0684903b7bd4", + Name: "5-5 1BFDHNOS", EnableOnLoad: false, Fleet: 1, Sea: 5, - Area: 3, + Area: 5, ResetDifficulty: false, Difficulty: 0, MapHpInRangeFlag: false, @@ -1750,7 +3232,7 @@ EnableScriptEnterNightTimeBattleCallback: false, EnterNightTimeBattleCallbackFunctionName: "OnNight" }, - DefaultBossBattleStrategyFlag: true, + DefaultBossBattleStrategyFlag: false, DefaultBossBattleStrategy: { Memo: "", DefaultWayPoint: null, @@ -1776,17 +3258,17 @@ { Condition: { Type: 1, - Value: 9 + Value: 2 }, Strategy: { - Memo: "I", + Memo: "B", DefaultWayPoint: null, DefaultBattleRations: 0, DefaultMaritimeResupply: 0, DefaultEmergencyAnchorageRepair: 0, - DefaultFormation: 4, + DefaultFormation: 5, FallbackFormation: 1, - DefaultMidnight: 0, + DefaultMidnight: 1, DefalutFlagShipDamageControl: 0, DefaultEscortRetreat: 0, DefaultAdvance: 1, @@ -1803,17 +3285,17 @@ { Condition: { Type: 1, - Value: 15 + Value: 6 }, Strategy: { - Memo: "O", + Memo: "F", DefaultWayPoint: { - Name: "O->K", + Name: "F->D", Memo: "", - Left: 0.6354066534728112, - Top: 0.5847391072157824, - Width: 0.01756667609084917, - Height: 0.029277793484748543 + Left: 0.3504193761191217, + Top: 0.5209059780730688, + Width: 0.017868249929318663, + Height: 0.030785662677096093 }, DefaultBattleRations: 0, DefaultMaritimeResupply: 0, @@ -1837,20 +3319,20 @@ { Condition: { Type: 1, - Value: 11 + Value: 19 }, Strategy: { - Memo: "K", + Memo: "S(BOSS)", DefaultWayPoint: null, DefaultBattleRations: 0, DefaultMaritimeResupply: 0, DefaultEmergencyAnchorageRepair: 0, - DefaultFormation: 4, + DefaultFormation: 2, FallbackFormation: 1, - DefaultMidnight: 0, + DefaultMidnight: 2, DefalutFlagShipDamageControl: 0, DefaultEscortRetreat: 0, - DefaultAdvance: 1, + DefaultAdvance: 0, RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, EscortShipsHeavilyDamagedStrategy: 1, RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, @@ -1870,13 +3352,13 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", - Guid: "743b0169-09a4-40ae-b048-713f7f3717e6", - Name: "5-4 1ADEHJMP", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "11b1ddaa-5cf5-4667-8078-a865e1c96555", + Name: "6-2 1CE(FI|J)K", EnableOnLoad: false, Fleet: 1, - Sea: 5, - Area: 4, + Sea: 6, + Area: 2, ResetDifficulty: false, Difficulty: 0, MapHpInRangeFlag: false, @@ -1961,62 +3443,7 @@ EnableScriptEnterNightTimeBattleCallback: false, EnterNightTimeBattleCallbackFunctionName: "OnNight" }, - Strategies: [ - { - Condition: { - Type: 1, - Value: 8 - }, - Strategy: { - Memo: "H", - DefaultWayPoint: null, - DefaultBattleRations: 0, - DefaultMaritimeResupply: 0, - DefaultEmergencyAnchorageRepair: 0, - DefaultFormation: 4, - FallbackFormation: 1, - DefaultMidnight: 0, - DefalutFlagShipDamageControl: 0, - DefaultEscortRetreat: 0, - DefaultAdvance: 1, - RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, - EscortShipsHeavilyDamagedStrategy: 1, - RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, - RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, - EnableScriptEnterDayTimeBattleCallback: false, - EnterDayTimeBattleCallbackFunctionName: "OnDay", - EnableScriptEnterNightTimeBattleCallback: false, - EnterNightTimeBattleCallbackFunctionName: "OnNight" - } - }, - { - Condition: { - Type: 1, - Value: 10 - }, - Strategy: { - Memo: "J", - DefaultWayPoint: null, - DefaultBattleRations: 0, - DefaultMaritimeResupply: 0, - DefaultEmergencyAnchorageRepair: 0, - DefaultFormation: 4, - FallbackFormation: 1, - DefaultMidnight: 0, - DefalutFlagShipDamageControl: 0, - DefaultEscortRetreat: 0, - DefaultAdvance: 1, - RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, - EscortShipsHeavilyDamagedStrategy: 1, - RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, - RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, - EnableScriptEnterDayTimeBattleCallback: false, - EnterDayTimeBattleCallbackFunctionName: "OnDay", - EnableScriptEnterNightTimeBattleCallback: false, - EnterNightTimeBattleCallbackFunctionName: "OnNight" - } - } - ], + Strategies: [], EnableScriptSortieChecker: false, SoriteCheckerFunctionName: "OnCheck", SortieTaskPriority: -32768, @@ -2025,13 +3452,13 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", - Guid: "9f1f252d-5864-41d1-aac8-0684903b7bd4", - Name: "5-5 1BFHNOS", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", + Guid: "e375cc07-443f-433f-86b9-0b87e152ad53", + Name: "6-3 1ACEFHJ", EnableOnLoad: false, Fleet: 1, - Sea: 5, - Area: 5, + Sea: 6, + Area: 3, ResetDifficulty: false, Difficulty: 0, MapHpInRangeFlag: false, @@ -2094,7 +3521,7 @@ EnableScriptEnterNightTimeBattleCallback: false, EnterNightTimeBattleCallbackFunctionName: "OnNight" }, - DefaultBossBattleStrategyFlag: false, + DefaultBossBattleStrategyFlag: true, DefaultBossBattleStrategy: { Memo: "", DefaultWayPoint: null, @@ -2120,44 +3547,17 @@ { Condition: { Type: 1, - Value: 2 - }, - Strategy: { - Memo: "B", - DefaultWayPoint: null, - DefaultBattleRations: 0, - DefaultMaritimeResupply: 0, - DefaultEmergencyAnchorageRepair: 0, - DefaultFormation: 5, - FallbackFormation: 1, - DefaultMidnight: 1, - DefalutFlagShipDamageControl: 0, - DefaultEscortRetreat: 0, - DefaultAdvance: 1, - RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, - EscortShipsHeavilyDamagedStrategy: 1, - RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, - RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, - EnableScriptEnterDayTimeBattleCallback: false, - EnterDayTimeBattleCallbackFunctionName: "OnDay", - EnableScriptEnterNightTimeBattleCallback: false, - EnterNightTimeBattleCallbackFunctionName: "OnNight" - } - }, - { - Condition: { - Type: 1, - Value: 6 + Value: 1 }, Strategy: { - Memo: "F", + Memo: "A", DefaultWayPoint: { - Name: "F->D", + Name: "A->C", Memo: "", - Left: 0.3504193761191217, - Top: 0.5209059780730688, - Width: 0.017868249929318663, - Height: 0.030785662677096093 + Left: 0.3546414098576949, + Top: 0.603336160588069, + Width: 0.01696352841391009, + Height: 0.03279615493355954 }, DefaultBattleRations: 0, DefaultMaritimeResupply: 0, @@ -2177,33 +3577,6 @@ EnableScriptEnterNightTimeBattleCallback: false, EnterNightTimeBattleCallbackFunctionName: "OnNight" } - }, - { - Condition: { - Type: 1, - Value: 19 - }, - Strategy: { - Memo: "S(BOSS)", - DefaultWayPoint: null, - DefaultBattleRations: 0, - DefaultMaritimeResupply: 0, - DefaultEmergencyAnchorageRepair: 0, - DefaultFormation: 2, - FallbackFormation: 1, - DefaultMidnight: 2, - DefalutFlagShipDamageControl: 0, - DefaultEscortRetreat: 0, - DefaultAdvance: 0, - RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, - EscortShipsHeavilyDamagedStrategy: 1, - RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, - RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, - EnableScriptEnterDayTimeBattleCallback: false, - EnterDayTimeBattleCallbackFunctionName: "OnDay", - EnableScriptEnterNightTimeBattleCallback: false, - EnterNightTimeBattleCallbackFunctionName: "OnNight" - } } ], EnableScriptSortieChecker: false, @@ -2214,9 +3587,9 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", Guid: "df590a9a-607e-4452-b5a9-e4b68c9b492b", - Name: "6-4 (1(A|B)DCF|2MKHJI)N", + Name: "6-4 (1(A|B)DCF|2MK(H)JI)N", EnableOnLoad: false, Fleet: 1, Sea: 6, @@ -2250,7 +3623,7 @@ LandBasedAirCorps1Point2: null, LandBasedAirCorps1CheckAnyProficiencyNotFull: false, LandBasedAirCorps1CheckFatigue: true, - LandBasedAirCorps2Action: 4, + LandBasedAirCorps2Action: 3, LandBasedAirCorps2Resupply: 15, LandBasedAirCorps2Point1: null, LandBasedAirCorps2Point2: null, @@ -2450,9 +3823,9 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", Guid: "d1327142-fbdc-45ce-b3ba-978f0bc4815f", - Name: "6-5 1ACEHGM", + Name: "6-5 (1ACEHG|2BFIJ)M", EnableOnLoad: false, Fleet: 1, Sea: 6, @@ -2622,6 +3995,60 @@ EnableScriptEnterNightTimeBattleCallback: false, EnterNightTimeBattleCallbackFunctionName: "OnNight" } + }, + { + Condition: { + Type: 1, + Value: 2 + }, + Strategy: { + Memo: "B", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 5, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + } + }, + { + Condition: { + Type: 1, + Value: 10 + }, + Strategy: { + Memo: "J", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 4, + FallbackFormation: 1, + DefaultMidnight: 0, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 1, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + } } ], EnableScriptSortieChecker: false, @@ -2632,7 +4059,7 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", Guid: "f7df9a17-27c7-4ce4-bdf4-638328777e6c", Name: "7-2 P2 1BCDIM", EnableOnLoad: false, @@ -2760,7 +4187,7 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", Guid: "3668ef8c-611b-49cf-82e6-1a2a70196225", Name: "7-3 P2 1ACDGJ?P", EnableOnLoad: false, @@ -2860,7 +4287,7 @@ TriggerOnEnabled: false }, { - Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.0, Culture=neutral, PublicKeyToken=null", + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null", Guid: "eea655f0-8924-4a50-abc8-d7f3bcd84007", Name: "7-4 1(AB|C)EJLP", EnableOnLoad: false, @@ -2896,7 +4323,7 @@ LandBasedAirCorps1Point2: null, LandBasedAirCorps1CheckAnyProficiencyNotFull: false, LandBasedAirCorps1CheckFatigue: true, - LandBasedAirCorps2Action: 1, + LandBasedAirCorps2Action: 2, LandBasedAirCorps2Resupply: 15, LandBasedAirCorps2Point1: null, LandBasedAirCorps2Point2: null, diff --git "a/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/\350\214\203\344\276\213\351\205\215\347\275\256/\346\231\256\351\200\232\351\205\215\347\275\256/\350\265\204\346\272\220 1-3 \346\262\271 [220716].conf.json" "b/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/\350\214\203\344\276\213\351\205\215\347\275\256/\346\231\256\351\200\232\351\205\215\347\275\256/\350\265\204\346\272\220 1-3 \346\262\271 [220716].conf.json" new file mode 100644 index 0000000..e509c0a --- /dev/null +++ "b/\350\202\235\345\270\235\346\250\241\346\213\237 \346\224\271/\350\214\203\344\276\213\351\205\215\347\275\256/\346\231\256\351\200\232\351\205\215\347\275\256/\350\265\204\346\272\220 1-3 \346\262\271 [220716].conf.json" @@ -0,0 +1,1679 @@ +{ + Name: "资源 1-3 油", + List: [ + { + Type: "KancollePlayerSimulatorKai.MemoWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.1, Culture=neutral, PublicKeyToken=null", + Guid: "e0d5b345-b931-4e00-9981-b965320fa5e9", + Name: "使用说明", + EnableOnLoad: false, + Memo: "【概述】\r\n1-3偷油。路线ADBE。无视疲劳。\r\n\r\n【使用前准备】\r\n请按需修改具体设置,比如循环次数、编成、装备、入渠条件、补给条件、阵型。\r\n默认连续出击100次。\r\n默认设置需要神威改母、吕500、4个大发DD。建议修改为适合自己的编成。\r\n默认设置中DD装备仅使用“大发动艇”,目的是把“特大发动艇”留给远征。\r\n若此类装备数量不足,会有远征配置和此配置互相抢装备的情况发生。\r\n其他“登陆艇”也可以获得资源加成,但并没有在本配置中使用。\r\n\r\n【使用方法】\r\n触发“总控”执行单元\r\n\r\n【更新记录】\r\n[220716]\r\n初始版本。", + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.RelationalSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.1, Culture=neutral, PublicKeyToken=null", + Guid: "f9daddaa-a88e-42cb-a31e-befb302adb7b", + Name: "总控", + EnableOnLoad: false, + SleepTimeBase: "00:00:00", + SleepTimeRandomMax: "00:00:00", + DoNotSleepAtFirstLoop: true, + SleepUntilMoraleRecoveredFlag: false, + SleepUntilMoraleRecoveredValueMorale: 49, + SleepUntilFlagShipMoraleRecoveredFlag: false, + SleepUntilFlagShipMoraleRecoveredValueMorale: 49, + SleepUntilAnyDockEmptyFlag: false, + SleepUntilAnyDockEmptyValueDocks: 15, + SleepUntilAllDocksEmptyFlag: false, + SleepUntilAllDocksEmptyValueDocks: 15, + SubroutineBeforeFinishedEventScriptJudgerFlag: false, + SubroutineAfterFinishedEventScriptJudgerFlag: false, + SubroutineBeforeFinishedEventScriptJudgerValue: "", + SubroutineAfterFinishedEventScriptJudgerValue: "", + SubroutineBeforeFinishedEventThreshold: 1, + SubroutineAfterFinishedEventThreshold: 1, + SubroutineBeforeWorkflows: [], + SubroutineAfterWorkflows: [], + QuestBeforeFinishedEventThreshold: 0, + QuestAfterFinishedEventThreshold: 1, + QuestBeforeWorkflows: [ + { + Guid: "f073aa4f-eeb8-4ea0-9666-1e980fb0a977", + Enabled: true, + IgnoreTriggerFailure: false + } + ], + QuestAfterWorkflows: [], + OrganizeBeforeFinishedEventThreshold: 1, + OrganizeAfterFinishedEventThreshold: 1, + OrganizeBeforeWorkflows: [ + { + Guid: "bebf8f34-9c94-4c73-b209-e0bb49e74984", + Enabled: true, + IgnoreTriggerFailure: false + } + ], + OrganizeAfterWorkflows: [], + RefitEquipmentBeforeFinishedEventThreshold: 1, + RefitEquipmentAfterFinishedEventThreshold: 1, + RefitEquipmentBeforeWorkflows: [ + { + Guid: "3198f973-affb-41af-b1ac-f3330d3e2c4c", + Enabled: true, + IgnoreTriggerFailure: false + } + ], + RefitEquipmentAfterWorkflows: [], + ScrapShipBeforeFinishedEventThreshold: 1, + ScrapShipAfterFinishedEventThreshold: 1, + ScrapShipBeforeWorkflows: [], + ScrapShipAfterWorkflows: [], + DockingBeforeFinishedEventThreshold: 2, + DockingAfterFinishedEventThreshold: 1, + DockingBeforeWorkflows: [ + { + Guid: "46fcbc38-1655-47d8-bdd0-63b6309d5bfa", + Enabled: true, + IgnoreTriggerFailure: false + }, + { + Guid: "b70a7843-3bb7-4dfb-bcc8-33b880e6fc9f", + Enabled: true, + IgnoreTriggerFailure: false + } + ], + DockingAfterWorkflows: [], + SupplyBeforeFinishedEventThreshold: 1, + SupplyAfterFinishedEventThreshold: 1, + SupplyAfterOnlyTargetFleetFinishedEventCounted: true, + SupplyBeforeWorkflows: [ + { + Guid: "31919012-7ce3-4121-b3cc-905d3ed5d0e7", + Enabled: true, + IgnoreTriggerFailure: false + } + ], + SupplyAfterWorkflows: [ + { + Guid: "716e5841-9a28-46df-bc53-b6e56d4b1d0d", + Enabled: true, + IgnoreTriggerFailure: false + } + ], + SortieWorkflow: { + Guid: "04a09dc3-9912-4dc3-b9ee-768d20b06e03", + Enabled: true, + IgnoreTriggerFailure: false + }, + StopIfLoopCountLargerOrEqualThanFlag: true, + StopIfLoopCountLargerOrEqualThanValue: 100, + StopIfRuntimeLengthExceedFlag: false, + StopIfRuntimeLengthExceedValueDays: 0, + StopIfRuntimeLengthExceedValueHours: 0, + StopIfRuntimeLengthExceedValueMinutes: 0, + StopIfRuntimeLengthExceedValueSeconds: 0, + StopIfWithinTimePeriodFlag: false, + StopIfWithinTimePeriodReferenceTime: 1, + StopIfWithinTimePeriodValueStartHours: 22, + StopIfWithinTimePeriodValueStartMinutes: 0, + StopIfWithinTimePeriodValueEndHours: 8, + StopIfWithinTimePeriodValueEndMinutes: 0, + StopIfShipVacancyLessOrEqualThanFlag: false, + StopIfShipVacancyLessOrEqualThanValue: 0, + StopIfEquipmentVacancyLessOrEqualThanFlag: false, + StopIfEquipmentVacancyLessOrEqualThanValue: 0, + StopIfQuestBeforeActuralAcceptedQuestLessThanFlag: false, + StopIfQuestBeforeActuralAcceptedQuestLessThanValue: 1, + StopIfQuestAfterLoopActuralAcceptedQuestLessThanFlag: false, + StopIfQuestAfterLoopActuralAcceptedQuestLessThanValue: 1, + StopIfQuestBeforeTotalActuralSubmittedHigherOrEqualThanFlag: false, + StopIfQuestBeforeTotalActuralSubmittedHigherOrEqualThanValue: 1, + StopIfQuestAfterTotalActuralSubmittedHigherOrEqualThanFlag: false, + StopIfQuestAfterTotalActuralSubmittedHigherOrEqualThanValue: 1, + StopIfQuestBeforeQuestNotExist: false, + StopIfQuestAfterQuestNotExist: false, + StopIfOrganizeBeforeSelectFailed: false, + StopIfOrganizeAfterSelectFailed: false, + StopIfGetMedal: false, + StopIfGetShipFlag: false, + StopIfGetShipValueShipName: "大鯨", + StopIfArrivedEndPointFlag: false, + StopIfArrivedEndPointValueThreshold: 1, + StopIfEnemyDebufAtHomeFlag: false, + StopIfEnemyDebufAtHomeValueThreshold: 1, + StopIfAirBaseAttackNoDamageFlag: false, + StopIfAirBaseAttackNoDamageValueThreshold: 1, + StopIfEnemyFlagShipSunkFlag: false, + StopIfEnemyFlagShipSunkValueThreshold: 1, + StopIfEnemyFlagShipSunkValueConditionType: 0, + StopIfEnemyFlagShipSunkValueConditionValue: "1", + StopIfBossBattleRankHigherOrEqualThanFlag: false, + StopIfBossBattleRankHigherOrEqualThanValueRank: 4, + StopIfBossBattleRankHigherOrEqualThanValueThreshold: 1, + StopIfBattleRankHigherOrEqualThanFlag: false, + StopIfBattleRankHigherOrEqualThanValueConditionType: 0, + StopIfBattleRankHigherOrEqualThanValueConditionValue: "1", + StopIfBattleRankHigherOrEqualThanValueRank: 4, + StopIfBattleRankHigherOrEqualThanValueThreshold: 1, + IgnoreQuestBeforeFailure: false, + IgnoreQuestAfterFailure: false, + IgnoreOrganizeBeforeFailure: false, + IgnoreOrganizeAfterFailure: false, + IgnoreRefitEquipmentBeforeFailure: false, + IgnoreRefitEquipmentAfterFailure: false, + IgnoreSortieFailure: false, + FinishLoopIfQuestBeforeFailureFlag: false, + FinishLoopIfQuestBeforeFailureValueThreshold: 1, + FinishLoopIfQuestAfterFailureFlag: false, + FinishLoopIfQuestAfterFailureValueThreshold: 1, + FinishLoopIfOrganizeBeforeFailureFlag: false, + FinishLoopIfOrganizeBeforeFailureValueThreshold: 1, + FinishLoopIfOrganizeAfterFailureFlag: false, + FinishLoopIfOrganizeAfterFailureValueThreshold: 1, + FinishLoopIfRefitEquipmentBeforeFailureFlag: false, + FinishLoopIfRefitEquipmentBeforeFailureValueThreshold: 1, + FinishLoopIfRefitEquipmentAfterFailureFlag: false, + FinishLoopIfRefitEquipmentAfterFailureValueThreshold: 1, + FinishLoopIfSortieFailureFlag: false, + FinishLoopIfSortieFailureValueThreshold: 1, + MinimalSleepSecondsAfterFailureOccuredFlag: false, + MinimalSleepSecondsAfterFailureOccuredValue: 180, + Fleet: 1, + RefreshDataTaskPriority: 0, + WaitHomeBeforeSleep: false, + WaitHomeAfterSleep: false, + RefreshDataBeforeSortie: false, + ReturnRoomAtLast: true, + BeforeLoopsEnableWorkflows: [], + BeforeLoopsDisableWorkflows: [], + BeforeLoopsTriggerWorkflows: [], + AutoStoppedEnableWorkflows: [], + AutoStoppedDisableWorkflows: [ + { + Guid: "46fcbc38-1655-47d8-bdd0-63b6309d5bfa", + Enabled: true, + IgnoreTriggerFailure: false + }, + { + Guid: "b70a7843-3bb7-4dfb-bcc8-33b880e6fc9f", + Enabled: true, + IgnoreTriggerFailure: false + } + ], + AutoStoppedTriggerWorkflows: [ + { + Guid: "1292c6ca-12e3-4468-99f2-e3d4952f3138", + Enabled: true, + IgnoreTriggerFailure: false + } + ], + Repeat: true, + ExclusiveExecution: true, + ExclusivePriority: 0, + EnableScript: true, + Script: null, + TriggerOnEnabled: true + }, + { + Type: "KancollePlayerSimulatorKai.BasicOrganizeFleetWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.1, Culture=neutral, PublicKeyToken=null", + Guid: "bebf8f34-9c94-4c73-b209-e0bb49e74984", + Name: "编成", + EnableOnLoad: false, + Fleet: 1, + Positions: [ + { + Selections: [ + { + Type: 6, + Value: "神威改母", + Memo: "" + } + ], + ChangeIfInitial: true, + ChangeIfHpInRangeFlag: false, + ChangeIfHpInRangeValueMin: 0.0, + ChangeIfHpInRangeValueMax: 0.25, + ChangeIfMoraleInRangeFlag: false, + ChangeIfMoraleInRangeValueMin: 0, + ChangeIfMoraleInRangeValueMax: 32, + ChangeIfLevelGreaterOrEqualFlag: true, + ChangeIfLevelGreaterOrEqualValue: 999, + ChangeIfRepairing: false, + SkipWrongShips: true, + SkipRepairingShips: false, + SkipExpeditioningShips: true, + SkipShipsInThisFleet: false, + IgnoreSkipShipsInThisFleetIfInitial: true, + SkipShipsInOtherFleets: true, + IgnoreSkipShipsInOtherFleetsIfInitial: false, + SkipHpInRangeFlag: false, + SkipHpInRangeValueMin: 0.0, + SkipHpInRangeValueMax: 0.25, + SkipMoraleInRangeFlag: false, + SkipMoraleInRangeValueMin: 0, + SkipMoraleInRangeValueMax: 32, + SkipLevelInRangeFlag: false, + SkipLevelInRangeValueMin: 1, + SkipLevelInRangeValueMax: 99, + SkipLocked: false, + SkipUnlocked: false, + SkipExtraSlotNotAvailable: false, + SkipNoConventionalEquipments: false, + SkipRemodeled: false, + SkipNotRemodeled: false, + EnableScriptFilter: false, + FilterFunctionName: "", + SelectionSortingMethod: 1, + IncludeCurrentShip: false, + IncludeCurrentSelection: false, + KeepIfAllSelectionsFailed: false, + KeepIfSelectionCollectionEmpty: true + }, + { + Selections: [ + { + Type: 8, + Value: "dd_dlc", + Memo: "" + } + ], + ChangeIfInitial: true, + ChangeIfHpInRangeFlag: false, + ChangeIfHpInRangeValueMin: 0.0, + ChangeIfHpInRangeValueMax: 0.25, + ChangeIfMoraleInRangeFlag: false, + ChangeIfMoraleInRangeValueMin: 0, + ChangeIfMoraleInRangeValueMax: 32, + ChangeIfLevelGreaterOrEqualFlag: true, + ChangeIfLevelGreaterOrEqualValue: 999, + ChangeIfRepairing: false, + SkipWrongShips: true, + SkipRepairingShips: false, + SkipExpeditioningShips: true, + SkipShipsInThisFleet: false, + IgnoreSkipShipsInThisFleetIfInitial: true, + SkipShipsInOtherFleets: true, + IgnoreSkipShipsInOtherFleetsIfInitial: false, + SkipHpInRangeFlag: false, + SkipHpInRangeValueMin: 0.0, + SkipHpInRangeValueMax: 0.25, + SkipMoraleInRangeFlag: false, + SkipMoraleInRangeValueMin: 0, + SkipMoraleInRangeValueMax: 32, + SkipLevelInRangeFlag: false, + SkipLevelInRangeValueMin: 1, + SkipLevelInRangeValueMax: 99, + SkipLocked: false, + SkipUnlocked: false, + SkipExtraSlotNotAvailable: false, + SkipNoConventionalEquipments: false, + SkipRemodeled: false, + SkipNotRemodeled: false, + EnableScriptFilter: false, + FilterFunctionName: "", + SelectionSortingMethod: 5, + IncludeCurrentShip: false, + IncludeCurrentSelection: false, + KeepIfAllSelectionsFailed: false, + KeepIfSelectionCollectionEmpty: true + }, + { + Selections: [ + { + Type: 8, + Value: "dd_dlc", + Memo: "" + } + ], + ChangeIfInitial: true, + ChangeIfHpInRangeFlag: false, + ChangeIfHpInRangeValueMin: 0.0, + ChangeIfHpInRangeValueMax: 0.25, + ChangeIfMoraleInRangeFlag: false, + ChangeIfMoraleInRangeValueMin: 0, + ChangeIfMoraleInRangeValueMax: 32, + ChangeIfLevelGreaterOrEqualFlag: true, + ChangeIfLevelGreaterOrEqualValue: 999, + ChangeIfRepairing: false, + SkipWrongShips: true, + SkipRepairingShips: false, + SkipExpeditioningShips: true, + SkipShipsInThisFleet: false, + IgnoreSkipShipsInThisFleetIfInitial: true, + SkipShipsInOtherFleets: true, + IgnoreSkipShipsInOtherFleetsIfInitial: false, + SkipHpInRangeFlag: false, + SkipHpInRangeValueMin: 0.0, + SkipHpInRangeValueMax: 0.25, + SkipMoraleInRangeFlag: false, + SkipMoraleInRangeValueMin: 0, + SkipMoraleInRangeValueMax: 32, + SkipLevelInRangeFlag: false, + SkipLevelInRangeValueMin: 1, + SkipLevelInRangeValueMax: 99, + SkipLocked: false, + SkipUnlocked: false, + SkipExtraSlotNotAvailable: false, + SkipNoConventionalEquipments: false, + SkipRemodeled: false, + SkipNotRemodeled: false, + EnableScriptFilter: false, + FilterFunctionName: "", + SelectionSortingMethod: 5, + IncludeCurrentShip: false, + IncludeCurrentSelection: false, + KeepIfAllSelectionsFailed: false, + KeepIfSelectionCollectionEmpty: true + }, + { + Selections: [ + { + Type: 8, + Value: "dd_dlc", + Memo: "" + } + ], + ChangeIfInitial: true, + ChangeIfHpInRangeFlag: false, + ChangeIfHpInRangeValueMin: 0.0, + ChangeIfHpInRangeValueMax: 0.25, + ChangeIfMoraleInRangeFlag: false, + ChangeIfMoraleInRangeValueMin: 0, + ChangeIfMoraleInRangeValueMax: 32, + ChangeIfLevelGreaterOrEqualFlag: true, + ChangeIfLevelGreaterOrEqualValue: 999, + ChangeIfRepairing: false, + SkipWrongShips: true, + SkipRepairingShips: false, + SkipExpeditioningShips: true, + SkipShipsInThisFleet: false, + IgnoreSkipShipsInThisFleetIfInitial: true, + SkipShipsInOtherFleets: true, + IgnoreSkipShipsInOtherFleetsIfInitial: false, + SkipHpInRangeFlag: false, + SkipHpInRangeValueMin: 0.0, + SkipHpInRangeValueMax: 0.25, + SkipMoraleInRangeFlag: false, + SkipMoraleInRangeValueMin: 0, + SkipMoraleInRangeValueMax: 32, + SkipLevelInRangeFlag: false, + SkipLevelInRangeValueMin: 1, + SkipLevelInRangeValueMax: 99, + SkipLocked: false, + SkipUnlocked: false, + SkipExtraSlotNotAvailable: false, + SkipNoConventionalEquipments: false, + SkipRemodeled: false, + SkipNotRemodeled: false, + EnableScriptFilter: false, + FilterFunctionName: "", + SelectionSortingMethod: 5, + IncludeCurrentShip: false, + IncludeCurrentSelection: false, + KeepIfAllSelectionsFailed: false, + KeepIfSelectionCollectionEmpty: true + }, + { + Selections: [ + { + Type: 8, + Value: "dd_dlc", + Memo: "" + } + ], + ChangeIfInitial: true, + ChangeIfHpInRangeFlag: false, + ChangeIfHpInRangeValueMin: 0.0, + ChangeIfHpInRangeValueMax: 0.25, + ChangeIfMoraleInRangeFlag: false, + ChangeIfMoraleInRangeValueMin: 0, + ChangeIfMoraleInRangeValueMax: 32, + ChangeIfLevelGreaterOrEqualFlag: true, + ChangeIfLevelGreaterOrEqualValue: 999, + ChangeIfRepairing: false, + SkipWrongShips: true, + SkipRepairingShips: false, + SkipExpeditioningShips: true, + SkipShipsInThisFleet: false, + IgnoreSkipShipsInThisFleetIfInitial: true, + SkipShipsInOtherFleets: true, + IgnoreSkipShipsInOtherFleetsIfInitial: false, + SkipHpInRangeFlag: false, + SkipHpInRangeValueMin: 0.0, + SkipHpInRangeValueMax: 0.25, + SkipMoraleInRangeFlag: false, + SkipMoraleInRangeValueMin: 0, + SkipMoraleInRangeValueMax: 32, + SkipLevelInRangeFlag: false, + SkipLevelInRangeValueMin: 1, + SkipLevelInRangeValueMax: 99, + SkipLocked: false, + SkipUnlocked: false, + SkipExtraSlotNotAvailable: false, + SkipNoConventionalEquipments: false, + SkipRemodeled: false, + SkipNotRemodeled: false, + EnableScriptFilter: false, + FilterFunctionName: "", + SelectionSortingMethod: 5, + IncludeCurrentShip: false, + IncludeCurrentSelection: false, + KeepIfAllSelectionsFailed: false, + KeepIfSelectionCollectionEmpty: true + }, + { + Selections: [ + { + Type: 6, + Value: "吕500", + Memo: "" + } + ], + ChangeIfInitial: true, + ChangeIfHpInRangeFlag: false, + ChangeIfHpInRangeValueMin: 0.0, + ChangeIfHpInRangeValueMax: 0.25, + ChangeIfMoraleInRangeFlag: false, + ChangeIfMoraleInRangeValueMin: 0, + ChangeIfMoraleInRangeValueMax: 32, + ChangeIfLevelGreaterOrEqualFlag: true, + ChangeIfLevelGreaterOrEqualValue: 999, + ChangeIfRepairing: false, + SkipWrongShips: true, + SkipRepairingShips: false, + SkipExpeditioningShips: true, + SkipShipsInThisFleet: false, + IgnoreSkipShipsInThisFleetIfInitial: true, + SkipShipsInOtherFleets: true, + IgnoreSkipShipsInOtherFleetsIfInitial: false, + SkipHpInRangeFlag: false, + SkipHpInRangeValueMin: 0.0, + SkipHpInRangeValueMax: 0.25, + SkipMoraleInRangeFlag: false, + SkipMoraleInRangeValueMin: 0, + SkipMoraleInRangeValueMax: 32, + SkipLevelInRangeFlag: false, + SkipLevelInRangeValueMin: 1, + SkipLevelInRangeValueMax: 99, + SkipLocked: false, + SkipUnlocked: false, + SkipExtraSlotNotAvailable: false, + SkipNoConventionalEquipments: false, + SkipRemodeled: false, + SkipNotRemodeled: false, + EnableScriptFilter: false, + FilterFunctionName: "", + SelectionSortingMethod: 1, + IncludeCurrentShip: false, + IncludeCurrentSelection: false, + KeepIfAllSelectionsFailed: false, + KeepIfSelectionCollectionEmpty: true + } + ], + AllowExpandPreset: true, + AllowRemoveEscortShips: true, + RollBackProgressIfOrganizeFailed: true, + ResetAllCurrentStrategiesIfDisabled: true, + RefreshDataTaskPriority: 0, + OrganizeExpandTaskPriority: 0, + OrganizeFleetTaskPriority: 0, + WaitHomeAtFirst: false, + RefreshDataBeforeOrganize: false, + ReturnRoomAtLast: false, + EnableScript: true, + Script: "https://kcps.info/public-files/Python脚本/附加/编成助手.py", + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.BasicDockingWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.1, Culture=neutral, PublicKeyToken=null", + Guid: "46fcbc38-1655-47d8-bdd0-63b6309d5bfa", + Name: "入渠(出击前)", + EnableOnLoad: false, + LimitFleetFlag: true, + LimitFleetValue: 3, + LimitHpPercentFlag: true, + LimitHpPercentMinValue: 0.0, + LimitHpPercentMaxValue: 0.25, + LimitRepairTimeFlag: false, + LimitRepairTimeMinValue: "00:00:00", + LimitRepairTimeMaxValue: "4.04:00:00", + LimitMoraleFlag: false, + LimitMoraleMinValue: 0, + LimitMoraleMaxValue: 100, + LimitLevelFlag: false, + LimitLevelMinValue: 1, + LimitLevelMaxValue: 999, + LimitLockStateFlag: false, + LimitLockStateValueLocked: true, + LimitLockStateValueUnlocked: false, + LimitDockingStateFlag: false, + LimitDockingStateValueDocking: true, + LimitDockingStateValueIdle: false, + LimitShipTypeFlag: false, + LimitShipTypeValue: [], + EnableScriptFilter: false, + FilterFunctionName: "OnFilter", + SelectStrategy: 0, + Docks: 15, + ForceDocking: true, + InstantRepair: true, + ApplyInstantRepairToDockingShips: true, + InstantRepairTimeLimit: "00:00:00", + AutoStop: true, + Repeat: true, + SkipExpeditioningShips: true, + RefreshDataTaskPriority: 0, + DockingTaskPriority: 0, + DelaySecondsAfterRepairFinishedBase: 0, + DelaySecondsAfterRepairFinishedRandomMax: -60, + SetNonSetDockingTimersAtFirst: true, + WaitHomeAtFirst: false, + RefreshDataBeforeDocking: false, + ReturnRoomAtLast: false, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.BasicDockingWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.1, Culture=neutral, PublicKeyToken=null", + Guid: "b70a7843-3bb7-4dfb-bcc8-33b880e6fc9f", + Name: "捞出", + EnableOnLoad: false, + LimitFleetFlag: true, + LimitFleetValue: 3, + LimitHpPercentFlag: false, + LimitHpPercentMinValue: 0.0, + LimitHpPercentMaxValue: 1.0, + LimitRepairTimeFlag: false, + LimitRepairTimeMinValue: "00:00:00", + LimitRepairTimeMaxValue: "4.04:00:00", + LimitMoraleFlag: false, + LimitMoraleMinValue: 0, + LimitMoraleMaxValue: 100, + LimitLevelFlag: false, + LimitLevelMinValue: 1, + LimitLevelMaxValue: 999, + LimitLockStateFlag: false, + LimitLockStateValueLocked: true, + LimitLockStateValueUnlocked: false, + LimitDockingStateFlag: true, + LimitDockingStateValueDocking: true, + LimitDockingStateValueIdle: false, + LimitShipTypeFlag: false, + LimitShipTypeValue: [], + EnableScriptFilter: false, + FilterFunctionName: "OnFilter", + SelectStrategy: 0, + Docks: 15, + ForceDocking: false, + InstantRepair: true, + ApplyInstantRepairToDockingShips: true, + InstantRepairTimeLimit: "00:00:00", + AutoStop: true, + Repeat: true, + SkipExpeditioningShips: true, + RefreshDataTaskPriority: 0, + DockingTaskPriority: 0, + DelaySecondsAfterRepairFinishedBase: 0, + DelaySecondsAfterRepairFinishedRandomMax: -60, + SetNonSetDockingTimersAtFirst: true, + WaitHomeAtFirst: false, + RefreshDataBeforeDocking: false, + ReturnRoomAtLast: false, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.BasicRefitEquipmentWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.1, Culture=neutral, PublicKeyToken=null", + Guid: "3198f973-affb-41af-b1ac-f3330d3e2c4c", + Name: "改装", + EnableOnLoad: false, + Ships: [ + { + Slots: [ + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 1, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 2, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 3, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 4, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 1, + SelectValue: "引擎强化", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 6, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + } + ], + Fleet: 1, + SelectMethod: 0, + SelectValue: "1", + Memo: "AO", + IgnoreNoShipMatched: true, + IgnoreExpedition: false, + IgnoreDocking: false + }, + { + Slots: [ + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "鼓筒(运输用)", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 1, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "鼓筒(运输用)", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 2, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "鼓筒(运输用)", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 3, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 1, + SelectValue: "引擎强化", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 6, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + } + ], + Fleet: 1, + SelectMethod: 0, + SelectValue: "2", + Memo: "DD", + IgnoreNoShipMatched: true, + IgnoreExpedition: false, + IgnoreDocking: false + }, + { + Slots: [ + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "鼓筒(运输用)", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 1, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "鼓筒(运输用)", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 2, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "鼓筒(运输用)", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 3, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 1, + SelectValue: "引擎强化", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 6, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + } + ], + Fleet: 1, + SelectMethod: 0, + SelectValue: "3", + Memo: "DD", + IgnoreNoShipMatched: true, + IgnoreExpedition: false, + IgnoreDocking: false + }, + { + Slots: [ + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "鼓筒(运输用)", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 1, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "鼓筒(运输用)", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 2, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "鼓筒(运输用)", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 3, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 1, + SelectValue: "引擎强化", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 6, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + } + ], + Fleet: 1, + SelectMethod: 0, + SelectValue: "4", + Memo: "DD", + IgnoreNoShipMatched: true, + IgnoreExpedition: false, + IgnoreDocking: false + }, + { + Slots: [ + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "鼓筒(运输用)", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 1, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "鼓筒(运输用)", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 2, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "大发动艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "鼓筒(运输用)", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 3, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 1, + SelectValue: "引擎强化", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 6, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + } + ], + Fleet: 1, + SelectMethod: 0, + SelectValue: "5", + Memo: "DD", + IgnoreNoShipMatched: true, + IgnoreExpedition: false, + IgnoreDocking: false + }, + { + Slots: [ + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "特二式内火艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 1, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "特二式内火艇", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 2, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + }, + { + Equipments: [ + { + SelectMethod: 0, + SelectValue: "电探", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 1, + SelectValue: "引擎强化", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + }, + { + SelectMethod: 0, + SelectValue: "", + Reorder: true, + PrioritizeCurrentEquipptedEquipments: true, + StatusPriority: 0, + RarityPriority: 0, + LevelPriority: 0, + ProficiencyPriority: 0, + Deprive: 2 + } + ], + Slot: 6, + IgnoreNoEquipmentMatched: false, + IgnoreSlotNotAvailable: true + } + ], + Fleet: 1, + SelectMethod: 0, + SelectValue: "6", + Memo: "SS/SSV", + IgnoreNoShipMatched: true, + IgnoreExpedition: false, + IgnoreDocking: false + } + ], + RefreshDataTaskPriority: 0, + RefitEquipmentTaskPriority: 0, + WaitHomeAtFirst: false, + RefreshDataBeforeRefit: false, + ReturnRoomAtLast: false, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.BasicSupplyFleetWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.1, Culture=neutral, PublicKeyToken=null", + Guid: "31919012-7ce3-4121-b3cc-905d3ed5d0e7", + Name: "补给(出击前)", + EnableOnLoad: false, + Fleet: 1, + Setting: 4294967295, + SkipIfAllResourcePercentHigherThanFlag: true, + SkipIfAllResourcePercentHigherThanValue: 80, + RefreshDataTaskPriority: 0, + SupplyFleetTaskPriority: 0, + WaitHomeAtFirst: false, + RefreshDataBeforeSupplyFleet: false, + ReturnRoomAtLast: false, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.SimpleSortieWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.1, Culture=neutral, PublicKeyToken=null", + Guid: "04a09dc3-9912-4dc3-b9ee-768d20b06e03", + Name: "1-3", + EnableOnLoad: false, + Fleet: 1, + Sea: 1, + Area: 3, + ResetDifficulty: false, + Difficulty: 0, + MapHpInRangeFlag: false, + MapHpInRangeValueGauge: 0, + MapHpInRangeValueMin: 0, + MapHpInRangeValueMax: 9999, + EscortShipNoHeavilyDamaged: true, + FlagShipFullySupplied: false, + EscortShipFullySupplied: false, + FlagShipMoraleLargerOrEqualThanFlag: false, + FlagShipMoraleLargerOrEqualThanValue: 33, + EscortShipMoraleLargerOrEqualThanFlag: false, + EscortShipMoraleLargerOrEqualThanValue: 33, + NormalSupportExpedition: false, + NormalSupportExpeditionFleet: 3, + NormalSupportExpeditionTemporaryResupply: true, + NormalSupportExpeditionCheckFullySupplied: true, + NormalSupportExpeditionCheckMorale: true, + BossSupportExpedition: false, + BossSupportExpeditionFleet: 4, + BossSupportExpeditionTemporaryResupply: true, + BossSupportExpeditionCheckFullySupplied: true, + BossSupportExpeditionCheckMorale: true, + LandBasedAirCorps1Action: 1, + LandBasedAirCorps1Resupply: 15, + LandBasedAirCorps1Point1: null, + LandBasedAirCorps1Point2: null, + LandBasedAirCorps1CheckAnyProficiencyNotFull: false, + LandBasedAirCorps1CheckFatigue: false, + LandBasedAirCorps2Action: 0, + LandBasedAirCorps2Resupply: 15, + LandBasedAirCorps2Point1: null, + LandBasedAirCorps2Point2: null, + LandBasedAirCorps2CheckAnyProficiencyNotFull: false, + LandBasedAirCorps2CheckFatigue: false, + LandBasedAirCorps3Action: 0, + LandBasedAirCorps3Resupply: 15, + LandBasedAirCorps3Point1: null, + LandBasedAirCorps3Point2: null, + LandBasedAirCorps3CheckAnyProficiencyNotFull: false, + LandBasedAirCorps3CheckFatigue: false, + DefaultStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 0, + FallbackFormation: 1, + DefaultMidnight: 0, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + DefaultBossBattleStrategyFlag: false, + DefaultBossBattleStrategy: { + Memo: "", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 2, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 0, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + }, + Strategies: [ + { + Condition: { + Type: 1, + Value: 11 + }, + Strategy: { + Memo: "E(B->E)", + DefaultWayPoint: null, + DefaultBattleRations: 0, + DefaultMaritimeResupply: 0, + DefaultEmergencyAnchorageRepair: 0, + DefaultFormation: 1, + FallbackFormation: 1, + DefaultMidnight: 1, + DefalutFlagShipDamageControl: 0, + DefaultEscortRetreat: 0, + DefaultAdvance: 2, + RejectEscortRetreatIfMoreOrEqualThanTwoEscortShipsHeavilyDamaged: true, + EscortShipsHeavilyDamagedStrategy: 1, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanFlag: false, + RetreatIfModerateOrHeavierDamagedCountLargerOrEqualThanValue: 1, + EnableScriptEnterDayTimeBattleCallback: false, + EnterDayTimeBattleCallbackFunctionName: "OnDay", + EnableScriptEnterNightTimeBattleCallback: false, + EnterNightTimeBattleCallbackFunctionName: "OnNight" + } + } + ], + EnableScriptSortieChecker: false, + SoriteCheckerFunctionName: "OnCheck", + SortieTaskPriority: -32768, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.BasicSupplyFleetWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.1, Culture=neutral, PublicKeyToken=null", + Guid: "716e5841-9a28-46df-bc53-b6e56d4b1d0d", + Name: "补给(出击后)", + EnableOnLoad: false, + Fleet: 1, + Setting: 4294967295, + SkipIfAllResourcePercentHigherThanFlag: true, + SkipIfAllResourcePercentHigherThanValue: 80, + RefreshDataTaskPriority: 0, + SupplyFleetTaskPriority: 0, + WaitHomeAtFirst: false, + RefreshDataBeforeSupplyFleet: false, + ReturnRoomAtLast: false, + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.SimpleRaiseUserEventWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.1, Culture=neutral, PublicKeyToken=null", + Guid: "f073aa4f-eeb8-4ea0-9666-1e980fb0a977", + Name: "抑制其他配置", + EnableOnLoad: false, + Message: "正在连续出击", + EnableScript: true, + Script: null, + TriggerOnEnabled: false + }, + { + Type: "KancollePlayerSimulatorKai.SimpleRaiseUserEventWorkflow, KancollePlayerSimulatorKai, Version=1.4.6.1, Culture=neutral, PublicKeyToken=null", + Guid: "1292c6ca-12e3-4468-99f2-e3d4952f3138", + Name: "通知完成", + EnableOnLoad: false, + Message: "已空出任务槽", + EnableScript: true, + Script: null, + TriggerOnEnabled: false + } + ] +} \ No newline at end of file