MAAsConfig/ArknightsMaaConfig/tasks/fight.toml

32 lines
1000 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[[tasks]]
name = "刷理智"
type = "Fight"
# 改变Condition匹配模式
strategy = "merge"
# 周末清理理智药
[[tasks.variants]]
params = { expiring_medicine = 1000 }
[tasks.variants.condition]
type = "And"
conditions = [
{ type = "Time", start = "18:00:00" },
{ type = "Weekday", weekdays = ["Sun"], timezone = "Official"},
]
# 其他时间(?已经没有嘞)刷1-7
[[tasks.variants]]
params = { stage = "1-7" }
# 在夏活期间以外的周一、周四和周六刷AP-5红票
[[tasks.variants]]
condition = { type = "Weekday", weekdays = ["Mon", "Thu", "Sat"], timezone = "Official"}
params = { stage = "AP-5" }
# 在夏活期间以外的周二、周三、周五和周日刷CA-5经验书
[[tasks.variants]]
condition = { type = "Weekday", weekdays = ["Tue", "Wed", "Fri", "Sun"], timezone = "Official"}
params = { stage = "CA-5" }
# ss期间 刷活动关
[[tasks.variants]]
params = { stage = "RS-8" }
condition = { type = "OnSideStory", client = "Official" }