feat: 调整理智药使用为按瓶计数,优化掉了博朗台在使用理智药不溢出情况下的额外等待

This commit is contained in:
status102
2023-10-20 23:19:20 +08:00
parent 575c84f652
commit 0da322b1ce
16 changed files with 515 additions and 59 deletions

View File

@@ -10,6 +10,7 @@ namespace asst
class StageNavigationTask;
class DrGrandetTaskPlugin;
class SideStoryReopenTask;
class MedicineCounterPlugin;
class FightTask final : public InterfaceTask
{
@@ -25,6 +26,7 @@ namespace asst
std::shared_ptr<ProcessTask> m_start_up_task_ptr = nullptr;
std::shared_ptr<StageNavigationTask> m_stage_navigation_task_ptr = nullptr;
std::shared_ptr<ProcessTask> m_fight_task_ptr = nullptr;
std::shared_ptr<MedicineCounterPlugin> m_medicine_plugin = nullptr;
std::shared_ptr<StageDropsTaskPlugin> m_stage_drops_plugin_ptr = nullptr;
std::shared_ptr<DrGrandetTaskPlugin> m_dr_grandet_task_plugin_ptr = nullptr;
std::shared_ptr<SideStoryReopenTask> m_sidestory_reopen_task_ptr = nullptr;